]>
Commit | Line | Data |
---|---|---|
21667f64 AD |
1 | # C++ skeleton for Bison |
2 | ||
34136e65 | 3 | # Copyright (C) 2002-2012 Free Software Foundation, Inc. |
21667f64 | 4 | |
f16b0819 | 5 | # This program is free software: you can redistribute it and/or modify |
21667f64 | 6 | # it under the terms of the GNU General Public License as published by |
f16b0819 | 7 | # the Free Software Foundation, either version 3 of the License, or |
21667f64 | 8 | # (at your option) any later version. |
f16b0819 | 9 | # |
21667f64 AD |
10 | # This program is distributed in the hope that it will be useful, |
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | # GNU General Public License for more details. | |
f16b0819 | 14 | # |
21667f64 | 15 | # You should have received a copy of the GNU General Public License |
f16b0819 | 16 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
21667f64 | 17 | |
a9ce3f54 | 18 | m4_pushdef([b4_copyright_years], |
34136e65 | 19 | [2002-2012]) |
a9ce3f54 | 20 | |
93549bcd AD |
21 | # b4_position_define |
22 | # ------------------ | |
23 | # Define class position. | |
24 | m4_define([b4_position_define], | |
25 | [[ /// Abstract a position. | |
21667f64 AD |
26 | class position |
27 | { | |
21667f64 | 28 | public: |
0634493c | 29 | ]m4_ifdef([b4_location_constructors], [[ |
21667f64 | 30 | /// Construct a position. |
2091988f | 31 | explicit position (]b4_percent_define_get([[filename_type]])[* f = YY_NULL, |
0634493c AD |
32 | unsigned int l = ]b4_location_initial_line[u, |
33 | unsigned int c = ]b4_location_initial_column[u) | |
34 | : filename (f) | |
35 | , line (l) | |
36 | , column (c) | |
21667f64 AD |
37 | { |
38 | } | |
21667f64 | 39 | |
0634493c | 40 | ]])[ |
4626a15d | 41 | /// Initialization. |
936c88d1 AD |
42 | void initialize (]b4_percent_define_get([[filename_type]])[* fn = YY_NULL, |
43 | unsigned int l = ]b4_location_initial_line[u, | |
44 | unsigned int c = ]b4_location_initial_column[u) | |
4626a15d AD |
45 | { |
46 | filename = fn; | |
936c88d1 AD |
47 | line = l; |
48 | column = c; | |
4626a15d | 49 | } |
21667f64 AD |
50 | |
51 | /** \name Line and Column related manipulators | |
52 | ** \{ */ | |
21667f64 | 53 | /// (line related) Advance to the COUNT next lines. |
2a1bd0d7 | 54 | void lines (int count = 1) |
21667f64 | 55 | { |
0634493c | 56 | column = ]b4_location_initial_column[u; |
21667f64 AD |
57 | line += count; |
58 | } | |
59 | ||
60 | /// (column related) Advance to the COUNT next columns. | |
2a1bd0d7 | 61 | void columns (int count = 1) |
21667f64 | 62 | { |
cd48d21d | 63 | column = std::max (]b4_location_initial_column[u, column + count); |
21667f64 AD |
64 | } |
65 | /** \} */ | |
66 | ||
21667f64 | 67 | /// File name to which this position refers. |
a4e25e1d | 68 | ]b4_percent_define_get([[filename_type]])[* filename; |
21667f64 AD |
69 | /// Current line number. |
70 | unsigned int line; | |
71 | /// Current column number. | |
72 | unsigned int column; | |
73 | }; | |
74 | ||
75 | /// Add and assign a position. | |
76 | inline const position& | |
77 | operator+= (position& res, const int width) | |
78 | { | |
79 | res.columns (width); | |
80 | return res; | |
81 | } | |
82 | ||
83 | /// Add two position objects. | |
84 | inline const position | |
85 | operator+ (const position& begin, const int width) | |
86 | { | |
87 | position res = begin; | |
88 | return res += width; | |
89 | } | |
90 | ||
91 | /// Add and assign a position. | |
92 | inline const position& | |
93 | operator-= (position& res, const int width) | |
94 | { | |
95 | return res += -width; | |
96 | } | |
97 | ||
98 | /// Add two position objects. | |
99 | inline const position | |
100 | operator- (const position& begin, const int width) | |
101 | { | |
102 | return begin + -width; | |
103 | } | |
592d0b1e | 104 | ]b4_percent_define_flag_if([[define_location_comparison]], [[ |
31b2b07e JD |
105 | /// Compare two position objects. |
106 | inline bool | |
107 | operator== (const position& pos1, const position& pos2) | |
108 | { | |
56f772e9 AD |
109 | return (pos1.line == pos2.line |
110 | && pos1.column == pos2.column | |
111 | && (pos1.filename == pos2.filename | |
112 | || (pos1.filename && pos2.filename | |
113 | && *pos1.filename == *pos2.filename))); | |
31b2b07e | 114 | } |
21667f64 | 115 | |
31b2b07e JD |
116 | /// Compare two position objects. |
117 | inline bool | |
118 | operator!= (const position& pos1, const position& pos2) | |
119 | { | |
120 | return !(pos1 == pos2); | |
121 | } | |
122 | ]])[ | |
21667f64 AD |
123 | /** \brief Intercept output stream redirection. |
124 | ** \param ostr the destination output stream | |
125 | ** \param pos a reference to the position to redirect | |
126 | */ | |
127 | inline std::ostream& | |
128 | operator<< (std::ostream& ostr, const position& pos) | |
129 | { | |
130 | if (pos.filename) | |
131 | ostr << *pos.filename << ':'; | |
132 | return ostr << pos.line << '.' << pos.column; | |
133 | } | |
93549bcd | 134 | ]]) |
21667f64 | 135 | |
21667f64 | 136 | |
93549bcd AD |
137 | # b4_location_define |
138 | # ------------------ | |
139 | m4_define([b4_location_define], | |
140 | [[ /// Abstract a location. | |
21667f64 AD |
141 | class location |
142 | { | |
21667f64 | 143 | public: |
4626a15d | 144 | ]m4_ifdef([b4_location_constructors], [ |
0634493c AD |
145 | /// Construct a location from \a b to \a e. |
146 | location (const position& b, const position& e) | |
147 | : begin (b) | |
148 | , end (e) | |
149 | { | |
150 | } | |
151 | ||
152 | /// Construct a 0-width location in \a p. | |
153 | explicit location (const position& p = position ()) | |
154 | : begin (p) | |
155 | , end (p) | |
156 | { | |
157 | } | |
158 | ||
159 | /// Construct a 0-width location in \a f, \a l, \a c. | |
160 | explicit location (]b4_percent_define_get([[filename_type]])[* f, | |
161 | unsigned int l = ]b4_location_initial_line[u, | |
162 | unsigned int c = ]b4_location_initial_column[u) | |
163 | : begin (f, l, c) | |
164 | , end (f, l, c) | |
21667f64 AD |
165 | { |
166 | } | |
21667f64 | 167 | |
4626a15d AD |
168 | ])[ |
169 | /// Initialization. | |
936c88d1 AD |
170 | void initialize (]b4_percent_define_get([[filename_type]])[* f = YY_NULL, |
171 | unsigned int l = ]b4_location_initial_line[u, | |
172 | unsigned int c = ]b4_location_initial_column[u) | |
4626a15d | 173 | { |
936c88d1 | 174 | begin.initialize (f, l, c); |
4626a15d AD |
175 | end = begin; |
176 | } | |
21667f64 AD |
177 | |
178 | /** \name Line and Column related manipulators | |
179 | ** \{ */ | |
180 | public: | |
181 | /// Reset initial location to final location. | |
2a1bd0d7 | 182 | void step () |
21667f64 AD |
183 | { |
184 | begin = end; | |
185 | } | |
186 | ||
187 | /// Extend the current location to the COUNT next columns. | |
2a1bd0d7 | 188 | void columns (unsigned int count = 1) |
21667f64 AD |
189 | { |
190 | end += count; | |
191 | } | |
192 | ||
193 | /// Extend the current location to the COUNT next lines. | |
2a1bd0d7 | 194 | void lines (unsigned int count = 1) |
21667f64 AD |
195 | { |
196 | end.lines (count); | |
197 | } | |
198 | /** \} */ | |
199 | ||
200 | ||
201 | public: | |
202 | /// Beginning of the located region. | |
203 | position begin; | |
204 | /// End of the located region. | |
205 | position end; | |
206 | }; | |
207 | ||
208 | /// Join two location objects to create a location. | |
209 | inline const location operator+ (const location& begin, const location& end) | |
210 | { | |
211 | location res = begin; | |
212 | res.end = end.end; | |
213 | return res; | |
214 | } | |
215 | ||
216 | /// Add two location objects. | |
217 | inline const location operator+ (const location& begin, unsigned int width) | |
218 | { | |
219 | location res = begin; | |
220 | res.columns (width); | |
221 | return res; | |
222 | } | |
223 | ||
224 | /// Add and assign a location. | |
225 | inline location& operator+= (location& res, unsigned int width) | |
226 | { | |
227 | res.columns (width); | |
228 | return res; | |
229 | } | |
592d0b1e | 230 | ]b4_percent_define_flag_if([[define_location_comparison]], [[ |
31b2b07e JD |
231 | /// Compare two location objects. |
232 | inline bool | |
233 | operator== (const location& loc1, const location& loc2) | |
234 | { | |
235 | return loc1.begin == loc2.begin && loc1.end == loc2.end; | |
236 | } | |
21667f64 | 237 | |
31b2b07e JD |
238 | /// Compare two location objects. |
239 | inline bool | |
240 | operator!= (const location& loc1, const location& loc2) | |
241 | { | |
242 | return !(loc1 == loc2); | |
243 | } | |
244 | ]])[ | |
21667f64 AD |
245 | /** \brief Intercept output stream redirection. |
246 | ** \param ostr the destination output stream | |
247 | ** \param loc a reference to the location to redirect | |
248 | ** | |
249 | ** Avoid duplicate information. | |
250 | */ | |
251 | inline std::ostream& operator<< (std::ostream& ostr, const location& loc) | |
252 | { | |
253 | position last = loc.end - 1; | |
254 | ostr << loc.begin; | |
255 | if (last.filename | |
e9690142 JD |
256 | && (!loc.begin.filename |
257 | || *loc.begin.filename != *last.filename)) | |
21667f64 AD |
258 | ostr << '-' << last; |
259 | else if (loc.begin.line != last.line) | |
260 | ostr << '-' << last.line << '.' << last.column; | |
261 | else if (loc.begin.column != last.column) | |
262 | ostr << '-' << last.column; | |
263 | return ostr; | |
264 | } | |
93549bcd | 265 | ]]) |
21667f64 | 266 | |
93549bcd AD |
267 | |
268 | # We do want M4 expansion after # for CPP macros. | |
269 | m4_changecom() | |
270 | b4_defines_if([ | |
271 | m4_divert_push(0)dnl | |
272 | @output(b4_dir_prefix[]position.hh@)@ | |
273 | b4_copyright([Positions for Bison parsers in C++])[ | |
274 | ||
275 | /** | |
276 | ** \file ]b4_dir_prefix[position.hh | |
277 | ** Define the ]b4_namespace_ref[::position class. | |
278 | */ | |
279 | ||
280 | ]b4_cpp_guard_open([b4_dir_prefix[]position.hh])[ | |
281 | ||
282 | # include <algorithm> // std::max | |
283 | # include <iosfwd> | |
284 | # include <string> | |
285 | ||
286 | ]b4_null_define[ | |
287 | ||
288 | ]b4_namespace_open[ | |
289 | ]b4_position_define[ | |
793fbca5 | 290 | ]b4_namespace_close[ |
93549bcd AD |
291 | ]b4_cpp_guard_close([b4_dir_prefix[]position.hh]) |
292 | @output(b4_dir_prefix[]location.hh@)@ | |
293 | b4_copyright([Locations for Bison parsers in C++])[ | |
294 | ||
295 | /** | |
296 | ** \file ]b4_dir_prefix[location.hh | |
297 | ** Define the ]b4_namespace_ref[::location class. | |
298 | */ | |
299 | ||
300 | ]b4_cpp_guard_open([b4_dir_prefix[]location.hh])[ | |
21667f64 | 301 | |
93549bcd AD |
302 | # include <iostream> |
303 | # include <string> | |
304 | # include "position.hh" | |
305 | ||
306 | ]b4_namespace_open[ | |
307 | ]b4_location_define[ | |
308 | ]b4_namespace_close[ | |
22172d47 | 309 | ]b4_cpp_guard_close([b4_dir_prefix[]location.hh]) |
08af01c2 | 310 | m4_divert_pop(0) |
93549bcd | 311 | ])# b4_defines_if |
a9ce3f54 | 312 | m4_popdef([b4_copyright_years])dnl |
21667f64 | 313 | m4_changecom([#]) |