main.c
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:6k
源码类别:

编译器/解释器

开发平台:

Others

  1. /* Main function for dlg version
  2.  *
  3.  * SOFTWARE RIGHTS
  4.  *
  5.  * We reserve no LEGAL rights to the Purdue Compiler Construction Tool
  6.  * Set (PCCTS) -- PCCTS is in the public domain.  An individual or
  7.  * company may do whatever they wish with source code distributed with
  8.  * PCCTS or the code generated by PCCTS, including the incorporation of
  9.  * PCCTS, or its output, into commerical software.
  10.  *
  11.  * We encourage users to develop software with PCCTS.  However, we do ask
  12.  * that credit is given to us for developing PCCTS.  By "credit",
  13.  * we mean that if you incorporate our source code into one of your
  14.  * programs (commercial product, research project, or otherwise) that you
  15.  * acknowledge this fact somewhere in the documentation, research report,
  16.  * etc...  If you like PCCTS and have developed a nice tool with the
  17.  * output, please mention that you developed it using PCCTS.  In
  18.  * addition, we ask that this header remain intact in our source code.
  19.  * As long as these guidelines are kept, we expect to continue enhancing
  20.  * this system and expect to make other tools available as they are
  21.  * completed.
  22.  *
  23.  * DLG 1.33
  24.  * Will Cohen
  25.  * With mods by Terence Parr; AHPCRC, University of Minnesota
  26.  * 1989-1998
  27.  */
  28. #include <stdio.h>
  29. #include "stdpccts.h"
  30. char program[] = "dlg";
  31. char version[] = "1.33MR14"; /* MRXXX */
  32. int numfiles = 0;
  33. char *file_str[2] = {NULL, NULL};
  34. char *mode_file = "mode.h";
  35. char *class_name = DEFAULT_CLASSNAME;
  36. char *OutputDirectory = TopDirectory;
  37. /* Option variables */
  38. int comp_level = 0;
  39. int interactive = FALSE;
  40. int case_insensitive = FALSE;
  41. int warn_ambig = FALSE;
  42. int gen_cpp = FALSE;
  43. #ifdef __STDC__
  44. static int ci_strequ(char *a,char *b)
  45. #else
  46. static int ci_strequ(a,b)
  47.   char  *a;
  48.   char  *b;
  49. #endif
  50. {
  51.   for ( ;*a != 0 && *b != 0; a++, b++) {
  52.     if (toupper(*a) != toupper(*b)) return 0;
  53.   }
  54.   return (*a == *b);
  55. }
  56. /* Option List Stuff */
  57. void p_comp0() {comp_level = 0;}
  58. void p_comp1() {comp_level = 1;}
  59. void p_comp2() {comp_level = 2;}
  60. void p_stdio() { file_str[numfiles++] = NULL;}
  61. void p_file(s) char *s; { file_str[numfiles++] = s;}
  62. void p_cl_name(s,t)
  63. char *s, *t;
  64. {
  65. if ( gen_cpp ) {
  66. class_name = t;
  67. }
  68. else {
  69. warning("-cl only valid in C++ mode; -cl ignored...",0);
  70. }
  71. }
  72. void p_mode_file(s,t) char *s,*t;{mode_file=t;}
  73. void p_outdir(s,t) char *s,*t;{OutputDirectory=t;}
  74. void p_ansi() {gen_ansi = TRUE;}
  75. void p_interactive() {interactive = TRUE;}
  76. void p_case_s() { case_insensitive = FALSE; }
  77. void p_case_i() { case_insensitive = TRUE; }
  78. void p_warn_ambig() { warn_ambig = TRUE; }
  79. void p_cpp() { gen_cpp = TRUE; }
  80. #ifdef __cplusplus
  81. typedef void (*WildFunc)(...);
  82. #else
  83. typedef void (*WildFunc)();
  84. #endif
  85. typedef struct {
  86. char *option;
  87. int  arg;
  88. WildFunc process;
  89. char *descr;
  90. } Opt;
  91. Opt options[] = {
  92. { "-CC", 0, (WildFunc)p_cpp, "Generate C++ output" },
  93. { "-C0", 0, (WildFunc)p_comp0, "No compression (default)" },
  94. { "-C1", 0, (WildFunc)p_comp1, "Compression level 1" },
  95. { "-C2", 0, (WildFunc)p_comp2, "Compression level 2" },
  96. { "-ga", 0, (WildFunc)p_ansi, "Generate ansi C"},
  97. { "-Wambiguity", 0, (WildFunc)p_warn_ambig, "Warn if expressions ambiguous"},
  98. { "-m", 1, (WildFunc)p_mode_file, "Rename lexical mode output file"},
  99. { "-i", 0, (WildFunc)p_interactive, "Build interactive scanner"},
  100. { "-ci", 0, (WildFunc)p_case_i, "Make lexical analyzer case insensitive"},
  101. { "-cl", 1, (WildFunc)p_cl_name, "Rename lexer class (DLGLexer); only used for -CC"},
  102. { "-cs", 0, (WildFunc)p_case_s, "Make lexical analyzer case sensitive (default)"},
  103. { "-o",  1, (WildFunc)p_outdir, OutputDirectoryOption},
  104. { "-", 0, (WildFunc)p_stdio, "Use standard i/o rather than file"},
  105. { "*", 0, (WildFunc)p_file, ""}, /* anything else is a file */
  106. { NULL, 0, NULL }
  107.  };
  108. void ProcessArgs(argc, argv, options)
  109. int argc;
  110. char **argv;
  111. Opt *options;
  112. {
  113. Opt *p;
  114. while ( argc-- > 0 )
  115. {
  116. p = options;
  117. while ( p->option != NULL )
  118. {
  119. if ( strcmp(p->option, "*") == 0 ||
  120.  ci_strequ(p->option,*argv) )
  121. {
  122. if ( p->arg )
  123. {
  124. (*p->process)( *argv, *(argv+1) );
  125. argv++;
  126. argc--;
  127. }
  128. else
  129. (*p->process)( *argv );
  130. break;
  131. }
  132. p++;
  133. }
  134. argv++;
  135. }
  136. }
  137. int main(argc,argv)
  138. int argc;
  139. char *argv[];
  140. {
  141. init();
  142. fprintf(stderr, "%s  Version %s   1989-1998n", &(program[0]),
  143. &(version[0]));
  144. if ( argc == 1 )
  145. {
  146. Opt *p = options;
  147. fprintf(stderr, "%s [options] f1 f2 ... fnn",argv[0]);
  148. while ( *(p->option) != '*' )
  149. {
  150. fprintf(stderr, "t%s %st%sn",
  151. p->option,
  152. (p->arg)?"___":"   ",
  153. p->descr);
  154. p++;
  155. }
  156. }else{
  157. ProcessArgs(argc-1, &(argv[1]), options);
  158. if (input_stream = read_stream(file_str[0])) {
  159. /* don't overwrite unless input okay */
  160. if ( gen_cpp ) {
  161. output_stream = write_stream(ClassName(CPP_FILE_SUFFIX));
  162. if ( file_str[1]!=NULL ) {
  163. warning("output file implicit in C++ mode; ignored...",0);
  164. }
  165. class_stream = write_stream(ClassName(".h"));
  166. mode_stream = class_stream;
  167. }
  168. else {
  169. output_stream = write_stream(file_str[1]);
  170. mode_stream = write_stream(mode_file);
  171. }
  172. }
  173. /* make sure that error reporting routines in grammar
  174.    know what the file really is */
  175. /* make sure that reading and writing somewhere */
  176. if (input_stream && output_stream && mode_stream){
  177. ANTLR(grammar(), input_stream);
  178. }
  179. p_class_def2(); /* MR1 */
  180. }
  181. if ( output_stream!=NULL ) fclose(output_stream);
  182. if ( !gen_cpp && mode_stream!=NULL ) fclose(mode_stream);
  183. if ( class_stream!=NULL ) fclose(class_stream);
  184. exit(PCCTS_EXIT_SUCCESS);
  185. return 0; /* get rid of warning message MR1 */
  186. }
  187. /* initialize all the variables */
  188. void init()
  189. {
  190. register int i;
  191. #ifdef SPECIAL_INITS
  192. special_inits(); /* MR1 */
  193. #endif
  194. used_chars = empty;
  195. used_classes = empty;
  196. /* make the valid character set */
  197. normal_chars = empty;
  198. /* NOTE: MIN_CHAR is EOF */
  199. /* NOTE: EOF is not quite a valid char, it is special. Skip it*/
  200. for (i = 1; i<CHAR_RANGE; ++i){
  201. set_orel(i,&normal_chars);
  202. }
  203. make_nfa_model_node();
  204. clear_hash();
  205. /* NOTE: need to set this flag before the lexer starts getting */
  206. /* tokens */
  207.     func_action = FALSE;
  208. }
  209. /* stuff that needs to be reset when a new automaton is being built */
  210. void new_automaton_mode() /* MR1 */
  211. {
  212. set_free(used_chars);
  213. clear_hash();
  214. }