source: XIOS/trunk/src/parse_expr/lex_parser.lex @ 501

Last change on this file since 501 was 501, checked in by ymipsl, 10 years ago

Add licence copyright to all file ond directory src using the command :
svn propset -R copyright -F header_licence src

XIOS is now officialy under CeCILL licence

YM

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 1.2 KB
Line 
1%option noyywrap
2%{
3
4extern "C"
5{
6  int yylex(void);
7}
8#undef  YY_INPUT
9#define YY_INPUT(b,r,s) readInputForLexer(b,&r,s)
10#include <string>
11
12int readInputForLexer( char *buffer, int *numBytesRead, int maxBytesToRead ) ;
13
14
15#include "simple_node_expr.hpp"
16#include "yacc_parser.hpp"
17
18%}
19
20white  [ \t]+
21
22digit  [0-9]
23integer  {digit}+
24exponant [eE][+-]?{integer}
25real  {integer}("."{integer})?{exponant}?
26id              [a-zA-Z][a-zA-Z0-9_]*
27average         @{id}
28var             \${id}
29%%
30
31{white}  { /* We ignore white characters */ }
32
33{real}  {
34          yylval.str=new std::string(yytext);
35          return NUMBER ;
36        }
37
38{average}       {
39                  yylval.str=new std::string(yytext+1) ;
40                  return AVERAGE ;
41                }
42
43{var}           {
44                  yylval.str=new std::string(yytext+1) ;
45                  return VAR ;
46                }
47
48{id}            {
49                   yylval.str=new std::string(yytext) ;
50                   return ID ;
51                }                   
52                 
53
54"+"  return(PLUS);
55"-"  return(MINUS);
56
57"*"  return(TIMES);
58"/"  return(DIVIDE);
59
60"^"  return(POWER);
61
62"("  return(LEFT_PARENTHESIS);
63")"  return(RIGHT_PARENTHESIS);
64
65"\0"  {
66       return(END);
67      }
Note: See TracBrowser for help on using the repository browser.