summaryrefslogtreecommitdiffstats
path: root/lexer/theme-lexer.l
blob: 4094a2562c11493aa700921f9df174f63410a2a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
%option noyywrap 

%{
#include <stdio.h>


#include "lexer/theme-parser.tab.h"
int yylex(void);
#define YY_DECL int yylex()

%}

%%

"@"                 { return CLASS;}
"\{"                { return BOPEN;}
"\}"                { return BCLOSE;}
":"                 { return PSEP; }
";"                 { return PCLOSE;}
"."                 { return NSEP; }
[ \t]	; // ignore all whitespace
[0-9]+\.[0-9]+      { yylval.fval = g_ascii_strtod(yytext, NULL); return T_FLOAT;}
[0-9]+              { yylval.ival = (int)g_ascii_strtoll(yytext, NULL, 10); return T_INT;}
(true|false)        { yylval.bval= g_strcmp0(yytext, "true") == 0; return T_BOOLEAN;}
[a-zA-Z0-9]+        { yylval.sval = g_strdup(yytext); return N_STRING;}
\"[a-zA-Z0-9]+\"    { yylval.sval = g_strdup(yytext); return T_STRING;}
#[0-9A-Fa-f]+       { yylval.colorval = (unsigned int)strtoull ( &yytext[1], NULL, 16); return T_COLOR;}
[\r\n]+		;

<*><<EOF>>  {
    yyterminate();
}
%%