2004-11-17 [colin] 0.9.12cvs151
[claws.git] / src / matcher_parser_lex.l
1 %{
2 /*
3  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
4  * Copyright (c) 2001-2002 by Hiroyuki Yamamoto & The Sylpheed Claws Team.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (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 General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #include <string.h>
22 #include <glib.h>
23
24 #include "matcher.h"
25 #include "matcher_parser_lex.h"
26 #include "matcher_parser_parse.h"
27
28 #define MAX_STR_CONST 512
29 #define YY_NO_UNPUT 1
30
31 static char string_buf[MAX_STR_CONST];
32 static char *string_buf_ptr;
33
34 static void add_char(char ch)
35 {
36         if (string_buf_ptr - string_buf < sizeof(string_buf))
37                 *string_buf_ptr++ = ch;
38 }
39
40
41 /* this function will reinitializes the parser */
42
43 void matcher_parser_init(void)
44 {
45         BEGIN(0);
46 }
47 %}
48
49 %option prefix="matcher_parser"
50 %option outfile="lex.yy.c"
51 %option yylineno
52
53 %x string
54 %x section
55
56 %%
57                         
58                         /*
59                          * a keyword consists of alpha and underscore 
60                          * characters, possibly preceded by a tilde (~)
61                          */
62
63 (~|[a-z])[a-z_]*        {
64                                 gint id;
65
66                                 if (-1 == (id = get_matchparser_tab_id(yytext))) { 
67                                         REJECT;
68                                 } else                                  
69                                         return id;
70                         }
71 [ \t]+
72 "\n"            return MATCHER_EOL;
73 "&"             return MATCHER_AND;
74 "|"             return MATCHER_OR;
75 \"              {
76                 BEGIN(string);
77                 string_buf_ptr = string_buf;
78                 }
79 <string>\"      {
80                 /* get out of the state: string ends. */
81                 BEGIN(0);
82                 *string_buf_ptr = '\0';
83                 yylval.str = string_buf;
84                 return MATCHER_STRING;
85                 }
86 <string>\\.     {
87                 /* take care of quoted characters */
88                 add_char(yytext[1]);
89                 }
90 <string>.       {
91                 add_char(yytext[0]);
92                 }
93 \[[^\[\]]*\]    {
94                 /* for section name in configuration file */
95                 BEGIN(0);
96                 yylval.str = yytext + 1;
97                 yytext[strlen(yytext) - 1] = '\0';
98                 return MATCHER_SECTION;
99                 }
100 [-+]?[0-9]+     {
101                 yylval.str = yytext;
102                 return MATCHER_INTEGER;
103                 }
104
105 %%