scanner.l 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * scanner.l
  3. *
  4. * Copyright (C) 2015 Alexander Andrejevic <theflash AT sdf DOT lonestar DOT org>
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as
  8. * published by the Free Software Foundation, either version 3 of the
  9. * License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>
  18. *
  19. * SPDX-License-Identifier: AGPL-3.0-or-later
  20. */
  21. %{
  22. #include <stdlib.h>
  23. #include "element.h"
  24. #include "parser.h"
  25. static char *stripquotes(const char *string);
  26. %}
  27. %option noyywrap
  28. %option case-insensitive
  29. atomchar [^\x00-\x20,#';%()\[\]\{\}<>"\\.]
  30. %%
  31. ; { return SEMICOLON; }
  32. \< { return LEFT_CHEVRON; }
  33. \> { return RIGHT_CHEVRON; }
  34. \( { return LEFT_PARENTHESIS; }
  35. \) { return RIGHT_PARENTHESIS; }
  36. , { return COMMA; }
  37. \*[0-7]+\* { yylval.number = strtol(&yytext[1], NULL, 8); return NUMBER; }
  38. [-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)? { yylval.number = strtod(yytext, NULL); return NUMBER; }
  39. {atomchar}({atomchar}|\.)* { yylval.string = strdup(yytext); return ATOM; }
  40. \"[^"]*\" { yylval.string = stripquotes(yytext); return STRING; }
  41. [ \r\n\t\f]+ { /* whitespace */ }
  42. %%
  43. static char *stripquotes(const char *string)
  44. {
  45. return strndup(&string[1], strlen(string) - 2);
  46. }