#define yy_create_buffer pycodeYY_create_buffer #define yy_delete_buffer pycodeYY_delete_buffer #define yy_scan_buffer pycodeYY_scan_buffer #define yy_scan_string pycodeYY_scan_string #define yy_scan_bytes pycodeYY_scan_bytes #define yy_flex_debug pycodeYY_flex_debug #define yy_init_buffer pycodeYY_init_buffer #define yy_flush_buffer pycodeYY_flush_buffer #define yy_load_buffer_state pycodeYY_load_buffer_state #define yy_switch_to_buffer pycodeYY_switch_to_buffer #define yyin pycodeYYin #define yyleng pycodeYYleng #define yylex pycodeYYlex #define yyout pycodeYYout #define yyrestart pycodeYYrestart #define yytext pycodeYYtext /* 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 262144 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 56 #define YY_END_OF_BUFFER 57 static yyconst short int yy_acclist[909] = { 0, 16412,16412, 57, 55, 56, 54, 56, 52, 55, 56, 53, 55, 56, 51, 55, 56, 55, 56, 55, 56, 55, 56, 31, 54, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 17, 30, 55, 56, 55, 56, 10, 55, 56, 9, 55, 56, 9, 55, 56, 9, 55, 56, 9, 55, 56, 12, 55, 56, 11, 55, 56, 12, 52, 55, 56, 12, 53, 55, 56, 12, 51, 55, 56, 13, 55, 56, 11, 12, 55, 56, 14, 55, 56, 12, 55, 56, 12, 55, 56, 12, 55, 56, 12, 55, 56, 5, 55, 56, 5, 55, 56, 5, 55, 56, 5, 55, 56, 6, 55, 56, 6, 55, 56, 8, 55, 56, 7, 55, 56, 7, 55, 56, 7, 55, 56, 7, 55, 56, 29, 54, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 17, 55, 56, 25, 55, 56, 24, 54, 56, 18, 55, 56, 23, 54, 56, 22, 53, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 21, 55, 56, 55, 56, 16410, 27, 54, 56, 8220, 55, 56, 8220, 53, 55, 56, 8220, 55, 56, 8220, 55, 56, 8220, 55, 56, 36, 37, 55, 56, 37, 52, 55, 56, 36, 37, 53, 55, 56, 35, 37, 51, 55, 56, 36, 37, 55, 56, 36, 37, 55, 56, 37, 55, 56, 36, 37, 55, 56, 42, 43, 55, 56, 41, 43, 52, 55, 56, 42, 43, 53, 55, 56, 43, 51, 55, 56, 42, 43, 55, 56, 42, 43, 55, 56, 43, 55, 56, 42, 43, 55, 56, 46, 48, 55, 56, 46, 47, 54, 56, 46, 48, 52, 55, 56, 46, 48, 53, 55, 56, 46, 48, 51, 55, 56, 46, 48, 55, 56, 46, 48, 55, 56, 48, 55, 56, 46, 48, 55, 56, 53, 52, 51, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 15, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 16, 17, 30, 17, 30, 16, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 10, 9, 9, 12, 11, 12, 12, 53, 12, 12, 12, 52, 12, 51, 12, 5, 5, 6, 7, 7, 17, 17, 17, 17, 17, 17, 15, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 16, 17, 17, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 25, 24, 18, 22, 53, 21, 21, 21, 21, 21, 19, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 20, 21, 21, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,16410, 27, 8218, 36, 36, 53, 52, 36, 33, 33, 32, 42, 42, 53, 51, 42, 39, 39, 38, 46, 46, 46, 53, 53, 46, 46, 50, 49, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 15, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 12, 50, 12, 49, 17, 17, 17, 17, 17, 17, 17, 15, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 21, 21, 21, 21, 21, 21, 19, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 34, 50, 40, 49, 44, 50, 45, 49, 17, 30, 3, 17, 30, 15, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 1, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 3, 17, 15, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 17, 30, 15, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 30, 17, 15, 17, 17, 17, 17, 17, 17, 17, 17, 21, 21, 21, 21, 21, 21, 21, 21, 2, 17, 30, 17, 30, 4, 17, 17, 21, 21, 17, 30, 4, 17, 21 } ; static yyconst short int yy_accept[490] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 6, 8, 11, 14, 17, 19, 21, 23, 26, 30, 34, 38, 42, 46, 50, 54, 58, 62, 66, 70, 74, 78, 82, 86, 90, 94, 98, 102, 106, 110, 114, 118, 122, 124, 127, 130, 133, 136, 139, 142, 145, 149, 153, 157, 160, 164, 167, 170, 173, 176, 179, 182, 185, 188, 191, 194, 197, 200, 203, 206, 209, 212, 215, 218, 221, 224, 227, 230, 233, 236, 239, 242, 245, 248, 251, 254, 257, 260, 263, 266, 269, 272, 275, 278, 281, 284, 287, 290, 293, 296, 299, 303, 306, 309, 312, 315, 318, 321, 324, 327, 330, 333, 336, 339, 342, 345, 348, 351, 354, 357, 360, 363, 366, 369, 372, 375, 378, 382, 385, 388, 391, 395, 399, 404, 409, 413, 417, 420, 424, 428, 433, 438, 442, 446, 450, 453, 457, 461, 465, 470, 475, 480, 484, 488, 491, 495, 495, 496, 496, 497, 498, 498, 500, 502, 504, 506, 508, 510, 513, 515, 517, 519, 521, 523, 525, 527, 529, 531, 533, 536, 538, 541, 543, 545, 547, 549, 551, 553, 555, 557, 559, 561, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 573, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 619, 620, 621, 622, 623, 624, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 638, 639, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 654, 656, 657, 658, 659, 660, 661, 662, 664, 664, 665, 666, 667, 668, 669, 670, 670, 671, 673, 674, 675, 676, 677, 678, 680, 682, 684, 686, 688, 690, 692, 695, 697, 699, 701, 703, 705, 707, 709, 711, 713, 715, 717, 719, 721, 723, 725, 727, 729, 730, 731, 732, 733, 734, 735, 736, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 777, 777, 779, 779, 781, 783, 785, 788, 791, 793, 795, 797, 799, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 823, 825, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 859, 862, 864, 866, 868, 870, 872, 874, 876, 876, 877, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 897, 899, 900, 901, 902, 903, 904, 906, 907, 908, 909, 909 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 5, 6, 1, 4, 4, 7, 8, 9, 4, 4, 10, 4, 11, 4, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 4, 4, 4, 4, 1, 1, 14, 14, 14, 14, 14, 15, 14, 14, 14, 14, 14, 14, 14, 16, 14, 14, 14, 17, 14, 18, 19, 14, 14, 14, 14, 14, 4, 20, 4, 1, 21, 4, 22, 23, 24, 25, 26, 27, 28, 29, 30, 14, 31, 32, 33, 34, 35, 36, 14, 37, 38, 39, 40, 14, 41, 42, 43, 14, 4, 4, 4, 4, 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, 4, 5, 4, 5, 2, 2, 4, 4, 6, 2, 7, 7, 7, 7, 7, 7, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 } ; static yyconst short int yy_base[516] = { 0, 0, 38, 78, 0, 121, 0, 164, 0, 207, 0, 250, 0, 293, 0, 335, 0, 375, 0, 418, 458, 6, 8, 10, 12, 496, 534, 572, 610, 648, 686, 1132, 1133, 1133, 1126, 0, 1123, 11, 15, 16, 1133, 0, 1107, 1093, 19, 1090, 22, 0, 1089, 14, 1099, 16, 26, 1092, 33, 1101, 1087, 1084, 13, 338, 1094, 1082, 425, 1089, 1087, 23, 1133, 0, 23, 429, 433, 0, 1114, 1110, 60, 1107, 1133, 0, 1133, 726, 746, 37, 322, 0, 65, 434, 467, 1111, 1133, 1133, 0, 339, 471, 474, 1133, 0, 1090, 1076, 342, 1073, 475, 13, 1072, 316, 1082, 321, 320, 1075, 335, 1084, 1070, 1067, 334, 421, 1077, 1065, 480, 1072, 1070, 62, 1133, 1097, 1133, 0, 0, 1076, 360, 1060, 489, 332, 1059, 326, 1069, 412, 392, 1062, 487, 1071, 1057, 1054, 411, 502, 1053, 525, 1060, 1058, 74, 1133, 1133, 0, 462, 539, 543, 0, 1082, 538, 1079, 522, 550, 450, 556, 0, 1080, 561, 1077, 542, 565, 454, 581, 1063, 1062, 1076, 594, 1073, 599, 603, 600, 619, 1074, 0, 1071, 1072, 1069, 578, 0, 1043, 1040, 1033, 589, 1047, 1033, 1044, 1047, 1034, 1040, 480, 1042, 1031, 1027, 1028, 1027, 0, 1025, 0, 1027, 1020, 1020, 1027, 1026, 1016, 1022, 1010, 1022, 1025, 34, 1133, 0, 626, 0, 1048, 1044, 633, 1041, 627, 1042, 1039, 0, 0, 638, 1043, 0, 652, 0, 1012, 1009, 1002, 653, 1016, 1002, 1013, 1016, 1003, 1009, 493, 1011, 1000, 996, 997, 996, 0, 994, 0, 996, 989, 989, 996, 995, 985, 991, 979, 991, 994, 487, 1133, 1017, 0, 0, 986, 977, 656, 991, 977, 988, 991, 978, 984, 614, 986, 975, 971, 972, 971, 0, 969, 0, 971, 964, 964, 971, 970, 960, 955, 967, 970, 532, 1133, 1133, 0, 990, 657, 989, 664, 1133, 562, 1133, 0, 667, 986, 985, 668, 1133, 619, 1133, 971, 673, 985, 676, 986, 981, 677, 1133, 1133, 949, 960, 959, 958, 961, 944, 942, 978, 952, 952, 951, 954, 942, 951, 938, 949, 933, 936, 931, 928, 940, 934, 933, 0, 0, 926, 937, 936, 935, 938, 921, 919, 955, 929, 929, 928, 931, 919, 928, 915, 926, 910, 913, 908, 905, 917, 911, 910, 903, 914, 913, 916, 899, 897, 0, 908, 908, 907, 910, 898, 907, 881, 875, 855, 857, 837, 830, 836, 830, 1133, 635, 1133, 646, 1133, 1133, 825, 0, 0, 800, 805, 791, 791, 818, 773, 733, 742, 726, 737, 722, 734, 722, 747, 729, 729, 723, 0, 0, 711, 714, 706, 713, 706, 709, 718, 702, 713, 696, 708, 692, 717, 699, 699, 696, 684, 689, 681, 688, 681, 684, 693, 677, 688, 673, 685, 673, 683, 683, 668, 702, 668, 662, 668, 667, 659, 673, 660, 0, 651, 684, 636, 627, 596, 593, 572, 578, 561, 551, 550, 530, 527, 520, 499, 500, 485, 503, 460, 450, 0, 446, 440, 433, 425, 423, 0, 419, 405, 1133, 766, 774, 782, 790, 798, 806, 809, 811, 818, 826, 834, 837, 839, 841, 848, 851, 857, 865, 872, 880, 888, 895, 903, 911, 919, 367, 922 } ; static yyconst short int yy_def[516] = { 0, 489, 489, 488, 3, 488, 5, 488, 7, 488, 9, 488, 11, 488, 13, 489, 15, 488, 17, 490, 490, 15, 15, 15, 15, 491, 491, 492, 492, 493, 493, 488, 488, 488, 488, 494, 488, 488, 488, 488, 488, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 488, 488, 496, 496, 496, 496, 497, 488, 497, 498, 497, 488, 497, 488, 499, 499, 80, 80, 500, 500, 500, 500, 488, 488, 488, 501, 501, 501, 501, 488, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 488, 488, 488, 488, 503, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 505, 488, 488, 494, 488, 488, 488, 506, 488, 507, 488, 506, 506, 508, 506, 509, 488, 510, 488, 509, 509, 511, 509, 512, 512, 488, 513, 488, 512, 512, 512, 512, 488, 494, 488, 488, 488, 488, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 488, 488, 496, 496, 497, 488, 497, 498, 497, 80, 497, 497, 80, 500, 500, 488, 501, 501, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 488, 488, 488, 503, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 505, 488, 488, 506, 488, 507, 488, 506, 488, 488, 488, 509, 510, 488, 488, 509, 488, 488, 488, 512, 512, 488, 513, 513, 488, 512, 488, 488, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 497, 497, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 488, 488, 488, 488, 488, 488, 495, 495, 495, 495, 495, 495, 495, 488, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 495, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 495, 495, 495, 495, 495, 495, 495, 495, 495, 514, 502, 502, 502, 502, 502, 502, 502, 502, 502, 504, 504, 504, 504, 504, 504, 504, 504, 488, 495, 495, 515, 502, 502, 504, 504, 495, 515, 502, 504, 0, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488 } ; static yyconst short int yy_nxt[1177] = { 0, 488, 488, 33, 488, 34, 35, 36, 32, 33, 32, 33, 32, 33, 32, 33, 181, 37, 182, 38, 181, 181, 182, 182, 181, 214, 182, 181, 181, 182, 182, 215, 183, 183, 189, 206, 214, 37, 190, 188, 39, 33, 215, 34, 35, 36, 192, 237, 195, 193, 207, 238, 183, 183, 226, 37, 197, 38, 196, 188, 201, 198, 179, 199, 262, 263, 202, 203, 179, 179, 181, 203, 182, 179, 226, 37, 294, 295, 39, 32, 32, 40, 32, 34, 35, 36, 32, 32, 32, 32, 32, 32, 41, 42, 43, 44, 45, 46, 32, 41, 47, 48, 49, 50, 51, 52, 53, 41, 54, 41, 55, 41, 56, 57, 58, 59, 60, 61, 62, 63, 41, 64, 32, 65, 33, 32, 34, 35, 36, 66, 32, 32, 32, 32, 32, 67, 67, 67, 68, 67, 69, 32, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 68, 67, 67, 70, 67, 67, 67, 71, 72, 33, 71, 73, 74, 75, 32, 76, 77, 71, 71, 78, 79, 79, 79, 80, 79, 81, 71, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 80, 79, 79, 82, 79, 79, 79, 32, 32, 33, 32, 34, 35, 36, 32, 32, 32, 32, 32, 32, 83, 83, 83, 84, 83, 85, 32, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 84, 83, 83, 86, 83, 83, 83, 32, 87, 33, 32, 34, 35, 36, 88, 88, 88, 32, 32, 89, 90, 90, 90, 91, 90, 92, 32, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 91, 90, 90, 93, 90, 90, 90, 32, 32, 94, 32, 34, 35, 36, 32, 32, 32, 32, 32, 32, 95, 96, 97, 98, 99, 100, 32, 95, 101, 102, 103, 104, 105, 106, 107, 95, 108, 95, 109, 95, 110, 111, 112, 113, 114, 115, 116, 117, 95, 118, 119, 120, 226, 34, 35, 36, 181, 181, 182, 182, 181, 240, 182, 245, 241, 37, 243, 38, 246, 254, 247, 273, 226, 208, 274, 249, 244, 209, 181, 270, 182, 250, 251, 271, 255, 37, 251, 479, 39, 32, 121, 122, 32, 34, 123, 36, 32, 32, 32, 32, 32, 32, 124, 125, 124, 126, 127, 128, 32, 124, 129, 130, 131, 132, 133, 134, 135, 124, 136, 124, 137, 124, 138, 139, 140, 141, 124, 142, 143, 144, 124, 145, 32, 146, 147, 278, 34, 149, 36, 181, 279, 182, 280, 181, 284, 182, 287, 181, 150, 182, 151, 181, 181, 182, 182, 188, 256, 276, 251, 217, 257, 288, 203, 217, 228, 303, 304, 277, 150, 311, 312, 152, 32, 146, 147, 188, 34, 149, 36, 217, 181, 284, 182, 217, 228, 181, 487, 182, 150, 181, 151, 182, 181, 181, 182, 182, 251, 228, 181, 486, 182, 231, 262, 263, 231, 236, 203, 181, 150, 182, 236, 152, 33, 484, 154, 155, 156, 228, 476, 269, 181, 231, 182, 330, 231, 236, 157, 282, 158, 159, 236, 331, 284, 283, 284, 376, 355, 289, 284, 269, 300, 290, 182, 181, 356, 182, 157, 294, 295, 160, 33, 376, 154, 155, 156, 269, 179, 181, 179, 182, 181, 181, 308, 182, 157, 376, 158, 159, 300, 183, 182, 179, 483, 183, 300, 269, 182, 392, 304, 179, 301, 179, 284, 181, 157, 308, 301, 160, 33, 183, 162, 163, 164, 183, 179, 309, 181, 482, 182, 181, 301, 308, 165, 376, 166, 167, 301, 181, 251, 182, 313, 309, 179, 418, 179, 309, 488, 181, 313, 182, 313, 181, 165, 182, 418, 168, 33, 317, 162, 163, 164, 309, 314, 319, 394, 312, 314, 181, 418, 182, 165, 481, 166, 167, 181, 218, 182, 218, 179, 319, 392, 304, 314, 319, 179, 179, 181, 377, 182, 179, 165, 394, 312, 168, 170, 378, 171, 172, 173, 319, 181, 181, 182, 182, 181, 179, 182, 179, 174, 251, 175, 176, 300, 480, 182, 179, 181, 179, 308, 488, 179, 313, 313, 313, 179, 181, 179, 182, 174, 476, 179, 177, 170, 418, 171, 172, 173, 203, 399, 317, 314, 399, 399, 478, 203, 477, 174, 476, 175, 176, 399, 284, 284, 475, 284, 284, 474, 473, 472, 471, 470, 469, 376, 284, 468, 376, 174, 251, 251, 177, 218, 458, 467, 218, 218, 218, 218, 251, 251, 218, 218, 466, 465, 464, 463, 462, 461, 460, 251, 218, 218, 459, 418, 218, 224, 218, 225, 203, 203, 218, 218, 458, 457, 203, 203, 456, 455, 454, 453, 218, 32, 32, 32, 32, 32, 32, 32, 32, 148, 148, 148, 148, 148, 148, 148, 148, 153, 153, 153, 153, 153, 153, 153, 153, 161, 161, 161, 161, 161, 161, 161, 161, 169, 169, 169, 169, 169, 169, 169, 169, 179, 179, 452, 179, 179, 179, 179, 179, 184, 184, 216, 216, 218, 404, 451, 218, 218, 218, 218, 218, 221, 221, 450, 221, 221, 221, 221, 221, 223, 203, 449, 223, 223, 223, 223, 223, 227, 227, 230, 230, 232, 232, 265, 265, 399, 265, 265, 265, 265, 265, 266, 266, 296, 296, 296, 448, 296, 296, 296, 297, 297, 447, 297, 446, 297, 297, 299, 299, 445, 299, 299, 299, 299, 299, 302, 302, 302, 302, 302, 302, 302, 302, 305, 305, 444, 305, 284, 305, 305, 306, 306, 443, 306, 306, 306, 306, 306, 310, 310, 310, 310, 310, 310, 310, 310, 313, 313, 313, 313, 442, 313, 313, 313, 316, 316, 316, 316, 316, 316, 316, 316, 485, 485, 441, 376, 440, 439, 284, 284, 438, 437, 436, 435, 376, 434, 433, 432, 431, 430, 429, 428, 251, 427, 426, 425, 418, 424, 423, 251, 251, 404, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 203, 409, 408, 407, 399, 406, 405, 203, 203, 404, 403, 402, 401, 400, 399, 398, 397, 396, 488, 395, 314, 307, 393, 298, 391, 390, 389, 284, 388, 387, 386, 385, 284, 384, 383, 382, 381, 284, 380, 379, 376, 375, 374, 373, 372, 284, 371, 370, 264, 369, 368, 251, 367, 366, 365, 364, 363, 251, 362, 361, 360, 359, 251, 358, 357, 354, 353, 352, 351, 350, 251, 349, 348, 347, 229, 222, 220, 346, 345, 219, 344, 343, 203, 342, 341, 340, 339, 338, 203, 337, 336, 335, 334, 203, 333, 332, 329, 328, 327, 326, 325, 203, 324, 323, 322, 180, 178, 321, 320, 318, 315, 314, 314, 307, 178, 180, 298, 293, 292, 291, 284, 286, 285, 281, 275, 272, 268, 267, 264, 261, 260, 259, 258, 251, 253, 252, 248, 242, 239, 235, 234, 233, 229, 222, 220, 219, 213, 212, 211, 210, 203, 205, 204, 200, 194, 191, 187, 186, 185, 180, 178, 488, 31, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488 } ; static yyconst short int yy_chk[1177] = { 0, 0, 0, 1, 0, 1, 1, 1, 21, 21, 22, 22, 23, 23, 24, 24, 37, 1, 37, 1, 38, 39, 38, 39, 44, 65, 44, 46, 68, 46, 68, 65, 38, 39, 47, 58, 214, 1, 47, 46, 1, 2, 214, 2, 2, 2, 49, 101, 51, 49, 58, 101, 38, 39, 81, 2, 52, 2, 51, 46, 54, 52, 74, 52, 119, 119, 54, 54, 74, 74, 84, 54, 84, 74, 81, 2, 146, 146, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 15, 15, 82, 15, 15, 15, 59, 91, 59, 91, 98, 103, 98, 106, 103, 15, 105, 15, 106, 112, 106, 131, 82, 59, 131, 108, 105, 59, 126, 129, 126, 108, 108, 129, 112, 15, 108, 514, 15, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 19, 19, 19, 134, 19, 19, 19, 113, 134, 113, 134, 62, 487, 62, 140, 69, 19, 69, 19, 70, 85, 70, 85, 62, 113, 133, 486, 69, 113, 140, 484, 70, 85, 159, 159, 133, 19, 167, 167, 19, 20, 20, 20, 62, 20, 20, 20, 69, 150, 483, 150, 70, 85, 86, 482, 86, 20, 92, 20, 92, 93, 100, 93, 100, 481, 86, 116, 480, 116, 92, 262, 262, 93, 100, 478, 128, 20, 128, 116, 20, 25, 477, 25, 25, 25, 86, 476, 128, 141, 92, 141, 195, 93, 100, 25, 136, 25, 25, 116, 195, 475, 136, 136, 474, 243, 141, 136, 128, 157, 141, 157, 143, 243, 143, 25, 294, 294, 25, 26, 473, 26, 26, 26, 143, 155, 151, 155, 151, 165, 152, 165, 152, 26, 472, 26, 26, 158, 151, 158, 155, 471, 152, 160, 143, 160, 303, 303, 163, 158, 163, 470, 166, 26, 166, 160, 26, 27, 151, 27, 27, 27, 152, 163, 166, 183, 469, 183, 168, 158, 168, 27, 468, 27, 27, 160, 188, 467, 188, 172, 168, 172, 466, 172, 166, 176, 174, 176, 174, 176, 175, 27, 175, 465, 27, 28, 172, 28, 28, 28, 168, 174, 175, 311, 311, 175, 177, 464, 177, 28, 463, 28, 28, 217, 223, 217, 223, 221, 177, 392, 392, 177, 175, 221, 221, 228, 276, 228, 221, 28, 394, 394, 28, 29, 276, 29, 29, 29, 177, 231, 236, 231, 236, 269, 299, 269, 299, 29, 462, 29, 29, 301, 461, 301, 306, 309, 306, 309, 314, 299, 314, 316, 314, 316, 319, 316, 319, 29, 460, 306, 29, 30, 459, 30, 30, 30, 457, 456, 316, 319, 455, 454, 453, 452, 451, 30, 450, 30, 30, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 435, 434, 30, 433, 432, 30, 79, 431, 430, 79, 79, 79, 79, 429, 428, 79, 79, 427, 426, 425, 424, 423, 422, 421, 420, 79, 80, 419, 416, 80, 80, 80, 80, 415, 414, 80, 80, 413, 412, 411, 410, 409, 408, 407, 406, 80, 489, 489, 489, 489, 489, 489, 489, 489, 490, 490, 490, 490, 490, 490, 490, 490, 491, 491, 491, 491, 491, 491, 491, 491, 492, 492, 492, 492, 492, 492, 492, 492, 493, 493, 493, 493, 493, 493, 493, 493, 494, 494, 405, 494, 494, 494, 494, 494, 495, 495, 496, 496, 497, 404, 403, 497, 497, 497, 497, 497, 498, 498, 402, 498, 498, 498, 498, 498, 499, 401, 400, 499, 499, 499, 499, 499, 500, 500, 501, 501, 502, 502, 503, 503, 397, 503, 503, 503, 503, 503, 504, 504, 505, 505, 505, 390, 505, 505, 505, 506, 506, 389, 506, 388, 506, 506, 507, 507, 387, 507, 507, 507, 507, 507, 508, 508, 508, 508, 508, 508, 508, 508, 509, 509, 386, 509, 385, 509, 509, 510, 510, 384, 510, 510, 510, 510, 510, 511, 511, 511, 511, 511, 511, 511, 511, 512, 512, 512, 512, 383, 512, 512, 512, 513, 513, 513, 513, 513, 513, 513, 513, 515, 515, 382, 381, 380, 379, 378, 377, 375, 374, 373, 372, 371, 370, 369, 368, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 356, 355, 354, 353, 352, 351, 350, 349, 348, 347, 344, 343, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 330, 329, 328, 327, 326, 325, 324, 323, 322, 318, 317, 315, 313, 308, 307, 300, 298, 293, 292, 291, 290, 289, 288, 287, 286, 285, 283, 281, 280, 279, 278, 277, 275, 274, 273, 272, 271, 270, 268, 267, 264, 261, 260, 259, 258, 257, 256, 255, 254, 253, 252, 250, 248, 247, 246, 245, 244, 242, 241, 240, 239, 238, 237, 235, 234, 233, 229, 225, 224, 222, 220, 219, 213, 212, 211, 210, 209, 208, 207, 206, 205, 204, 202, 200, 199, 198, 197, 196, 194, 193, 192, 191, 190, 189, 187, 186, 185, 182, 181, 180, 178, 173, 171, 170, 169, 164, 162, 156, 154, 145, 144, 142, 139, 138, 137, 135, 132, 130, 127, 125, 121, 118, 117, 115, 114, 111, 110, 109, 107, 104, 102, 99, 97, 96, 87, 75, 73, 72, 64, 63, 61, 60, 57, 56, 55, 53, 50, 48, 45, 43, 42, 36, 34, 31, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488 } ; 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 "pycode.l" #define INITIAL 0 /****************************************************************************** * * $Id: pycode.h,v 1.9 2001/03/19 19:27:39 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. * */ /* This code is based on the work done by the MoxyPyDoxy team * (Linda Leong, Mike Rivera, Kim Truong, and Gabriel Estrada) * in Spring 2005 as part of CS 179E: Compiler Design Project * at the University of California, Riverside; the course was * taught by Peter H. Froehlich . */ #line 26 "pycode.l" #include #include #include "pycode.h" #include "message.h" #include "scanner.h" #include "entry.h" #include "doxygen.h" #include "outputlist.h" #include "util.h" #include "membername.h" #include "searchindex.h" #define YY_NEVER_INTERACTIVE 1 static ClassSDict g_codeClassSDict(17); static QCString g_curClassName; static QStrList g_curClassBases; static CodeOutputInterface * g_code; static const char * g_inputString; //!< the code fragment as text static int g_inputPosition; //!< read offset during parsing static const char * g_currentFontClass; static bool g_needsTermination; static int g_inputLines; //!< number of line in the code fragment static int g_yyLineNr; //!< current line number static FileDef * g_sourceFileDef; static Definition * g_currentDefinition; static MemberDef * g_currentMemberDef; static bool g_includeCodeFragment; static QCString g_realScope; static bool g_insideBody; static int g_bodyCurlyCount; static bool g_searchingForBody; static QCString g_classScope; static int g_paramParens; //static int g_anchorCount; static bool g_exampleBlock; static QCString g_exampleName; static QCString g_exampleFile; static QCString g_type; static QCString g_name; static bool g_doubleStringIsDoc; static bool g_doubleQuote; static bool g_noSuiteFound; static int g_stringContext; static QValueStack g_indents; //!< Tracks indentation levels for scoping in python static void endFontClass(); static void adjustScopesAndSuites(unsigned indentLength); /*! Represents a stack of variable to class mappings as found in the * code. Each scope is enclosed in pushScope() and popScope() calls. * Variables are added by calling addVariables() and one can search * for variable using findVariable(). */ class PyVariableContext { public: static const ClassDef *dummyContext; class Scope : public SDict { public: Scope() : SDict(17) {} }; PyVariableContext() { m_scopes.setAutoDelete(TRUE); } virtual ~PyVariableContext() { } void pushScope() { m_scopes.append(new Scope); } void popScope() { if (m_scopes.count()>0) { m_scopes.remove(m_scopes.count()-1); } } void clear() { m_scopes.clear(); m_globalScope.clear(); } void clearExceptGlobal() { m_scopes.clear(); } void addVariable(const QCString &type,const QCString &name); ClassDef *findVariable(const QCString &name); private: Scope m_globalScope; QList m_scopes; }; void PyVariableContext::addVariable(const QCString &type,const QCString &name) { //printf("PyVariableContext::addVariable(%s,%s)\n",type.data(),name.data()); QCString ltype = type.simplifyWhiteSpace(); QCString lname = name.simplifyWhiteSpace(); Scope *scope = m_scopes.count()==0 ? &m_globalScope : m_scopes.getLast(); ClassDef *varType; if ( (varType=g_codeClassSDict[ltype]) || // look for class definitions inside the code block (varType=getResolvedClass(g_currentDefinition,g_sourceFileDef,ltype)) // look for global class definitions ) { scope->append(lname,varType); // add it to a list } else { if (m_scopes.count()>0) // for local variables add a dummy entry so the name // is hidden to avoid FALSE links to global variables with the same name // TODO: make this work for namespaces as well! { scope->append(lname,dummyContext); } } } ClassDef *PyVariableContext::findVariable(const QCString &name) { if (name.isEmpty()) return 0; ClassDef *result = 0; QListIterator sli(m_scopes); Scope *scope; // search from inner to outer scope for (sli.toLast();(scope=sli.current());--sli) { result = scope->find(name); if (result) { return result; } } // nothing found -> also try the global scope result=m_globalScope.find(name); return result; } static PyVariableContext g_theVarContext; const ClassDef *PyVariableContext::dummyContext = (ClassDef*)0x8; class PyCallContext { public: struct Ctx { Ctx() : name(g_name), type(g_type), cd(0) {} QCString name; QCString type; ClassDef *cd; }; PyCallContext() { m_classList.append(new Ctx); m_classList.setAutoDelete(TRUE); } virtual ~PyCallContext() {} void setClass(ClassDef *cd) { Ctx *ctx = m_classList.getLast(); if (ctx) { ctx->cd=cd; } } void pushScope() { m_classList.append(new Ctx); } void popScope() { if (m_classList.count()>1) { Ctx *ctx = m_classList.getLast(); if (ctx) { g_name = ctx->name; g_type = ctx->type; } m_classList.removeLast(); } else { } } void clear() { m_classList.clear(); m_classList.append(new Ctx); } ClassDef *getClass() const { Ctx *ctx = m_classList.getLast(); if (ctx) return ctx->cd; else return 0; } private: QList m_classList; }; static PyCallContext g_theCallContext; /*! counts the number of lines in the input */ static int countLines() { const char *p=g_inputString; char c; int count=1; while ((c=*p)) { p++ ; if (c=='\n') count++; } if (p>g_inputString && *(p-1)!='\n') { // last line does not end with a \n, so we add an extra // line and explicitly terminate the line after parsing. count++, g_needsTermination=TRUE; } return count; } static void setCurrentDoc(const QCString &name,const QCString &base,const QCString &anchor="") { static bool searchEngineEnabled=Config_getBool("SEARCHENGINE"); if (searchEngineEnabled) { Doxygen::searchIndex->setCurrentDoc(name,base,anchor); } } static void addToSearchIndex(const char *text) { static bool searchEngineEnabled=Config_getBool("SEARCHENGINE"); if (searchEngineEnabled) { Doxygen::searchIndex->addWord(text,FALSE); } } static ClassDef *stripClassName(const char *s) { int pos=0; QCString type = s; QCString className; QCString templSpec; while (extractClassNameFromType(type,pos,className,templSpec)!=-1) { QCString clName=className+templSpec; ClassDef *cd=0; if (!g_classScope.isEmpty()) { cd=getResolvedClass(g_currentDefinition,g_sourceFileDef,g_classScope+"::"+clName); } if (cd==0) { cd=getResolvedClass(g_currentDefinition,g_sourceFileDef,clName); } if (cd) { return cd; } } return 0; } /*! start a new line of code, inserting a line number if g_sourceFileDef * is TRUE. If a definition starts at the current line, then the line * number is linked to the documentation of that definition. */ static void startCodeLine() { //if (g_currentFontClass) { g_code->endFontClass(); } if (g_sourceFileDef) { //QCString lineNumber,lineAnchor; //lineNumber.sprintf("%05d",g_yyLineNr); //lineAnchor.sprintf("l%05d",g_yyLineNr); Definition *d = g_sourceFileDef->getSourceDefinition(g_yyLineNr); //printf("startCodeLine %d d=%p\n",g_yyLineNr,d); //g_code->startLineNumber(); if (!g_includeCodeFragment && d && d->isLinkableInProject()) { g_currentDefinition = d; g_currentMemberDef = g_sourceFileDef->getSourceMember(g_yyLineNr); g_insideBody = FALSE; g_searchingForBody = TRUE; g_realScope = d->name().copy(); g_classScope = d->name().copy(); //printf("Real scope: `%s'\n",g_realScope.data()); g_bodyCurlyCount = 0; QCString lineAnchor; lineAnchor.sprintf("l%05d",g_yyLineNr); if (g_currentMemberDef) { g_code->writeLineNumber(g_currentMemberDef->getReference(), g_currentMemberDef->getOutputFileBase(), g_currentMemberDef->anchor(),g_yyLineNr); setCurrentDoc( g_currentMemberDef->qualifiedName(), g_sourceFileDef->getSourceFileBase(), lineAnchor); } else { g_code->writeLineNumber(d->getReference(), d->getOutputFileBase(), 0,g_yyLineNr); setCurrentDoc( d->qualifiedName(), g_sourceFileDef->getSourceFileBase(), lineAnchor); } } else { //g_code->codify(lineNumber); g_code->writeLineNumber(0,0,0,g_yyLineNr); } //g_code->endLineNumber(); } g_code->startCodeLine(); if (g_currentFontClass) { g_code->startFontClass(g_currentFontClass); } } static void codify(char* text) { g_code->codify(text); } static void endCodeLine() { if (g_currentFontClass) { g_code->endFontClass(); } g_code->endCodeLine(); } /*! writes a link to a fragment \a text that may span multiple lines, inserting * line numbers for each line. If \a text contains newlines, the link will be * split into multiple links with the same destination, one for each line. */ static void writeMultiLineCodeLink(CodeOutputInterface &ol, const char *ref,const char *file, const char *anchor,const char *text, const char *tooltip) { bool done=FALSE; char *p=(char *)text; while (!done) { char *sp=p; char c; while ((c=*p++) && c!='\n'); if (c=='\n') { g_yyLineNr++; *(p-1)='\0'; //printf("writeCodeLink(%s,%s,%s,%s)\n",ref,file,anchor,sp); ol.writeCodeLink(ref,file,anchor,sp,tooltip); endCodeLine(); if (g_yyLineNrcodify(sp); endCodeLine(); if (g_yyLineNrcodify(sp); done=TRUE; } } } static void addDocCrossReference(MemberDef *src,MemberDef *dst) { if (dst->isTypedef() || dst->isEnumerate()) return; // don't add types //printf("addDocCrossReference src=%s,dst=%s\n",src->name().data(),dst->name().data()); if ((Config_getBool("REFERENCED_BY_RELATION") || Config_getBool("CALLER_GRAPH")) && (src->isFunction() || src->isSlot()) ) { dst->addSourceReferencedBy(src); } if ((Config_getBool("REFERENCES_RELATION") || Config_getBool("CALL_GRAPH")) && (src->isFunction() || src->isSlot()) ) { src->addSourceReferences(dst); } } static bool getLinkInScope(const QCString &c, // scope const QCString &m, // member const char *memberText, // exact text CodeOutputInterface &ol, const char *text ) { MemberDef *md; ClassDef *cd; FileDef *fd; NamespaceDef *nd; GroupDef *gd; //printf("Trying `%s'::`%s'\n",c.data(),m.data()); if (getDefs(c,m,"()",md,cd,fd,nd,gd,FALSE,g_sourceFileDef) && md->isLinkable()) { //printf("Found!\n"); //Definition *d=0; //if (cd) d=cd; else if (nd) d=nd; else if (fd) d=fd; else d=gd; Definition *d = md->getOuterScope()==Doxygen::globalScope ? md->getBodyDef() : md->getOuterScope(); if (md->getGroupDef()) d = md->getGroupDef(); if (d && d->isLinkable()) { g_theCallContext.setClass(stripClassName(md->typeString())); //printf("g_currentDefinition=%p g_currentMemberDef=%p g_insideBody=%d\n", // g_currentDefinition,g_currentMemberDef,g_insideBody); if (g_currentDefinition && g_currentMemberDef && md!=g_currentMemberDef && g_insideBody) { addDocCrossReference(g_currentMemberDef,md); } //printf("d->getReference()=`%s' d->getOutputBase()=`%s' name=`%s' member name=`%s'\n",d->getReference().data(),d->getOutputFileBase().data(),d->name().data(),md->name().data()); writeMultiLineCodeLink(ol,md->getReference(), md->getOutputFileBase(), md->anchor(), text ? text : memberText, md->briefDescriptionAsTooltip()); addToSearchIndex(text ? text : memberText); return TRUE; } } return FALSE; } static bool getLink(const char *className, const char *memberName, CodeOutputInterface &ol, const char *text=0) { QCString m=removeRedundantWhiteSpace(memberName); QCString c=className; if (!getLinkInScope(c,m,memberName,ol,text)) { if (!g_curClassName.isEmpty()) { if (!c.isEmpty()) c.prepend("::"); c.prepend(g_curClassName); return getLinkInScope(c,m,memberName,ol,text); } return FALSE; } return TRUE; } /* For a given string in the source code, finds its class or global id and links to it. As of June 1, '05, this ONLY finds classes */ static void generateClassOrGlobalLink(CodeOutputInterface &ol,char *clName, bool /*typeOnly*/=FALSE) { QCString className=clName; // Don't do anything for empty text if (className.isEmpty()) return; ClassDef *cd=0,*lcd=0; /** Class def that we may find */ MemberDef *md=0; /** Member def that we may find */ bool isLocal=FALSE; // printf("generateClassOrGlobalLink(className=%s)\n",className.data()); if ((lcd=g_theVarContext.findVariable(className))==0) // not a local variable { Definition *d = g_currentDefinition; cd = getResolvedClass(d,g_sourceFileDef,className,&md); //printf("d=%p g_sourceFileDef=%p\n",d,g_currentDefinition); //printf("is found as a type %s\n",cd?cd->name().data():""); if (cd==0 && md==0) // also see if it is variable or enum or enum value { if (getLink(g_classScope,clName,ol,clName)) { return; } } } else { if (lcd!=PyVariableContext::dummyContext) { g_theCallContext.setClass(lcd); } isLocal=TRUE; //fprintf(stderr,"is a local variable cd=%p!\n",cd); } if (cd && cd->isLinkable()) // is it a linkable class { writeMultiLineCodeLink(ol,cd->getReference(),cd->getOutputFileBase(),0,clName,cd->briefDescriptionAsTooltip()); addToSearchIndex(className); if (md) { Definition *d = md->getOuterScope()==Doxygen::globalScope ? md->getBodyDef() : md->getOuterScope(); if (md->getGroupDef()) d = md->getGroupDef(); if (d && d->isLinkable() && md->isLinkable() && g_currentMemberDef) { addDocCrossReference(g_currentMemberDef,md); } } } else // not a class, maybe a global member { /* This code requires a going-over in order to make it work for Python //printf("class %s not linkable! cd=%p md=%p typeOnly=%d\n",clName,cd,md,typeOnly); if (!isLocal && (md!=0 || (cd==0 && !typeOnly))) // not a class, see if it is a global enum/variable/typedef. { if (md==0) // not found as a typedef { md = setCallContextForVar(clName); //printf("setCallContextForVar(%s) md=%p g_currentDefinition=%p\n",clName,md,g_currentDefinition); if (md && g_currentDefinition) { //fprintf(stderr,"%s accessible from %s? %d md->getOuterScope=%s\n", // md->name().data(),g_currentDefinition->name().data(), // isAccessibleFrom(g_currentDefinition,g_sourceFileDef,md), // md->getOuterScope()->name().data()); } if (md && g_currentDefinition && isAccessibleFrom(g_currentDefinition,g_sourceFileDef,md)==-1) { md=0; // variable not accessible } } if (md) { //printf("is a global md=%p g_currentDefinition=%s\n",md,g_currentDefinition?g_currentDefinition->name().data():""); if (md->isLinkable()) { writeMultiLineCodeLink(ol,md->getReference(),md->getOutputFileBase(),md->anchor(),clName,md->briefDescriptionAsTooltip()); addToSearchIndex(clName); if (g_currentMemberDef) { addDocCrossReference(g_currentMemberDef,md); } return; } } } */ // nothing found, just write out the word codifyLines(clName); addToSearchIndex(clName); } } /* As of June 1, this function seems to work for file members, but scopes are not being correctly tracked for classes so it doesn't work for classes yet. */ static void generateFunctionLink(CodeOutputInterface &ol,char *funcName) { //CodeClassDef *ccd=0; ClassDef *ccd=0; QCString locScope=g_classScope.copy(); QCString locFunc=removeRedundantWhiteSpace(funcName); //fprintf(stdout,"*** locScope=%s locFunc=%s\n",locScope.data(),locFunc.data()); int i=locFunc.findRev("::"); if (i>0) { locScope=locFunc.left(i); locFunc=locFunc.right(locFunc.length()-i-2).stripWhiteSpace(); } //printf("generateFunctionLink(%s) classScope=`%s'\n",locFunc.data(),locScope.data()); if (!locScope.isEmpty() && (ccd=g_codeClassSDict[locScope])) { //printf("using classScope %s\n",g_classScope.data()); if (ccd->baseClasses()) { BaseClassListIterator bcli(*ccd->baseClasses()); for ( ; bcli.current() ; ++bcli) { if (getLink(bcli.current()->classDef->name(),locFunc,ol,funcName)) { return; } } } } if (!getLink(locScope,locFunc,ol,funcName)) { generateClassOrGlobalLink(ol,funcName); } return; } static bool findMemberLink(CodeOutputInterface &ol,Definition *sym,const char *symName) { //printf("sym %s outerScope=%s equal=%d\n", // sym->name().data(),sym->getOuterScope()->name().data(), // sym->getOuterScope()==g_currentDefinition); if (sym->getOuterScope() && sym->getOuterScope()->definitionType()==Definition::TypeClass && g_currentDefinition->definitionType()==Definition::TypeClass) { ClassDef *cd = (ClassDef*)sym->getOuterScope(); ClassDef *thisCd = (ClassDef *)g_currentDefinition; QCString anchor; if (sym->definitionType()==Definition::TypeMember) { anchor=((MemberDef *)sym)->anchor(); } // TODO: find the nearest base class in case cd is a base class of // thisCd if (cd==thisCd) { writeMultiLineCodeLink(ol,sym->getReference(), sym->getOutputFileBase(), anchor, symName, sym->briefDescriptionAsTooltip()); return TRUE; } } return FALSE; } static void findMemberLink(CodeOutputInterface &ol,char *symName) { //printf("Member reference: %s scope=%s member=%s\n", // yytext, // g_currentDefinition?g_currentDefinition->name().data():"", // g_currentMemberDef?g_currentMemberDef->name().data():"" // ); if (g_currentDefinition) { DefinitionIntf *di = Doxygen::symbolMap->find(symName); if (di) { if (di->definitionType()==DefinitionIntf::TypeSymbolList) // multiple symbols { DefinitionListIterator dli(*(DefinitionList*)di); Definition *sym; for (dli.toFirst();(sym=dli.current());++dli) { if (findMemberLink(ol,sym,symName)) return; } } else // single symbol { if (findMemberLink(ol,(Definition*)di,symName)) return; } } } //printf("sym %s not found\n",&yytext[5]); codify(symName); } static void startFontClass(const char *s) { endFontClass(); g_code->startFontClass(s); g_currentFontClass=s; } static void endFontClass() { if (g_currentFontClass) { g_code->endFontClass(); g_currentFontClass=0; } } #undef YY_INPUT #define YY_INPUT(buf,result,max_size) result=yyread(buf,max_size); static int yyread(char *buf,int max_size) { int c=0; while( c < max_size && g_inputString[g_inputPosition] ) { *buf = g_inputString[g_inputPosition++] ; c++; buf++; } return c; } #define YY_NO_UNPUT 1 #define Body 1 #define FunctionDec 2 #define FunctionParams 3 #define ClassDec 4 #define ClassInheritance 5 #define Suite 6 #define SuiteCaptureIndent 7 #define SuiteStart 8 #define SuiteMaintain 9 #define SuiteContinuing 10 #define LongString 11 #define SingleQuoteString 12 #define DoubleQuoteString 13 #define TripleString 14 /* 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 \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 948 "pycode.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_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 >= 489 ) 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] != 1133 ); 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 951 "pycode.l" { startFontClass("keyword"); codify(yytext); endFontClass(); BEGIN( FunctionDec ); } YY_BREAK case 2: YY_RULE_SETUP #line 958 "pycode.l" { startFontClass("keyword"); codify(yytext); endFontClass(); BEGIN( ClassDec ); } YY_BREAK case 3: YY_RULE_SETUP #line 964 "pycode.l" { startFontClass("keywordtype"); codify(yytext); endFontClass(); } YY_BREAK case 4: YY_RULE_SETUP #line 969 "pycode.l" { codify("self."); findMemberLink(*g_code,&yytext[5]); } YY_BREAK case 5: YY_RULE_SETUP #line 975 "pycode.l" { generateClassOrGlobalLink(*g_code,yytext); // codify(yytext); g_curClassName = yytext; g_curClassBases.clear(); BEGIN( ClassInheritance ); } YY_BREAK case 6: YY_RULE_SETUP #line 985 "pycode.l" { codify(yytext); } YY_BREAK case 7: YY_RULE_SETUP #line 989 "pycode.l" { // The parser // is assuming // that ALL identifiers // in this state // are base classes; // it doesn't check to see // that the first parenthesis // has been seen. // This is bad - it should // probably be more strict // about what to accept. g_curClassBases.inSort(yytext); generateClassOrGlobalLink(*g_code,yytext); // codify(yytext); } YY_BREAK case 8: YY_RULE_SETUP #line 1008 "pycode.l" { codify(yytext); // Assume this will // be a one-line suite; // found counter-example // in SuiteStart. // Push a class scope ClassDef *classDefToAdd = new ClassDef("",1,g_curClassName,ClassDef::Class,0,0,FALSE); g_codeClassSDict.append(g_curClassName,classDefToAdd); char *s=g_curClassBases.first(); while (s) { ClassDef *baseDefToAdd; baseDefToAdd=g_codeClassSDict[s]; // Try to find class in global // scope if (baseDefToAdd==0) { baseDefToAdd=getResolvedClass(g_currentDefinition,g_sourceFileDef,s); } if (baseDefToAdd && baseDefToAdd!=classDefToAdd) { classDefToAdd->insertBaseClass(baseDefToAdd,s,Public,Normal); } s=g_curClassBases.next(); } // Reset class-parsing variables. g_curClassName.resize(0); g_curClassBases.clear(); g_noSuiteFound = TRUE; BEGIN( SuiteStart ); } YY_BREAK case 9: YY_RULE_SETUP #line 1052 "pycode.l" { generateFunctionLink(*g_code,yytext); } YY_BREAK case 10: YY_RULE_SETUP #line 1056 "pycode.l" { codify(yytext); BEGIN( FunctionParams ); } YY_BREAK case 11: YY_RULE_SETUP #line 1063 "pycode.l" { // Parses delimiters codify(yytext); } YY_BREAK case 12: YY_RULE_SETUP #line 1068 "pycode.l" { codify(yytext); } YY_BREAK case 13: YY_RULE_SETUP #line 1072 "pycode.l" { codify(yytext); } YY_BREAK case 14: YY_RULE_SETUP #line 1076 "pycode.l" { codify(yytext); // Assume this will // be a one-line suite; // found counter-example // in SuiteStart. g_noSuiteFound = TRUE; BEGIN( SuiteStart ); } YY_BREAK case 15: YY_RULE_SETUP #line 1090 "pycode.l" { // Position-sensitive rules! // Must come AFTER keyword-triggered rules // Must come BEFORE identifier NONEMPTY-like rules // to syntax highlight. startFontClass("keyword"); codify(yytext); endFontClass(); } YY_BREAK case 16: YY_RULE_SETUP #line 1101 "pycode.l" { startFontClass("keywordflow"); codify(yytext); endFontClass(); } YY_BREAK case 17: YY_RULE_SETUP #line 1107 "pycode.l" { codify(yytext); } YY_BREAK case 18: YY_RULE_SETUP #line 1116 "pycode.l" { codify(yytext); } YY_BREAK case 19: YY_RULE_SETUP #line 1119 "pycode.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); // No indentation necesary g_noSuiteFound = FALSE; } YY_BREAK case 20: YY_RULE_SETUP #line 1128 "pycode.l" { startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); // No indentation necesary g_noSuiteFound = FALSE; } YY_BREAK case 21: YY_RULE_SETUP #line 1136 "pycode.l" { codify(yytext); } YY_BREAK case 22: YY_RULE_SETUP #line 1141 "pycode.l" { // This eats EVERYTHING // except the newline startFontClass("comment"); codifyLines(yytext); endFontClass(); } YY_BREAK case 23: YY_RULE_SETUP #line 1149 "pycode.l" { codifyLines(yytext); if ( g_noSuiteFound ) { // printf("New suite to capture! [%d]\n", g_yyLineNr); BEGIN ( SuiteCaptureIndent ); } } YY_BREAK case 24: YY_RULE_SETUP #line 1160 "pycode.l" { // Blankline - ignore, keep looking for indentation. codifyLines(yytext); } YY_BREAK case 25: YY_RULE_SETUP #line 1165 "pycode.l" { // This state lasts momentarily, // to check the indentation // level that is about to be // used. codifyLines(yytext); g_indents.push(yyleng); // printf("Captured indent of %d [line %d]\n", yyleng, g_yyLineNr); BEGIN( Suite ); } YY_BREAK case 26: YY_RULE_SETUP #line 1179 "pycode.l" { // This implements poor // indendation-tracking; // should be improved. // (translate tabs to space, etc) codifyLines(yytext); adjustScopesAndSuites(yyleng); } YY_BREAK case 27: YY_RULE_SETUP #line 1188 "pycode.l" { // If this ever succeeds, // it means that this is // a blank line, and // can be ignored. codifyLines(yytext); } YY_BREAK case 28: YY_RULE_SETUP #line 1196 "pycode.l" { // Default rule; matches // the empty string, assuming // real text starts here. // Just go straight to Body. adjustScopesAndSuites(0); } YY_BREAK case 29: YY_RULE_SETUP #line 1206 "pycode.l" { codifyLines(yytext); BEGIN( SuiteMaintain ); } YY_BREAK case 30: YY_RULE_SETUP #line 1210 "pycode.l" { codify(yytext); } YY_BREAK case 31: YY_RULE_SETUP #line 1213 "pycode.l" { codifyLines(yytext); } YY_BREAK // Single quoted string like 'That\'s a """nice""" string!' case 32: YY_RULE_SETUP #line 1218 "pycode.l" { // line continuation codifyLines(yytext); } YY_BREAK case 33: YY_RULE_SETUP #line 1221 "pycode.l" { // espaced char codify(yytext); } YY_BREAK case 34: YY_RULE_SETUP #line 1224 "pycode.l" { // tripple double quotes codify(yytext); } YY_BREAK case 35: YY_RULE_SETUP #line 1227 "pycode.l" { // end of the string codify(yytext); endFontClass(); BEGIN(g_stringContext); } YY_BREAK case 36: YY_RULE_SETUP #line 1232 "pycode.l" { // normal chars codify(yytext); } YY_BREAK case 37: YY_RULE_SETUP #line 1235 "pycode.l" { // normal char codify(yytext); } YY_BREAK // Double quoted string like "That's \"a '''nice'''\" string!" case 38: YY_RULE_SETUP #line 1241 "pycode.l" { // line continuation codifyLines(yytext); } YY_BREAK case 39: YY_RULE_SETUP #line 1244 "pycode.l" { // espaced char codify(yytext); } YY_BREAK case 40: YY_RULE_SETUP #line 1247 "pycode.l" { // tripple single quotes codify(yytext); } YY_BREAK case 41: YY_RULE_SETUP #line 1250 "pycode.l" { // end of the string codify(yytext); endFontClass(); BEGIN(g_stringContext); } YY_BREAK case 42: YY_RULE_SETUP #line 1255 "pycode.l" { // normal chars codify(yytext); } YY_BREAK case 43: YY_RULE_SETUP #line 1258 "pycode.l" { // normal char codify(yytext); } YY_BREAK case 44: #line 1265 "pycode.l" case 45: YY_RULE_SETUP #line 1265 "pycode.l" { codify(yytext); if (g_doubleQuote==(yytext[0]=='"')) { endFontClass(); BEGIN(g_stringContext); } } YY_BREAK case 46: YY_RULE_SETUP #line 1273 "pycode.l" { codifyLines(yytext); } YY_BREAK case 47: YY_RULE_SETUP #line 1276 "pycode.l" { codifyLines(yytext); } YY_BREAK case 48: YY_RULE_SETUP #line 1279 "pycode.l" { codify(yytext); } YY_BREAK /* <*>({NONEMPTY}|{EXPCHAR}|{BB}) { // This should go one character at a time. codify(yytext); // printf("[pycode] '%s' [ state %d ] [line %d] no match\n", // yytext, YY_START, g_yyLineNr); //endFontClass(); BEGIN(Body); } */ case 49: #line 1296 "pycode.l" case 50: YY_RULE_SETUP #line 1296 "pycode.l" { startFontClass("stringliteral"); g_stringContext=YY_START; g_doubleQuote=yytext[yyleng-1]=='"'; codify(yytext); BEGIN(TripleString); } YY_BREAK case 51: YY_RULE_SETUP #line 1303 "pycode.l" { // single quoted string startFontClass("stringliteral"); g_stringContext=YY_START; codify(yytext); BEGIN(SingleQuoteString); } YY_BREAK case 52: YY_RULE_SETUP #line 1309 "pycode.l" { // double quoted string startFontClass("stringliteral"); g_stringContext=YY_START; codify(yytext); BEGIN(DoubleQuoteString); } YY_BREAK case 53: YY_RULE_SETUP #line 1315 "pycode.l" { if (YY_START==SingleQuoteString || YY_START==DoubleQuoteString || YY_START==TripleString ) { REJECT; } // This eats EVERYTHING // except the newline startFontClass("comment"); codifyLines(yytext); endFontClass(); } YY_BREAK case 54: YY_RULE_SETUP #line 1329 "pycode.l" { codifyLines(yytext); //printf("[pycode] %d NEWLINE [line %d] no match\n", // YY_START, g_yyLineNr); //endFontClass(); BEGIN(Body); } YY_BREAK case 55: YY_RULE_SETUP #line 1338 "pycode.l" { codify(yytext); // printf("[pycode] '%s' [ state %d ] [line %d] no match\n", // yytext, YY_START, g_yyLineNr); //endFontClass(); BEGIN(Body); } YY_BREAK case 56: YY_RULE_SETUP #line 1347 "pycode.l" ECHO; YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(Body): case YY_STATE_EOF(FunctionDec): case YY_STATE_EOF(FunctionParams): case YY_STATE_EOF(ClassDec): case YY_STATE_EOF(ClassInheritance): case YY_STATE_EOF(Suite): case YY_STATE_EOF(SuiteCaptureIndent): case YY_STATE_EOF(SuiteStart): case YY_STATE_EOF(SuiteMaintain): case YY_STATE_EOF(SuiteContinuing): case YY_STATE_EOF(LongString): case YY_STATE_EOF(SingleQuoteString): case YY_STATE_EOF(DoubleQuoteString): case YY_STATE_EOF(TripleString): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = yy_hold_char; YY_RESTORE_YY_MORE_OFFSET if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between yy_current_buffer and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ yy_n_chars = yy_current_buffer->yy_n_chars; yy_current_buffer->yy_input_file = yyin; yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] ) { /* This was really a NUL. */ yy_state_type yy_next_state; yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state(); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = yytext_ptr + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++yy_c_buf_p; yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = yy_c_buf_p; goto yy_find_action; } } else switch ( yy_get_next_buffer() ) { case EOB_ACT_END_OF_FILE: { yy_did_buffer_switch_on_eof = 0; if ( yywrap() ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ yy_c_buf_p = yytext_ptr + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! yy_did_buffer_switch_on_eof ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state(); yy_cp = yy_c_buf_p; yy_bp = yytext_ptr + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: yy_c_buf_p = &yy_current_buffer->yy_ch_buf[yy_n_chars]; yy_current_state = yy_get_previous_state(); yy_cp = yy_c_buf_p; yy_bp = yytext_ptr + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer() { register char *dest = yy_current_buffer->yy_ch_buf; register char *source = yytext_ptr; register int number_to_move, i; int ret_val; if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( yy_current_buffer->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ yy_current_buffer->yy_n_chars = yy_n_chars = 0; else { int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ #ifdef YY_USES_REJECT YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); #else /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = yy_current_buffer; int yy_c_buf_p_offset = (int) (yy_c_buf_p - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yy_flex_realloc( (void *) b->yy_ch_buf, b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; #endif } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), yy_n_chars, num_to_read ); yy_current_buffer->yy_n_chars = yy_n_chars; } if ( yy_n_chars == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; yy_current_buffer->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; yy_n_chars += number_to_move; yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yytext_ptr = &yy_current_buffer->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state() { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = yy_start; yy_state_ptr = yy_state_buf; *yy_state_ptr++ = yy_current_state; for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); 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 >= 489 ) 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; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ #ifdef YY_USE_PROTOS static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) #else static yy_state_type yy_try_NUL_trans( yy_current_state ) yy_state_type yy_current_state; #endif { register int yy_is_jam; register YY_CHAR yy_c = 1; 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 >= 489 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 488); if ( ! yy_is_jam ) *yy_state_ptr++ = yy_current_state; return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #ifdef YY_USE_PROTOS static void yyunput( int c, register char *yy_bp ) #else static void yyunput( c, yy_bp ) int c; register char *yy_bp; #endif { register char *yy_cp = yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yy_hold_char; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register int number_to_move = yy_n_chars + 2; register char *dest = &yy_current_buffer->yy_ch_buf[ yy_current_buffer->yy_buf_size + 2]; register char *source = &yy_current_buffer->yy_ch_buf[number_to_move]; while ( source > yy_current_buffer->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); yy_current_buffer->yy_n_chars = yy_n_chars = yy_current_buffer->yy_buf_size; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; yytext_ptr = yy_bp; yy_hold_char = *yy_cp; yy_c_buf_p = yy_cp; } #endif /* ifndef YY_NO_UNPUT */ #ifdef __cplusplus static int yyinput() #else static int input() #endif { int c; *yy_c_buf_p = yy_hold_char; if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] ) /* This was really a NUL. */ *yy_c_buf_p = '\0'; else { /* need more input */ int offset = yy_c_buf_p - yytext_ptr; ++yy_c_buf_p; switch ( yy_get_next_buffer() ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart( yyin ); /* fall through */ case EOB_ACT_END_OF_FILE: { if ( yywrap() ) return EOF; if ( ! yy_did_buffer_switch_on_eof ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: yy_c_buf_p = yytext_ptr + offset; break; } } } c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */ *yy_c_buf_p = '\0'; /* preserve yytext */ yy_hold_char = *++yy_c_buf_p; return c; } #ifdef YY_USE_PROTOS void yyrestart( FILE *input_file ) #else void yyrestart( input_file ) FILE *input_file; #endif { if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_init_buffer( yy_current_buffer, input_file ); yy_load_buffer_state(); } #ifdef YY_USE_PROTOS void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) #else void yy_switch_to_buffer( new_buffer ) YY_BUFFER_STATE new_buffer; #endif { if ( yy_current_buffer == new_buffer ) return; if ( yy_current_buffer ) { /* Flush out information for old buffer. */ *yy_c_buf_p = yy_hold_char; yy_current_buffer->yy_buf_pos = yy_c_buf_p; yy_current_buffer->yy_n_chars = yy_n_chars; } yy_current_buffer = new_buffer; yy_load_buffer_state(); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ yy_did_buffer_switch_on_eof = 1; } #ifdef YY_USE_PROTOS void yy_load_buffer_state( void ) #else void yy_load_buffer_state() #endif { yy_n_chars = yy_current_buffer->yy_n_chars; yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; yyin = yy_current_buffer->yy_input_file; yy_hold_char = *yy_c_buf_p; } #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) #else YY_BUFFER_STATE yy_create_buffer( file, size ) FILE *file; int size; #endif { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer( b, file ); return b; } #ifdef YY_USE_PROTOS void yy_delete_buffer( YY_BUFFER_STATE b ) #else void yy_delete_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; if ( b == yy_current_buffer ) yy_current_buffer = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yy_flex_free( (void *) b->yy_ch_buf ); yy_flex_free( (void *) b ); } #ifndef YY_ALWAYS_INTERACTIVE #ifndef YY_NEVER_INTERACTIVE extern int isatty YY_PROTO(( int )); #endif #endif #ifdef YY_USE_PROTOS void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) #else void yy_init_buffer( b, file ) YY_BUFFER_STATE b; FILE *file; #endif { yy_flush_buffer( b ); b->yy_input_file = file; b->yy_fill_buffer = 1; #if YY_ALWAYS_INTERACTIVE b->yy_is_interactive = 1; #else #if YY_NEVER_INTERACTIVE b->yy_is_interactive = 0; #else b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; #endif #endif } #ifdef YY_USE_PROTOS void yy_flush_buffer( YY_BUFFER_STATE b ) #else void yy_flush_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == yy_current_buffer ) yy_load_buffer_state(); } #ifndef YY_NO_SCAN_BUFFER #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) #else YY_BUFFER_STATE yy_scan_buffer( base, size ) char *base; yy_size_t size; #endif { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer( b ); return b; } #endif #ifndef YY_NO_SCAN_STRING #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) #else YY_BUFFER_STATE yy_scan_string( yy_str ) yyconst char *yy_str; #endif { int len; for ( len = 0; yy_str[len]; ++len ) ; return yy_scan_bytes( yy_str, len ); } #endif #ifndef YY_NO_SCAN_BYTES #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) #else YY_BUFFER_STATE yy_scan_bytes( bytes, len ) yyconst char *bytes; int len; #endif { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = len + 2; buf = (char *) yy_flex_alloc( n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < len; ++i ) buf[i] = bytes[i]; buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer( buf, n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #endif #ifndef YY_NO_PUSH_STATE #ifdef YY_USE_PROTOS static void yy_push_state( int new_state ) #else static void yy_push_state( new_state ) int new_state; #endif { if ( yy_start_stack_ptr >= yy_start_stack_depth ) { yy_size_t new_size; yy_start_stack_depth += YY_START_STACK_INCR; new_size = yy_start_stack_depth * sizeof( int ); if ( ! yy_start_stack ) yy_start_stack = (int *) yy_flex_alloc( new_size ); else yy_start_stack = (int *) yy_flex_realloc( (void *) yy_start_stack, new_size ); if ( ! yy_start_stack ) YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); } yy_start_stack[yy_start_stack_ptr++] = YY_START; BEGIN(new_state); } #endif #ifndef YY_NO_POP_STATE static void yy_pop_state() { if ( --yy_start_stack_ptr < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN(yy_start_stack[yy_start_stack_ptr]); } #endif #ifndef YY_NO_TOP_STATE static int yy_top_state() { return yy_start_stack[yy_start_stack_ptr - 1]; } #endif #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif #ifdef YY_USE_PROTOS static void yy_fatal_error( yyconst char msg[] ) #else static void yy_fatal_error( msg ) char msg[]; #endif { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yytext[yyleng] = yy_hold_char; \ yy_c_buf_p = yytext + n; \ yy_hold_char = *yy_c_buf_p; \ *yy_c_buf_p = '\0'; \ yyleng = n; \ } \ while ( 0 ) /* Internal utility routines. */ #ifndef yytext_ptr #ifdef YY_USE_PROTOS static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) #else static void yy_flex_strncpy( s1, s2, n ) char *s1; yyconst char *s2; int n; #endif { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN #ifdef YY_USE_PROTOS static int yy_flex_strlen( yyconst char *s ) #else static int yy_flex_strlen( s ) yyconst char *s; #endif { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif #ifdef YY_USE_PROTOS static void *yy_flex_alloc( yy_size_t size ) #else static void *yy_flex_alloc( size ) yy_size_t size; #endif { return (void *) malloc( size ); } #ifdef YY_USE_PROTOS static void *yy_flex_realloc( void *ptr, yy_size_t size ) #else static void *yy_flex_realloc( ptr, size ) void *ptr; yy_size_t size; #endif { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } #ifdef YY_USE_PROTOS static void yy_flex_free( void *ptr ) #else static void yy_flex_free( ptr ) void *ptr; #endif { free( ptr ); } #if YY_MAIN int main() { yylex(); return 0; } #endif #line 1347 "pycode.l" /*@ ---------------------------------------------------------------------------- */ void resetPythonCodeParserState() { g_currentDefinition = 0; g_currentMemberDef = 0; g_doubleStringIsDoc = FALSE; g_paramParens = 0; g_indents.clear(); BEGIN( Body ); } /*! Examines current stack of white-space indentations; re-syncs the parser with the correct scope. */ static void adjustScopesAndSuites(unsigned indentLength) { // States to pop if (!g_indents.isEmpty() && indentLength < g_indents.top()) { while (!g_indents.isEmpty() && indentLength < g_indents.top()) { // printf("Exited scope indent of [%d]\n", g_indents.top()); g_indents.pop(); // Pop the old suite's indentation g_currentMemberDef=0; if (g_currentDefinition) g_currentDefinition=g_currentDefinition->getOuterScope(); } } // Are there any remaining indentation levels for suites? if (!g_indents.isEmpty()) { BEGIN( Suite ); } else { BEGIN( Body ); } } void parsePythonCode(CodeOutputInterface &od,const char *className, const QCString &s,bool exBlock, const char *exName, FileDef *fd,int startLine,int endLine,bool inlineFragment, MemberDef *) { //printf("***parseCode()\n"); //--- some code to eliminate warnings--- className = ""; exBlock = FALSE; exName = ""; inlineFragment = ""; //-------------------------------------- if (s.isEmpty()) return; g_code = &od; g_inputString = s; g_inputPosition = 0; g_currentFontClass = 0; g_needsTermination = FALSE; if (endLine!=-1) g_inputLines = endLine+1; else g_inputLines = countLines(); if (startLine!=-1) g_yyLineNr = startLine; else g_yyLineNr = 1; g_exampleBlock = exBlock; g_exampleName = exName; g_sourceFileDef = fd; // Starts line 1 on the output startCodeLine(); pycodeYYrestart( pycodeYYin ); pycodeYYlex(); if (!g_indents.isEmpty()) { // printf("Exited pysourceparser in inconsistent state!\n"); } if (g_needsTermination) { endFontClass(); g_code->endCodeLine(); } return; } #if !defined(YY_FLEX_SUBMINOR_VERSION) extern "C" { // some bogus code to keep the compiler happy void pycodeYYdummy() { yy_flex_realloc(0,0); } } #elif YY_FLEX_SUBMINOR_VERSION<33 #error "You seem to be using a version of flex newer than 2.5.4. These are currently incompatible with 2.5.4, and do NOT work with doxygen! Please use version 2.5.4 or expect things to be parsed wrongly! A bug report has been submitted (#732132)." #endif