2 # C++ skeleton for Bison
3 # Copyright (C) 2002, 2003, 2004 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 2 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, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 ## ---------------- ##
22 ## ---------------- ##
24 # Default Parser class name.
25 m4_define_default([b4_parser_class_name
], [Parser
])
29 ## ----------------- ##
30 ## Semantic Values. ##
31 ## ----------------- ##
34 # b4_lhs_value([TYPE])
35 # --------------------
36 # Expansion of $<TYPE>$.
37 m4_define([b4_lhs_value
],
38 [yyval
[]m4_ifval([$
1], [.$
1])])
41 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
42 # --------------------------------------
43 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
45 m4_define([b4_rhs_value
],
46 [semantic_stack_@
{m4_eval([$
1 - $
2])@
}m4_ifval([$
3], [.$
3])])
48 m4_define_default([b4_location_type
], [Location
])
53 m4_define([b4_lhs_location
],
57 # b4_rhs_location(RULE-LENGTH, NUM)
58 # ---------------------------------
59 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
61 m4_define([b4_rhs_location
],
62 [location_stack_@
{m4_eval([$
1 - $
2])@
}])
65 m4_define([b4_inherit
],
77 m4_define([b4_constructor
],
86 # Constructor's extra arguments.
87 m4_define([b4_parse_param_decl],
88 [m4_ifset([b4_parse_param], [, b4_c_ansi_formals(b4_parse_param)])])
92 # constructor's extra initialisations.
93 m4_define([b4_parse_param_cons
],
94 [m4_ifset([b4_parse_param
],
96 b4_cc_constructor_calls(b4_parse_param
)])])
97 m4_define([b4_cc_constructor_calls
],
98 [m4_map_sep([b4_cc_constructor_call
], [,
100 m4_define([b4_cc_constructor_call
],
103 # b4_parse_param_vars
104 # -------------------
105 # Extra instance variables.
106 m4_define([b4_parse_param_vars
],
107 [m4_ifset([b4_parse_param
],
109 /* User arguments. */
110 b4_cc_var_decls(b4_parse_param
)])])
111 m4_define([b4_cc_var_decls
],
112 [m4_map_sep([b4_cc_var_decl
], [
114 m4_define([b4_cc_var_decl
],
119 # We do want M4 expansion after # for CPP macros.
122 m4_if(b4_defines_flag
, 0, [],
123 [@output @output_header_name@
124 b4_copyright([C
++ Skeleton parser
for LALR(1) parsing with Bison
],
126 /* FIXME: This is wrong, we want computed header guards.
127 I don't know why the macros are missing now. :( */
128 #ifndef PARSER_HEADER_H
129 # define PARSER_HEADER_H
132 #include "location.hh"
137 /* Using locations. */
138 #define YYLSP_NEEDED ]b4_locations_flag[
140 ]b4_token_defines(b4_tokens
)[
142 /* Copy the first part of user declarations. */
145 ]/* Line __line__ of lalr1.cc. */
146 b4_syncline([@oline@
], [@ofile@
])[
148 /* Enabling traces. */
150 # define YYDEBUG ]b4_debug[
153 /* Enabling verbose error message. */
154 #ifndef YYERROR_VERBOSE
155 # define YYERROR_VERBOSE ]b4_error_verbose[
159 typedef YYSTYPE yystype
;
161 ]m4_ifdef([b4_stype
],
162 [b4_syncline([b4_stype_line
], [b4_filename
])
163 typedef union b4_stype yystype
;
164 /* Line __line__ of lalr1.cc. */
165 b4_syncline([@oline@
], [@ofile@
])],
166 [typedef int yystype
;])[
167 # define YYSTYPE yystype
170 /* Copy the second part of user declarations. */
173 ]/* Line __line__ of lalr1.cc. */
174 b4_syncline([@oline@
], [@ofile@
])[
175 #ifndef YYLLOC_DEFAULT
176 # define YYLLOC_DEFAULT(Current, Rhs, N) \
177 ((Current).end = Rhs[N].end)
182 class ]b4_parser_class_name
[;
184 template < typename P
>
190 struct Traits
< ]b4_parser_class_name
[ >
192 typedef ]b4_int_type_for([b4_translate
])[ TokenNumberType
;
193 typedef ]b4_int_type_for([b4_rhs
])[ RhsNumberType
;
194 typedef int StateType
;
195 typedef yystype SemanticType
;
196 typedef ]b4_location_type
[ LocationType
;
202 class ]b4_parser_class_name b4_inherit
[
206 typedef Traits
< ]b4_parser_class_name
[ >::TokenNumberType TokenNumberType
;
207 typedef Traits
< ]b4_parser_class_name
[ >::RhsNumberType RhsNumberType
;
208 typedef Traits
< ]b4_parser_class_name
[ >::StateType StateType
;
209 typedef Traits
< ]b4_parser_class_name
[ >::SemanticType SemanticType
;
210 typedef Traits
< ]b4_parser_class_name
[ >::LocationType LocationType
;
212 typedef Stack
< StateType
> StateStack
;
213 typedef Stack
< SemanticType
> SemanticStack
;
214 typedef Stack
< LocationType
> LocationStack
;
217 ]b4_parser_class_name
[ (bool debug
,
218 LocationType initlocation
][]b4_param
[]b4_parse_param_decl
[) :
219 ]b4_constructor
[][debug_ (debug
),
221 initlocation_ (initlocation
)]b4_parse_param_cons
[
223 ]b4_parser_class_name
[ (bool debug
][]b4_param
[]b4_parse_param_decl
[) :
224 ]b4_constructor
[][debug_ (debug
),
225 cdebug_ (std::cerr
)]b4_parse_param_cons
[
230 virtual ~]b4_parser_class_name
[ ()
234 virtual int parse ();
238 virtual void lex_ ();
239 virtual void error_ ();
240 virtual void print_ ();
241 virtual void report_syntax_error_ ();
243 virtual void symprint_ (int yytype
,
244 const SemanticType
*yyvaluep
,
245 const LocationType
*yylocationp
);
246 #endif /* ! YYDEBUG */
250 StateStack state_stack_
;
251 SemanticStack semantic_stack_
;
252 LocationStack location_stack_
;
255 static const ]b4_int_type_for([b4_pact
])[ pact_
[];
256 static const ]b4_int_type(b4_pact_ninf
, b4_pact_ninf
)[ pact_ninf_
;
257 static const ]b4_int_type_for([b4_defact
])[ defact_
[];
258 static const ]b4_int_type_for([b4_pgoto
])[ pgoto_
[];
259 static const ]b4_int_type_for([b4_defgoto
])[ defgoto_
[];
260 static const ]b4_int_type_for([b4_table
])[ table_
[];
261 static const ]b4_int_type(b4_table_ninf
, b4_table_ninf
)[ table_ninf_
;
262 static const ]b4_int_type_for([b4_check
])[ check_
[];
263 static const ]b4_int_type_for([b4_stos
])[ stos_
[];
264 static const ]b4_int_type_for([b4_r1
])[ r1_
[];
265 static const ]b4_int_type_for([b4_r2
])[ r2_
[];
267 #if YYDEBUG || YYERROR_VERBOSE
268 static const char* const name_
[];
271 /* More tables, for debugging. */
273 static const RhsNumberType rhs_
[];
274 static const ]b4_int_type_for([b4_prhs
])[ prhs_
[];
275 static const ]b4_int_type_for([b4_rline
])[ rline_
[];
276 static const ]b4_int_type_for([b4_toknum
])[ token_number_
[];
277 virtual void reduce_print_ (int yyrule
);
278 virtual void stack_print_ ();
281 /* Even more tables. */
282 inline TokenNumberType
translate_ (int token
);
283 inline void destruct_ (const char *yymsg
,
285 SemanticType
*yyvaluep
, LocationType
*yylocationp
);
287 /// Pop \a n symbols the three stacks.
288 inline void pop (unsigned int n
= 1);
291 static const int eof_
;
292 /* LAST_ -- Last index in TABLE_. */
293 static const int last_
;
294 static const int nnts_
;
295 static const int empty_
;
296 static const int final_
;
297 static const int terror_
;
298 static const int errcode_
;
299 static const int ntokens_
;
300 static const unsigned int user_token_number_max_
;
301 static const TokenNumberType undef_token_
;
308 /* Error handling. */
314 std::ostream
&cdebug_
;
316 /* Look-ahead and look-ahead in internal form. */
323 /* Semantic value and location of look-ahead token. */
325 LocationType location
;
326 /* Beginning of the last erroneous token popped off. */
327 Position error_start_
;
333 /* Initial location. */
334 LocationType initlocation_
;
335 ]b4_parse_param_vars
[
339 #endif /* ! defined PARSER_HEADER_H */]
341 @output @output_parser_name@
342 b4_copyright([C
++ Skeleton parser
for LALR(1) parsing with Bison
],
345 m4_if(b4_defines_flag
, 0, [], [#include @output_header_name@])[
347 /* Enable debugging if requested. */
354 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
358 cdebug_ << (Title) << ' '; \
359 symprint_ ((Type), (Value), (Location)); \
360 cdebug_ << std::endl; \
364 # define YY_REDUCE_PRINT(Rule) \
367 reduce_print_ (Rule); \
370 # define YY_STACK_PRINT() \
378 # define YYCDEBUG if (0) cdebug_
379 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
380 # define YY_REDUCE_PRINT(Rule)
381 # define YY_STACK_PRINT()
383 #endif /* !YYDEBUG */
385 #define YYACCEPT goto yyacceptlab
386 #define YYABORT goto yyabortlab
387 #define YYERROR goto yyerrorlab
390 /*--------------------------------.
391 | Print this symbol on YYOUTPUT. |
392 `--------------------------------*/
395 yy::]b4_parser_class_name
[::symprint_ (int yytype
,
396 const SemanticType
*yyvaluep
, const LocationType
*yylocationp
)
398 /* Pacify ``unused variable'' warnings. */
402 cdebug_
<< (yytype
< ntokens_
? "token" : "nterm")
403 << ' ' << name_
[yytype
] << " (";
406 ]m4_map([b4_symbol_actions
], m4_defn([b4_symbol_printers
]))dnl
412 #endif /* ! YYDEBUG */
415 yy::]b4_parser_class_name
[::destruct_ (const char *yymsg
,
416 int yytype
, SemanticType
*yyvaluep
, LocationType
*yylocationp
)
418 /* Pacify ``unused variable'' warnings. */
424 YY_SYMBOL_PRINT (yymsg
, yytype
, yyvaluep
, yylocationp
);
428 ]m4_map([b4_symbol_actions
], m4_defn([b4_symbol_destructors
]))[
435 yy::]b4_parser_class_name
[::pop (unsigned int n
)
437 state_stack_
.pop (n
);
438 semantic_stack_
.pop (n
);
439 location_stack_
.pop (n
);
443 yy::]b4_parser_class_name
[::parse ()
448 /* Initialize the stacks. The initial state will be pushed in
449 yynewstate, since the latter expects the semantical and the
450 location values to have been already stored, initialize these
451 stacks with a primary value. */
452 state_stack_
= StateStack (0);
453 semantic_stack_
= SemanticStack (1);
454 location_stack_
= LocationStack (1);
460 location
= initlocation_
;
462 YYCDEBUG
<< "Starting parse" << std::endl
;
466 state_stack_
.push (state_
);
467 YYCDEBUG
<< "Entering state " << state_
<< std::endl
;
473 /* Try to take a decision without look-ahead. */
475 if (n_
== pact_ninf_
)
478 /* Read a look-ahead token. */
479 if (looka_
== empty_
)
481 YYCDEBUG
<< "Reading a token: ";
485 /* Convert token to internal form. */
488 looka_
= ilooka_
= eof_
;
489 YYCDEBUG
<< "Now at end of input." << std::endl
;
493 ilooka_
= translate_ (looka_
);
494 YY_SYMBOL_PRINT ("Next token is", ilooka_
, &value
, &location
);
497 /* If the proper action on seeing token ILOOKA_ is to reduce or to
498 detect an error, take that action. */
500 if (n_
< 0 || last_
< n_
|| check_
[n_
] != ilooka_
)
503 /* Reduce or error. */
507 if (n_
== table_ninf_
)
522 /* Shift the look-ahead token. */
524 YYCDEBUG
<< "Shifting token " << looka_
525 << " (" << name_
[ilooka_
] << "), ";
528 /* Discard the token being shifted unless it is eof. */
532 semantic_stack_
.push (value
);
533 location_stack_
.push (location
);
535 /* Count tokens shifted since error; after three, turn off error
543 /*-----------------------------------------------------------.
544 | yydefault -- do the default action for the current state. |
545 `-----------------------------------------------------------*/
547 n_
= defact_
[state_
];
552 /*-----------------------------.
553 | yyreduce -- Do a reduction. |
554 `-----------------------------*/
557 /* If LEN_ is nonzero, implement the default value of the action:
558 `$$ = $1'. Otherwise, use the top of the stack.
560 Otherwise, the following line sets YYVAL to garbage.
561 This behavior is undocumented and Bison
562 users should not rely upon it. */
565 yyval
= semantic_stack_
[len_
- 1];
566 yyloc
= location_stack_
[len_
- 1];
570 yyval
= semantic_stack_
[0];
571 yyloc
= location_stack_
[0];
576 Slice
< LocationType
, LocationStack
> slice (location_stack_
, len_
);
577 YYLLOC_DEFAULT (yyloc
, slice
, len_
);
579 YY_REDUCE_PRINT (n_
);
585 ]/* Line __line__ of lalr1.cc. */
586 b4_syncline([@oline@
], [@ofile@
])[
592 semantic_stack_
.push (yyval
);
593 location_stack_
.push (yyloc
);
595 /* Shift the result of the reduction. */
597 state_
= pgoto_
[n_
- ntokens_
] + state_stack_
[0];
598 if (0 <= state_
&& state_
<= last_
&& check_
[state_
] == state_stack_
[0])
599 state_
= table_
[state_
];
601 state_
= defgoto_
[n_
- ntokens_
];
604 /*------------------------------------.
605 | yyerrlab -- here on detecting error |
606 `------------------------------------*/
608 /* If not already recovering from an error, report this error. */
609 report_syntax_error_ ();
611 error_start_
= location
.begin
;
614 /* If just tried and failed to reuse look-ahead token after an
615 error, discard it. */
617 /* Return failure if at end of input. */
620 /* If at end of input, pop the error token,
621 then the rest of the stack, then return failure. */
625 error_start_
= location_stack_
[0].begin
;
627 if (state_stack_
.height () == 1)
629 destruct_ ("Error: popping",
630 stos_
[state_stack_
[0]],
632 &location_stack_
[0]);
637 destruct_ ("Error: discarding", ilooka_
, &value
, &location
);
642 /* Else will try to reuse look-ahead token after shifting the error
647 /*---------------------------------------------------.
648 | yyerrorlab -- error raised explicitly by YYERROR. |
649 `---------------------------------------------------*/
653 /* Pacify GCC when the user code never invokes YYERROR and the label
654 yyerrorlab therefore never appears in user code. */
659 error_start_
= location_stack_
[len_
- 1].begin
;
661 state_
= state_stack_
[0];
664 /*-------------------------------------------------------------.
665 | yyerrlab1 -- common code for both syntax error and YYERROR. |
666 `-------------------------------------------------------------*/
668 errstatus_
= 3; /* Each real token shifted decrements this. */
673 if (n_
!= pact_ninf_
)
676 if (0 <= n_
&& n_
<= last_
&& check_
[n_
] == terror_
)
684 /* Pop the current state because it cannot handle the error token. */
685 if (state_stack_
.height () == 1)
688 destruct_ ("Error: popping",
689 stos_
[state_
], &semantic_stack_
[0], &location_stack_
[0]);
690 error_start_
= location_stack_
[0].begin
;
693 state_
= state_stack_
[0];
700 YYCDEBUG
<< "Shifting error token, ";
704 errloc
.begin
= error_start_
;
705 errloc
.end
= location
.end
;
706 semantic_stack_
.push (value
);
707 location_stack_
.push (errloc
);
719 /* Free the lookahead. */
720 destruct_ ("Error: discarding lookahead", ilooka_
, &value
, &location
);
726 yy::]b4_parser_class_name
[::lex_ ()
729 looka_
= yylex (&value
, &location
);
731 looka_
= yylex (&value
);
735 /** Generate an error message, and invoke yyerror. */
737 yy::]b4_parser_class_name
[::report_syntax_error_ ()
739 /* If not already recovering from an error, report this error. */
746 if (pact_ninf_
< n_
&& n_
< last_
)
748 message
= "syntax error, unexpected ";
749 message
+= name_
[ilooka_
];
752 for (int x
= (n_
< 0 ? -n_
: 0); x
< ntokens_
+ nnts_
; ++x
)
753 if (check_
[x
+ n_
] == x
&& x
!= terror_
)
758 for (int x
= (n_
< 0 ? -n_
: 0); x
< ntokens_
+ nnts_
; ++x
)
759 if (check_
[x
+ n_
] == x
&& x
!= terror_
)
761 message
+= (!count
++) ? ", expecting " : " or ";
769 message
= "syntax error";
775 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
777 const ]b4_int_type(b4_pact_ninf
, b4_pact_ninf
) yy::b4_parser_class_name::pact_ninf_
= b4_pact_ninf
[;
778 const ]b4_int_type_for([b4_pact
])[
779 yy::]b4_parser_class_name
[::pact_
[] =
784 /* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE
785 doesn't specify something else to do. Zero means the default is an
787 const ]b4_int_type_for([b4_defact
])[
788 yy::]b4_parser_class_name
[::defact_
[] =
793 /* YYPGOTO[NTERM-NUM]. */
794 const ]b4_int_type_for([b4_pgoto
])[
795 yy::]b4_parser_class_name
[::pgoto_
[] =
800 /* YYDEFGOTO[NTERM-NUM]. */
801 const ]b4_int_type_for([b4_defgoto
])[
802 yy::]b4_parser_class_name
[::defgoto_
[] =
807 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
808 positive, shift that token. If negative, reduce the rule which
809 number is the opposite. If zero, do what YYDEFACT says. */
810 const ]b4_int_type(b4_table_ninf
, b4_table_ninf
) yy::b4_parser_class_name::table_ninf_
= b4_table_ninf
[;
811 const ]b4_int_type_for([b4_table
])[
812 yy::]b4_parser_class_name
[::table_
[] =
818 const ]b4_int_type_for([b4_check
])[
819 yy::]b4_parser_class_name
[::check_
[] =
824 /* STOS_[STATE-NUM] -- The (internal number of the) accessing
825 symbol of state STATE-NUM. */
826 const ]b4_int_type_for([b4_stos
])[
827 yy::]b4_parser_class_name
[::stos_
[] =
833 /* TOKEN_NUMBER_[YYLEX-NUM] -- Internal token number corresponding
835 const ]b4_int_type_for([b4_toknum
])[
836 yy::]b4_parser_class_name
[::token_number_
[] =
842 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
843 const ]b4_int_type_for([b4_r1
])[
844 yy::]b4_parser_class_name
[::r1_
[] =
849 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
850 const ]b4_int_type_for([b4_r2
])[
851 yy::]b4_parser_class_name
[::r2_
[] =
856 #if YYDEBUG || YYERROR_VERBOSE
857 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
858 First, the terminals, then, starting at NTOKENS_, nonterminals. */
860 const yy::]b4_parser_class_name
[::name_
[] =
867 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
868 const yy::]b4_parser_class_name
[::RhsNumberType
869 yy::]b4_parser_class_name
[::rhs_
[] =
874 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
876 const ]b4_int_type_for([b4_prhs
])[
877 yy::]b4_parser_class_name
[::prhs_
[] =
882 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
883 const ]b4_int_type_for([b4_rline
])[
884 yy::]b4_parser_class_name
[::rline_
[] =
889 /** Print the state stack from its BOTTOM up to its TOP (included). */
892 yy::]b4_parser_class_name
[::stack_print_ ()
894 cdebug_
<< "state stack now";
895 for (StateStack::ConstIterator i
= state_stack_
.begin ();
896 i
!= state_stack_
.end (); ++i
)
897 cdebug_
<< ' ' << *i
;
898 cdebug_
<< std::endl
;
901 /** Report that the YYRULE is going to be reduced. */
904 yy::]b4_parser_class_name
[::reduce_print_ (int yyrule
)
906 unsigned int yylno
= rline_
[yyrule
];
907 /* Print the symbols being reduced, and their result. */
908 cdebug_
<< "Reducing via rule " << n_
- 1 << " (line " << yylno
<< "), ";
909 for (]b4_int_type_for([b4_prhs
])[ i
= prhs_
[n_
];
911 cdebug_
<< name_
[rhs_
[i
]] << ' ';
912 cdebug_
<< "-> " << name_
[r1_
[n_
]] << std::endl
;
916 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
917 yy::]b4_parser_class_name
[::TokenNumberType
918 yy::]b4_parser_class_name
[::translate_ (int token
)
921 const TokenNumberType
926 if ((unsigned int) token
<= user_token_number_max_
)
927 return translate_table
[token
];
932 const int yy::]b4_parser_class_name
[::eof_
= 0;
933 const int yy::]b4_parser_class_name
[::last_
= ]b4_last
[;
934 const int yy::]b4_parser_class_name
[::nnts_
= ]b4_nterms_number
[;
935 const int yy::]b4_parser_class_name
[::empty_
= -2;
936 const int yy::]b4_parser_class_name
[::final_
= ]b4_final_state_number
[;
937 const int yy::]b4_parser_class_name
[::terror_
= 1;
938 const int yy::]b4_parser_class_name
[::errcode_
= 256;
939 const int yy::]b4_parser_class_name
[::ntokens_
= ]b4_tokens_number
[;
941 const unsigned int yy::]b4_parser_class_name
[::user_token_number_max_
= ]b4_user_token_number_max
[;
942 const yy::]b4_parser_class_name
[::TokenNumberType
yy::]b4_parser_class_name
[::undef_token_
= ]b4_undef_token_number
[;
947 b4_copyright([Stack handling
for Bison C
++ parsers
], [2002, 2003, 2004])[
949 #ifndef BISON_STACK_HH
950 # define BISON_STACK_HH
956 template < class T
, class S
= std::deque
< T
> >
961 typedef typename
S::iterator Iterator
;
962 typedef typename
S::const_iterator ConstIterator
;
968 Stack (unsigned int n
) : seq_ (n
)
974 operator [] (unsigned int i
)
981 operator [] (unsigned int i
) const
995 pop (unsigned int n
= 1)
1005 return seq_
.size ();
1008 inline ConstIterator
begin () const { return seq_
.begin (); }
1009 inline ConstIterator
end () const { return seq_
.end (); }
1016 template < class T
, class S
= Stack
< T
> >
1021 Slice (const S
& stack
,
1022 unsigned int range
) : stack_ (stack
),
1029 operator [] (unsigned int i
) const
1031 return stack_
[range_
- i
];
1037 unsigned int range_
;
1041 #endif // not BISON_STACK_HH]
1044 b4_copyright([Position
class for Bison C
++ parsers
], [2002, 2003, 2004])[
1047 ** \file position.hh
1048 ** Define the Location class.
1051 #ifndef BISON_POSITION_HH
1052 # define BISON_POSITION_HH
1054 # include <iostream>
1059 /** \brief Abstract a Position. */
1063 /** \brief Initial column number. */
1064 static const unsigned int initial_column
= 0;
1065 /** \brief Initial line number. */
1066 static const unsigned int initial_line
= 1;
1068 /** \name Ctor & dtor.
1071 /** \brief Construct a Position. */
1074 line (initial_line
),
1075 column (initial_column
)
1081 /** \name Line and Column related manipulators
1084 /** \brief (line related) Advance to the COUNT next lines. */
1085 inline void lines (int count
= 1)
1087 column
= initial_column
;
1091 /** \brief (column related) Advance to the COUNT next columns. */
1092 inline void columns (int count
= 1)
1094 int leftmost
= initial_column
;
1095 int current
= column
;
1096 if (leftmost
<= current
+ count
)
1099 column
= initial_column
;
1104 /** \brief File name to which this position refers. */
1105 std::string filename
;
1106 /** \brief Current line number. */
1108 /** \brief Current column number. */
1109 unsigned int column
;
1112 /** \brief Add and assign a Position. */
1113 inline const Position
&
1114 operator+= (Position
& res
, const int width
)
1116 res
.columns (width
);
1120 /** \brief Add two Position objects. */
1121 inline const Position
1122 operator+ (const Position
& begin
, const int width
)
1124 Position res
= begin
;
1125 return res
+= width
;
1128 /** \brief Add and assign a Position. */
1129 inline const Position
&
1130 operator-= (Position
& res
, const int width
)
1132 return res
+= -width
;
1135 /** \brief Add two Position objects. */
1136 inline const Position
1137 operator- (const Position
& begin
, const int width
)
1139 return begin
+ -width
;
1142 /** \brief Intercept output stream redirection.
1143 ** \param ostr the destination output stream
1144 ** \param pos a reference to the Position to redirect
1146 inline std::ostream
&
1147 operator<< (std::ostream
& ostr
, const Position
& pos
)
1149 if (!pos
.filename
.empty ())
1150 ostr
<< pos
.filename
<< ':';
1151 return ostr
<< pos
.line
<< '.' << pos
.column
;
1155 #endif // not BISON_POSITION_HH]
1157 b4_copyright([Location
class for Bison C
++ parsers
], [2002, 2003, 2004])[
1160 ** \file location.hh
1161 ** Define the Location class.
1164 #ifndef BISON_LOCATION_HH
1165 # define BISON_LOCATION_HH
1167 # include <iostream>
1169 # include "position.hh"
1174 /** \brief Abstract a Location. */
1177 /** \name Ctor & dtor.
1180 /** \brief Construct a Location. */
1189 /** \name Line and Column related manipulators
1192 /** \brief Reset initial location to final location. */
1193 inline void step (void)
1198 /** \brief Extend the current location to the COUNT next columns. */
1199 inline void columns (unsigned int count
= 1)
1204 /** \brief Extend the current location to the COUNT next lines. */
1205 inline void lines (unsigned int count
= 1)
1213 /** \brief Beginning of the located region. */
1215 /** \brief End of the located region. */
1219 /** \brief Join two Location objects to create a Location. */
1220 inline const Location
operator+ (const Location
& begin
, const Location
& end
)
1222 Location res
= begin
;
1227 /** \brief Add two Location objects */
1228 inline const Location
operator+ (const Location
& begin
, unsigned int width
)
1230 Location res
= begin
;
1231 res
.columns (width
);
1235 /** \brief Add and assign a Location */
1236 inline Location
&operator+= (Location
& res
, unsigned int width
)
1238 res
.columns (width
);
1242 /** \brief Intercept output stream redirection.
1243 ** \param ostr the destination output stream
1244 ** \param loc a reference to the Location to redirect
1246 ** Avoid duplicate information.
1248 inline std::ostream
& operator<< (std::ostream
& ostr
, const Location
& loc
)
1250 Position last
= loc
.end
- 1;
1252 if (loc
.begin
.filename
!= last
.filename
)
1253 ostr
<< '-' << last
;
1254 else if (loc
.begin
.line
!= last
.line
)
1255 ostr
<< '-' << last
.line
<< '.' << last
.column
;
1256 else if (loc
.begin
.column
!= last
.column
)
1257 ostr
<< '-' << last
.column
;
1263 #endif // not BISON_LOCATION_HH]