1 # C++ skeleton for Bison
3 # Copyright (C) 2002-2012 Free Software Foundation, Inc.
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
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.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 m4_pushdef([b4_copyright_years
],
23 # Define class position.
24 m4_define([b4_position_define
],
25 [[ /// Abstract a position.
29 ]m4_ifdef([b4_location_constructors
], [[
30 /// Construct a position.
31 explicit position (]b4_percent_define_get([[filename_type]])[* f
= YY_NULL
,
32 unsigned int l
= ]b4_location_initial_line
[u
,
33 unsigned int c
= ]b4_location_initial_column
[u
)
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
)
51 /** \name Line and Column related manipulators
53 /// (line related) Advance to the COUNT next lines.
54 void lines (int count
= 1)
56 column
= ]b4_location_initial_column
[u
;
60 /// (column related) Advance to the COUNT next columns.
61 void columns (int count
= 1)
63 column
= std::max (]b4_location_initial_column
[u
, column
+ count
);
67 /// File name to which this position refers.
68 ]b4_percent_define_get([[filename_type]])[* filename
;
69 /// Current line number.
71 /// Current column number.
75 /// Add and assign a position.
76 inline const position
&
77 operator+= (position
& res
, const int width
)
83 /// Add two position objects.
85 operator+ (const position
& begin
, const int width
)
91 /// Add and assign a position.
92 inline const position
&
93 operator-= (position
& res
, const int width
)
98 /// Add two position objects.
100 operator- (const position
& begin
, const int width
)
102 return begin
+ -width
;
104 ]b4_percent_define_flag_if([[define_location_comparison]], [[
105 /// Compare two position objects.
107 operator== (const position
& pos1
, const position
& pos2
)
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
)));
116 /// Compare two position objects.
118 operator!= (const position
& pos1
, const position
& pos2
)
120 return !(pos1
== pos2
);
123 /** \brief Intercept output stream redirection.
124 ** \param ostr the destination output stream
125 ** \param pos a reference to the position to redirect
128 operator<< (std::ostream
& ostr
, const position
& pos
)
131 ostr
<< *pos
.filename
<< ':';
132 return ostr
<< pos
.line
<< '.' << pos
.column
;
139 m4_define([b4_location_define
],
140 [[ /// Abstract a location.
144 ]m4_ifdef([b4_location_constructors
], [
145 /// Construct a location from \a b to \a e.
146 location (const position
& b
, const position
& e
)
152 /// Construct a 0-width location in \a p.
153 explicit location (const position
& p
= position ())
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
)
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
)
174 begin
.initialize (f
, l
, c
);
178 /** \name Line and Column related manipulators
181 /// Reset initial location to final location.
187 /// Extend the current location to the COUNT next columns.
188 void columns (unsigned int count
= 1)
193 /// Extend the current location to the COUNT next lines.
194 void lines (unsigned int count
= 1)
202 /// Beginning of the located region.
204 /// End of the located region.
208 /// Join two location objects to create a location.
209 inline const location
operator+ (const location
& begin
, const location
& end
)
211 location res
= begin
;
216 /// Add two location objects.
217 inline const location
operator+ (const location
& begin
, unsigned int width
)
219 location res
= begin
;
224 /// Add and assign a location.
225 inline location
& operator+= (location
& res
, unsigned int width
)
230 ]b4_percent_define_flag_if([[define_location_comparison]], [[
231 /// Compare two location objects.
233 operator== (const location
& loc1
, const location
& loc2
)
235 return loc1
.begin
== loc2
.begin
&& loc1
.end
== loc2
.end
;
238 /// Compare two location objects.
240 operator!= (const location
& loc1
, const location
& loc2
)
242 return !(loc1
== loc2
);
245 /** \brief Intercept output stream redirection.
246 ** \param ostr the destination output stream
247 ** \param loc a reference to the location to redirect
249 ** Avoid duplicate information.
251 inline std::ostream
& operator<< (std::ostream
& ostr
, const location
& loc
)
253 position last
= loc
.end
- 1;
256 && (!loc
.begin
.filename
257 || *loc
.begin
.filename
!= *last
.filename
))
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
;
268 # We do want M4 expansion after # for CPP macros.
272 @
output(b4_dir_prefix
[]position
.hh@
)@
273 b4_copyright([Positions
for Bison parsers in C
++])[
276 ** \file ]b4_dir_prefix[position.hh
277 ** Define the ]b4_namespace_ref[::position class.
280 ]b4_cpp_guard_open([b4_dir_prefix
[]position
.hh
])[
282 # include <algorithm> // std::max
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
++])[
296 ** \file ]b4_dir_prefix[location.hh
297 ** Define the ]b4_namespace_ref[::location class.
300 ]b4_cpp_guard_open([b4_dir_prefix
[]location
.hh
])[
304 # include "position.hh"
309 ]b4_cpp_guard_close([b4_dir_prefix
[]location
.hh
])
312 m4_popdef([b4_copyright_years
])dnl