ckwart.txt
上传用户:dufan58
上传日期:2007-01-05
资源大小:3407k
文件大小:4k
源码类别:

通讯/手机编程

开发平台:

Windows_Unix

  1. WART
  2. Wart is a program that implements a small subset of the Unix 'lex' lexical
  3. analyzer generator.  Unlike lex, wart may be distributed without requirement
  4. for a Unix license.  Wart was written in 1985 by Jeff Damens at the Columbia
  5. University Center of Computing Activities to facilitate development of Unix
  6. Kermit, and modified over the ensuing years by Frank da Cruz.
  7. Wart is intended for production of state table switchers.  It allows a set of
  8. states to be defined, along with a function for getting input, and a table of
  9. state transitions.  A C program is generated which performs actions and
  10. switches states based on the current state and the input.
  11. The following short program demonstrates some of the capabilities and
  12. limitations of Wart.  The program accepts from the command line a binary
  13. number, preceded by an optional minus sign, and optionally containing a
  14. fractional part.  It prints the decimal equivalent.
  15. #include <stdio.h>
  16. int state, s = 1, m = 0, d;
  17. float f;
  18. char *b;
  19. /* Declare wart states */
  20. %states sign mantissa fraction
  21. %%     /* Begin state table */
  22. <sign>-      { s = -1; BEGIN mantissa; }    /* Look for sign */
  23. <sign>0      { m = 0;  BEGIN mantissa; }    /* Got digit, start mantissa */
  24. <sign>1      { m = 1;  BEGIN mantissa; }
  25. <sign>.      { fatal("bad input"); }     /* Detect bad format */
  26. <mantissa>0  { m *= 2; }     /* Accumulate mantissa */
  27. <mantissa>1  { m = 2 * m + 1; }
  28. <mantissa>$  { printf("%dn", s * m); return; }
  29. <mantissa>.  { f = 0.0; d = 1; BEGIN fraction; }    /* Start fraction */
  30. <fraction>0  { d *= 2; }          /* Accumulate fraction */
  31. <fraction>1  { d *= 2; f += 1.0 / d; }
  32. <fraction>$  { printf("%fn", s * (m + f) ); return; }
  33. <fraction>.  { fatal("bad input"); }
  34. %%
  35. input() {     /* Define input() function */
  36.     int x;
  37.     return(((x = *b++) == '') ? '$' : x );
  38. }
  39. fatal(s) char *s; {     /* Error exit */
  40.     fprintf(stderr,"fatal - %sn",s);
  41.     exit(1);
  42. }
  43. main(argc,argv) int argc; char **argv; {    /* Main program */
  44.     if (argc < 2) exit(1);
  45.     b = *++argv;
  46.     state = sign;     /* Initialize state */
  47.     wart();     /* Invoke state switcher */
  48.     exit(0);     /* Done */
  49. }
  50. The wart program accepts as input a C program containing lines that start
  51. with "%" or a section delimited by "%%" (there can be only one such section).
  52. The directive "%states" declares the program's states.  The section enclosed
  53. by "%%" markers is the state table, with entries of the form
  54.   <state>X { action }
  55. which is read as "if in state <state> with input X perform { action }"
  56. The optional <state> field tells the current state or states the program must
  57. be in to perform the indicated action.  If no state is specified, then it
  58. means the action will be performed regardless of the current state.  If more
  59. than one state is specifed, then the action will be performed in any of the
  60. listed states.  Multiple states are separated by commas.
  61. The required input field consists of a single literal printable 7-bit ASCII
  62. character (i.e. in the range 32 through 126).  Control characters and 8-bit
  63. characters are not allowed.  This is to prevent the state-table array (whose
  64. size is the product of the number of states and the number of possible input
  65. characters) small enough to be handled by any C compiler.
  66. When in the indicated state, if the input is the specified character, then the
  67. associated action is performed.  The character '.' matches any input
  68. character.  No pattern matching or range notation is provided.  The input
  69. character is obtained from the input() function, which you must define.  It
  70. should be alphanumeric, or else one of the characters ".% -$@" (quotes not
  71. included).  Note that the program above recognizes the binary point '.'
  72. through a ruse.
  73. The action is a series of zero or more C language statements, enclosed in
  74. curly braces (even if the action consists of only one statement).
  75. The BEGIN macro is defined simply to be "state = ", as in lex.
  76. The wart() function is generated by the wart program based on the state
  77. declarations and the state transition table.  It loops through calls to
  78. input(), using the result to index into a big case statement it has created
  79. from the state table.
  80. The wart program is invoked as follows:
  81. wart          (Input from stdin, output to stdout)
  82. wart fn1      (Input from fn1, output to stdout)
  83. wart fn1 fn2  (Input from fn1, output to fn2.  Example:  wart a.w a.c)
  84. Wart programs have the conventional filetype '.w'.
  85. - F. da Cruz, Columbia University, November 1991