blob: 430e785720172a540775956aa279371148304a08 [file] [log] [blame]
Brian Waters13d96012017-12-08 16:53:31 -06001/*********************************************************************************************************
2* Software License Agreement (BSD License) *
3* Author: Sebastien Decugis <sdecugis@freediameter.net> *
4* *
5* Copyright (c) 2013, WIDE Project and NICT *
6* All rights reserved. *
7* *
8* Redistribution and use of this software in source and binary forms, with or without modification, are *
9* permitted provided that the following conditions are met: *
10* *
11* * Redistributions of source code must retain the above *
12* copyright notice, this list of conditions and the *
13* following disclaimer. *
14* *
15* * Redistributions in binary form must reproduce the above *
16* copyright notice, this list of conditions and the *
17* following disclaimer in the documentation and/or other *
18* materials provided with the distribution. *
19* *
20* * Neither the name of the WIDE Project or NICT nor the *
21* names of its contributors may be used to endorse or *
22* promote products derived from this software without *
23* specific prior written permission of WIDE Project and *
24* NICT. *
25* *
26* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
27* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
28* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR *
29* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *
30* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS *
31* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
32* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF *
33* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
34*********************************************************************************************************/
35
36/* Tokenizer */
37
38%{
39#include "test_netemul.h"
40/* Include yacc tokens definitions */
41#include "test_netemul.tab.h"
42
43/* Update the column information */
44#define YY_USER_ACTION { \
45 yylloc->first_column = yylloc->last_column + 1; \
46 yylloc->last_column = yylloc->first_column + yyleng - 1; \
47}
48
49/* Avoid warning with newer flex */
50#define YY_NO_INPUT
51
52%}
53
54%option bison-bridge bison-locations
55%option noyywrap
56%option nounput
57
58%%
59
60 /* Update the line count */
61\n {
62 yylloc->first_line++;
63 yylloc->last_line++;
64 yylloc->last_column=0;
65 }
66
67 /* Eat all spaces but not new lines */
68([[:space:]]{-}[\n])+ ;
69 /* Eat all comments */
70#.*$ ;
71
72
73 /* Recognize floats */
74[[:digit:]]+"."[[:digit:]]* {
75 /* Convert this to an integer value */
76 int ret=0;
77 ret = sscanf(yytext, "%f", &yylval->decimal);
78 if (ret != 1) {
79 /* No matching: an error occurred */
80 fd_log_debug("Unable to convert the value '%s' to a valid float: %s", yytext, strerror(errno));
81 return LEX_ERROR; /* trig an error in yacc parser */
82 /* Maybe we could REJECT instead of failing here? */
83 }
84 return FLOAT;
85 }
86
87 /* Recognize simple integers */
88[[:digit:]]+ {
89 /* Convert this to an integer value */
90 int ret=0;
91 ret = sscanf(yytext, "%lu", &yylval->ulong);
92 if (ret != 1) {
93 /* No matching: an error occurred */
94 fd_log_debug("Unable to convert the value '%s' to a valid long: %s", yytext, strerror(errno));
95 return LEX_ERROR; /* trig an error in yacc parser */
96 /* Maybe we could REJECT instead of failing here? */
97 }
98 return ULONG;
99 }
100
101
102
103 /* The key words */
104(?i:"latency_average") { return LATENCY_AVERAGE; }
105(?i:"latency_deviation") { return LATENCY_DEVIATION; }
106(?i:"dupl_proba") { return DUPL_PROBA; }
107(?i:"ms") { return UNIT_MSEC; }
108(?i:"s") { return UNIT_SEC; }
109
110 /* Valid single characters for yyparse */
111[=;%/] { return yytext[0]; }
112
113 /* Unrecognized sequence, if it did not match any previous pattern */
114[^[:space:][:digit:]=;%/\n]+ {
115 fd_log_debug("Unrecognized text on line %d col %d: '%s'.", yylloc->first_line, yylloc->first_column, yytext);
116 return LEX_ERROR;
117 }
118
119%%