strokelex.l
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:3k
源码类别:

GIS编程

开发平台:

Visual C++

  1. %{
  2. /* $XConsortium: lex.l,v 5.4 91/08/26 10:55:26 gildea Exp $ */
  3. /*****************************************************************
  4. Copyright (c) 1989,1990, 1991 by Sun Microsystems, Inc. and the X Consortium.
  5.                         All Rights Reserved
  6. Permission to use, copy, modify, and distribute this software and its 
  7. documentation for any purpose and without fee is hereby granted, 
  8. provided that the above copyright notice appear in all copies and that
  9. both that copyright notice and this permission notice appear in 
  10. supporting documentation, and that the names of Sun Microsystems,
  11. the X Consortium, and MIT not be used in advertising or publicity 
  12. pertaining to distribution of the software without specific, written 
  13. prior permission.  
  14. SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 
  15. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT 
  16. SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 
  17. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  18. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  19. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  20. SOFTWARE.
  21. ******************************************************************/
  22. #include <stdlib.h>
  23. #include <ctype.h>
  24. #include <math.h>
  25. #include "strokegen.h"
  26. #if defined(ISC) && defined(SYSV) && defined(SYSV386) && __STDC__
  27. extern double atof(char *);
  28. #endif
  29. #ifdef FLEX_SCANNER
  30. int yylineno;
  31. #endif
  32. %}
  33. %%
  34. '[^']*' |
  35. "[^"]*" return string(yytext, yyleng);
  36. #.* ;
  37. [ ,;tn]*              /* natural dilimters */ ;
  38. [a-zA-Z][a-zA-Z0-9_.]* {
  39. int token;
  40. if (token = res_words(yytext))
  41. return token;
  42. return string(yytext, yyleng);
  43.   }
  44. [+-]?[0-9]+.?[0-9]*[eE][+-]?[0-9]+ |
  45. [+-]?[0-9]+.[0-9]*     |
  46. .[0-9]+ {
  47.                                 yylval.dval = atof(yytext);
  48. return REAL;
  49.                         }
  50. [+-]?[0-9]+#[0-9]+ {
  51. return INTEGER;
  52. }
  53. [+-]?[0-9]+ {
  54. yylval.ival = atoi(yytext);
  55. return INTEGER;
  56. }
  57. [()] ;
  58. %%
  59. int
  60. res_words(str)
  61. char str[];
  62. {
  63. static struct res_strct {
  64. char *word;
  65. int token;
  66. } res_table[] = {
  67. {"BOTTOM", BOTTOM},
  68. {"CENTER", CENTER},
  69.                 {"PROPERTIES",          PROPERTIES},
  70. {"CLOSE", CLOSE},
  71. {"FONTNAME", FONTNAME},
  72. {"INDEX", INDEX},
  73. {"MAGIC", MAGIC},
  74. {"OPEN", OPEN},
  75. {"RIGHT", RIGHT},
  76. {"STROKE", STROKE},
  77. {"TOP", TOP},
  78. {"VERTICES", VERTICES},
  79. {"BEARING", BEARING},
  80. {"L_SPACE", L_SPACE},
  81. {"WIDTH", WIDTH},
  82. {"R_SPACE", R_SPACE},
  83. {"NUM_CH", NUM_CH},
  84. {0, 0}
  85. };
  86. {
  87. register struct res_strct *reserved;
  88. reserved = res_table;
  89. do
  90. if (!strcmp(str, reserved->word))
  91. break;
  92. while ((++reserved)->word != 0);
  93. return reserved->token;
  94. }
  95. }
  96. int
  97. string(str, n)
  98. char *str;
  99. int n;
  100. {
  101. if (*str == '"' || *str == ''')
  102. {
  103. str++;
  104. n -= 2; /* one for EOL, one for end quote */
  105. }
  106. if ((yylval.cval = (char *)malloc(n+1)) != NULL)
  107. {
  108. strncpy(yylval.cval, str, n);
  109. yylval.cval[n] = '';
  110. return STRING;
  111. }
  112. else
  113. return 0;
  114. }