1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
// This file is part of the AspectC++ compiler 'ac++'.
// Copyright (C) 1999-2003 The 'ac++' developers (see aspectc.org)
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this program; if not, write to the Free
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
// MA 02111-1307 USA
// C++ includes
#include <stdlib.h>
#include <sstream>
using std::stringstream;
#include <set>
using std::set;
// PUMA includes
#include "Puma/ExtACKeywords.ah"
#include "Puma/ErrorSeverity.h"
#include "Puma/OptsParser.h"
#include "Puma/SysCall.h"
#include "Puma/StrCol.h"
// AspectC++ includes
#include "ACConfig.h"
#include "version.h"
#include "Naming.h"
static OptsParser::Option options[] = {
{ ACConfig::ACOPT_VERSION, "V", "version",
"\t" "Version information", OptsParser::AT_NONE },
{ ACConfig::ACOPT_VERBOSE, "v", "verbose",
"Level of verbosity (0-9)", OptsParser::AT_MANDATORY },
{ ACConfig::ACOPT_COMPILE, "c", "compile",
"Name of the input file", OptsParser::AT_MANDATORY },
{ ACConfig::ACOPT_OUTPUT, "o", "output",
"\t" "Name of the output file", OptsParser::AT_MANDATORY },
{ ACConfig::ACOPT_INCLUDE_FILES, "i", "include_files",
"Generate manipulated header files", OptsParser::AT_NONE },
{ ACConfig::ACOPT_ASPECT_HEADER, "a", "aspect_header",
"Name of aspect header file or '0'", OptsParser::AT_MANDATORY },
{ ACConfig::ACOPT_REPOSITORY, "r", "repository",
"Name of the project repository", OptsParser::AT_MANDATORY },
{ ACConfig::ACOPT_PROBLEM_LOCAL_CLASS, NULL, "problem_local_class",
"Back-end does not support local classes correctly", OptsParser::AT_NONE },
{ ACConfig::ACOPT_NO_PROBLEM_LOCAL_CLASS, NULL, "no_problem_local_class",
"Back-end supports local classes correctly", OptsParser::AT_NONE },
{ ACConfig::ACOPT_PROBLEM_SPEC_SCOPE, NULL,
"problem_spec_scope",
"Back-end does not support template specialization in non-namespace",
OptsParser::AT_NONE },
{ ACConfig::ACOPT_NO_PROBLEM_SPEC_SCOPE, NULL,
"no_problem_spec_scope",
"Back-end supports template specialization in non-namespace scope",
OptsParser::AT_NONE },
{ ACConfig::ACOPT_PROBLEM_FORCE_INLINE, NULL, "problem_force_inline",
"Back-end does not support forced inlining correctly", OptsParser::AT_NONE },
{ ACConfig::ACOPT_NO_PROBLEM_FORCE_INLINE, NULL, "no_problem_force_inline",
"Back-end supports forced inlining correctly", OptsParser::AT_NONE },
{ ACConfig::ACOPT_NOLINE, NULL,
"no_line",
"\t" "\t" "Don't generate #line directives",
OptsParser::AT_NONE },
{ ACConfig::ACOPT_GEN_SIZE_TYPE, NULL, "gen_size_type",
"Argument type for generated new operator", OptsParser::AT_MANDATORY },
{ ACConfig::ACOPT_PROJ_FILE, NULL, "proj_file",
"\t" "Path to the project file", OptsParser::AT_MANDATORY},
{ ACConfig::ACOPT_WARN_DEPRECATED, NULL, "warn_deprecated",
"\t" "Warn if deprecated syntax is used", OptsParser::AT_NONE },
{ ACConfig::ACOPT_NO_WARN_DEPRECATED, NULL, "no_warn_deprecated",
"Don't warn if deprecated syntax is used", OptsParser::AT_NONE },
{ ACConfig::ACOPT_WARN_MACRO, NULL, "warn_macro",
"\t" "Warn if a macro transformation had to be ignored",
OptsParser::AT_NONE },
{ ACConfig::ACOPT_NO_WARN_MACRO, NULL, "no_warn_macro",
"\t" "Don't warn if a macro transformation had to be ignored",
OptsParser::AT_NONE },
{ ACConfig::ACOPT_KEYWORDS, "k", "keywords",
"\t" "Allow AspectC++ keywords in normal project files",
OptsParser::AT_NONE },
{ ACConfig::ACOPT_DYNAMIC, 0, "dynamic",
"\t\t" "Prepare generated code for dynamic weaving",
OptsParser::AT_NONE },
{ ACConfig::ACOPT_INTROSPECTION, 0, "introspection",
"\t\t" "Support introspection mechanism",
OptsParser::AT_NONE },
{ 0, NULL, 0, 0, OptsParser::AT_NONE }
};
ACConfig::~ACConfig () {
if (_file_in)
delete[] _file_in;
if (_file_out)
delete[] _file_out;
for (int i = 0; i < _aspect_headers.length (); i++)
delete[] _aspect_headers[i];
}
bool ACConfig::analyze () {
// setup defaults
_v = 0; // default verbosity without "-v"
_ifiles = false;
_file_in = (const char*)0;
_file_out = (const char*)0;
_repository = (const char*)0;
_iterate_tunits = false;
_nosave = false;
_noline = false;
_iterate_aspects = true;
// default setting: unknown compilers have a problem with everything
_problem_local_class = true;
_problem_spec_scope = true;
_problem_force_inline = true;
if (_project.config ().Option ("--gnu") ||
_project.config ().Option ("--gnu-2.95")) {
_problem_local_class = false;
_problem_force_inline = false;
} else if (_project.config ().Option ("--vc")) {
_problem_spec_scope = false;
}
_warn_deprecated = true;
_warn_macro = true;
_dynamic = false;
_introspection = false;
bool keywords = false;
char* tmp;
OptsParser op (_argc, _argv, options);
bool have_proj_file = false;
while (op.getOption () != OptsParser::FINISH) {
switch (op.getResult ()) {
case ACOPT_VERBOSE:
if (op.getArgument ().empty ())
// -v without number
_v = 3;
else
_v = atoi (op.getArgument ().c_str ());
break;
case ACOPT_VERSION:
cout << ac_program () << " " << ac_version ()
<< " (" << __DATE__ << ")" << endl;
return false;
case ACOPT_COMPILE:
tmp = StrCol::dup (op.getArgument ().c_str ());
#if defined (WIN32)
SysCall::MakeUnixPath(tmp);
#endif
_file_in = tmp;
break;
case ACOPT_OUTPUT:
tmp = StrCol::dup (op.getArgument ().c_str ());
#if defined (WIN32)
SysCall::MakeUnixPath(tmp);
#endif
_file_out = tmp;
break;
case ACOPT_INCLUDE_FILES:
_ifiles = true;
break;
case ACOPT_NOSAVE:
_nosave = true;
break;
case ACOPT_NOLINE:
_noline = true;
break;
case ACOPT_ASPECT_HEADER:
_iterate_aspects = false;
if (strcmp (op.getArgument ().c_str (), "0") != 0) {
tmp = StrCol::dup (op.getArgument ().c_str ());
#if defined (WIN32)
SysCall::MakeUnixPath(tmp);
#endif
_aspect_headers.append (tmp);
}
break;
case ACOPT_REPOSITORY:
tmp = StrCol::dup (op.getArgument ().c_str ());
#if defined (WIN32)
SysCall::MakeUnixPath(tmp);
#endif
_repository = tmp;
break;
case ACOPT_PROBLEM_LOCAL_CLASS:
_problem_local_class = true;
break;
case ACOPT_NO_PROBLEM_LOCAL_CLASS:
_problem_local_class = false;
break;
case ACOPT_PROBLEM_SPEC_SCOPE:
_problem_spec_scope = true;
break;
case ACOPT_NO_PROBLEM_SPEC_SCOPE:
_problem_spec_scope = false;
break;
case ACOPT_PROBLEM_FORCE_INLINE:
_problem_force_inline = true;
break;
case ACOPT_NO_PROBLEM_FORCE_INLINE:
_problem_force_inline = false;
break;
case ACOPT_GEN_SIZE_TYPE:
_size_type = op.getArgument ().c_str ();
break;
case ACOPT_PROJ_FILE:
have_proj_file = true;
_proj_file = op.getArgument ().c_str ();
break;
case ACOPT_WARN_DEPRECATED:
_warn_deprecated = true;
break;
case ACOPT_NO_WARN_DEPRECATED:
_warn_deprecated = false;
break;
case ACOPT_WARN_MACRO:
_warn_macro = true;
break;
case ACOPT_NO_WARN_MACRO:
_warn_macro = false;
break;
case ACOPT_KEYWORDS:
keywords = true;
break;
case ACOPT_DYNAMIC:
_dynamic = true;
break;
case ACOPT_INTROSPECTION:
_introspection = true;
break;
default:
usage (_argv[0]);
return false;
}
}
bool have_std_prj = (_project.numPaths () > 0) && _project.src (0L);
bool have_prj = have_proj_file || have_std_prj;
bool have_dest = (_project.numPaths () > 0) && _project.dest (0L);
// now check if the options make sense
if (!have_prj || (have_std_prj && have_proj_file) ||
(_ifiles && (_file_in || !_project.dest (0L))) ||
(_file_out && have_dest) ||
(!_file_in && !_ifiles && !have_dest)) {
usage (_argv[0]);
return false;
}
// check for the compatibility mode (iterate through the project tree)
if (!_ifiles && !_file_in && !_file_out && have_dest)
_iterate_tunits = true;
// set reasonable default values
if (!_file_out && _file_in)
_file_out = StrCol::dup ("ac.out");
if (!_file_in) {
if (_file_out)
_file_in = StrCol::dup (_file_out);
else {
stringstream genfile;
if (_project.src (0L))
genfile << _project.src (0L);
genfile << "ac_gen." << extension ();
_file_in = StrCol::dup (genfile.str ().data ());
}
}
// determine a string that uniquely identifies the project
if (have_std_prj) { // a normal project with one or more -p options
set<string> paths;
for (long i = 0L; i < _project.numPaths (); i++) {
Filename canon;
SysCall::canonical (_project.src(i), canon);
ostringstream name;
Naming::mangle_file (name, canon.name ());
paths.insert (name.str ());
}
_project_id = *paths.begin ();
}
else { // used a project file
// load the project file and set up the project
if (!_project.loadProject (_proj_file)) {
err () << sev_error << "failed to load project file '"
<< _proj_file.c_str () << "'" << endMessage;
return false;
}
Filename canon;
SysCall::canonical (_proj_file.c_str (), canon);
ostringstream name;
Naming::mangle_file (name, canon.name ());
_project_id = name.str ();
}
// select AspectC++ as the input language
ExtACKeywords::aspectof ()->prj_keywords (keywords);
// TODO: this should be obsolete -> check it
_project.config ().Add ("--lang-ac++");
_project.configure (_project.config ());
return true;
}
void ACConfig::usage (const char *prog) const
{
cerr << "usage: " << prog << " options" << endl
<< " options are ..." << endl;
cerr << " -p|--path <arg>\t\t" << "project directory tree" << endl
<< " -d|--dest <arg>\t\t" << "target directory tree" << endl
<< " -e|--extension <arg>\t" << "translation unit filename ext."
<< endl;
for (int o = 0; options[o].number > 0; o++) {
cerr << " ";
if (options[o].shortName) cerr << "-" << options[o].shortName;
if (options[o].shortName && options[o].longName) cerr << "|";
if (options[o].longName) cerr << "--" << options[o].longName;
if (options[o].argType != OptsParser::AT_NONE) cerr << " <arg>";
if (options[o].desc) cerr << " \t" << options[o].desc;
cerr << endl;
}
cerr << " further options for correct parsing are ..." << endl
<< " -I <arg>\t\t\t" << "include file search path" << endl
<< " -D <name>[=<value>]\t" << "macro definitions" << endl;
}
// get the extension string for cc files
const char *ACConfig::extension () {
for (unsigned i = _project.config ().Options (); i > 0; i--) {
const ConfOption *o = _project.config ().Option (i-1);
if (! strcmp (o->Name (), "-e") || ! strcmp (o->Name (), "--extension")) {
if (! o->Arguments ())
continue;
return o->Argument (0);
}
}
return "cc";
}
|