1 # C++ skeleton for Bison
3 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2009
4 # Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # We do want M4 expansion after # for CPP macros.
22 @
output(b4_dir_prefix
[]position
.hh@
)
23 b4_copyright([Positions
for Bison parsers in C
++],
24 [2002, 2003, 2004, 2005, 2006, 2007, 2009])[
28 ** Define the ]b4_namespace_ref[::position class.
31 #ifndef BISON_POSITION_HH
32 # define BISON_POSITION_HH
39 /// Abstract a position.
43 ]m4_ifdef([b4_location_constructors
], [
44 /// Construct a position.
46 : filename (0), line (]b4_location_initial_line
[), column (]b4_location_initial_column
[)
52 inline void initialize (]b4_percent_define_get([[filename_type]])[* fn
)
55 line
= ]b4_location_initial_line
[;
56 column
= ]b4_location_initial_column
[;
59 /** \name Line and Column related manipulators
62 /// (line related) Advance to the COUNT next lines.
63 inline void lines (int count
= 1)
65 column
= ]b4_location_initial_column
[;
69 /// (column related) Advance to the COUNT next columns.
70 inline void columns (int count
= 1)
72 column
= std::max (]b4_location_initial_column
[u
, column
+ count
);
77 /// File name to which this position refers.
78 ]b4_percent_define_get([[filename_type]])[* filename
;
79 /// Current line number.
81 /// Current column number.
85 /// Add and assign a position.
86 inline const position
&
87 operator+= (position
& res
, const int width
)
93 /// Add two position objects.
95 operator+ (const position
& begin
, const int width
)
101 /// Add and assign a position.
102 inline const position
&
103 operator-= (position
& res
, const int width
)
105 return res
+= -width
;
108 /// Add two position objects.
109 inline const position
110 operator- (const position
& begin
, const int width
)
112 return begin
+ -width
;
114 ]b4_percent_define_flag_if([[define_location_comparison]], [[
115 /// Compare two position objects.
117 operator== (const position
& pos1
, const position
& pos2
)
119 return (pos1
.line
== pos2
.line
120 && pos1
.column
== pos2
.column
121 && (pos1
.filename
== pos2
.filename
122 || (pos1
.filename
&& pos2
.filename
123 && *pos1
.filename
== *pos2
.filename
)));
126 /// Compare two position objects.
128 operator!= (const position
& pos1
, const position
& pos2
)
130 return !(pos1
== pos2
);
133 /** \brief Intercept output stream redirection.
134 ** \param ostr the destination output stream
135 ** \param pos a reference to the position to redirect
138 operator<< (std::ostream
& ostr
, const position
& pos
)
141 ostr
<< *pos
.filename
<< ':';
142 return ostr
<< pos
.line
<< '.' << pos
.column
;
146 #endif // not BISON_POSITION_HH]
147 @
output(b4_dir_prefix
[]location
.hh@
)
148 b4_copyright([Locations
for Bison parsers in C
++],
149 [2002, 2003, 2004, 2005, 2006, 2007, 2009])[
153 ** Define the ]b4_namespace_ref[::location class.
156 #ifndef BISON_LOCATION_HH
157 # define BISON_LOCATION_HH
161 # include "position.hh"
165 /// Abstract a location.
169 ]m4_ifdef([b4_location_constructors
], [
170 /// Construct a location.
178 inline void initialize (]b4_percent_define_get([[filename_type]])[* fn
)
180 begin
.initialize (fn
);
184 /** \name Line and Column related manipulators
187 /// Reset initial location to final location.
193 /// Extend the current location to the COUNT next columns.
194 inline void columns (unsigned int count
= 1)
199 /// Extend the current location to the COUNT next lines.
200 inline void lines (unsigned int count
= 1)
208 /// Beginning of the located region.
210 /// End of the located region.
214 /// Join two location objects to create a location.
215 inline const location
operator+ (const location
& begin
, const location
& end
)
217 location res
= begin
;
222 /// Add two location objects.
223 inline const location
operator+ (const location
& begin
, unsigned int width
)
225 location res
= begin
;
230 /// Add and assign a location.
231 inline location
& operator+= (location
& res
, unsigned int width
)
236 ]b4_percent_define_flag_if([[define_location_comparison]], [[
237 /// Compare two location objects.
239 operator== (const location
& loc1
, const location
& loc2
)
241 return loc1
.begin
== loc2
.begin
&& loc1
.end
== loc2
.end
;
244 /// Compare two location objects.
246 operator!= (const location
& loc1
, const location
& loc2
)
248 return !(loc1
== loc2
);
251 /** \brief Intercept output stream redirection.
252 ** \param ostr the destination output stream
253 ** \param loc a reference to the location to redirect
255 ** Avoid duplicate information.
257 inline std::ostream
& operator<< (std::ostream
& ostr
, const location
& loc
)
259 position last
= loc
.end
- 1;
262 && (!loc
.begin
.filename
263 || *loc
.begin
.filename
!= *last
.filename
))
265 else if (loc
.begin
.line
!= last
.line
)
266 ostr
<< '-' << last
.line
<< '.' << last
.column
;
267 else if (loc
.begin
.column
!= last
.column
)
268 ostr
<< '-' << last
.column
;
274 #endif // not BISON_LOCATION_HH]