File: proplist_y.y

package info (click to toggle)
libproplist 0.8.2-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 460 kB
  • ctags: 510
  • sloc: ansic: 2,732; sh: 308; yacc: 257; lex: 172; makefile: 78
file content (159 lines) | stat: -rw-r--r-- 3,862 bytes parent folder | download | duplicates (4)
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
                /* 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)
				    {
				      if ($3) 
				        {
				          $$ = PLAppendArrayElement($1,$3);
				          PLRelease($3);
					}
				      else
				          $$ = $1;
				    }
				  else if ($3)
				    {
				      $$ = PLMakeArrayFromElements($3, NULL);
				      PLRelease($3);
				    }
				  else
				      $$ = NULL;
				}
                |       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;
				      if($2) 
				        {
				          PLMergeDictionaries($$, $2);
				          PLRelease($2);
					}
				    }
				  else if($2)
				    $$ = $2;
				  else
				    $$ = NULL;
                                }
                |       keyval_pair
		|       error
                                {
				  $$ = NULL;
				}
                ;
keyval_pair:    STRING '=' object ';'
                                {
				  if (($1) && ($3))
				    {
                                      $$ = PLMakeDictionaryFromEntries($1, $3,
					  			       NULL);
				      PLRelease($1); PLRelease($3);
				    } 
				  else 
				    {
				      if ($1)
					PLRelease($1);
				      if ($3)
					PLRelease($3);
				      $$ = NULL;
				    }
                                }
                |       error
                                {
				  $$ = NULL;
				}
                ;
%%

                /* C code section */
int yyerror(char *s)
{
  fprintf(stderr, "%s:line %d: %s\n", pl_curr_file, pl_line_count, s);

  return 0;
}