[go: up one dir, main page]

File: kate_lexer.l

package info (click to toggle)
libkate 0.3.7-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,484 kB
  • ctags: 4,083
  • sloc: ansic: 10,002; sh: 8,853; yacc: 2,250; python: 721; lex: 362; makefile: 239
file content (371 lines) | stat: -rw-r--r-- 12,397 bytes parent folder | download
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/* Copyright (C) 2008 Vincent Penquerc'h.
   This file is part of the Kate codec library.
   Written by Vincent Penquerc'h.

   Use, distribution and reproduction of this library is governed
   by a BSD style source license included with this source in the
   file 'COPYING'. Please read these terms before distributing. */


%{

#define KATE_INTERNAL
#include "kate_internal.h"

#include <stdarg.h>
#include <stdlib.h>
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include "kate/kate.h"
#include "katedesc.h"
#include "kate_parser.h"

#define YY_DECL extern int katedesc_lex(YYSTYPE *lvalp)

static int previous_state=-1;

static size_t nmacros=0;
static char **macro_names=NULL;
static char **macro_bodies=NULL;

static void replace_macro(const char *name);
static const char *find_macro(const char *name);

static void process_nlines(const char *text);

static int freeze_nlines=0;

static YY_BUFFER_STATE main_buffer=NULL;

int nlines=1;

/* string   [a-zA-Z ,\.;:!\?\-\(\)\'\`0-9#/\\:@%_]+ */

%}

%option nounput
%option yymore
%option never-interactive

%s NORMAL
%x BLOCK_COMMENT MACRO_1 MACRO_2

string [^\<\>\&]+
nqstring [^\<\>\&\"]+
/* single_quoted_string \'[^\<\>\&']*\' */
/* double_quoted_string \"[^\<\>\&"]*\" */
/* single_quoted_string \'[^']*\' */
/* double_quoted_string \"[^"\n]*\" */
double_quoted_string \"[^"]*\"

digit       [0-9]
hexdigit    [0-9a-fA-F]
fp1         [-+]?{digit}+\.?([eE][-+]?{digit}+)?
fp2         [-+]?{digit}*\.{digit}+([eE][-+]?{digit}+)?
fp          {fp1}|{fp2}
unumber10   \+?{digit}+
unumber16   \+?0x{hexdigit}+
number10    [-+]?{digit}+
number16    [-+]?0x{hexdigit}+
color6      #{hexdigit}{6}
color8      #{hexdigit}{8}
identifier  [a-zA-Z_][a-zA-Z_0-9]*
macro       ${identifier}
entity      &#{digit}+;

hash_comment           #[^\n]*\n
cplusplus_comment      \/\/[^\n]*\n
eol_comment            {hash_comment}|{cplusplus_comment}

%%


<INITIAL>(\xff\xfe)|(\xfe\xff)      {
                                      fprintf(stderr,"This file seems to be encoded in UTF-16, Kate only supports UTF-8\n");
                                      fprintf(stderr,"You will need to convert it to UTF-8 first (eg, use iconv)\n");
                                    }
<INITIAL>\xef\xbb\xbf               {BEGIN(NORMAL);}
<INITIAL>.                          {yyless(0);BEGIN(NORMAL);}

<NORMAL>"/*"                 {previous_state=NORMAL;BEGIN(BLOCK_COMMENT);}
<BLOCK_COMMENT>[^*\n]+       {}
<BLOCK_COMMENT>"*"+[^*/\n]   {}
<BLOCK_COMMENT>[\r\n]        {if (!freeze_nlines) nlines++;}
<BLOCK_COMMENT>"*"+"/"       {BEGIN(previous_state);}

<MACRO_1>[ \t]+              {}
<MACRO_1>{identifier}        {BEGIN(MACRO_2);lvalp->string=yytext;return IDENTIFIER;}

<MACRO_2>\\\n                {yytext[yyleng-2]=' ';yymore();}
<MACRO_2>[^\n\\]+            {yymore();}
<MACRO_2>\n                  {BEGIN(previous_state);lvalp->string=yytext;process_nlines(yytext);return MACRO_BODY;}

{eol_comment}                {if (!freeze_nlines) nlines++;}
[ \t]+                       {}
[\r\n]                       {if (!freeze_nlines) nlines++;}

kate                         {return KATE;}

{macro}                      {replace_macro(katedesc_text+1);}

defs                         {return DEFS;}
event                        {return EVENT;}
language                     {return LANGUAGE;}
comment                      {return COMMENT;}
define                       {return DEFINE;}
style                        {return STYLE;}
region                       {return REGION;}
curve                        {return CURVE;}
text                         {return TEXT;}
background                   {return BACKGROUND;}
bg                           {return BACKGROUND;}
color                        {return COLOR;}
marker                       {return MARKER;}
position                     {return POSITION;}
size                         {return SIZE;}
halign                       {return HALIGN;}
valign                       {return VALIGN;}
default                      {return DEFAULT;}
points                       {return POINTS;}
hleft                        {return HLEFT;}
hcenter                      {return HCENTER;}
hright                       {return HRIGHT;}
vtop                         {return VTOP;}
vcenter                      {return VCENTER;}
vbottom                      {return VBOTTOM;}
starts                       {return STARTS;}
ends                         {return ENDS;}
at                           {return AT;}
start                        {return START;}
end                          {return END;}
time                         {return TIME;}
duration                     {return DURATION;}
-->                          {return ARROW;}
motion                       {return MOTION;}
mapping                      {return MAPPING;}
frame                        {return FRAME;}
none                         {return NONE;}
semantics                    {return SEMANTICS;}
external                     {return EXTERNAL;}
internal                     {return INTERNAL;}
alignment                    {return ALIGNMENT;}
rg                           {return RG;}
ba                           {return BA;}
for                          {return FOR;}
from                         {return FROM;}
to                           {return TO;}
macro                        {return MACRO;}
timebase                     {return TIMEBASE;}
morph                        {return MORPH;}
secondary                    {return SECONDARY;}
path                         {return PATH;}
section                      {return SECTION;}
directionality               {return DIRECTIONALITY;}
palette                      {return PALETTE;}
bitmap                       {return BITMAP;}
colors                       {return COLORS;}
font                         {return FONT;}
range                        {return RANGE;}
first                        {return FIRST;}
last                         {return LAST;}
code                         {return CODE;}
point                        {return POINT;}
user                         {return USER;}
source                       {return SOURCE;}
draw                         {return DRAW;}
visible                      {return VISIBLE;}
category                     {return CATEGORY;}
id                           {return ID;}
bold                         {return BOLD;}
italics                      {return ITALICS;}
underline                    {return UNDERLINE;}
strike                       {return STRIKE;}
periodic                     {return PERIODIC;}
granule                      {return GRANULE;}
rate                         {return RATE;}
shift                        {return SHIFT;}
width                        {return WIDTH;}
height                       {return HEIGHT;}
left                         {return LEFT;}
top                          {return TOP;}
right                        {return RIGHT;}
bottom                       {return BOTTOM;}
margin                       {return MARGIN;}
margins                      {return MARGINS;}
horizontal                   {return HORIZONTAL;}
vertical                     {return VERTICAL;}
png                          {return PNG;}
justify                      {return JUSTIFY;}
clip                         {return CLIP;}
pre                          {return PRE;}
markup                       {return MARKUP;}
canvas                       {return CANVAS;}
local                        {return LOCAL;}
offset                       {return OFFSET;}
wrap                         {return WRAP;}
word                         {return WORD;}



left_to_right|l2r|ltr|ltr_ttb|l2r_t2b        {return L2R_T2B;}
right_to_left|r2l|rtl|rtl_ttb|r2l_t2b        {return R2L_T2B;}
ttb_rtl|t2b_r2l                              {return T2B_R2L;}
ttb_ltr|t2b_l2r                              {return T2B_L2R;}

pixels                       {lvalp->number=kate_pixel;return METRIC;}
pixel                        {lvalp->number=kate_pixel;return METRIC;}
percentage                   {lvalp->number=kate_percentage;return METRIC;}
percent                      {lvalp->number=kate_percentage;return METRIC;}
millionths                   {lvalp->number=kate_millionths;return METRIC;}

static                       {return STATIC;}
linear                       {return LINEAR;}
catmull_rom                  {return CATMULL_ROM;}
bezier_cubic                 {return BEZIER_CUBIC;}
bspline                      {return BSPLINE;}

simple_timed_glyph_marker          {return SIMPLE_TIMED_GLYPH_MARKER;}
simple_timed_glyph_style_morph     {return SIMPLE_TIMED_GLYPH_STYLE_MORPH;}
glyph                              {return GLYPH;}
pointer                            {return POINTER;}
in                                 {return IN;}
pause                              {return PAUSE;}

{double_quoted_string}         {
                                 katedesc_text[strlen(katedesc_text)-1]=0;
                                 lvalp->string=katedesc_text+1;
                                 process_nlines(katedesc_text);
                                 return STRING;
                               }
{unumber10}                    {lvalp->unumber=strtoul(katedesc_text,NULL,10);return UNUMBER;}
{unumber16}                    {lvalp->unumber=strtoul(katedesc_text,NULL,16);return UNUMBER;}
{number10}                     {lvalp->number=strtol(katedesc_text,NULL,10);return NUMBER;}
{number16}                     {lvalp->number=strtol(katedesc_text,NULL,16);return NUMBER;}
{fp}                           {lvalp->fp=(kate_float)atof(katedesc_text);return FLOAT;}
{color6}                       {lvalp->color=strtol(katedesc_text+1,NULL,16);return COLORSPEC;}
{color8}                       {lvalp->color=strtol(katedesc_text+1,NULL,16);return COLORSPEC;}


<<EOF>>                      {
                               katedesc_text="<EOF>";
                               if (freeze_nlines) --freeze_nlines;
                               yy_delete_buffer(YY_CURRENT_BUFFER);
                               if (main_buffer) {
                                 yy_switch_to_buffer(main_buffer);
                                 main_buffer=NULL;
                               }
                               else yyterminate();
                             }

.                            {return katedesc_text[0];}


%%

int katedesc_wrap()
{
  return 1;
}

void set_macro_mode()
{
  BEGIN(MACRO_1);
}

void unset_macro_mode()
{
  BEGIN(NORMAL);
}

static void replace_macro(const char *name)
{
  const char *body=find_macro(name);
  if (body) {
    ++freeze_nlines;
    main_buffer=YY_CURRENT_BUFFER;
    yy_scan_string(body);
  }
}

void add_macro(const char *name,const char *body)
{
  size_t nlen,blen;

  if (!name || !body) {
    katedesc_error("name and body cannot be null");
    exit(-1);
  }

  ++nmacros;
  macro_names=(char**)kate_realloc(macro_names,nmacros*sizeof(char*));
  macro_bodies=(char**)kate_realloc(macro_bodies,nmacros*sizeof(char*));
  if (!macro_names || !macro_bodies) {
    katedesc_error("out of memory");
    exit(-1);
  }

  nlen=strlen(name);
  blen=strlen(body);
  macro_names[nmacros-1]=kate_malloc(nlen+1);
  macro_bodies[nmacros-1]=kate_malloc(blen+1);
  if (!macro_names[nmacros-1] || !macro_bodies[nmacros-1]) {
    katedesc_error("out of memory");
    exit(-1);
  }
  strcpy(macro_names[nmacros-1],name);
  strcpy(macro_bodies[nmacros-1],body);
}

static const char *find_macro(const char *name)
{
  size_t n;
  if (!name) {
    katedesc_error("macro name cannot be null");
    exit(-1);
  }
  for (n=0;n<nmacros;++n) {
    if (!strcmp(macro_names[n],name)) return macro_bodies[n];
  }
  katedesc_error("undefined macro");
  return NULL;
}

void free_macros(void)
{
  size_t n;
  for (n=0;n<nmacros;++n) {
    kate_free(macro_names[n]);
    kate_free(macro_bodies[n]);
  }
  kate_free(macro_names);
  kate_free(macro_bodies);
}

static int get_nlines(const char *text)
{
  int text_nlines=0;
  if (!text) {
    katedesc_error("null text");
    return 0;
  }
  while (*text) if (*text++=='\n') ++text_nlines;
  return text_nlines;
}

static void process_nlines(const char *text)
{
  if (!freeze_nlines) {
    nlines+=get_nlines(text);
  }
}

void cleanup_lexer(void)
{
#ifdef FLEX_SCANNER
#if (YY_FLEX_MAJOR_VERSION+0)*0x10000+(YY_FLEX_MINOR_VERSION+0)*0x100+(YY_FLEX_SUBMINOR_VERSION+0)>=0x020509
  katedesc_lex_destroy();
#endif
#endif
}