#define yy_create_buffer commentcnvYY_create_buffer #define yy_delete_buffer commentcnvYY_delete_buffer #define yy_scan_buffer commentcnvYY_scan_buffer #define yy_scan_string commentcnvYY_scan_string #define yy_scan_bytes commentcnvYY_scan_bytes #define yy_flex_debug commentcnvYY_flex_debug #define yy_init_buffer commentcnvYY_init_buffer #define yy_flush_buffer commentcnvYY_flush_buffer #define yy_load_buffer_state commentcnvYY_load_buffer_state #define yy_switch_to_buffer commentcnvYY_switch_to_buffer #define yyin commentcnvYYin #define yyleng commentcnvYYleng #define yylex commentcnvYYlex #define yyout commentcnvYYout #define yyrestart commentcnvYYrestart #define yytext commentcnvYYtext /* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /cvs/root/flex/flex/skel.c,v 1.2 2004/05/07 00:28:17 jkh Exp $ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include #include /* Use prototypes in function declarations. */ #define YY_USE_PROTOS /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_PROTOS #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef __TURBOC__ #pragma warn -rch #pragma warn -use #include #include #define YY_USE_CONST #define YY_USE_PROTOS #endif #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif #ifdef YY_USE_PROTOS #define YY_PROTO(proto) proto #else #define YY_PROTO(proto) () #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN yy_start = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yy_start - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart( yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #define YY_BUF_SIZE 16384 typedef struct yy_buffer_state *YY_BUFFER_STATE; extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator). This * avoids problems with code like: * * if ( condition_holds ) * yyless( 5 ); * else * do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. */ /* Return all but the first 'n' matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ *yy_cp = yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, yytext_ptr ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ typedef unsigned int yy_size_t; struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; static YY_BUFFER_STATE yy_current_buffer = 0; /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". */ #define YY_CURRENT_BUFFER yy_current_buffer /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 1; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart YY_PROTO(( FILE *input_file )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); void yy_load_buffer_state YY_PROTO(( void )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); static void *yy_flex_alloc YY_PROTO(( yy_size_t )); static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )); static void yy_flex_free YY_PROTO(( void * )); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) #define YY_USES_REJECT #define yywrap() 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state YY_PROTO(( void )); static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); static int yy_get_next_buffer YY_PROTO(( void )); static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ yytext_ptr = yy_bp; \ yyleng = (int) (yy_cp - yy_bp); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; #define YY_NUM_RULES 61 #define YY_END_OF_BUFFER 62 static yyconst short int yy_acclist[227] = { 0, 1, 1, 27, 27, 16, 16, 16, 16, 50, 50, 62, 61, 1, 12, 61, 4, 61, 2, 12, 61, 3, 12, 61, 12, 61, 12, 61, 21, 61, 22, 61, 20, 21, 61, 21, 61, 25, 61, 26, 61, 24, 25, 61, 25, 61, 44, 61, 61, 61, 27, 31, 61, 29, 61, 28, 31, 61, 31, 61, 16, 18, 61, 17, 61, 18, 61, 18, 61, 18, 61, 16, 18, 61, 18, 61, 60, 61, 45, 61, 60, 61, 52, 61, 50, 52, 61, 49, 52, 61, 55, 59, 61, 56, 61, 59, 61, 57, 59, 61, 58, 59, 61, 1, 8, 19, 23, 27, 28, 28, 30, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 16, 16, 15, 45, 50, 49, 55, 7,16389, 36, 46, 53, 54, 53, 53, 53, 10, 10, 54, 53, 53, 53, 53, 53, 53, 53, 13, 15,16389, 7, 39,16422,16421,16426,16418, 32, 46, 46, 53, 53, 53, 53, 10, 53, 53, 53, 53, 53, 53, 16425,16424,16427,16419, 33, 8230, 8229, 8234, 8226, 53, 9, 9, 54, 53, 53, 53, 53, 53, 53, 53, 8233, 8232, 8235, 8227, 47, 51, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 14, 8197, 53, 53, 53, 53, 53, 48, 48, 54, 53, 11, 11, 54, 6, 7 } ; static yyconst short int yy_accept[285] = { 0, 1, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 4, 5, 6, 7, 8, 9, 9, 9, 10, 11, 11, 11, 12, 13, 16, 18, 21, 24, 26, 28, 30, 32, 35, 37, 39, 41, 44, 46, 48, 49, 50, 53, 55, 58, 60, 63, 65, 67, 69, 71, 74, 76, 78, 80, 82, 84, 87, 90, 93, 95, 97, 100, 103, 104, 105, 105, 106, 107, 107, 107, 107, 107, 107, 108, 109, 110, 111, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 123, 123, 123, 124, 124, 125, 125, 126, 127, 128, 129, 129, 130, 131, 131, 131, 132, 132, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 148, 148, 149, 149, 150, 151, 152, 152, 153, 153, 153, 154, 155, 156, 157, 158, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 171, 171, 171, 171, 171, 172, 173, 174, 175, 176, 176, 176, 177, 177, 178, 178, 179, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 190, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 192, 192, 193, 193, 194, 194, 195, 196, 197, 197, 198, 199, 200, 201, 202, 203, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 205, 206, 207, 208, 209, 210, 211, 211, 211, 211, 211, 211, 211, 211, 212, 213, 213, 214, 215, 216, 217, 218, 218, 218, 218, 218, 218, 218, 218, 219, 221, 222, 223, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 227, 227 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5, 6, 7, 8, 1, 1, 9, 1, 1, 10, 1, 1, 11, 11, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 1, 1, 14, 1, 1, 1, 15, 16, 16, 16, 17, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 18, 19, 20, 1, 16, 1, 21, 22, 23, 24, 25, 26, 27, 28, 29, 27, 27, 30, 31, 32, 33, 27, 27, 34, 35, 36, 37, 38, 27, 39, 40, 27, 41, 1, 42, 43, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst int yy_meta[44] = { 0, 1, 2, 3, 1, 1, 4, 1, 1, 4, 5, 6, 7, 8, 1, 9, 10, 10, 1, 11, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 14, 15 } ; static yyconst short int yy_base[321] = { 0, 0, 0, 0, 1, 2, 8, 13, 14, 965, 22, 25, 26, 27, 35, 40, 46, 48, 53, 72, 0, 113, 115, 967, 969, 0, 969, 969, 969, 50, 969, 969, 969, 969, 0, 969, 969, 969, 0, 115, 117, 954, 0, 969, 54, 143, 0, 969, 969, 44, 940, 118, 952, 960, 969, 0, 969, 960, 0, 0, 969, 969, 969, 969, 0, 969, 119, 969, 969, 126, 949, 130, 948, 128, 0, 124, 127, 969, 0, 918, 108, 110, 112, 176, 109, 16, 164, 111, 161, 156, 0, 926, 180, 902, 189, 768, 184, 773, 969, 772, 0, 0, 769, 969, 768, 200, 199, 756, 762, 206, 766, 678, 969, 184, 154, 122, 969, 0, 179, 157, 180, 30, 187, 185, 193, 693, 969, 690, 969, 710, 212, 212, 697, 686, 224, 689, 681, 679, 675, 969, 227, 674, 672, 206, 208, 249, 221, 0, 205, 240, 200, 204, 244, 207, 244, 253, 268, 656, 240, 663, 650, 648, 646, 969, 276, 642, 969, 635, 969, 633, 969, 627, 969, 291, 969, 969, 256, 263, 259, 267, 269, 265, 270, 587, 600, 596, 579, 575, 554, 545, 541, 536, 300, 284, 567, 969, 441, 969, 440, 969, 439, 969, 311, 969, 314, 287, 288, 289, 293, 294, 285, 295, 410, 404, 407, 412, 403, 406, 411, 398, 410, 0, 300, 303, 301, 306, 299, 305, 312, 308, 402, 406, 397, 396, 406, 394, 401, 969, 969, 330, 361, 310, 313, 404, 343, 392, 382, 369, 368, 378, 366, 352, 969, 969, 316, 969, 969, 365, 363, 365, 363, 356, 360, 239, 357, 354, 343, 342, 280, 198, 349, 152, 131, 117, 357, 81, 355, 391, 356, 385, 23, 15, 969, 969, 447, 462, 477, 492, 507, 522, 537, 552, 567, 582, 597, 612, 627, 642, 657, 667, 679, 694, 700, 708, 721, 736, 751, 765, 3, 777, 792, 807, 822, 837, 852, 867, 882, 897, 912, 927, 942 } ; static yyconst short int yy_def[321] = { 0, 284, 284, 285, 285, 286, 286, 287, 287, 284, 284, 288, 288, 289, 289, 289, 289, 290, 290, 283, 19, 291, 291, 283, 283, 292, 283, 283, 283, 283, 283, 283, 283, 283, 293, 283, 283, 283, 294, 283, 283, 283, 295, 283, 296, 283, 297, 283, 283, 283, 283, 297, 283, 298, 283, 45, 283, 283, 299, 300, 283, 283, 283, 283, 292, 283, 301, 283, 283, 283, 283, 283, 283, 283, 295, 296, 296, 283, 302, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 297, 283, 283, 283, 297, 283, 283, 298, 283, 283, 299, 300, 301, 283, 304, 301, 283, 305, 283, 306, 307, 303, 283, 303, 303, 303, 283, 308, 303, 303, 303, 303, 303, 303, 303, 283, 283, 283, 283, 304, 283, 301, 309, 283, 310, 311, 312, 313, 314, 283, 283, 283, 307, 303, 303, 303, 303, 308, 303, 303, 303, 303, 303, 303, 283, 283, 283, 283, 301, 315, 316, 317, 318, 283, 283, 311, 283, 312, 283, 313, 283, 314, 283, 303, 283, 283, 303, 303, 303, 303, 303, 303, 303, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 301, 315, 283, 316, 283, 317, 283, 318, 283, 283, 283, 283, 303, 303, 303, 303, 303, 303, 303, 283, 283, 283, 283, 283, 283, 283, 283, 283, 319, 301, 303, 303, 303, 303, 303, 303, 303, 283, 283, 283, 283, 283, 283, 283, 283, 283, 301, 303, 303, 303, 303, 303, 283, 283, 283, 283, 283, 283, 301, 283, 283, 303, 283, 283, 283, 283, 283, 283, 283, 283, 301, 283, 283, 283, 283, 283, 283, 301, 283, 283, 283, 301, 283, 301, 301, 301, 301, 320, 320, 283, 0, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283 } ; static yyconst short int yy_nxt[1013] = { 0, 283, 283, 26, 26, 32, 27, 27, 33, 28, 28, 32, 29, 29, 33, 147, 36, 36, 282, 30, 30, 34, 37, 37, 40, 39, 282, 34, 43, 43, 47, 283, 38, 38, 41, 44, 44, 119, 47, 48, 45, 45, 49, 47, 45, 45, 49, 48, 51, 47, 49, 54, 48, 145, 49, 50, 54, 112, 52, 50, 65, 50, 66, 55, 76, 50, 77, 55, 55, 91, 92, 112, 55, 56, 57, 24, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 58, 58, 56, 56, 56, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 56, 56, 56, 60, 69, 60, 71, 94, 126, 103, 61, 104, 61, 105, 70, 69, 72, 95, 104, 71, 107, 283, 108, 283, 76, 70, 77, 109, 113, 72, 114, 115, 118, 146, 122, 126, 112, 112, 112, 112, 112, 62, 63, 62, 63, 78, 79, 79, 275, 78, 112, 79, 79, 80, 81, 82, 83, 79, 84, 79, 85, 86, 79, 79, 87, 79, 79, 79, 88, 89, 79, 116, 120, 123, 124, 126, 128, 145, 94, 126, 149, 116, 112, 128, 112, 112, 121, 126, 95, 112, 103, 132, 112, 133, 131, 143, 139, 148, 134, 150, 151, 156, 103, 144, 117, 140, 152, 112, 112, 126, 153, 157, 112, 112, 163, 112, 158, 139, 145, 173, 179, 112, 177, 164, 180, 126, 140, 182, 112, 103, 103, 176, 112, 112, 112, 112, 112, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 112, 174, 174, 178, 181, 174, 174, 174, 156, 270, 183, 193, 184, 185, 189, 190, 186, 163, 157, 112, 187, 188, 191, 112, 210, 103, 164, 205, 175, 174, 174, 202, 203, 204, 206, 112, 207, 208, 112, 209, 211, 103, 112, 221, 112, 222, 112, 273, 112, 112, 221, 202, 203, 204, 204, 203, 204, 223, 224, 228, 225, 226, 227, 229, 112, 240, 112, 112, 112, 241, 112, 103, 112, 112, 112, 239, 242, 243, 112, 244, 112, 254, 112, 243, 112, 112, 243, 112, 243, 112, 103, 112, 112, 103, 243, 112, 103, 103, 103, 251, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 243, 252, 252, 263, 276, 252, 252, 252, 126, 126, 112, 274, 272, 271, 103, 279, 269, 277, 268, 267, 103, 266, 265, 264, 262, 261, 260, 259, 253, 252, 252, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 280, 255, 255, 278, 258, 255, 255, 255, 257, 237, 250, 249, 248, 247, 246, 245, 237, 237, 236, 235, 234, 233, 232, 231, 230, 201, 199, 197, 256, 255, 255, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 64, 64, 195, 220, 64, 64, 219, 64, 64, 64, 218, 64, 64, 64, 64, 67, 67, 217, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 68, 68, 216, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 74, 74, 215, 74, 214, 74, 74, 74, 213, 74, 212, 74, 74, 74, 74, 75, 75, 172, 75, 75, 75, 75, 75, 170, 75, 168, 75, 75, 75, 75, 90, 90, 166, 90, 90, 90, 201, 90, 199, 90, 197, 90, 90, 90, 90, 97, 97, 97, 97, 97, 97, 97, 97, 195, 97, 192, 97, 97, 97, 97, 100, 141, 100, 141, 100, 172, 100, 101, 101, 170, 101, 168, 101, 101, 101, 101, 101, 101, 101, 166, 161, 101, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 110, 160, 110, 130, 155, 110, 111, 154, 111, 112, 111, 111, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 142, 141, 137, 136, 130, 103, 142, 99, 142, 98, 142, 159, 159, 96, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 238, 238, 238, 238, 238, 238, 127, 238, 238, 238, 238, 238, 238, 238, 238, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 125, 112, 73, 106, 99, 98, 96, 93, 73, 283, 39, 23, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283 } ; static yyconst short int yy_chk[1013] = { 0, 0, 0, 3, 4, 5, 3, 4, 5, 3, 4, 6, 3, 4, 6, 308, 7, 8, 281, 3, 4, 5, 7, 8, 10, 10, 280, 6, 11, 12, 13, 0, 7, 8, 10, 11, 12, 85, 14, 13, 11, 12, 13, 15, 11, 12, 13, 14, 16, 16, 14, 17, 15, 121, 14, 15, 18, 85, 16, 15, 29, 16, 29, 17, 44, 16, 44, 17, 18, 49, 49, 121, 18, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 21, 39, 22, 40, 51, 275, 66, 21, 66, 22, 66, 39, 69, 40, 51, 66, 71, 73, 75, 73, 75, 76, 69, 76, 73, 80, 71, 81, 82, 84, 115, 87, 273, 80, 84, 81, 87, 82, 21, 21, 22, 22, 45, 45, 45, 272, 45, 115, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 83, 86, 88, 89, 92, 96, 114, 94, 271, 119, 83, 114, 96, 89, 119, 86, 92, 94, 88, 105, 106, 86, 106, 105, 113, 109, 118, 106, 120, 122, 130, 131, 113, 83, 109, 123, 118, 120, 92, 124, 130, 113, 123, 134, 122, 131, 140, 143, 144, 150, 124, 148, 134, 151, 269, 140, 153, 150, 263, 158, 146, 151, 148, 143, 153, 144, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 146, 145, 145, 149, 152, 145, 145, 145, 156, 263, 154, 158, 154, 154, 155, 155, 154, 164, 156, 149, 154, 154, 155, 152, 181, 193, 164, 176, 145, 145, 145, 173, 173, 173, 177, 176, 178, 179, 178, 180, 182, 222, 177, 192, 181, 193, 179, 268, 180, 182, 192, 202, 202, 202, 204, 204, 204, 205, 206, 210, 207, 208, 209, 211, 210, 223, 205, 206, 207, 224, 173, 239, 208, 209, 211, 222, 225, 226, 226, 228, 224, 242, 223, 227, 227, 225, 229, 229, 241, 241, 270, 228, 242, 251, 254, 254, 276, 278, 274, 239, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 244, 240, 240, 251, 274, 240, 240, 240, 267, 266, 244, 270, 265, 264, 279, 278, 262, 276, 261, 260, 277, 259, 258, 257, 250, 249, 248, 247, 240, 240, 240, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 279, 243, 243, 277, 246, 243, 243, 243, 245, 236, 235, 234, 233, 232, 231, 230, 220, 219, 218, 217, 216, 215, 214, 213, 212, 200, 198, 196, 243, 243, 243, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 292, 292, 194, 191, 292, 292, 190, 292, 292, 292, 189, 292, 292, 292, 292, 293, 293, 188, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 294, 294, 187, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 295, 295, 186, 295, 185, 295, 295, 295, 184, 295, 183, 295, 295, 295, 295, 296, 296, 171, 296, 296, 296, 296, 296, 169, 296, 167, 296, 296, 296, 296, 297, 297, 165, 297, 297, 297, 162, 297, 161, 297, 160, 297, 297, 297, 297, 298, 298, 298, 298, 298, 298, 298, 298, 159, 298, 157, 298, 298, 298, 298, 299, 142, 299, 141, 299, 138, 299, 300, 300, 137, 300, 136, 300, 300, 300, 300, 300, 300, 300, 135, 133, 300, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 302, 132, 302, 129, 127, 302, 303, 125, 303, 111, 303, 303, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 307, 110, 108, 107, 104, 102, 307, 99, 307, 97, 307, 309, 309, 95, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 319, 319, 319, 319, 319, 319, 93, 319, 319, 319, 319, 319, 319, 319, 319, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 91, 79, 72, 70, 57, 53, 52, 50, 41, 23, 9, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283 } ; static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr; static char *yy_full_match; static int yy_lp; static int yy_looking_for_trail_begin = 0; static int yy_full_lp; static int *yy_full_state; #define YY_TRAILING_MASK 0x2000 #define YY_TRAILING_HEAD_MASK 0x4000 #define REJECT \ { \ *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \ yy_cp = yy_full_match; /* restore poss. backed-over text */ \ yy_lp = yy_full_lp; /* restore orig. accepting pos. */ \ yy_state_ptr = yy_full_state; /* restore orig. state */ \ yy_current_state = *yy_state_ptr; /* restore curr. state */ \ ++yy_lp; \ goto find_rule; \ } #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "commentcnv.l" #define INITIAL 0 /***************************************************************************** * * $Id: commentcnv.l,v 1.80 2001/03/19 19:27:41 root Exp $ * * Copyright (C) 1997-2007 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby * granted. No representations are made about the suitability of this software * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * * Documents produced by Doxygen are derivative works derived from the * input used in their production; they are not affected by this license. * */ #line 19 "commentcnv.l" #define YY_NEVER_INTERACTIVE 1 #include #include #include #include #include #include "bufstr.h" #include "debug.h" #include "message.h" #include "config.h" #include "doxygen.h" #define ADDCHAR(c) g_outBuf->addChar(c) #define ADDARRAY(a,s) g_outBuf->addArray(a,s) struct CondCtx { CondCtx(int line,QCString id,bool b) : lineNr(line),sectionId(id), skip(b) {} int lineNr; QCString sectionId; bool skip; }; static BufStr * g_inBuf; static BufStr * g_outBuf; static int g_inBufPos; static int g_col; static int g_blockHeadCol; static bool g_mlBrief; static int g_readLineCtx; static bool g_skip; static QCString g_fileName; static int g_lineNr; static int g_condCtx; static QStack g_condStack; static QCString g_blockName; static int g_lastCommentContext; static bool g_inSpecialComment; static QCString g_aliasString; static int g_blockCount; static int g_lastBlockContext; static void replaceCommentMarker(const char *s,int len) { const char *p=s; char c; // copy blanks while ((c=*p) && (c==' ' || c=='\t' || c=='\n')) { ADDCHAR(c); g_lineNr += c=='\n'; p++; } // replace start of comment marker by spaces while ((c=*p) && (c=='/' || c=='!' || c=='#')) { ADDCHAR(' '); p++; if (*p=='<') // comment-after-item marker { ADDCHAR(' '); p++; } if (c=='!') // end after first ! { break; } } // copy comment line to output ADDARRAY(p,len-(p-s)); } static inline int computeIndent(const char *s) { int col=0; static int tabSize=Config_getInt("TAB_SIZE"); const char *p=s; char c; while ((c=*p++)) { if (c==' ') col++; else if (c=='\t') col+=tabSize-(col%tabSize); else break; } return col; } static inline void copyToOutput(const char *s,int len) { int i; if (g_skip) // only add newlines. { for (i=0;iskip; } } #if 0 /** remove and executes cond and endcond commands in \a s */ static QCString handleCondCmdInAliases(const QCString &s) { QCString result; //printf("handleCondCmdInAliases(%s)\n",s.data()); static QRegExp cmdPat("[\\\\@][a-z_A-Z][a-z_A-Z0-9]*"); int p=0,i,l; while ((i=cmdPat.match(s,p,&l))!=-1) { result+=s.mid(p,i-p); QCString cmd = s.mid(i+1,l-1); //printf("Found command %s\n",cmd.data()); if (cmd=="cond") { int sp=i+l,ep; const char *arg=s.data()+sp; char c; // skip spaces while ((c=*arg) && (c==' ' || c=='\t')) arg++,sp++; // read argument if (*arg=='\n') // no arg { startCondSection(" "); ep=sp; } else // get argument { ep=sp; while ((c=*arg) && isId(c)) arg++,ep++; if (ep>sp) { QCString id = s.mid(sp,ep-sp); //printf("Found conditional section id %s\n",id.data()); startCondSection(id); } else // invalid identifier { } } p=ep; } else if (cmd=="endcond") { endCondSection(); p=i+l; } else { result+=s.mid(i,l); p=i+l; } } result+=s.right(s.length()-p); return result; } #endif /** copies string \a s with length \a len to the output, while * replacing any alias commands found in the string. */ static void replaceAliases(const char *s) { QCString result = resolveAliasCmd(s); //printf("replaceAliases(%s)->'%s'\n",s,result.data()); copyToOutput(result,result.length()); } #undef YY_INPUT #define YY_INPUT(buf,result,max_size) result=yyread(buf,max_size); static int yyread(char *buf,int max_size) { int bytesInBuf = g_inBuf->curPos()-g_inBufPos; int bytesToCopy = QMIN(max_size,bytesInBuf); memcpy(buf,g_inBuf->data()+g_inBufPos,bytesToCopy); g_inBufPos+=bytesToCopy; return bytesToCopy; } void replaceComment(int offset); #define Scan 1 #define SkipString 2 #define SkipChar 3 #define SComment 4 #define CComment 5 #define Verbatim 6 #define VerbatimCode 7 #define ReadLine 8 #define CondLine 9 #define ReadAliasArgs 10 /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap YY_PROTO(( void )); #else extern int yywrap YY_PROTO(( void )); #endif #endif #ifndef YY_NO_UNPUT static void yyunput YY_PROTO(( int c, char *buf_ptr )); #endif #ifndef yytext_ptr static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen YY_PROTO(( yyconst char * )); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput YY_PROTO(( void )); #else static int input YY_PROTO(( void )); #endif #endif #if YY_STACK_USED static int yy_start_stack_ptr = 0; static int yy_start_stack_depth = 0; static int *yy_start_stack = 0; #ifndef YY_NO_PUSH_STATE static void yy_push_state YY_PROTO(( int new_state )); #endif #ifndef YY_NO_POP_STATE static void yy_pop_state YY_PROTO(( void )); #endif #ifndef YY_NO_TOP_STATE static int yy_top_state YY_PROTO(( void )); #endif #else #define YY_NO_PUSH_STATE 1 #define YY_NO_POP_STATE 1 #define YY_NO_TOP_STATE 1 #endif #ifdef YY_MALLOC_DECL YY_MALLOC_DECL #else #if __STDC__ #ifndef __cplusplus #include #endif #else /* Just try to get by without declaring the routines. This will fail * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) * or sizeof(void*) != sizeof(int). */ #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( yy_current_buffer->yy_is_interactive ) \ { \ int c = '*', n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL int yylex YY_PROTO(( void )) #endif /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ if ( yyleng > 0 ) \ yy_current_buffer->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 269 "commentcnv.l" if ( yy_init ) { yy_init = 0; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yy_start ) yy_start = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_load_buffer_state(); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = yy_c_buf_p; /* Support of yytext. */ *yy_cp = yy_hold_char; /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = yy_start; yy_current_state += YY_AT_BOL(); yy_state_ptr = yy_state_buf; *yy_state_ptr++ = yy_current_state; yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 284 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *yy_state_ptr++ = yy_current_state; ++yy_cp; } while ( yy_base[yy_current_state] != 969 ); yy_find_action: yy_current_state = *--yy_state_ptr; yy_lp = yy_accept[yy_current_state]; find_rule: /* we branch to this label when backing up */ for ( ; ; ) /* until we find what rule we matched */ { if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] ) { yy_act = yy_acclist[yy_lp]; if ( yy_act & YY_TRAILING_HEAD_MASK || yy_looking_for_trail_begin ) { if ( yy_act == yy_looking_for_trail_begin ) { yy_looking_for_trail_begin = 0; yy_act &= ~YY_TRAILING_HEAD_MASK; break; } } else if ( yy_act & YY_TRAILING_MASK ) { yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK; yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK; yy_full_match = yy_cp; yy_full_state = yy_state_ptr; yy_full_lp = yy_lp; } else { yy_full_match = yy_cp; yy_full_state = yy_state_ptr; yy_full_lp = yy_lp; break; } ++yy_lp; goto find_rule; } --yy_cp; yy_current_state = *--yy_state_ptr; yy_lp = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 1: YY_RULE_SETUP #line 271 "commentcnv.l" { /* eat anything that is not " / or \n */ copyToOutput(yytext,yyleng); } YY_BREAK case 2: YY_RULE_SETUP #line 274 "commentcnv.l" { /* start of a string */ copyToOutput(yytext,yyleng); BEGIN(SkipString); } YY_BREAK case 3: YY_RULE_SETUP #line 278 "commentcnv.l" { copyToOutput(yytext,yyleng); BEGIN(SkipChar); } YY_BREAK case 4: YY_RULE_SETUP #line 282 "commentcnv.l" { /* new line */ copyToOutput(yytext,yyleng); } YY_BREAK case 5: YY_RULE_SETUP #line 285 "commentcnv.l" { /* start C++ style special comment block */ if (g_mlBrief) REJECT; // bail out if we do not need to convert int i=3; if (yytext[2]=='/') { while (i