All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
List of all members | Public Member Functions | Related Functions
BpGraphReader< BGR > Class Template Reference

Detailed Description

template<typename BGR>
class lemon::BpGraphReader< BGR >

This utility reads an LGF file.

It can be used almost the same way as GraphReader, but it reads the red and blue nodes from separate sections, and these sections can contain different set of maps.

The red and blue node maps are read from the corresponding sections. If a map is defined with the same name in both of these sections, then it can be read as a node map.

#include <lemon/lgf_reader.h>

Public Member Functions

 BpGraphReader (BGR &graph, std::istream &is=std::cin)
 Constructor. More...
 
 BpGraphReader (BGR &graph, const std::string &fn)
 Constructor. More...
 
 BpGraphReader (BGR &graph, const char *fn)
 Constructor. More...
 
 ~BpGraphReader ()
 Destructor.
 
Reading Rules
template<typename Map >
BpGraphReadernodeMap (const std::string &caption, Map &map)
 Node map reading rule. More...
 
template<typename Map , typename Converter >
BpGraphReadernodeMap (const std::string &caption, Map &map, const Converter &converter=Converter())
 Node map reading rule. More...
 
template<typename Map >
BpGraphReaderredNodeMap (const std::string &caption, Map &map)
 Add a red node map reading rule to the reader.
 
template<typename Map , typename Converter >
BpGraphReaderredNodeMap (const std::string &caption, Map &map, const Converter &converter=Converter())
 Red node map reading rule. More...
 
template<typename Map >
BpGraphReaderblueNodeMap (const std::string &caption, Map &map)
 Add a blue node map reading rule to the reader.
 
template<typename Map , typename Converter >
BpGraphReaderblueNodeMap (const std::string &caption, Map &map, const Converter &converter=Converter())
 Blue node map reading rule. More...
 
template<typename Map >
BpGraphReaderedgeMap (const std::string &caption, Map &map)
 Edge map reading rule. More...
 
template<typename Map , typename Converter >
BpGraphReaderedgeMap (const std::string &caption, Map &map, const Converter &converter=Converter())
 Edge map reading rule. More...
 
template<typename Map >
BpGraphReaderarcMap (const std::string &caption, Map &map)
 Arc map reading rule. More...
 
template<typename Map , typename Converter >
BpGraphReaderarcMap (const std::string &caption, Map &map, const Converter &converter=Converter())
 Arc map reading rule. More...
 
template<typename Value >
BpGraphReaderattribute (const std::string &caption, Value &value)
 Attribute reading rule. More...
 
template<typename Value , typename Converter >
BpGraphReaderattribute (const std::string &caption, Value &value, const Converter &converter=Converter())
 Attribute reading rule. More...
 
BpGraphReadernode (const std::string &caption, Node &node)
 Node reading rule. More...
 
BpGraphReaderredNode (const std::string &caption, RedNode &node)
 Red node reading rule. More...
 
BpGraphReaderblueNode (const std::string &caption, BlueNode &node)
 Blue node reading rule. More...
 
BpGraphReaderedge (const std::string &caption, Edge &edge)
 Edge reading rule. More...
 
BpGraphReaderarc (const std::string &caption, Arc &arc)
 Arc reading rule. More...
 
Select Section by Name
BpGraphReadernodes (const std::string &caption)
 Set @nodes section to be read. More...
 
BpGraphReaderedges (const std::string &caption)
 Set @edges section to be read. More...
 
BpGraphReaderattributes (const std::string &caption)
 Set @attributes section to be read. More...
 
Using Previously Constructed Node or Edge Set
template<typename Map >
BpGraphReaderuseNodes (const Map &map)
 Use previously constructed node set. More...
 
template<typename Map , typename Converter >
BpGraphReaderuseNodes (const Map &map, const Converter &converter=Converter())
 Use previously constructed node set. More...
 
template<typename Map >
BpGraphReaderuseEdges (const Map &map)
 Use previously constructed edge set. More...
 
template<typename Map , typename Converter >
BpGraphReaderuseEdges (const Map &map, const Converter &converter=Converter())
 Use previously constructed edge set. More...
 
BpGraphReaderskipNodes ()
 Skip the reading of node section. More...
 
BpGraphReaderskipEdges ()
 Skip the reading of edge section. More...
 
Execution of the Reader
void run ()
 Start the batch processing. More...
 

Related Functions

(Note that these are not member functions.)

template<typename TBGR >
BpGraphReader< TBGR > bpGraphReader (TBGR &graph, std::istream &is)
 Return a BpGraphReader class. More...
 
template<typename TBGR >
BpGraphReader< TBGR > bpGraphReader (TBGR &graph, const std::string &fn)
 Return a BpGraphReader class. More...
 
template<typename TBGR >
BpGraphReader< TBGR > bpGraphReader (TBGR &graph, const char *fn)
 Return a BpGraphReader class. More...
 

Constructor & Destructor Documentation

BpGraphReader ( BGR &  graph,
std::istream &  is = std::cin 
)
inline

Construct an undirected graph reader, which reads from the given input stream.

BpGraphReader ( BGR &  graph,
const std::string &  fn 
)
inline

Construct an undirected graph reader, which reads from the given file.

BpGraphReader ( BGR &  graph,
const char *  fn 
)
inline

Construct an undirected graph reader, which reads from the given file.

Member Function Documentation

BpGraphReader& nodeMap ( const std::string &  caption,
Map &  map 
)
inline

Add a node map reading rule to the reader.

BpGraphReader& nodeMap ( const std::string &  caption,
Map &  map,
const Converter &  converter = Converter() 
)
inline

Add a node map reading rule with specialized converter to the reader.

BpGraphReader& redNodeMap ( const std::string &  caption,
Map &  map,
const Converter &  converter = Converter() 
)
inline

Add a red node map node reading rule with specialized converter to the reader.

BpGraphReader& blueNodeMap ( const std::string &  caption,
Map &  map,
const Converter &  converter = Converter() 
)
inline

Add a blue node map reading rule with specialized converter to the reader.

BpGraphReader& edgeMap ( const std::string &  caption,
Map &  map 
)
inline

Add an edge map reading rule to the reader.

BpGraphReader& edgeMap ( const std::string &  caption,
Map &  map,
const Converter &  converter = Converter() 
)
inline

Add an edge map reading rule with specialized converter to the reader.

BpGraphReader& arcMap ( const std::string &  caption,
Map &  map 
)
inline

Add an arc map reading rule to the reader.

BpGraphReader& arcMap ( const std::string &  caption,
Map &  map,
const Converter &  converter = Converter() 
)
inline

Add an arc map reading rule with specialized converter to the reader.

BpGraphReader& attribute ( const std::string &  caption,
Value &  value 
)
inline

Add an attribute reading rule to the reader.

BpGraphReader& attribute ( const std::string &  caption,
Value &  value,
const Converter &  converter = Converter() 
)
inline

Add an attribute reading rule with specialized converter to the reader.

BpGraphReader& node ( const std::string &  caption,
Node &  node 
)
inline

Add a node reading rule to reader.

BpGraphReader& redNode ( const std::string &  caption,
RedNode &  node 
)
inline

Add a red node reading rule to reader.

BpGraphReader& blueNode ( const std::string &  caption,
BlueNode &  node 
)
inline

Add a blue node reading rule to reader.

BpGraphReader& edge ( const std::string &  caption,
Edge &  edge 
)
inline

Add an edge reading rule to reader.

BpGraphReader& arc ( const std::string &  caption,
Arc &  arc 
)
inline

Add an arc reading rule to reader.

BpGraphReader& nodes ( const std::string &  caption)
inline

Set @nodes section to be read.

BpGraphReader& edges ( const std::string &  caption)
inline

Set @edges section to be read.

BpGraphReader& attributes ( const std::string &  caption)
inline

Set @attributes section to be read.

BpGraphReader& useNodes ( const Map &  map)
inline

Use previously constructed node set, and specify the node label map.

BpGraphReader& useNodes ( const Map &  map,
const Converter &  converter = Converter() 
)
inline

Use previously constructed node set, and specify the node label map and a functor which converts the label map values to std::string.

BpGraphReader& useEdges ( const Map &  map)
inline

Use previously constructed edge set, and specify the edge label map.

BpGraphReader& useEdges ( const Map &  map,
const Converter &  converter = Converter() 
)
inline

Use previously constructed edge set, and specify the edge label map and a functor which converts the label map values to std::string.

BpGraphReader& skipNodes ( )
inline

Omit the reading of the node section. This implies that each node map reading rule will be abandoned, and the nodes of the graph will not be constructed, which usually cause that the edge set could not be read due to lack of node name could not be read due to lack of node name resolving. Therefore skipEdges() function should also be used, or useNodes() should be used to specify the label of the nodes.

BpGraphReader& skipEdges ( )
inline

Omit the reading of the edge section. This implies that each edge map reading rule will be abandoned, and the edges of the graph will not be constructed.

void run ( )
inline

This function starts the batch processing

Friends And Related Function Documentation

BpGraphReader< TBGR > bpGraphReader ( TBGR &  graph,
const std::string &  fn 
)
related

This function just returns a BpGraphReader class.

See Also
bpGraphReader(TBGR& graph, std::istream& is)
BpGraphReader< TBGR > bpGraphReader ( TBGR &  graph,
const char *  fn 
)
related

This function just returns a BpGraphReader class.

See Also
bpGraphReader(TBGR& graph, std::istream& is)