| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313 |
- // Filename: cppPreprocessor.cxx
- // Created by: drose (22Oct99)
- //
- ////////////////////////////////////////////////////////////////////
- //
- // PANDA 3D SOFTWARE
- // Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
- //
- // All use of this software is subject to the terms of the Panda 3d
- // Software license. You should have received a copy of this license
- // along with this source code; you will also find a current copy of
- // the license at http://etc.cmu.edu/panda3d/docs/license/ .
- //
- // To contact the maintainers of this program write to
- // [email protected] .
- //
- ////////////////////////////////////////////////////////////////////
- #include "cppPreprocessor.h"
- #include "cppExpressionParser.h"
- #include "cppExpression.h"
- #include "cppScope.h"
- #include "cppIdentifier.h"
- #include "cppTemplateScope.h"
- #include "cppTemplateParameterList.h"
- #include "cppSimpleType.h"
- #include "cppGlobals.h"
- #include "cppCommentBlock.h"
- #include "cppBison.h"
- #include "indent.h"
- #include <assert.h>
- #include <ctype.h>
- // We manage our own visibility counter, in addition to that managed
- // by cppBison.y. We do this just so we can define manifests with the
- // correct visibility when they are declared. (Asking the parser for
- // the current visibility is prone to error, since the parser might be
- // several tokens behind the preprocessor.)
- static CPPVisibility preprocessor_vis = V_public;
- static int
- hex_val(int c) {
- switch (c) {
- case '0':
- case '1':
- case '2':
- case '3':
- case '4':
- case '5':
- case '6':
- case '7':
- case '8':
- case '9':
- return (c - '0');
- default:
- return (tolower(c) - 'a' + 10);
- }
- }
- static string
- trim_blanks(const string &str) {
- size_t first, last;
- if(str.empty())
- return str;
- first = 0;
- while (first < str.length() && isspace(str[first])) {
- first++;
- }
- last = str.length() - 1;
- while (last > first && isspace(str[last])) {
- last--;
- }
- return str.substr(first, last - first + 1);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::InputFile::Constructor
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPPreprocessor::InputFile::
- InputFile() {
- _in = NULL;
- _ignore_manifest = NULL;
- _line_number = 1;
- _col_number = 1;
- _lock_position = false;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::InputFile::Destructor
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPPreprocessor::InputFile::
- ~InputFile() {
- if (_in != NULL) {
- // For some reason--compiler bug in gcc 3.2?--explicitly deleting
- // the stream pointer does not call the appropriate global delete
- // function; instead apparently calling the system delete
- // function. So we call the delete function by hand instead.
- #ifndef USE_MEMORY_NOWRAPPERS
- _in->~istream();
- (*global_operator_delete)(_in);
- #else
- delete _in;
- #endif
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::InputFile::open
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- bool CPPPreprocessor::InputFile::
- open(const CPPFile &file) {
- assert(_in == NULL);
- _file = file;
- ifstream *in = new ifstream;
- _in = in;
- return _file._filename.open_read(*in);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::InputFile::connect_input
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- bool CPPPreprocessor::InputFile::
- connect_input(const string &input) {
- assert(_in == NULL);
- _input = input;
- _in = new istringstream(_input);
- return !_in->fail();
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::InputFile::get
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::InputFile::
- get() {
- assert(_in != NULL);
- int c = _in->get();
- // Quietly skip over embedded carriage-return characters. We
- // shouldn't see any of these unless there was some DOS-to-Unix file
- // conversion problem.
- while (c == '\r') {
- c = _in->get();
- }
- switch (c) {
- case EOF:
- break;
- case '\n':
- if (!_lock_position) {
- _line_number++;
- _col_number = 1;
- }
- break;
- default:
- if (!_lock_position) {
- _col_number++;
- }
- }
- return c;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::Constructor
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPPreprocessor::
- CPPPreprocessor() {
- _state = S_eof;
- _paren_nesting = 0;
- _angle_bracket_found = false;
- _unget = '\0';
- _last_c = '\0';
- _start_of_line = true;
- _last_cpp_comment = false;
- _save_comments = true;
- _resolve_identifiers = true;
- _warning_count = 0;
- _error_count = 0;
- #ifdef CPP_VERBOSE_LEX
- _token_index = 0;
- #endif
- _verbose = 1;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::set_verbose
- // Access: Public
- // Description: Sets the verbosity level of the parser. At 0, no
- // warnings will be reported; at 1 or higher, expect to
- // get spammed.
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- set_verbose(int verbose) {
- _verbose = verbose;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_verbose
- // Access: Public
- // Description: Returns the verbosity level of the parser.
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- get_verbose() const {
- return _verbose;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::copy_filepos
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- copy_filepos(const CPPPreprocessor &other) {
- assert(!_files.empty());
- _files.back()._file = other.get_file();
- _files.back()._line_number = other.get_line_number();
- _files.back()._col_number = other.get_col_number();
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_file
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPFile CPPPreprocessor::
- get_file() const {
- if (_files.empty()) {
- return CPPFile("");
- }
- return _files.back()._file;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_line_number
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- get_line_number() const {
- if (_files.empty()) {
- return 0;
- }
- return _files.back()._line_number;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_col_number
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- get_col_number() const {
- if (_files.empty()) {
- return 0;
- }
- return _files.back()._col_number;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_next_token
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPToken CPPPreprocessor::
- get_next_token() {
- #ifdef CPP_VERBOSE_LEX
- CPPToken tok = get_next_token0();
- indent(cerr, _files.size() * 2)
- << _token_index++ << ". " << tok << "\n";
- return tok;
- }
- CPPToken CPPPreprocessor::
- get_next_token0() {
- #endif
- // We make a nested call to internal_get_next_token(), so we can
- // combine sequences of identifiers and scoping symbols into a
- // single identifier, for yacc's convenience.
- CPPToken token(0);
- if (!_saved_tokens.empty()) {
- token = _saved_tokens.back();
- _saved_tokens.pop_back();
- } else {
- token = internal_get_next_token();
- }
- int first_line = token._lloc.first_line;
- int first_col = token._lloc.first_column;
- CPPFile first_file = token._lloc.file;
- if (token._token == '#') {
- // Stringify.
- token = internal_get_next_token();
- if (token._token == SIMPLE_IDENTIFIER || token._token == STRING) {
- token._token = STRING;
- } else {
- // Stringify nothing.
- _saved_tokens.push_back(token);
- token._token = STRING;
- token._lval.str = "";
- }
- }
- if (_resolve_identifiers &&
- (token._token == SIMPLE_IDENTIFIER || token._token == SCOPE)) {
- // We will be returning a scoped identifier, or a scoping. Keep
- // pulling off tokens until we reach the end of the
- // scope/identifier sequence.
- string name;
- // If we started the ball with an identifier, use it and get the
- // next token. Otherwise, we started with :: (global scope), and
- // we indicate this with an empty string at the beginning of the
- // scoping sequence.
- if (token._token == SIMPLE_IDENTIFIER) {
- name = token._lval.str;
- token = internal_get_next_token();
- }
- CPPIdentifier *ident = new CPPIdentifier(name, token._lloc.file);
- YYSTYPE result;
- result.u.identifier = ident;
- if (token._token == '<') {
- // If the next token is an angle bracket and the current
- // identifier wants template instantiation, assume the angle
- // bracket begins the instantiation and call yacc recursively to
- // parse the template parameters.
- CPPDeclaration *decl = ident->find_template(current_scope, global_scope);
- if (decl != NULL) {
- ident->_names.back().set_templ
- (nested_parse_template_instantiation(decl->get_template_scope()));
- token = internal_get_next_token();
- }
- }
- while (token._token == SCOPE || token._token == TOKENPASTE) {
- if (token._token == TOKENPASTE) {
- // The token-pasting operator creates one continuous
- // identifier across whitespace.
- token = internal_get_next_token();
- if (token._token == SIMPLE_IDENTIFIER) {
- name += token._lval.str;
- ident->_names.back().append_name(token._lval.str);
- token = internal_get_next_token();
- } else {
- // Token-paste with nothing.
- }
- } else { // token._token == SCOPE
- name += "::";
- token = internal_get_next_token();
- string token_prefix;
- if (token._token == '~') {
- // A scoping operator followed by a tilde can only be the
- // start of a scoped destructor name. Make the tilde be part
- // of the name.
- name += "~";
- token_prefix = "~";
- token = internal_get_next_token();
- }
- if (token._token != SIMPLE_IDENTIFIER) {
- // The last useful token was a SCOPE, thus this is a scoping
- // token.
- if (token._token == KW_OPERATOR) {
- // Unless the last token we came across was the "operator"
- // keyword. We make a special case for this, because it's
- // occasionally scoped in normal use.
- token._lval = result;
- return token;
- }
- _saved_tokens.push_back(token);
- return CPPToken(SCOPING, first_line, first_col, first_file,
- name, result);
- }
- name += token._lval.str;
- ident->_names.push_back(token_prefix + token._lval.str);
- token = internal_get_next_token();
- }
- if (token._token == '<') {
- // If the next token is an angle bracket and the current
- // indentifier wants template instantiation, assume the angle
- // bracket begins the instantiation and call yacc recursively to
- // parse the template parameters.
- CPPDeclaration *decl =
- ident->find_template(current_scope, global_scope);
- if (decl != NULL) {
- ident->_names.back().set_templ
- (nested_parse_template_instantiation(decl->get_template_scope()));
- token = internal_get_next_token();
- }
- }
- }
- // The last useful token was a SIMPLE_IDENTIFIER, thus this is a
- // normal scoped identifier.
- _saved_tokens.push_back(token);
- int token_type = IDENTIFIER;
- CPPDeclaration *decl = ident->find_symbol(current_scope, global_scope);
- if (decl != NULL &&
- (decl->as_typedef() != NULL || decl->as_type() != NULL)) {
- token_type = TYPENAME_IDENTIFIER;
- }
- return CPPToken(token_type, first_line, first_col, first_file,
- name, result);
- }
- // This is the normal case: just pass through whatever token we got.
- return token;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::warning
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- warning(const string &message, int line, int col, CPPFile file) {
- if (_verbose >= 2) {
- if (line == 0) {
- line = get_line_number();
- col = get_col_number();
- }
- if (file.empty()) {
- file = get_file();
- }
- indent(cerr, _files.size() * 2)
- << "*** Warning in " << file
- << " near line " << line << ", column " << col << ":\n";
- indent(cerr, _files.size() * 2)
- << message << "\n";
- }
- _warning_count++;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::error
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- error(const string &message, int line, int col, CPPFile file) {
- if (_state == S_nested || _state == S_end_nested) {
- // Don't report or log errors in the nested state. These will be
- // reported when the nesting level collapses.
- return;
- };
- if (_verbose >= 1) {
- if (line == 0) {
- line = get_line_number();
- col = get_col_number();
- }
- if (file.empty()) {
- file = get_file();
- }
- indent(cerr, _files.size() * 2)
- << "*** Error in " << file
- << " near line " << line << ", column " << col << ":\n";
- indent(cerr, _files.size() * 2)
- << message << "\n";
- }
- _error_count++;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_warning_count
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- get_warning_count() const {
- return _warning_count;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_error_count
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- get_error_count() const {
- return _error_count;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_comment_before
- // Access: Public
- // Description: Returns the CPPCommentBlock immediately preceding the
- // indicated line, if any. If there is no such comment,
- // returns NULL.
- ////////////////////////////////////////////////////////////////////
- CPPCommentBlock *CPPPreprocessor::
- get_comment_before(int line, CPPFile file) {
- CPPComments::reverse_iterator ci;
- ci = _comments.rbegin();
- int wrong_file_count = 0;
- while (ci != _comments.rend()) {
- CPPCommentBlock *comment = (*ci);
- if (comment->_file == file) {
- wrong_file_count = 0;
- if (comment->_last_line == line || comment->_last_line == line - 1) {
- return comment;
- }
- if (comment->_last_line < line) {
- return (CPPCommentBlock *)NULL;
- }
- } else {
- wrong_file_count++;
- if (wrong_file_count > 10) {
- return (CPPCommentBlock *)NULL;
- }
- }
- ++ci;
- }
- return (CPPCommentBlock *)NULL;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::init_cpp
- // Access: Protected
- // Description:
- ////////////////////////////////////////////////////////////////////
- bool CPPPreprocessor::
- init_cpp(const CPPFile &file) {
- _state = S_normal;
- _saved_tokens.push_back(CPPToken(START_CPP));
- _last_c = '\0';
- return push_file(file);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::init_const_expr
- // Access: Protected
- // Description:
- ////////////////////////////////////////////////////////////////////
- bool CPPPreprocessor::
- init_const_expr(const string &expr) {
- _state = S_normal;
- _saved_tokens.push_back(CPPToken(START_CONST_EXPR));
- return push_string(expr, false);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::init_type
- // Access: Protected
- // Description:
- ////////////////////////////////////////////////////////////////////
- bool CPPPreprocessor::
- init_type(const string &type) {
- _state = S_normal;
- _saved_tokens.push_back(CPPToken(START_TYPE));
- return push_string(type, false);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::push_file
- // Access: Protected
- // Description:
- ////////////////////////////////////////////////////////////////////
- bool CPPPreprocessor::
- push_file(const CPPFile &file) {
- if (_verbose >= 2) {
- indent(cerr, _files.size() * 2)
- << "Reading " << file << "\n";
- }
- _files.push_back(InputFile());
- InputFile &infile = _files.back();
- if (infile.open(file)) {
- // Record the fact that we opened the file for the benefit of user
- // code.
- _parsed_files.insert(file);
- infile._prev_last_c = _last_c;
- _last_c = '\0';
- _start_of_line = true;
- return true;
- }
- _files.pop_back();
- return false;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::push_string
- // Access: Protected
- // Description:
- ////////////////////////////////////////////////////////////////////
- bool CPPPreprocessor::
- push_string(const string &input, bool lock_position) {
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "Pushing to string \"" << input
- << "\"\nlock_position = " << lock_position << "\n";
- #endif
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- _files.push_back(InputFile());
- InputFile &infile = _files.back();
- if (infile.connect_input(input)) {
- if (lock_position) {
- infile._file = first_file;
- infile._line_number = first_line;
- infile._col_number = first_col;
- infile._lock_position = true;
- }
- infile._prev_last_c = _last_c;
- _last_c = '\0';
- return true;
- }
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "Unable to read string\n";
- #endif
- _files.pop_back();
- return false;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::expand_manifests
- // Access: Protected
- // Description: Given a string, expand all manifests within the
- // string and return the new string.
- ////////////////////////////////////////////////////////////////////
- string CPPPreprocessor::
- expand_manifests(const string &input_expr) {
- // Get a copy of the expression string we can modify.
- string expr = input_expr;
- // Repeatedly scan the expr for any manifest names or defined()
- // function.
- // We'll need to save the set of manifests we've already expanded,
- // to guard against recursive references.
- set<const CPPManifest *> already_expanded;
- bool manifest_found;
- do {
- manifest_found = false;
- size_t p = 0;
- while (p < expr.size()) {
- if (isalpha(expr[p]) || expr[p] == '_') {
- size_t q = p;
- while (p < expr.size() && (isalnum(expr[p]) || expr[p] == '_')) {
- p++;
- }
- string ident = expr.substr(q, p - q);
- // Here's an identifier. Is it "defined"?
- if (ident == "defined") {
- expand_defined_function(expr, q, p);
- } else {
- // Is it a manifest?
- Manifests::const_iterator mi = _manifests.find(ident);
- if (mi != _manifests.end()) {
- const CPPManifest *manifest = (*mi).second;
- if (already_expanded.insert(manifest).second) {
- expand_manifest_inline(expr, q, p, (*mi).second);
- manifest_found = true;
- }
- }
- }
- } else {
- p++;
- }
- }
- // If we expanded any manifests at all that time, then go back
- // through the string and look again--we might have a manifest
- // that expands to another manifest.
- } while (manifest_found);
- return expr;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::parse_expr
- // Access: Protected
- // Description: Given a string, expand all manifests within the
- // string and evaluate it as an expression. Returns
- // NULL if the string is not a valid expression.
- //
- // This is an internal support function for
- // CPPPreprocessor; however, there is a public variant
- // of this function defined for CPPParser.
- ////////////////////////////////////////////////////////////////////
- CPPExpression *CPPPreprocessor::
- parse_expr(const string &input_expr, CPPScope *current_scope,
- CPPScope *global_scope) {
- string expr = expand_manifests(input_expr);
- CPPExpressionParser ep(current_scope, global_scope);
- ep._verbose = 0;
- if (ep.parse_expr(expr, *this)) {
- return ep._expr;
- } else {
- return (CPPExpression *)NULL;
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::internal_get_next_token
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPToken CPPPreprocessor::
- internal_get_next_token() {
- if (_state == S_eof || _state == S_end_nested) {
- return CPPToken::eof();
- }
- int c = _last_c;
- _last_c = '\0';
- if (c == '\0' || c == EOF) {
- c = get();
- }
- // Skip any whitespace, comments, and preprocessor directives before
- // the token.
- c = skip_whitespace(c);
- while (c == '#' && _start_of_line && !should_ignore_preprocessor()) {
- c = skip_whitespace(process_directive(c));
- }
- if (c == '\'') {
- return get_quoted_char(c);
- } else if (c == '"') {
- return get_quoted_string(c);
- } else if (isalpha(c) || c == '_') {
- return get_identifier(c);
- } else if (isdigit(c)) {
- return get_number(c);
- }
- _last_c = c;
- if (c == EOF) {
- _state = S_eof;
- return CPPToken::eof();
- }
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- // Check for a number beginning with a decimal point.
- int next_c = get();
- if (c == '.' && isdigit(next_c)) {
- return get_number(c, next_c);
- }
- // Check for two- or three-character tokens.
- _last_c = get();
- switch (c) {
- case '+':
- if (next_c == '+') return CPPToken(PLUSPLUS, first_line, first_col, first_file);
- if (next_c == '=') return CPPToken(PLUSEQUAL, first_line, first_col, first_file);
- break;
- case '-':
- if (next_c == '-') return CPPToken(MINUSMINUS, first_line, first_col, first_file);
- if (next_c == '=') return CPPToken(MINUSEQUAL, first_line, first_col, first_file);
- if (next_c == '>' && _last_c == '*') {
- _last_c = get();
- return CPPToken(POINTSAT_STAR, first_line, first_col, first_file);
- }
- if (next_c == '>') return CPPToken(POINTSAT, first_line, first_col, first_file);
- break;
- case '<':
- if (next_c == '<' && _last_c == '=') {
- _last_c = get();
- return CPPToken(LSHIFTEQUAL, first_line, first_col, first_file);
- }
- if (next_c == '<') return CPPToken(LSHIFT, first_line, first_col, first_file);
- if (next_c == '=') return CPPToken(LECOMPARE, first_line, first_col, first_file);
- break;
- case '>':
- if (next_c == '>' && _last_c == '=') {
- _last_c = get();
- return CPPToken(RSHIFTEQUAL, first_line, first_col, first_file);
- }
- if (next_c == '>') return CPPToken(RSHIFT, first_line, first_col, first_file);
- if (next_c == '=') return CPPToken(GECOMPARE, first_line, first_col, first_file);
- break;
- case '|':
- if (next_c == '|') return CPPToken(OROR, first_line, first_col, first_file);
- if (next_c == '=') return CPPToken(OREQUAL, first_line, first_col, first_file);
- break;
- case '&':
- if (next_c == '&') return CPPToken(ANDAND, first_line, first_col, first_file);
- if (next_c == '=') return CPPToken(ANDEQUAL, first_line, first_col, first_file);
- break;
- case '^':
- if (next_c == '=') return CPPToken(XOREQUAL, first_line, first_col, first_file);
- break;
- case '=':
- if (next_c == '=') return CPPToken(EQCOMPARE, first_line, first_col, first_file);
- break;
- case '!':
- if (next_c == '=') return CPPToken(NECOMPARE, first_line, first_col, first_file);
- break;
- case '.':
- if (next_c == '*') return CPPToken(DOT_STAR, first_line, first_col, first_file);
- if (next_c == '.' && _last_c == '.') {
- _last_c = get();
- return CPPToken(ELLIPSIS, first_line, first_col, first_file);
- }
- break;
- case ':':
- if (next_c == ':') return CPPToken(SCOPE, first_line, first_col, first_file);
- break;
- case '*':
- if (next_c == '=') return CPPToken(TIMESEQUAL, first_line, first_col, first_file);
- break;
- case '/':
- if (next_c == '=') return CPPToken(DIVIDEEQUAL, first_line, first_col, first_file);
- break;
- case '%':
- if (next_c == '=') return CPPToken(MODEQUAL, first_line, first_col, first_file);
- break;
- // These are actually preprocessor operators, but it's useful to
- // treat them as tokens.
- case '#':
- if (next_c == '#') return CPPToken(TOKENPASTE, first_line, first_col, first_file);
- }
- // It wasn't any of the two- or three-character tokens, so put back
- // the lookahead character and return the one-character token.
- unget(_last_c);
- _last_c = next_c;
- if (_state == S_nested) {
- // If we're running a nested lexer, keep track of the paren
- // levels. When we encounter a comma or closing angle bracket at
- // the bottom level, we stop.
- switch (c) {
- case '(':
- case '[':
- _paren_nesting++;
- break;
- case ')':
- case ']':
- _paren_nesting--;
- break;
- case ',':
- if (_paren_nesting <= 0) {
- _state = S_end_nested;
- return CPPToken::eof();
- }
- break;
- case '>':
- if (_paren_nesting <= 0) {
- _angle_bracket_found = true;
- _state = S_end_nested;
- return CPPToken::eof();
- }
- }
- }
- return CPPToken(c, first_line, first_col, first_file);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::skip_whitespace
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- skip_whitespace(int c) {
- while (c != EOF) {
- c = skip_comment(c);
- if (c == '\\') {
- // A backslash character is an unusual thing to encounter in the
- // middle of unquoted C++ code. But it seems to be legal, and
- // it seems to mean the same thing it does within quotes: to
- // escape the following character. We simply ignore it.
- c = get();
- }
- if (!isspace(c)) {
- return c;
- }
- c = get();
- }
- return c;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::skip_comment
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- skip_comment(int c) {
- if (c == '/') {
- int next_c = get();
- if (next_c == '*') {
- _last_cpp_comment = false;
- c = skip_c_comment(get());
- } else if (next_c == '/') {
- c = skip_cpp_comment(get());
- } else {
- _last_cpp_comment = false;
- unget(next_c);
- return c;
- }
- }
- if (!isspace(c)) {
- _last_cpp_comment = false;
- }
- return c;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::skip_c_comment
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- skip_c_comment(int c) {
- if (_save_comments) {
- CPPCommentBlock *comment = new CPPCommentBlock;
- _comments.push_back(comment);
- comment->_file = get_file();
- comment->_line_number = get_line_number();
- comment->_last_line = get_line_number();
- comment->_col_number = get_col_number() - 2;
- comment->_c_style = true;
- comment->_comment = "/*";
- while (c != EOF) {
- if (c == '*') {
- comment->_comment += c;
- c = get();
- if (c == '/') {
- comment->_comment += c;
- comment->_last_line = get_line_number();
- return get();
- }
- } else {
- comment->_comment += c;
- c = get();
- }
- }
- warning("Comment is unterminated",
- comment->_line_number, comment->_col_number,
- comment->_file);
- } else {
- CPPFile first_file = get_file();
- int first_line_number = get_line_number();
- int first_col_number = get_col_number() - 2;
- while (c != EOF) {
- if (c == '*') {
- c = get();
- if (c == '/') {
- return get();
- }
- } else {
- c = get();
- }
- }
- warning("Comment is unterminated",
- first_line_number, first_col_number,
- first_file);
- }
- return c;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::skip_cpp_comment
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- skip_cpp_comment(int c) {
- if (_save_comments) {
- CPPCommentBlock *comment;
- if (_last_cpp_comment) {
- // If the last non-whitespace character read was also part of a
- // C++ comment, then this is just a continuation of that comment
- // block.
- assert(!_comments.empty());
- comment = _comments.back();
- assert(!comment->_c_style);
- comment->_comment += "//";
- } else {
- // Otherwise, this begins a new comment block.
- comment = new CPPCommentBlock;
- comment->_file = get_file();
- comment->_line_number = get_line_number();
- comment->_last_line = get_line_number();
- comment->_col_number = get_col_number() - 2;
- comment->_c_style = false;
- comment->_comment = "//";
- _comments.push_back(comment);
- }
- while (c != EOF && c != '\n') {
- comment->_comment += c;
- c = get();
- }
- comment->_comment += '\n';
- comment->_last_line = get_line_number();
- _last_cpp_comment = true;
- } else {
- while (c != EOF && c != '\n') {
- c = get();
- }
- }
- return c;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::process_directive
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- process_directive(int c) {
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- string command, args;
- c = get_preprocessor_command(c, command);
- c = get_preprocessor_args(c, args);
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "#" << command << " " << args << "\n";
- #endif
- if (command == "define") {
- handle_define_directive(args, first_line, first_col, first_file);
- } else if (command == "undef") {
- handle_undef_directive(args, first_line, first_col, first_file);
- } else if (command == "ifdef") {
- handle_ifdef_directive(args, first_line, first_col, first_file);
- } else if (command == "ifndef") {
- handle_ifndef_directive(args, first_line, first_col, first_file);
- } else if (command == "if") {
- handle_if_directive(args, first_line, first_col, first_file);
- } else if (command == "else" || command == "elif") {
- // Presumably this follows some #if or #ifdef. We don't bother to
- // check this, however.
- skip_false_if_block(false);
- } else if (command == "endif") {
- // Presumably this follows some #if or #ifdef. We don't bother to
- // check this, however.
- } else if (command == "include") {
- handle_include_directive(args, first_line, first_col, first_file);
- } else if (command == "pragma") {
- // Quietly ignore pragmas.
- } else if (command == "ident") {
- // Quietly ignore idents.
- } else if (command == "error") {
- handle_error_directive(args, first_line, first_col, first_file);
- } else {
- warning("Ignoring unknown directive #" + command,
- first_line, first_col, first_file);
- }
- _start_of_line = true;
- return '\n';
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_preprocessor_command
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- get_preprocessor_command(int c, string &command) {
- // Skip the hash mark.
- assert(c == '#');
- c = get();
- // Also skip any whitespace following the hash mark--but don't skip
- // past a newline.
- while (c != EOF && (c == ' ' || c == '\t')) {
- c = get();
- }
- // The next sequence of characters is the command.
- while (c != EOF && (isalnum(c) || c == '_')) {
- command += c;
- c = get();
- }
- return c;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_preprocessor_args
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- get_preprocessor_args(int c, string &args) {
- // Following the command, the rest of the line, as well as any text
- // on successive lines, is part of the arguments to the command.
- while (c != EOF && c != '\n') {
- if (c == '\\') {
- int next_c = get();
- if (next_c == '\n') {
- // Here we have an escaped newline: a continuation.
- args += '\n';
- } else {
- // Just a backslash followed by some non-backslash, keep both.
- args += c;
- if (next_c != EOF) {
- args += next_c;
- }
- }
- } else {
- args += c;
- }
- c = skip_comment(get());
- }
- // Remove any leading and trailing whitespace from the args.
- args = trim_blanks(args);
- return c;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::handle_define_directive
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- handle_define_directive(const string &args, int first_line,
- int first_col, const CPPFile &first_file) {
- if (args.empty()) {
- warning("Ignoring empty #define directive",
- first_line, first_col, first_file);
- } else {
- CPPManifest *manifest = new CPPManifest(args, first_file);
- manifest->_vis = preprocessor_vis;
- if (!manifest->_has_parameters) {
- string expr_string = manifest->expand();
- if (!expr_string.empty()) {
- manifest->_expr = parse_expr(expr_string, global_scope, global_scope);
- }
- }
- // ok one memory leak here..
- Manifests::iterator mi = _manifests.find(manifest->_name);
- if(mi != _manifests.end())
- {
- // i do not see a goodway to compare the old and new hmmmm
- //cerr << "Warning Overwriting Constant " << manifest->_name << "\n";
- delete mi->second;
- }
- _manifests[manifest->_name] = manifest;
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::handle_undef_directive
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- handle_undef_directive(const string &args, int first_line,
- int first_col, const CPPFile &first_file) {
- if (args.empty()) {
- warning("Ignoring empty #undef directive",
- first_line, first_col, first_file);
- } else {
- Manifests::iterator mi = _manifests.find(args);
- if (mi != _manifests.end()) {
- _manifests.erase(mi);
- }
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::handle_ifdef_directive
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- handle_ifdef_directive(const string &args, int, int, const CPPFile &) {
- Manifests::const_iterator mi = _manifests.find(args);
- if (mi != _manifests.end()) {
- // The macro is defined. We continue.
- return;
- }
- // The macro is undefined. Skip stuff.
- skip_false_if_block(true);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::handle_ifndef_directive
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- handle_ifndef_directive(const string &args, int, int, const CPPFile &) {
- Manifests::const_iterator mi = _manifests.find(args);
- if (mi == _manifests.end()) {
- // The macro is undefined. We continue.
- return;
- }
- // The macro is defined. Skip stuff.
- skip_false_if_block(true);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::handle_if_directive
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- handle_if_directive(const string &args, int first_line,
- int first_col, const CPPFile &first_file) {
- CPPExpression *expr = parse_expr(args, global_scope, global_scope);
- int expression_result = 0;
- if (expr != (CPPExpression *)NULL) {
- CPPExpression::Result result = expr->evaluate();
- if (result._type == CPPExpression::RT_error) {
- warning("Ignoring invalid expression " + args,
- first_line, first_col, first_file);
- } else {
- expression_result = result.as_integer();
- }
- } else {
- warning("Ignoring invalid expression " + args,
- first_line, first_col, first_file);
- }
- if (expression_result) {
- // The expression result is true. We continue.
- return;
- }
- // The expression result is false. Skip stuff.
- skip_false_if_block(true);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::handle_include_directive
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- handle_include_directive(const string &args, int first_line,
- int first_col, const CPPFile &first_file) {
- bool okflag = false;
- Filename filename;
- Filename filename_as_referenced;
- bool angle_quotes = false;
- string expr = args;
- // The filename to include might actually be hidden within a
- // manifest definition. Wow. FreeType depends on this.
- // Just to play things safe, since our manifest-expansion logic
- // might not filter out quotes and angle brackets properly, we'll
- // only expand manifests if we don't begin with a quote or bracket.
- if (!expr.empty() && (expr[0] != '"' && expr[0] != '<')) {
- expr = expand_manifests(expr);
- }
- if (!expr.empty()) {
- if (expr[0] == '"' && expr[expr.size() - 1] == '"') {
- filename = expr.substr(1, expr.size() - 2);
- okflag = true;
- if (_files.size() == 1) {
- // If we're currently processing a top-level file, record the
- // include directive. We don't need to record includes from
- // included files.
- _quote_includes.insert(filename);
- }
- } else if (expr[0] == '<' && expr[expr.size() - 1] == '>') {
- filename = expr.substr(1, expr.size() - 2);
- angle_quotes = true;
- okflag = true;
- if (_files.size() == 1) {
- // If we're currently processing a top-level file, record the
- // include directive. We don't need to record includes from
- // included files.
- _angle_includes.insert(filename);
- }
- }
- }
- filename.set_text();
- filename_as_referenced = filename;
- // Now look for the filename. If we didn't use angle quotes, look
- // first in the current directory.
- bool found_file = false;
- CPPFile::Source source = CPPFile::S_none;
- if (okflag) {
- if (!angle_quotes) {
- found_file = filename.exists();
- source = CPPFile::S_local;
- }
- // Now look for it on the include path.
- if (!found_file && filename.resolve_filename(_system_include_path)) {
- found_file = true;
- source = CPPFile::S_system;
- }
- if (!found_file && filename.resolve_filename(_include_path)) {
- found_file = true;
- source = CPPFile::S_alternate;
- }
- if (!found_file) {
- warning("Cannot find " + filename.get_fullpath(),
- first_line, first_col, first_file);
- } else {
- _last_c = '\0';
- if (!push_file(CPPFile(filename, filename_as_referenced, source))) {
- warning("Unable to read " + filename.get_fullpath(),
- first_line, first_col, first_file);
- }
- }
- } else {
- warning("Ignoring invalid #include directive",
- first_line, first_col, first_file);
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::handle_error_directive
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- handle_error_directive(const string &args, int first_line,
- int first_col, const CPPFile &first_file) {
- error(args, first_line, first_col, first_file);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::skip_false_if_block
- // Access: Private
- // Description: We come here when we fail an #if or an #ifdef test,
- // or when we reach the #else clause to something we
- // didn't fail. This function skips all text up until
- // the matching #endif.
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- skip_false_if_block(bool consider_elifs) {
- int level = 0;
- _save_comments = false;
- int c = skip_comment(get());
- while (c != EOF) {
- if (c == '#' && _start_of_line) {
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- // Is this it?
- string command;
- c = get_preprocessor_command(c, command);
- if (command == "if" || command == "ifdef" || command == "ifndef") {
- // Hmm, a nested if block. Even more to skip.
- level++;
- } else if (command == "else") {
- if (level == 0 && consider_elifs) {
- // This will do!
- _save_comments = true;
- return;
- }
- } else if (command == "elif") {
- if (level == 0 && consider_elifs) {
- // If we pass this test, we're in.
- _save_comments = true;
- string args;
- c = get_preprocessor_args(c, args);
- handle_if_directive(args, first_line, first_col, first_file);
- return;
- }
- } else if (command == "endif") {
- if (level == 0) {
- // Here's the end!
- _save_comments = true;
- return;
- }
- level--;
- }
- } else {
- c = skip_comment(get());
- }
- }
- _save_comments = true;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_quoted_char
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPToken CPPPreprocessor::
- get_quoted_char(int c) {
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- string str = scan_quoted(c);
- YYSTYPE result;
- if (!str.empty()) {
- result.u.integer = (int)str[0];
- } else {
- result.u.integer = 0;
- }
- return CPPToken(CHAR_TOK, first_line, first_col, first_file, str, result);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_quoted_string
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPToken CPPPreprocessor::
- get_quoted_string(int c) {
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- string str = scan_quoted(c);
- return CPPToken(STRING, first_line, first_col, first_file, str);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_identifier
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPToken CPPPreprocessor::
- get_identifier(int c) {
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- string name(1, (char)c);
- c = get();
- while (c != EOF && (isalnum(c) || c == '_')) {
- name += c;
- c = get();
- }
- _last_c = c;
- // Is it a manifest?
- Manifests::const_iterator mi = _manifests.find(name);
- if (mi != _manifests.end() && !should_ignore_manifest((*mi).second)) {
- return expand_manifest((*mi).second);
- }
- // Check for keywords.
- int kw = check_keyword(name);
- // Update our internal visibility flag.
- switch (kw) {
- case KW_BEGIN_PUBLISH:
- preprocessor_vis = V_published;
- break;
- case KW_END_PUBLISH:
- preprocessor_vis = V_public;
- break;
- }
- if (kw != 0) {
- YYSTYPE result;
- result.u.identifier = (CPPIdentifier *)NULL;
- return CPPToken(kw, first_line, first_col, first_file, name, result);
- }
- return CPPToken(SIMPLE_IDENTIFIER, first_line, first_col, first_file,
- name);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::expand_manifest
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPToken CPPPreprocessor::
- expand_manifest(const CPPManifest *manifest) {
- vector_string args;
- if (manifest->_has_parameters) {
- // Hmm, we're expecting arguments.
- extract_manifest_args(manifest->_name, manifest->_num_parameters, args);
- }
- string expanded = " " + manifest->expand(args) + " ";
- push_string(expanded, true);
- if (!manifest->_has_parameters) {
- // If the manifest does not use arguments, then disallow recursive
- // expansion.
- _files.back()._ignore_manifest = manifest;
- }
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "Expanding " << manifest->_name << " to " << expanded << "\n";
- #endif
- return internal_get_next_token();
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::extract_manifest_args
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- extract_manifest_args(const string &name, int num_args,
- vector_string &args) {
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- // Skip whitespace till paren.
- int c = _last_c;
- _last_c = '\0';
- while (c != EOF && isspace(c)) {
- c = get();
- }
- if (c != '(') {
- // No paren, so we have only one arg.
- string arg;
- while (c != EOF && (isalnum(c) || c == '_')) {
- arg += c;
- c = get();
- }
- args.push_back(arg);
- } else {
- // Skip paren.
- c = get();
- string arg;
- while (c != EOF && c != ')') {
- if (c == ',') {
- args.push_back(arg);
- arg = "";
- } else if (c == '"' || c == '\'') {
- // Quoted string or character.
- int quote_mark = c;
- arg += c;
- c = get();
- while (c != EOF && c != quote_mark && c != '\n') {
- if (c == '\\') {
- arg += c;
- c = get();
- }
- if (c != EOF) {
- arg += c;
- c = get();
- }
- }
- arg += c;
- } else if (c == '(') {
- // Nested parens.
- int paren_level = 1;
- while (c != EOF && paren_level > 0) {
- arg += c;
- c = get();
- if (c == '(') {
- paren_level++;
- } else if (c == ')') {
- paren_level--;
- }
- }
- if (c != EOF) {
- arg += c;
- }
- } else {
- arg += c;
- }
- c = get();
- }
- if (num_args != 0 || !arg.empty()) {
- args.push_back(arg);
- }
- }
- if ((int)args.size() != num_args) {
- warning("Wrong number of arguments for manifest " + name,
- first_line, first_col, first_file);
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::expand_defined_function
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- expand_defined_function(string &expr, size_t q, size_t &p) {
- string result;
- vector_string args;
- extract_manifest_args_inline("defined", 1, args, expr, p);
- if (args.size() >= 1) {
- const string &manifest_name = args[0];
- Manifests::const_iterator mi = _manifests.find(manifest_name);
- if (mi != _manifests.end()) {
- // The macro is defined; the result is "1".
- result = "1";
- } else {
- // The macro is undefined; the result is "0".
- result = "0";
- }
- }
- expr = expr.substr(0, q) + result + expr.substr(p);
- p = q + result.size();
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::expand_manifest_inline
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- expand_manifest_inline(string &expr, size_t q, size_t &p,
- const CPPManifest *manifest) {
- vector_string args;
- if (manifest->_has_parameters) {
- extract_manifest_args_inline(manifest->_name, manifest->_num_parameters,
- args, expr, p);
- }
- string result = manifest->expand(args);
- expr = expr.substr(0, q) + result + expr.substr(p);
- p = q + result.size();
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::extract_manifest_args_inline
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- extract_manifest_args_inline(const string &name, int num_args,
- vector_string &args,
- const string &expr, size_t &p) {
- // Skip whitespace till paren.
- while (p < expr.size() && isspace(expr[p])) {
- p++;
- }
- if (p >= expr.size() || expr[p] != '(') {
- // No paren, so we have only one arg.
- size_t q = p;
- while (p < expr.size() && (isalnum(expr[p]) || expr[p] == '_')) {
- p++;
- }
- args.push_back(expr.substr(q, p - q));
- } else if (expr[p] == '"' || expr[p] == '\'') {
- // Quoted string or character.
- int quote_mark = expr[p];
- p++;
- while (p < expr.size() && expr[p] != quote_mark && expr[p] != '\n') {
- if (expr[p] == '\\') {
- p++;
- }
- if (p < expr.size()) {
- p++;
- }
- }
- p++;
-
- } else {
- // Skip paren.
- p++;
- size_t q = p;
- while (p < expr.size() && expr[p] != ')') {
- if (expr[p] == ',') {
- args.push_back(expr.substr(q, p - q));
- q = p+1;
- } else if (expr[p] == '(') {
- // Nested parens.
- int paren_level = 1;
- while (p+1 < expr.size() && paren_level > 0) {
- p++;
- if (expr[p] == '(') {
- paren_level++;
- } else if (expr[p] == ')') {
- paren_level--;
- }
- }
- }
- p++;
- }
- args.push_back(expr.substr(q, p - q));
- if (p < expr.size() && expr[p] == ')') {
- p++;
- }
- }
- if ((int)args.size() != num_args) {
- warning("Wrong number of arguments for manifest " + name);
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get_number
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- CPPToken CPPPreprocessor::
- get_number(int c, int c2) {
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- string num(1, (char)c);
- bool leading_zero = (c == '0');
- bool decimal_point = (c == '.');
- if (c2 == 0) {
- c = get();
- } else {
- c = c2;
- }
- if (leading_zero && c == 'x') {
- // Here we have a hex number.
- num += c;
- c = get();
- while (c != EOF && (isdigit(c) || (tolower(c) >= 'a' && tolower(c) <= 'f'))) {
- num += c;
- c = get();
- }
- while (c == 'L' || c == 'U') {
- // We allow (and ignore) an 'L' and/or 'U' following the number.
- c = get();
- }
- _last_c = c;
- YYSTYPE result;
- result.u.integer = strtol(num.c_str(), (char **)NULL, 16);
- return CPPToken(INTEGER, first_line, first_col, first_file, num, result);
- }
- while (c != EOF && isdigit(c)) {
- num += c;
- c = get();
- }
- if (c == '.' && !decimal_point) {
- // Now we have a floating-point number.
- decimal_point = true;
- num += c;
- c = get();
- while (c != EOF && isdigit(c)) {
- num += c;
- c = get();
- }
- }
- if (decimal_point) {
- if (tolower(c) == 'e') {
- // An exponent is allowed.
- num += c;
- c = get();
- if (c == '-' || c == '+') {
- num += c;
- c = get();
- }
- while (c != EOF && isdigit(c)) {
- num += c;
- c = get();
- }
- }
- if (c == 'f') {
- // We allow (and ignore) an 'f' following the number.
- c = get();
- }
- _last_c = c;
- YYSTYPE result;
- result.u.real = strtod(num.c_str(), (char **)NULL);
- return CPPToken(REAL, first_line, first_col, first_file, num, result);
- }
- // This is a decimal or octal integer number.
- while (c == 'L' || c == 'U') {
- // We allow (and ignore) an 'L' and/or 'U' following the number.
- c = get();
- }
- _last_c = c;
- YYSTYPE result;
- if (leading_zero) {
- // A leading zero implies an octal number. strtol() is supposed
- // to be able to make this distinction by itself, but we'll do it
- // explicitly just to be sure.
- result.u.integer = strtol(num.c_str(), (char **)NULL, 8);
- } else {
- // A decimal (base 10) integer.
- result.u.integer = strtol(num.c_str(), (char **)NULL, 10);
- }
- return CPPToken(INTEGER, first_line, first_col, first_file, num, result);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::check_keyword
- // Access: Private, Static
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- check_keyword(const string &name) {
- if (name == "__begin_publish") return KW_BEGIN_PUBLISH;
- if (name == "bool") return KW_BOOL;
- if (name == "catch") return KW_CATCH;
- if (name == "char") return KW_CHAR;
- if (name == "wchar_t") return KW_WCHAR_T;
- if (name == "class") return KW_CLASS;
- if (name == "const") return KW_CONST;
- if (name == "delete") return KW_DELETE;
- if (name == "double") return KW_DOUBLE;
- if (name == "dynamic_cast") return KW_DYNAMIC_CAST;
- if (name == "else") return KW_ELSE;
- if (name == "__end_publish") return KW_END_PUBLISH;
- if (name == "enum") return KW_ENUM;
- if (name == "extern") return KW_EXTERN;
- if (name == "explicit") return KW_EXPLICIT;
- if (name == "__published") return KW_PUBLISHED;
- if (name == "false") return KW_FALSE;
- if (name == "float") return KW_FLOAT;
- if (name == "friend") return KW_FRIEND;
- if (name == "for") return KW_FOR;
- if (name == "goto") return KW_GOTO;
- if (name == "if") return KW_IF;
- if (name == "inline") return KW_INLINE;
- if (name == "int") return KW_INT;
- if (name == "long") return KW_LONG;
- if (name == "mutable") return KW_MUTABLE;
- if (name == "namespace") return KW_NAMESPACE;
- if (name == "new") return KW_NEW;
- if (name == "operator") return KW_OPERATOR;
- if (name == "private") return KW_PRIVATE;
- if (name == "protected") return KW_PROTECTED;
- if (name == "public") return KW_PUBLIC;
- if (name == "register") return KW_REGISTER;
- if (name == "return") return KW_RETURN;
- if (name == "short") return KW_SHORT;
- if (name == "signed") return KW_SIGNED;
- if (name == "sizeof") return KW_SIZEOF;
- if (name == "static") return KW_STATIC;
- if (name == "static_cast") return KW_STATIC_CAST;
- if (name == "struct") return KW_STRUCT;
- if (name == "template") return KW_TEMPLATE;
- if (name == "throw") return KW_THROW;
- if (name == "true") return KW_TRUE;
- if (name == "try") return KW_TRY;
- if (name == "typedef") return KW_TYPEDEF;
- if (name == "typename") return KW_TYPENAME;
- if (name == "union") return KW_UNION;
- if (name == "unsigned") return KW_UNSIGNED;
- if (name == "using") return KW_USING;
- if (name == "virtual") return KW_VIRTUAL;
- if (name == "void") return KW_VOID;
- if (name == "volatile") return KW_VOLATILE;
- if (name == "while") return KW_WHILE;
- if (!cpp_longlong_keyword.empty() && name == cpp_longlong_keyword) {
- return KW_LONGLONG;
- }
- return 0;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::scan_quoted
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- string CPPPreprocessor::
- scan_quoted(int c) {
- int quote_mark = c;
- string str;
- c = get();
- while (c != EOF && c != '\n' && c != quote_mark) {
- if (c == '\\') {
- // Backslash means a special character follows.
- c = get();
- switch (c) {
- case 'n':
- c = '\n';
- break;
- case 't':
- c = '\t';
- break;
- case 'r':
- c = '\r';
- break;
- case 'x':
- // hex character.
- c = get();
- if (isxdigit(c)) {
- int val = hex_val(c);
- c = get();
- if (isxdigit(c)) {
- val = (val << 4) | hex_val(c);
- } else {
- unget(c);
- }
- c = val;
- }
- break;
- case '0':
- case '1':
- case '2':
- case '3':
- case '4':
- case '5':
- case '6':
- case '7':
- // Octal character.
- {
- int val = (c - '0');
- c = get();
- if (c >= '0' && c <= '7') {
- val = (val << 3) | (c - '0');
- c = get();
- if (c >= '0' && c <= '7') {
- val = (val << 3) | (c - '0');
- } else {
- unget(c);
- }
- } else {
- unget(c);
- }
- c = val;
- }
- break;
- }
- }
- str += c;
- c = get();
- }
- if (c != quote_mark) {
- warning("Unclosed string");
- }
- return str;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::should_ignore_manifest
- // Access: Public
- // Description: Returns true if the manifest is one that is being
- // ignored right now (presumably because we are
- // presently expanding it).
- ////////////////////////////////////////////////////////////////////
- bool CPPPreprocessor::
- should_ignore_manifest(const CPPManifest *manifest) const {
- Files::const_iterator fi;
- for (fi = _files.begin(); fi != _files.end(); ++fi) {
- if ((*fi)._ignore_manifest == manifest) {
- return true;
- }
- }
- return false;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::should_ignore_preprocessor
- // Access: Public
- // Description: Returns true if we should ignore any preprocessor
- // directives (e.g. we're presently expanding a
- // manifest).
- ////////////////////////////////////////////////////////////////////
- bool CPPPreprocessor::
- should_ignore_preprocessor() const {
- Files::const_iterator fi;
- for (fi = _files.begin(); fi != _files.end(); ++fi) {
- if ((*fi)._ignore_manifest != NULL) {
- return true;
- }
- }
- return false;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::get
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- int CPPPreprocessor::
- get() {
- if (_unget != '\0') {
- int c = _unget;
- _unget = '\0';
- return c;
- }
- if (_files.empty()) {
- return EOF;
- }
- int c = _files.back().get();
- while (c == EOF && !_files.empty()) {
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "End of input stream, restoring to previous input\n";
- #endif
- int last_c = _files.back()._prev_last_c;
- _files.pop_back();
- if (last_c != '\0') {
- c = last_c;
- } else if (!_files.empty()) {
- c = _files.back().get();
- }
- }
- if (c == '\n') {
- _start_of_line = true;
- } else if (!isspace(c) && c != '#') {
- _start_of_line = false;
- }
- return c;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::unget
- // Access: Private
- // Description:
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- unget(int c) {
- assert(_unget == '\0');
- _unget = c;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::nested_parse_template_instantiation
- // Access: Private
- // Description: Recursively invokes yacc to parse the stuff within
- // angle brackets that's the template instantiation part
- // of an identifier. This involves setting and
- // restoring some state flags so we can return EOF when
- // we reach the closing bracket.
- ////////////////////////////////////////////////////////////////////
- CPPTemplateParameterList *CPPPreprocessor::
- nested_parse_template_instantiation(CPPTemplateScope *scope) {
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "Beginning nested parse\n";
- #endif
- assert(scope != NULL);
- State old_state = _state;
- int old_nesting = _paren_nesting;
- const CPPTemplateParameterList &formal_params = scope->_parameters;
- CPPTemplateParameterList::Parameters::const_iterator pi;
- _angle_bracket_found = false;
- CPPToken token = internal_get_next_token();
- if (token._token == '>') {
- _angle_bracket_found = true;
- } else {
- _saved_tokens.push_back(token);
- }
- CPPTemplateParameterList *actual_params = new CPPTemplateParameterList;
- for (pi = formal_params._parameters.begin();
- pi != formal_params._parameters.end() && !_angle_bracket_found;
- ++pi) {
- _state = S_nested;
- _paren_nesting = 0;
- CPPFile first_file = get_file();
- int first_line = get_line_number();
- int first_col = get_col_number();
- CPPDeclaration *decl = (*pi);
- if (decl->as_type()) {
- _saved_tokens.push_back(CPPToken(START_TYPE));
- CPPType *type = ::parse_type(this, current_scope, global_scope);
- if (type == NULL) {
- warning("Invalid type", first_line, first_col, first_file);
- skip_to_end_nested();
- type = CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_unknown));
- }
- actual_params->_parameters.push_back(type);
- } else {
- _saved_tokens.push_back(CPPToken(START_CONST_EXPR));
- CPPExpression *expr = parse_const_expr(this, current_scope, global_scope);
- if (expr == NULL) {
- warning("Invalid expression", first_line, first_col, first_file);
- skip_to_end_nested();
- expr = new CPPExpression(0);
- }
- actual_params->_parameters.push_back(expr);
- }
- }
- if (!_angle_bracket_found) {
- warning("Ignoring extra parameters in template instantiation");
- skip_to_angle_bracket();
- }
- _state = old_state;
- _paren_nesting = old_nesting;
- _angle_bracket_found = false;
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "Ending nested parse\n";
- #endif
- return actual_params;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::skip_to_end_nested
- // Access: Private
- // Description: This is an error-recovery function, called after
- // returning from a nested parse. If the state is not
- // S_end_nested, there was an error in parsing the
- // nested tokens, and not all of the nested tokens may
- // have been consumed. This function will consume the
- // rest of the nested tokens.
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- skip_to_end_nested() {
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "Skipping tokens:\n";
- #endif
- // Eat any eof tokens on the pushback stack.
- while (!_saved_tokens.empty() && _saved_tokens.back().is_eof()) {
- _saved_tokens.pop_back();
- }
- while (_state != S_end_nested && _state != S_eof) {
- get_next_token();
- }
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "Done skipping tokens.\n";
- #endif
- }
- ////////////////////////////////////////////////////////////////////
- // Function: CPPPreprocessor::skip_to_angle_bracket
- // Access: Private
- // Description: This is an error-recovery function, called after
- // returning from a nested parse. If we haven't yet
- // consumed the closing angle bracket on the template
- // instantiation, keep consuming tokens until we do.
- ////////////////////////////////////////////////////////////////////
- void CPPPreprocessor::
- skip_to_angle_bracket() {
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "Skipping tokens:\n";
- #endif
- while (!_angle_bracket_found && _state != S_eof) {
- _state = S_nested;
- while (_state != S_end_nested && _state != S_eof) {
- get_next_token();
- }
- }
- // Eat any eof tokens on the pushback stack.
- while (!_saved_tokens.empty() && _saved_tokens.back().is_eof()) {
- _saved_tokens.pop_back();
- }
- #ifdef CPP_VERBOSE_LEX
- indent(cerr, _files.size() * 2)
- << "Done skipping tokens.\n";
- #endif
- }
|