summaryrefslogtreecommitdiffstats
path: root/eo_tokenizer.rl
blob: b96a2b1eaa3dc7f3e53a3baf929bc153ef87b4dc (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
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
#include <stdio.h>
#include <stdlib.h>

#include "eo_tokenizer.h"

%%{
   machine common;

   access toknz->;
   variable p toknz->p;
   variable pe toknz->pe;
   variable eof toknz->eof;

   action inc_line {
      /* DBG("inc[%d]", toknz->cs); */
      toknz->current_line += 1;
   }

   action save_start_line {
      /* DBG("save[%d] %d", toknz->cs, toknz->current_line); */
      toknz->token_start_line = toknz->current_line;
   }

   action show_comment {
      DBG("comment[%d] %03d:%03d", toknz->cs, toknz->token_start_line, toknz->current_line);
   }

   action show_ignore {
      DBG("ignore[%d] %d", toknz->cs, toknz->current_line);
   }

   action show_error {
      DBG("error[%d]", toknz->cs);
      char *s, *d;
      char buf[BUFSIZE];
      for (s = fpc, d = buf; (s <= toknz->pe); s++)
        {
           if ( (int)*s == 13 || (int)*s == 10)
             break;
           *d++ = *s;
        }
      *d = '\0';
      ERR("error line %d : %s...", toknz->current_line, buf);
      fbreak;  /* necessary to stop scanners */
   }

   cr                = '\n';
   cr_neg            = [^\n];
   ws                = [ \t\r];
   newline           = cr @inc_line;
   ignore            = (0x00..0x20 - cr)+ newline?;

   c_comment         = "/*" ( any | '\n' @inc_line )* :>> "*/";
   cpp_comment       = "//" (any - cr)* newline;
   comment           = ( c_comment | cpp_comment ) > save_start_line;

}%%

%%{
   machine eo_tokenizer;
   include common;

   main := |*
      ignore+; #=> show_ignore;
      comment  => show_comment;
      any      => show_error;
   *|;

}%%

%% write data;

Eina_Bool
eo_tokenizer_walk(Eo_Tokenizer *toknz, const char *source)
{
   INF("tokenize %s...", source);
   toknz->source = eina_stringshare_add(source);

   FILE *stream;

   int done = 0;
   int have = 0;

   stream = fopen(toknz->source, "r");
   if (!stream)
     {
        ERR("unable to read in %s", toknz->source);
        return EINA_FALSE;
     }

   %% write init;

   while (!done)
     {
        int len;
        int space;

        toknz->p = toknz->buf + have;
        space = BUFSIZE - have;

        if (space == 0)
          {
             ERR("out of buffer space");
             fclose(stream);
             exit(EXIT_FAILURE);
          }

        len = fread(toknz->p, 1, space, stream);
        if (len == 0) break;
        toknz->pe = toknz->p + len;

        if (len < space)
          {
             toknz->eof = toknz->pe;
             done = 1;
          }

        %% write exec;

        if ( toknz->cs == %%{ write error; }%% )
          {
             ERR("wrong terminatison");
             break;
          }

        if ( toknz->ts == 0 )
          have = 0;
        else
          {
             /* There is a prefix to preserve, shift it over. */
             have = toknz->pe - toknz->ts;
             memmove( toknz->buf, toknz->ts, have);
             toknz->te = toknz->buf + (toknz->te - toknz->ts);
             toknz->ts = toknz->buf;
          }
     }

   fclose(stream);

   return EINA_TRUE;
}

Eo_Tokenizer*
eo_tokenizer_get()
{
   Eo_Tokenizer *toknz = calloc(1, sizeof(Eo_Tokenizer));
   if (!toknz) return NULL;

   toknz->ts = NULL;
   toknz->te = NULL;
   /* toknz->top = 0; */
   toknz->source = NULL;
   toknz->max_nesting = 10;
   toknz->current_line = 1;
   toknz->current_nesting = 0;
   toknz->token_start_line = 0;

   return toknz;
}

void
eo_tokenizer_free(Eo_Tokenizer *toknz)
{
   if (toknz->source)
     eina_stringshare_del(toknz->source);

   free(toknz);
}