File: AGxxConfig.cc

package info (click to toggle)
aspectc%2B%2B 1.0pre4~svn.20080711-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 104,504 kB
  • ctags: 363,975
  • sloc: cpp: 1,645,814; ansic: 16,601; sh: 2,175; makefile: 1,043
file content (547 lines) | stat: -rw-r--r-- 19,254 bytes parent folder | download
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
// This file is part of the AspectC++ compiler 'ac++'.
// Copyright (C) 1999-2004  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                                           


#include "version.h"
#include "AGxxConfig.h"
#include "file.h"
#include "regex.h"

// PUMA includes
#include "Puma/StrCol.h"
#include "Puma/OptsParser.h"
#include "Puma/VerboseMgr.h"
using namespace Puma;

//stdc++ includes
#include <iostream>
#include <string>


string AGxxConfig::_gcc_option_arg[] = {
   "-aux-info","-print-prog-name=",
   "-idirafter", "-imacros", "-iprefix",
   "-iwithprefix", "-iwithprefixbefore", "-isystem",
   "-B", "-l", "-I", "-L", "-specs=",
   "-MF", "-MT", "-MQ",
   "-x",
   "--param",
   "-Xlinker", "-u",
   "-V", "-b",
   "-G",
   ""/* terminate with empty string */
};

// options for AC++ Compiler
static OptsParser::Option options[] = {
   { AGxxConfig::AGOPT_GEN_CFG, NULL, "gen_config",
      "\t" "Only generate Puma configuration file", OptsParser::AT_NONE },
   { AGxxConfig::AGOPT_WEAVE_ONLY, NULL, "weave_only",
      "\t" "Weave only", OptsParser::AT_NONE },
   { AGxxConfig::AGOPT_COMPILE_ONLY, "c", NULL,
      "\t\t" "Compile only", OptsParser::AT_NONE },
   { AGxxConfig::AGOPT_KEEP_WOVEN,NULL, "keep_woven",
      "\t" "Keep woven source code files", OptsParser::AT_NONE },
   { AGxxConfig::AGOPT_KEEP_WOVEN,NULL, "keep_acc",
      "\t" "Deprecated. Use keep_woven instead", OptsParser::AT_NONE },
   { AGxxConfig::AGOPT_CC, NULL, "c_compiler",
      "Path to C++ compiler", OptsParser::AT_MANDATORY },
   { AGxxConfig::AGOPT_ACC, NULL, "ac_compiler",
      "Path to AspectC++ compiler", OptsParser::AT_MANDATORY },
   { AGxxConfig::AGOPT_OUTPUT, "o", "output",
      "\t" "Name of the output file", OptsParser::AT_MANDATORY },
   { AGxxConfig::AGOPT_CONFIG_COMMAND,NULL, "config_command",
      "Command which prints information about compiler", OptsParser::AT_MANDATORY },
   { AGxxConfig::AGOPT_X_COMPILER,NULL, "Xcompiler",
      "\tIn case of doubt account following options as g++ options", OptsParser::AT_NONE },
   { AGxxConfig::AGOPT_X_WEAVER,NULL, "Xweaver",
      "\t\tIn case of doubt account following options as ac++ options", OptsParser::AT_NONE },
   { AGxxConfig::AGOPT_HELP, "h", "help",
      "\t\t" "Print this help meassage", OptsParser::AT_NONE },
   { AGxxConfig::AGOPT_VERSION, NULL, "version",
      "\t" "\t" "Version information", OptsParser::AT_NONE },
   { AGxxConfig::AGOPT_VERBOSE, "v", "verbose",
      "Level of verbosity (0-9)", OptsParser::AT_OPTIONAL },
   { AGxxConfig::ACOPT_INCLUDE_FILES, "i", "include_files",
      "Generate manipulated header files", OptsParser::AT_NONE },
   { AGxxConfig::ACOPT_ASPECT_HEADER, "a", "aspect_header",
      "Name of aspect header file or '0'", OptsParser::AT_MANDATORY }, 
   { AGxxConfig::ACOPT, "r", "repository",
      "Name of the project repository", OptsParser::AT_MANDATORY }, 
   { AGxxConfig::ACOPT, NULL, "problem_local_class",
      "Back-end does not support local classes correctly", OptsParser::AT_NONE }, 
   { AGxxConfig::ACOPT, NULL, "no_problem_local_class",
      "Back-end supports local classes correctly", OptsParser::AT_NONE },
   { AGxxConfig::ACOPT, NULL, "problem_spec_scope",
      "Back-end does not support template specialization in non-namespace",OptsParser::AT_NONE }, 
   { AGxxConfig::ACOPT, NULL, "no_problem_spec_scope",
      "Back-end supports template specialization in non-namespace scope",OptsParser::AT_NONE }, 
   { AGxxConfig::ACOPT, NULL, "problem_force_inline",
      "Back-end does not support forced inlining correctly", OptsParser::AT_NONE }, 
   { AGxxConfig::ACOPT, NULL, "no_problem_force_inline",
      "Back-end supports forced inlining correctly", OptsParser::AT_NONE }, 
   { AGxxConfig::ACOPT, NULL, "warn_deprecated",
      "\t" "Warn if deprecated syntax is used", OptsParser::AT_NONE },
   { AGxxConfig::ACOPT, NULL, "no_warn_deprecated",
      "Don't warn if deprecated syntax is used", OptsParser::AT_NONE },
   { AGxxConfig::ACOPT, NULL, "warn_macro",
      "\t" "Warn if a macro transformation had to be ignored", OptsParser::AT_NONE },
   { AGxxConfig::ACOPT, NULL, "no_warn_macro",
      "\t" "Don't warn if a macro transformation had to be ignored", OptsParser::AT_NONE },
   { AGxxConfig::ACOPT, NULL,"no_line",
      "\t\t" "Don't generate #line directives",OptsParser::AT_NONE },
   { AGxxConfig::ACOPT, NULL, "gen_size_type", 
      "Argument type for generated new operator", OptsParser::AT_MANDATORY},
   { AGxxConfig::ACOPT, NULL,"real-instances",
      "\t" "Perform full template analysis",OptsParser::AT_NONE },
   { AGxxConfig::ACOPT_PROJ_PATH, "p", "path", 
      "\t" "Path to project source", OptsParser::AT_MANDATORY},
   { AGxxConfig::ACOPT_PROJ_DESTINATION, "d", "dest", 
      "\t" "Path to destination for modified include files", OptsParser::AT_MANDATORY},
   { AGxxConfig::ACOPT_CFG_FILE, NULL, "config", 
      "\t" "Full path to a config file", OptsParser::AT_MANDATORY}, 
   { AGxxConfig::ACOPT_PRE_INCLUDE, "I", NULL, 
      "\t\t" "Add new include path", OptsParser::AT_MANDATORY},
   { AGxxConfig::ACOPT_PRE_DEFINE, "D", NULL, 
      "\t\t" "Define a preprocessor macro", OptsParser::AT_MANDATORY},
   { AGxxConfig::ACOPT_PRE_UNDEFINE, "U", NULL, 
      "\t\t" "Undefine a preprocessor macro", OptsParser::AT_MANDATORY},
   { AGxxConfig::ACOPT_ALWAYS_INCLUDE, "include", "include", 
      "Always include file", OptsParser::AT_MANDATORY},
   { AGxxConfig::ACOPT, "k", "keywords",
      "\t" "Allow AspectC++ keywords in normal project files", OptsParser::AT_NONE},
   { AGxxConfig::ACOPT, NULL, "dynamic",
      "\t\t" "Prepare generated code for dynamic weaving", OptsParser::AT_NONE },
   { 0, 0, 0, 0, OptsParser::AT_NONE}
};

void AGxxConfig::usage() const
{
   _err << "usage:  ag++ [options] [file...]" << endMessage
      << "   options are ..." << endMessage;
   for (int i = 0; options[i].number > 0; i++) {
      _err << "     ";
      if (options[i].shortName)  _err << "-" << options[i].shortName;
      if (options[i].shortName && options[i].longName) _err << "|";
      if (options[i].longName) _err << "--" << options[i].longName;
      if (options[i].argType != OptsParser::AT_NONE) _err << " <arg>";
      if (options[i].desc) _err << " \t" << options[i].desc;
      _err << endMessage;
   }
}

bool AGxxConfig::parseGccOpt(OptsParser &op)
{
   
   // option which should be analyzed
   string opt=op.getOptionName()+op.getArgument();

   // argument for this option
   string arg("");

   //check for -M/-MM option for generating dependency information
   if (opt.compare("-M") == 0 || opt.compare("-MM") == 0 ){
      _make_dep=true;
      _optvec.pushback(opt,OptionItem::OPT_GCC);
      return true;
   }

   // check if option is in list of gcc options which require an option argument
   for(string* test_str=_gcc_option_arg;test_str->empty()==false;++test_str){
      if( opt.compare(0,test_str->length(),*test_str) == 0){

         // option requires an argument

         // check if the argument is appended to the option name
         if ( opt.length() > test_str->length() ){
            // extract the argument out of the option name
            arg=" \""+opt.substr(test_str->length())+"\" ";
            opt=opt.substr(0,test_str->length());
         }else{
            // check if there exist another option on command line
            if(op.getRawOption () != OptsParser::FINISH) {
               // append argument to string of arguments
               arg=" \""+op.getArgument()+"\" ";
            }else{
               // there is no option anymore
               _err << sev_error << "G++ Option reqires argument: " ;
               _err <<"'"<< opt.c_str() <<"'"<< endMessage;
               return false;
            }
         }
      }
   }
   _optvec.pushback(opt,arg,OptionItem::OPT_GCC|OptionItem::OPT_CONFIG);
   return true;

}



bool AGxxConfig::analyze()
{  
   bool ret;

   // setup default values
   _gen_pumaconfig=true;
   _weave=false;
   _compile=false;
   _link=false;
   
   _verbose =0;
   _nr_files =0;

   _pumaconfig_tmp=true;
   _weave_only=false;
   _keep_woven=false;
   _gen_includes=false;
   _cc_bin="g++";
   _compile_only=false;
   _make_dep=false;
   _x_compiler=false;
   

   // parse Options received from command line
   ret = parseOptions();
   
   if(ret == true)
   {
      // analyze Options received from command line
      ret = analyzeOptions();
   }

   return ret;
}


bool AGxxConfig::parseOptions()
{
   // use the PUMA option parser for parsing
   OptsParser op(_argc,_argv,options);

   // extract options/filenames out of command line arguments
   while (op.getOption () != OptsParser::FINISH) 
   {
      
      // 
      // first parse options which do not interfere with g++
      // options
      //
      switch (op.getResult ()) {

         case AGOPT_OUTPUT :
            _output_file=op.getArgument();
            _optvec.pushback("-o"," \""+op.getArgument()+"\" ",(OptionItem::OPT_GCC));
            continue;

         case AGOPT_COMPILE_ONLY :
            _compile_only=true;
            _optvec.pushback("-c",OptionItem::OPT_GCC);
            continue;

         case AGOPT_X_COMPILER :
            _x_compiler=true;
            continue;

         case AGOPT_X_WEAVER :
            _x_compiler=false;
            continue;

         case ACOPT_CFG_FILE :
            _pumaconfig_file=op.getArgument();
            _pumaconfig_tmp=false;
            continue;

         case ACOPT_PRE_DEFINE :
            {
               string tmpStr=op.getArgument();
               _optvec.pushback("-D"," \""+
                                str_replace_all(tmpStr,"\"","\\\"")+
                                "\" ",
                               (OptionItem::OPT_ACC|OptionItem::OPT_GCC));
            }
            continue;

         case ACOPT_PRE_UNDEFINE :
            _optvec.pushback("-U"," \""+op.getArgument()+"\" ",
                  (OptionItem::OPT_ACC|OptionItem::OPT_GCC));
            continue;

         case ACOPT_PRE_INCLUDE :
            _optvec.pushback("-I"," \""+op.getArgument()+"\" ",
                  (OptionItem::OPT_ACC|OptionItem::OPT_GCC));
            continue;


            // command line arguments which are not accepted as options
            // are recognized as filenames
         case OptsParser::NOOPTION :
            ++_nr_files;
            // if file is a c++ file weave it first.
            if (regex::regExMatch("^.*\\.((C)|(c)|(cc)|(cp)|(cpp)|(cxx)|(c\\+\\+))$",op.getArgument().c_str()) )
            {
               _optvec.pushback(op.getArgument(),(OptionItem::OPT_ACC|OptionItem::OPT_FILE));

               // when calling we have to pass the original path of this 
               // source dir as include path, as the '.acc' file to be 
               // compiled will probably not be generated in the same
               // directory
               string tmpStr=op.getArgument();
               file::stripFilename(tmpStr);
               if (tmpStr.empty())
               {
                  tmpStr =".";
               }
               _optvec.pushback("-I"," \""+tmpStr+"\" ",OptionItem::OPT_GCC);
            }else{
               _optvec.pushback(op.getArgument(),(OptionItem::OPT_GCC|OptionItem::OPT_FILE));
            }
            continue;
      }

      // if _x_compiler is set to 'true' interprete
      // options that are not handled within the previous
      // 'switch-case' statement as gcc options.
      if (_x_compiler == true){
         if (parseGccOpt(op)==false){
            return false;
         }
         continue;
      }


      switch (op.getResult ()) {

         case AGOPT_HELP :
            usage();
            return false;

         case AGOPT_VERSION:
            cout << "ag++ " << _VERSION <<"  built: "<<__DATE__<< endl;
            return false;


         case AGOPT_GEN_CFG :
            _pumaconfig_tmp=false;
            break;

         case AGOPT_WEAVE_ONLY :
            _weave_only=true;
            _keep_woven=true;
            break;

         case AGOPT_ACC :
            _acc_bin=op.getArgument();
            break;

         case AGOPT_CC :
            _cc_bin=op.getArgument();
            break;

         case AGOPT_KEEP_WOVEN :
            if(op.getOptionName() == "--keep_acc")
            {
               _err << sev_warning << "Usage of --keep_acc is deprecated use --keep_woven instead" << endMessage;
            }
            _keep_woven=true;
            break;

         case AGOPT_CONFIG_COMMAND :
            _config_command=op.getArgument();
            break;


         case ACOPT: // default handling for Aspect C++ options
            _optvec.pushback(op.getOptionName(),op.getArgument(),OptionItem::OPT_ACC);
            break;

         case ACOPT_INCLUDE_FILES :
            _gen_includes=true;
            break;

         case AGOPT_VERBOSE :
            _optvec.pushback("-v",op.getArgument(),OptionItem::OPT_ACC);
            if (op.getArgument().empty ()){
               // -v without number
               _verbose = 1;
            }else{
               _verbose = atoi (op.getArgument().c_str());
            }
            if(_verbose > 6){
               _optvec.pushback("-v",OptionItem::OPT_GCC);
            }
            break;

         case ACOPT_ASPECT_HEADER :
            _ah_files.push_back(op.getArgument());
            _optvec.pushback("-a"," \""+op.getArgument()+"\" ",OptionItem::OPT_ACC);
            break;

         case ACOPT_PROJ_PATH :
            _proj_path.push_back(op.getArgument());
            _optvec.pushback("-p"," \""+op.getArgument()+"\" ",OptionItem::OPT_ACC);
            break;

         case ACOPT_PROJ_DESTINATION :
            _dest_path=op.getArgument();
            // not pushed into the '_optvec' vector because:
            // - destination path is only used in WTP mode
            // - WTP mode is only used if --include_files is 
            //   specified
            break;

         case ACOPT_ALWAYS_INCLUDE :
            _dest_path=op.getArgument();
            _optvec.pushback("--include"," \""+op.getArgument()+"\" ",OptionItem::OPT_ACC);
            _optvec.pushback("-include"," \""+op.getArgument()+"\" ",OptionItem::OPT_GCC);
            break;


         case OptsParser::NOARG :
            _err << sev_error << "Option reqires argument: " ;
            _err <<"'"<<op.getOptionName().c_str() <<"'"<< endMessage;
            return false;

         case OptsParser::ERR :
            _err << sev_error << " Parsing  Options : ";
            _err << "unspecified error at " ;
            _err <<"'"<<op.getOptionName().c_str() << " " << op.getArgument().c_str() <<"'"<< endMessage;
            return false;

            // unknown options are recognized as g++ options
         case OptsParser::UNKNOWN :
            if (parseGccOpt(op)==false){
               return false;
            }
            break;

         default:
            _err << sev_error << " Parsing  Options : ";
            _err << "option not handled by Ag++ " ;
            _err <<"'"<<op.getOptionName().c_str() << " " << op.getArgument().c_str() <<"'"<< endMessage;
            return false;
      }
   }
   return true;
}


bool AGxxConfig::analyzeOptions()
{
   // if we are compiling for WIN32 target transform paths to dos 
   // format, bacause the shell(cmd.exe) can not handle unix 
   // paths
#if defined (WIN32)
   file::MakeDosPath(_acc_bin);	
   file::MakeDosPath(_cc_bin);
#endif

   // if path to ac++ was not specified in options.
   // get it from ARGV[0]
   if(_acc_bin.empty())
   {
      _acc_bin=_argv[0];
      file::stripFilename(_acc_bin);	
      _acc_bin.append("ac++");
   }

   // if there was no project path specified
   // take local directory ('.')
   if(_proj_path.empty())
   {
      _proj_path.push_back(".");
      _optvec.pushback("-p",".",OptionItem::OPT_ACC);
   }


   // check if puma config file shall be generated
   if (_make_dep == true)
   {
      _gen_pumaconfig=false;
   }
   

   // check if source files shall be woven
   if ((_make_dep == false) && (_nr_files > 0) || (_gen_includes == true))
   {
      _weave=true;
   }

   // check if source files shall be translated
   if ((_weave_only == false) && (_gen_includes == false) && (_nr_files > 0))
   {
      _compile=true;
   }
               
   // check if source files shall be linked
   if ((_weave_only == false) && (_gen_includes == false) && (_compile_only == false) && (_make_dep == false) && (_nr_files > 0) )
   {
      _link=true;
   }
  
   //
   // Check Constraints
   //
   
   // if modified include files are NOT created and only a temporary 
   // puma configuration file is generated ag++ expects some input files
   if ((_gen_includes==false) && (_pumaconfig_tmp == true) && (_nr_files==0))
   {
      _err << sev_error << "No input files"<< endMessage;
      return false;
   }

   // If modified include files are created a destination
   // path must be specified
   if (_gen_includes==true && _dest_path.empty())
   {
      _err << sev_error << "Need to specify a destination path in order "
         << "to generate modified include files" << endMessage;
      return false;
   }

   // If '--weave-only' and '-o' options are used with multiple files 
   // exit with an error
   if((_weave_only == true)  && (_output_file.empty() == false) && (_nr_files > 1))
   {
      _err << sev_error << "Cannot specify -o with --weave_only and multiple compilations"<<endMessage;
      return false;
   }
   
   return true;
}

void AGxxConfig::printOptions()
{
   VerboseMgr vm(cout,_verbose);
   vm << endvm;
   vm << endvm;
   vm << "AG++ Configuration:" << endvm;
   vm << "  Aspect C++ weaver:  " << _acc_bin << endvm;  
   vm << "  C++ compiler:       " << _cc_bin << endvm;  
   vm << "  Files:              " << _optvec.getString(OptionItem::OPT_FILE) << endvm;
   vm << "  Options (G++):      " << _optvec.getString(OptionItem::OPT_GCC,OptionItem::OPT_FILE) << endvm;
   vm << "  Options (AC++):     " << _optvec.getString(OptionItem::OPT_ACC,OptionItem::OPT_FILE) << endvm;
   vm << "  Options (total):    " << _optvec.getString() << endvm;
   vm << "  PumaConfig: " <<_gen_pumaconfig<< " Weave: "<<_weave<<" Compile: "<< _compile<<" Link: "<<_link << endvm;
   vm << endvm;
   vm << endvm;
}