Vcsn  2.1
Be Rational
vcsn::ast::context_parser Class Reference

#include <context-parser.hh>

Collaboration diagram for vcsn::ast::context_parser:

Public Member Functions

 context_parser (std::istringstream &is)
 
std::shared_ptr< ast_nodeparse ()
 Accept anything. More...
 
std::shared_ptr< ast_nodeparse_context ()
 Accept only a valid context. More...
 

Private Member Functions

std::shared_ptr< ast_nodeany_ ()
 Accept anything. More...
 
std::string word_ ()
 The next word in the stream. More...
 
std::string parameters_ ()
 The next parameters in the stream. More...
 
std::shared_ptr< const gensetgenset_ ()
 A generator set (e.g., char_letters(abc) or char). More...
 
std::shared_ptr< const gensetgenset_ (std::string letter_type)
 
std::shared_ptr< contextcontext_ ()
 <LabelSet>, <WeightSet>. More...
 
std::shared_ptr< contextcontext_ (std::string word)
 
std::shared_ptr< ast_nodelabelset_ ()
 <LabelSet>. More...
 
std::shared_ptr< ast_nodelabelset_ (const std::string &kind)
 
std::shared_ptr< ast_nodeweightset_ ()
 <WeightSet>. More...
 
std::shared_ptr< ast_nodeweightset_ (const std::string &ws)
 
std::shared_ptr< automatonautomaton_ (std::string prefix)
 <Automaton> "\<" <Context> "\>". More...
 
std::shared_ptr< tupletuple_ ()
 "\<" (<Any> ",")* "\>". More...
 
std::shared_ptr< tuplesettupleset_ ()
 "\<" (<LabelSet> | <WeightSet> ",")+ "\>". More...
 
std::shared_ptr< expressionsetexpressionset_ ()
 "expressionset" "\<" <Context> "\>", possibly followed by identities. More...
 
std::shared_ptr< expressionsetseriesset_ ()
 No optional argument. More...
 
std::shared_ptr< expansionsetexpansionset_ ()
 "expansionset" "\<" <Expressionset> "\>". More...
 
std::shared_ptr< polynomialsetpolynomialset_ ()
 "polynomialset" "\<" <Context> "\>". More...
 
std::shared_ptr< ast_nodelabelset_or_weightset_ ()
 <LabelSet> | <WeightSet> More...
 
std::shared_ptr< ast_nodelabelset_or_weightset_ (const std::string &kind)
 

Private Attributes

std::istringstream & is_
 The stream we are parsing. More...
 
std::set< std::string > weightsets_
 The set of terminal weightset names. More...
 
std::set< std::string > labelsets_
 The set of weightset names. More...
 

Detailed Description

Definition at line 15 of file context-parser.hh.

Constructor & Destructor Documentation

vcsn::ast::context_parser::context_parser ( std::istringstream &  is)
inline

Definition at line 18 of file context-parser.hh.

Member Function Documentation

std::shared_ptr< ast_node > vcsn::ast::context_parser::any_ ( )
private

Accept anything.

Definition at line 42 of file context-parser.cc.

References automaton_(), context_(), expansionset_(), expressionset_(), vcsn::has(), is_, labelset_(), labelsets_, parameters_(), polynomialset_(), seriesset_(), tuple_(), tupleset_(), weightset_(), weightsets_, and word_().

Referenced by parse(), and tuple_().

Here is the call graph for this function:

std::shared_ptr< automaton > vcsn::ast::context_parser::automaton_ ( std::string  prefix)
private

<Automaton> "\<" <Context> "\>".

Definition at line 291 of file context-parser.cc.

References context_(), vcsn::eat(), is_, vcsn::prefix(), vcsn::str_escape(), and word_().

Referenced by any_().

Here is the call graph for this function:

std::shared_ptr< context > vcsn::ast::context_parser::context_ ( )
private

<LabelSet>, <WeightSet>.

Definition at line 185 of file context-parser.cc.

References word_().

Referenced by any_(), automaton_(), expressionset_(), parse_context(), polynomialset_(), and seriesset_().

Here is the call graph for this function:

std::shared_ptr< context > vcsn::ast::context_parser::context_ ( std::string  word)
private

Definition at line 191 of file context-parser.cc.

References vcsn::eat(), is_, labelset_(), weightset_(), and word_().

Here is the call graph for this function:

std::shared_ptr< expansionset > vcsn::ast::context_parser::expansionset_ ( )
private

"expansionset" "\<" <Expressionset> "\>".

Definition at line 406 of file context-parser.cc.

References vcsn::eat(), expressionset_(), and is_.

Referenced by any_().

Here is the call graph for this function:

std::shared_ptr< expressionset > vcsn::ast::context_parser::expressionset_ ( )
private

"expressionset" "\<" <Context> "\>", possibly followed by identities.

Definition at line 381 of file context-parser.cc.

References context_(), vcsn::eat(), vcsn::rat::ids(), and is_.

Referenced by any_(), expansionset_(), labelset_(), labelset_or_weightset_(), and weightset_().

Here is the call graph for this function:

std::shared_ptr< const genset > vcsn::ast::context_parser::genset_ ( )
private

A generator set (e.g., char_letters(abc) or char).

Definition at line 180 of file context-parser.cc.

References word_().

Referenced by labelset_().

Here is the call graph for this function:

std::shared_ptr< const genset > vcsn::ast::context_parser::genset_ ( std::string  letter_type)
private

Definition at line 156 of file context-parser.cc.

References is_, and vcsn::require().

Here is the call graph for this function:

std::shared_ptr< ast_node > vcsn::ast::context_parser::labelset_ ( )
private

<LabelSet>.

Definition at line 210 of file context-parser.cc.

References word_().

Referenced by any_(), context_(), labelset_(), and labelset_or_weightset_().

Here is the call graph for this function:

std::shared_ptr< ast_node > vcsn::ast::context_parser::labelset_ ( const std::string &  kind)
private

Definition at line 216 of file context-parser.cc.

References vcsn::eat(), expressionset_(), genset_(), is_, labelset_(), seriesset_(), vcsn::str_escape(), and tupleset_().

Here is the call graph for this function:

std::shared_ptr< ast_node > vcsn::ast::context_parser::labelset_or_weightset_ ( )
private

<LabelSet> | <WeightSet>

Definition at line 97 of file context-parser.cc.

References word_().

Referenced by tupleset_().

Here is the call graph for this function:

std::shared_ptr< ast_node > vcsn::ast::context_parser::labelset_or_weightset_ ( const std::string &  kind)
private

Definition at line 103 of file context-parser.cc.

References expressionset_(), vcsn::has(), labelset_(), labelsets_, seriesset_(), tupleset_(), weightset_(), and weightsets_.

Here is the call graph for this function:

std::string vcsn::ast::context_parser::parameters_ ( )
private

The next parameters in the stream.

Must be right before the opening <. Will return up to the matching >.

Definition at line 136 of file context-parser.cc.

References vcsn::eat(), and is_.

Referenced by any_().

Here is the call graph for this function:

std::shared_ptr< ast_node > vcsn::ast::context_parser::parse ( )

Accept anything.

Definition at line 28 of file context-parser.cc.

References any_(), vcsn::ast::check_eof(), and is_.

Here is the call graph for this function:

std::shared_ptr< ast_node > vcsn::ast::context_parser::parse_context ( )

Accept only a valid context.

Definition at line 35 of file context-parser.cc.

References vcsn::ast::check_eof(), context_(), and is_.

Referenced by vcsn::ast::normalize_context().

Here is the call graph for this function:

std::shared_ptr< polynomialset > vcsn::ast::context_parser::polynomialset_ ( )
private

"polynomialset" "\<" <Context> "\>".

Definition at line 415 of file context-parser.cc.

References context_(), vcsn::eat(), and is_.

Referenced by any_(), and weightset_().

Here is the call graph for this function:

std::shared_ptr< expressionset > vcsn::ast::context_parser::seriesset_ ( )
private

No optional argument.

Definition at line 397 of file context-parser.cc.

References context_(), vcsn::rat::identities::distributive, vcsn::eat(), and is_.

Referenced by any_(), labelset_(), labelset_or_weightset_(), and weightset_().

Here is the call graph for this function:

std::shared_ptr< tuple > vcsn::ast::context_parser::tuple_ ( )
private

"\<" (<Any> ",")* "\>".

Definition at line 351 of file context-parser.cc.

References any_(), vcsn::eat(), and is_.

Referenced by any_().

Here is the call graph for this function:

std::shared_ptr< tupleset > vcsn::ast::context_parser::tupleset_ ( )
private

"\<" (<LabelSet> | <WeightSet> ",")+ "\>".

Definition at line 366 of file context-parser.cc.

References vcsn::eat(), is_, and labelset_or_weightset_().

Referenced by any_(), labelset_(), labelset_or_weightset_(), and weightset_().

Here is the call graph for this function:

std::shared_ptr< ast_node > vcsn::ast::context_parser::weightset_ ( )
private

<WeightSet>.

Definition at line 268 of file context-parser.cc.

References word_().

Referenced by any_(), context_(), and labelset_or_weightset_().

Here is the call graph for this function:

std::shared_ptr< ast_node > vcsn::ast::context_parser::weightset_ ( const std::string &  ws)
private

Definition at line 274 of file context-parser.cc.

References expressionset_(), vcsn::has(), polynomialset_(), seriesset_(), vcsn::str_escape(), tupleset_(), and weightsets_.

Here is the call graph for this function:

std::string vcsn::ast::context_parser::word_ ( )
private

The next word in the stream.

Does not consider that underscore is word-constituent.

Definition at line 119 of file context-parser.cc.

References is_.

Referenced by any_(), automaton_(), context_(), genset_(), labelset_(), labelset_or_weightset_(), and weightset_().

Member Data Documentation

std::istringstream& vcsn::ast::context_parser::is_
private
std::set<std::string> vcsn::ast::context_parser::labelsets_
private
Initial value:
=
{
"lal",
"lal_char",
"lan",
"lan_char",
"lao",
"law",
"law_char",
"letterset",
"nullableset",
"wordset",
}

The set of weightset names.

Definition at line 98 of file context-parser.hh.

Referenced by any_(), and labelset_or_weightset_().

std::set<std::string> vcsn::ast::context_parser::weightsets_
private
Initial value:
=
{
"b",
"f2",
"log",
"nmin",
"q",
"qmp",
"r",
"rmin",
"z",
"zmin",
}

The set of terminal weightset names.

Definition at line 83 of file context-parser.hh.

Referenced by any_(), labelset_or_weightset_(), and weightset_().


The documentation for this class was generated from the following files: