Fixed newline characters throughout the code
[com/gs-lite.git] / src / ftacmp / res.y
1 /* ------------------------------------------------
2 Copyright 2014 AT&T Intellectual Property
3    Licensed under the Apache License, Version 2.0 (the "License");
4    you may not use this file except in compliance with the License.
5    You may obtain a copy of the License at
6
7      http://www.apache.org/licenses/LICENSE-2.0
8
9    Unless required by applicable law or agreed to in writing, software
10    distributed under the License is distributed on an "AS IS" BASIS,
11    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12    See the License for the specific language governing permissions and
13    limitations under the License.
14  ------------------------------------------- */
15
16 /*
17         MUST COMPILE WITH
18                 bison --verbose --defines=res.tab.cc.h -p ResParser  -o res.tab.cc res.y
19
20          (or equivalent).
21 */
22
23 %{
24
25
26 #include <stdio.h>
27
28 /*              Some addn'l includes, necessary but not included by the
29                 bison generated code.
30 */
31
32 #include <stdlib.h>
33
34 /*              prototypes for the parser callbacks.
35 */
36
37 #include "iface_q.h"
38
39
40 extern resparse_data *rpd_ptr;
41 extern std::vector<std::string> res_attr_vec;
42 extern std::vector<std::string> res_val_vec;
43 extern std::string res_a, res_v;
44
45
46
47 #define YYDEBUG 1
48
49 %}
50
51
52         /* symbolic tokens */
53
54 %union {
55         int intval;
56         double floatval;
57         char *strval;
58         int subtok;
59
60         /*                      for FTA definition.     */
61
62 }
63
64 %token <strval> NAME
65 %token <strval> STRING_TOKEN
66
67
68
69
70 %%
71
72 parse_result:   resource
73         ;
74
75 resource:
76         start_tag res_list end_tag
77         | start_tag end_tag
78         | '<' NAME opt_val_list '/' '>'
79                 {startElement(rpd_ptr, $2, res_attr_vec, res_val_vec);
80                 endElement(rpd_ptr, $2);
81                 }
82         ;
83
84 start_tag:
85         '<' NAME opt_val_list '>'       {startElement(rpd_ptr, $2, res_attr_vec, res_val_vec);}
86         ;
87
88 end_tag:
89         '<' '/' NAME '>'        {endElement(rpd_ptr, $3);}
90         ;
91
92
93 res_list:
94         resource
95         | res_list resource
96         ;
97
98 opt_val_list:
99         val_list
100         |               {res_attr_vec.clear(); res_val_vec.clear();}
101         ;
102
103 val_list:
104         val             {res_attr_vec.clear();  res_attr_vec.push_back(res_a);
105                          res_val_vec.clear(); res_val_vec.push_back(res_v); }
106         | val_list val {res_attr_vec.push_back(res_a);
107                                         res_val_vec.push_back(res_v); }
108         ;
109
110 val:
111         NAME '=' STRING_TOKEN   {res_a = $1; res_v = $3;}
112         ;
113         
114
115
116
117
118 %%
119