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
|
/* definition section */
/* literal block */
%{
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "proplist.h"
/* declarations for the following symbols is in filehandling.c */
extern int pl_line_count;
extern char *pl_curr_file;
extern proplist_t parse_result;
%}
/* token declarations */
%token <obj> STRING DATA ERROR YYERROR_VERBOSE YYDEBUG
%union {
proplist_t obj;
}
%type <obj> root object array objlist dictionary keyval_list keyval_pair
/* rules section */
%%
root: object
{
/* want an object, followed by nothing else (<<EOF>>) */
parse_result = $1;
return (int)$1;
}
| error
{
parse_result = (proplist_t)NULL;
return (int)NULL;
}
| ERROR
{
parse_result = (proplist_t)NULL;
return (int)NULL;
}
;
object: STRING
| DATA
| array
| dictionary
| error
{
return (int)NULL;
}
;
array: '(' objlist ')'
{$$ = $2;}
| '(' ')'
{$$ = PLMakeArrayFromElements(NULL);}
| error
{ return (int)NULL; }
;
objlist: objlist ',' object
{
if($1)
{
$$ = PLAppendArrayElement($1,$3);
PLRelease($3);
}
else
{
$$ = PLMakeArrayFromElements($3, NULL);
PLRelease($3);
}
}
| object
{
$$ = PLMakeArrayFromElements($1,
NULL);
PLRelease($1);
}
| error
{
$$ = NULL;
}
;
dictionary: '{' keyval_list '}'
{$$ = $2;}
| '{' '}'
{$$ =
PLMakeDictionaryFromEntries(NULL,
NULL);}
| error
{
$$ = NULL;
}
;
keyval_list: keyval_list keyval_pair
{
if($1)
{
$$ = $1;
PLMergeDictionaries($$, $2);
PLRelease($2);
}
else if($2)
$$ = $2;
else
$$ = NULL;
}
| keyval_pair
| error
{
$$ = NULL;
}
;
keyval_pair: STRING '=' object ';'
{
$$ = PLMakeDictionaryFromEntries($1, $3,
NULL);
PLRelease($1); PLRelease($3);
}
| error
{
$$ = NULL;
}
;
%%
/* C code section */
int yyerror(char *s)
{
fprintf(stderr, "%s: %d: %s\n", pl_curr_file, pl_line_count, s);
return 0;
}
|