summaryrefslogtreecommitdiff
path: root/src/nsgenbind-parser.y
blob: 454fb569054e382a6668be1da7550fc6046af17e (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
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
%{
/* parser for the binding generation config file 
 *
 * This file is part of nsgenbind.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
 */

#include <stdio.h>
#include <string.h>

#define YYFPRINTF genbind_fprintf
#define YY_LOCATION_PRINT(File, Loc)                            \
  genbind_fprintf(File, "%d.%d-%d.%d",                          \
                  (Loc).first_line, (Loc).first_column,         \
                  (Loc).last_line,  (Loc).last_column)

#include "nsgenbind-parser.h"
#include "nsgenbind-lexer.h"
#include "webidl-ast.h"
#include "nsgenbind-ast.h"

char *errtxt;

static void nsgenbind_error(YYLTYPE *locp,
                            struct genbind_node **genbind_ast,
                            const char *str)
{
    locp = locp;
    genbind_ast = genbind_ast;
    errtxt = strdup(str);
}


%}

%locations
 /* bison prior to 2.4 cannot cope with %define api.pure so we use the
  *  deprecated directive 
  */
%pure-parser
%error-verbose
%parse-param { struct genbind_node **genbind_ast }

%union
{
    char *text;
    struct genbind_node *node;
    long value;
}

%token TOK_BINDING
%token TOK_WEBIDL
%token TOK_PREFACE
%token TOK_PROLOGUE
%token TOK_EPILOGUE
%token TOK_POSTFACE

%token TOK_CLASS
%token TOK_PRIVATE
%token TOK_INTERNAL
%token TOK_FLAGS
%token TOK_TYPE
%token TOK_UNSHARED
%token TOK_SHARED
%token TOK_PROPERTY

 /* method types */
%token TOK_INIT
%token TOK_FINI
%token TOK_METHOD
%token TOK_GETTER
%token TOK_SETTER

%token TOK_DBLCOLON

%token <text> TOK_IDENTIFIER
%token <text> TOK_STRING_LITERAL
%token <text> TOK_CCODE_LITERAL

%type <text> CBlock

%type <value> Modifiers
%type <value> Modifier

%type <node> Statement
%type <node> Statements
%type <node> Binding
%type <node> BindingArgs
%type <node> BindingArg
%type <node> Class
%type <node> ClassArgs
%type <node> ClassArg
%type <node> ClassFlag
%type <node> ClassFlags

%type <node> Method
%type <node> MethodDeclarator
%type <value> MethodType

%type <node> WebIDL
%type <node> Preface
%type <node> Prologue
%type <node> Epilogue
%type <node> Postface
%type <node> Private
%type <node> Internal
%type <node> Property

%type <node> ParameterList
%type <node> TypeIdent

%%

Input
        :
        Statements 
        { 
            *genbind_ast = $1; 
        }
        ;
        

Statements
        : 
        Statement 
        | 
        Statements Statement  
        {
          $$ = *genbind_ast = genbind_node_prepend($2, $1);
        }
        | 
        error ';' 
        { 
            fprintf(stderr, "%d: %s\n", yylloc.first_line, errtxt);
            free(errtxt);
            YYABORT ;
        }
        ;

Statement
        : 
        Binding
        |
        Class
        |
        Method
        ;

Binding
        :
        TOK_BINDING TOK_IDENTIFIER '{' BindingArgs '}'
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_BINDING, 
                                NULL, 
                                genbind_new_node(GENBIND_NODE_TYPE_TYPE, $4, $2));
        }
        ;

BindingArgs
        :
        BindingArg
        |
        BindingArgs BindingArg
        {
          $$ = genbind_node_link($2, $1);
        }
        ;

BindingArg
        : 
        WebIDL
        |
        Preface
        |
        Prologue
        |
        Epilogue
        |
        Postface
        ;

 /* [3] a web IDL file specifier */
WebIDL
        :
        TOK_WEBIDL TOK_STRING_LITERAL ';'
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_WEBIDL, NULL, $2);
        }
        ;


 /* type and identifier of a variable */
TypeIdent
        :
        TOK_STRING_LITERAL TOK_IDENTIFIER
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_IDENT,
                 genbind_new_node(GENBIND_NODE_TYPE_TYPE, NULL, $1), $2);
        }
        ;

Preface
        :
        TOK_PREFACE CBlock ';'
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_PREFACE, NULL, $2);
        }
        ;

Prologue
        :
        TOK_PROLOGUE CBlock ';'
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_PROLOGUE, NULL, $2);
        }
        ;

Epilogue
        :
        TOK_EPILOGUE CBlock ';'
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_EPILOGUE, NULL, $2);
        }
        ;

Postface
        :
        TOK_POSTFACE CBlock ';'
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_POSTFACE, NULL, $2);
        }
        ;

CBlock
        :
        TOK_CCODE_LITERAL
        |
        CBlock TOK_CCODE_LITERAL
        {
          $$ = genbind_strapp($1, $2);
        }
        ;

MethodType
        :
        TOK_INIT
        {
                $$ = GENBIND_METHOD_TYPE_INIT;
        }
        |
        TOK_FINI
        {
                $$ = GENBIND_METHOD_TYPE_FINI;
        }
        |
        TOK_METHOD
        {
                $$ = GENBIND_METHOD_TYPE_METHOD;
        }
        |
        TOK_GETTER
        {
                $$ = GENBIND_METHOD_TYPE_GETTER;
        }
        |
        TOK_SETTER
        {
                $$ = GENBIND_METHOD_TYPE_SETTER;
        }
        ;

ParameterList
        :
        TypeIdent
        {
                $$ = genbind_new_node(GENBIND_NODE_TYPE_PARAMETER, NULL, $1);
        }
        |
        ParameterList ',' TypeIdent
        {
                $$ = genbind_node_link($3, $1);
        }
        ;

MethodDeclarator
        :
        TOK_IDENTIFIER TOK_DBLCOLON TOK_IDENTIFIER '(' ParameterList ')'
        {
                $$ = genbind_new_node(GENBIND_NODE_TYPE_CLASS,
                                      genbind_new_node(GENBIND_NODE_TYPE_IDENT,
                                                       $5,
                                                       $3),
                                      genbind_new_node(GENBIND_NODE_TYPE_IDENT,
                                                       NULL,
                                                       $1));
        }
        |
        TOK_IDENTIFIER TOK_DBLCOLON TOK_IDENTIFIER '(' ')'
        {
                $$ = genbind_new_node(GENBIND_NODE_TYPE_CLASS,
                                      genbind_new_node(GENBIND_NODE_TYPE_IDENT,
                                                       NULL,
                                                       $3),
                                      genbind_new_node(GENBIND_NODE_TYPE_IDENT,
                                                       NULL,
                                                       $1));
        }
        |
        TOK_IDENTIFIER '(' ParameterList ')'
        {
                $$ = genbind_new_node(GENBIND_NODE_TYPE_CLASS,
                                      $3,
                                      genbind_new_node(GENBIND_NODE_TYPE_IDENT,
                                                       NULL,
                                                       $1));
        }
        |
        TOK_IDENTIFIER '(' ')'
        {
                $$ = genbind_new_node(GENBIND_NODE_TYPE_CLASS, NULL,
                                      genbind_new_node(GENBIND_NODE_TYPE_IDENT,
                                                       NULL,
                                                       $1));
        }
        ;

Method
        :
        MethodType MethodDeclarator CBlock
        {
                struct genbind_node *declarator;
                struct genbind_node *method_node;
                struct genbind_node *class_node;
                char *class_name;

                declarator = $2;

                /* extract the class name from the declarator */
                class_name = genbind_node_gettext(
                        genbind_node_find_type(
                                genbind_node_getnode(
                                        genbind_node_find_type(
                                                declarator,
                                                NULL,
                                                GENBIND_NODE_TYPE_CLASS)),
                                NULL,
                                GENBIND_NODE_TYPE_IDENT));

                /* generate method node */
                method_node = genbind_new_node(GENBIND_NODE_TYPE_METHOD, NULL,
                        genbind_new_node(GENBIND_NODE_TYPE_METHOD_TYPE,
                                genbind_new_node(GENBIND_NODE_TYPE_CDATA,
                                                 declarator, $3),
                                         (void *)$1));



                class_node = genbind_node_find_type_ident(*genbind_ast,
                                                          NULL,
                                                          GENBIND_NODE_TYPE_CLASS,
                                                          class_name);
                if (class_node == NULL) {
                        /* no existing class so manufacture one and attach method */
                        $$ = genbind_new_node(GENBIND_NODE_TYPE_CLASS, NULL,
                                      genbind_new_node(GENBIND_NODE_TYPE_IDENT,
                                                       method_node,
                                                       class_name));

                } else {
                        /* update the existing class */

                        /* link member node into class_node */
                        genbind_node_add(class_node, method_node);

                        $$ = NULL; /* updating so no need to add a new node */
                }
        }


Class
        :
        TOK_CLASS TOK_IDENTIFIER '{' ClassArgs '}'
        {
                $$ = genbind_new_node(GENBIND_NODE_TYPE_CLASS, NULL,
                        genbind_new_node(GENBIND_NODE_TYPE_IDENT, $4, $2));
        }
        ;

ClassArgs
        :
        ClassArg
        |
        ClassArgs ClassArg
        {
                $$ = genbind_node_link($2, $1);
        }
        ;

ClassArg
        :
        Private
        | 
        Internal
        | 
        Property
        |
        ClassFlag
        |
        Preface
        |
        Prologue
        |
        Epilogue
        |
        Postface
        ;


Private
        :
        TOK_PRIVATE TypeIdent ';'
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_PRIVATE, NULL, $2);
        }
        ;

Internal
        :
        TOK_INTERNAL TypeIdent ';'
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_INTERNAL, NULL, $2);
        }
        ;

ClassFlag
        :
        TOK_FLAGS ClassFlags ';'
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_FLAGS, NULL, $2);
        }
        ;

ClassFlags
        :
        TOK_IDENTIFIER
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_IDENT, NULL, $1);
        }
        |
        ClassFlags ',' TOK_IDENTIFIER
        {
          $$ = genbind_new_node(GENBIND_NODE_TYPE_IDENT, $1, $3);
        }
        ;

Property
        :
        TOK_PROPERTY Modifiers TOK_IDENTIFIER ';'
        {
                $$ = genbind_new_node(GENBIND_NODE_TYPE_PROPERTY, NULL,
                        genbind_new_node(GENBIND_NODE_TYPE_MODIFIER,
                                genbind_new_node(GENBIND_NODE_TYPE_IDENT,
                                                 NULL,
                                                 $3),
                                         (void *)$2));
        }
        ;

Modifiers
        :
        /* empty */
        {
            $$ = GENBIND_TYPE_NONE;
        }
        |
        Modifiers Modifier
        {
            $$ |= $2;
        }
        ;

Modifier
        :
        TOK_TYPE
        {
            $$ = GENBIND_TYPE_TYPE;
        }
        |
        TOK_UNSHARED
        {
            $$ = GENBIND_TYPE_UNSHARED;            
        }
        |
        TOK_SHARED
        {
            $$ = GENBIND_TYPE_NONE;            
        }
        ;

%%