1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2011
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
21 ///\brief \ref lgf-format "LEMON Graph Format" reader.
24 #ifndef LEMON_LGF_READER_H
25 #define LEMON_LGF_READER_H
34 #include <lemon/core.h>
36 #include <lemon/lgf_writer.h>
38 #include <lemon/concept_check.h>
39 #include <lemon/concepts/maps.h>
43 namespace _reader_bits {
45 template <typename Value>
46 struct DefaultConverter {
47 Value operator()(const std::string& str) {
48 std::istringstream is(str);
51 throw FormatError("Cannot read token");
55 if (is >> std::ws >> c) {
56 throw FormatError("Remaining characters in token");
63 struct DefaultConverter<std::string> {
64 std::string operator()(const std::string& str) {
69 template <typename _Item>
70 class MapStorageBase {
76 virtual ~MapStorageBase() {}
78 virtual void set(const Item& item, const std::string& value) = 0;
82 template <typename _Item, typename _Map,
83 typename _Converter = DefaultConverter<typename _Map::Value> >
84 class MapStorage : public MapStorageBase<_Item> {
87 typedef _Converter Converter;
95 MapStorage(Map& map, const Converter& converter = Converter())
96 : _map(map), _converter(converter) {}
97 virtual ~MapStorage() {}
99 virtual void set(const Item& item ,const std::string& value) {
100 _map.set(item, _converter(value));
104 template <typename _GR, bool _dir, typename _Map,
105 typename _Converter = DefaultConverter<typename _Map::Value> >
106 class GraphArcMapStorage : public MapStorageBase<typename _GR::Edge> {
109 typedef _Converter Converter;
111 typedef typename GR::Edge Item;
112 static const bool dir = _dir;
117 Converter _converter;
120 GraphArcMapStorage(const GR& graph, Map& map,
121 const Converter& converter = Converter())
122 : _graph(graph), _map(map), _converter(converter) {}
123 virtual ~GraphArcMapStorage() {}
125 virtual void set(const Item& item ,const std::string& value) {
126 _map.set(_graph.direct(item, dir), _converter(value));
130 class ValueStorageBase {
132 ValueStorageBase() {}
133 virtual ~ValueStorageBase() {}
135 virtual void set(const std::string&) = 0;
138 template <typename _Value, typename _Converter = DefaultConverter<_Value> >
139 class ValueStorage : public ValueStorageBase {
141 typedef _Value Value;
142 typedef _Converter Converter;
146 Converter _converter;
149 ValueStorage(Value& value, const Converter& converter = Converter())
150 : _value(value), _converter(converter) {}
152 virtual void set(const std::string& value) {
153 _value = _converter(value);
157 template <typename Value>
158 struct MapLookUpConverter {
159 const std::map<std::string, Value>& _map;
161 MapLookUpConverter(const std::map<std::string, Value>& map)
164 Value operator()(const std::string& str) {
165 typename std::map<std::string, Value>::const_iterator it =
167 if (it == _map.end()) {
168 std::ostringstream msg;
169 msg << "Item not found: " << str;
170 throw FormatError(msg.str());
176 template <typename GR>
177 struct GraphArcLookUpConverter {
179 const std::map<std::string, typename GR::Edge>& _map;
181 GraphArcLookUpConverter(const GR& graph,
182 const std::map<std::string,
183 typename GR::Edge>& map)
184 : _graph(graph), _map(map) {}
186 typename GR::Arc operator()(const std::string& str) {
187 if (str.empty() || (str[0] != '+' && str[0] != '-')) {
188 throw FormatError("Item must start with '+' or '-'");
190 typename std::map<std::string, typename GR::Edge>
191 ::const_iterator it = _map.find(str.substr(1));
192 if (it == _map.end()) {
193 throw FormatError("Item not found");
195 return _graph.direct(it->second, str[0] == '+');
199 inline bool isWhiteSpace(char c) {
200 return c == ' ' || c == '\t' || c == '\v' ||
201 c == '\n' || c == '\r' || c == '\f';
204 inline bool isOct(char c) {
205 return '0' <= c && c <='7';
208 inline int valueOct(char c) {
209 LEMON_ASSERT(isOct(c), "The character is not octal.");
213 inline bool isHex(char c) {
214 return ('0' <= c && c <= '9') ||
215 ('a' <= c && c <= 'z') ||
216 ('A' <= c && c <= 'Z');
219 inline int valueHex(char c) {
220 LEMON_ASSERT(isHex(c), "The character is not hexadecimal.");
221 if ('0' <= c && c <= '9') return c - '0';
222 if ('a' <= c && c <= 'z') return c - 'a' + 10;
226 inline bool isIdentifierFirstChar(char c) {
227 return ('a' <= c && c <= 'z') ||
228 ('A' <= c && c <= 'Z') || c == '_';
231 inline bool isIdentifierChar(char c) {
232 return isIdentifierFirstChar(c) ||
233 ('0' <= c && c <= '9');
236 inline char readEscape(std::istream& is) {
239 throw FormatError("Escape format error");
267 if (!is.get(c) || !isHex(c))
268 throw FormatError("Escape format error");
269 else if (code = valueHex(c), !is.get(c) || !isHex(c)) is.putback(c);
270 else code = code * 16 + valueHex(c);
277 throw FormatError("Escape format error");
278 else if (code = valueOct(c), !is.get(c) || !isOct(c))
280 else if (code = code * 8 + valueOct(c), !is.get(c) || !isOct(c))
282 else code = code * 8 + valueOct(c);
288 inline std::istream& readToken(std::istream& is, std::string& str) {
289 std::ostringstream os;
298 while (is.get(c) && c != '\"') {
304 throw FormatError("Quoted format error");
307 while (is.get(c) && !isWhiteSpace(c)) {
324 virtual ~Section() {}
325 virtual void process(std::istream& is, int& line_num) = 0;
328 template <typename Functor>
329 class LineSection : public Section {
336 LineSection(const Functor& functor) : _functor(functor) {}
337 virtual ~LineSection() {}
339 virtual void process(std::istream& is, int& line_num) {
342 while (is.get(c) && c != '@') {
345 } else if (c == '#') {
348 } else if (!isWhiteSpace(c)) {
355 if (is) is.putback(c);
356 else if (is.eof()) is.clear();
360 template <typename Functor>
361 class StreamSection : public Section {
368 StreamSection(const Functor& functor) : _functor(functor) {}
369 virtual ~StreamSection() {}
371 virtual void process(std::istream& is, int& line_num) {
372 _functor(is, line_num);
375 while (is.get(c) && c != '@') {
378 } else if (!isWhiteSpace(c)) {
383 if (is) is.putback(c);
384 else if (is.eof()) is.clear();
390 template <typename DGR>
393 template <typename TDGR>
394 DigraphReader<TDGR> digraphReader(TDGR& digraph, std::istream& is = std::cin);
395 template <typename TDGR>
396 DigraphReader<TDGR> digraphReader(TDGR& digraph, const std::string& fn);
397 template <typename TDGR>
398 DigraphReader<TDGR> digraphReader(TDGR& digraph, const char *fn);
400 /// \ingroup lemon_io
402 /// \brief \ref lgf-format "LGF" reader for directed graphs
404 /// This utility reads an \ref lgf-format "LGF" file.
406 /// The reading method does a batch processing. The user creates a
407 /// reader object, then various reading rules can be added to the
408 /// reader, and eventually the reading is executed with the \c run()
409 /// member function. A map reading rule can be added to the reader
410 /// with the \c nodeMap() or \c arcMap() members. An optional
411 /// converter parameter can also be added as a standard functor
412 /// converting from \c std::string to the value type of the map. If it
413 /// is set, it will determine how the tokens in the file should be
414 /// converted to the value type of the map. If the functor is not set,
415 /// then a default conversion will be used. One map can be read into
416 /// multiple map objects at the same time. The \c attribute(), \c
417 /// node() and \c arc() functions are used to add attribute reading
421 /// DigraphReader<DGR>(digraph, std::cin).
422 /// nodeMap("coordinates", coord_map).
423 /// arcMap("capacity", cap_map).
424 /// node("source", src).
425 /// node("target", trg).
426 /// attribute("caption", caption).
430 /// By default, the reader uses the first section in the file of the
431 /// proper type. If a section has an optional name, then it can be
432 /// selected for reading by giving an optional name parameter to the
433 /// \c nodes(), \c arcs() or \c attributes() functions.
435 /// The \c useNodes() and \c useArcs() functions are used to tell the reader
436 /// that the nodes or arcs should not be constructed (added to the
437 /// graph) during the reading, but instead the label map of the items
438 /// are given as a parameter of these functions. An
439 /// application of these functions is multipass reading, which is
440 /// important if two \c \@arcs sections must be read from the
441 /// file. In this case the first phase would read the node set and one
442 /// of the arc sets, while the second phase would read the second arc
443 /// set into an \e ArcSet class (\c SmartArcSet or \c ListArcSet).
444 /// The previously read label node map should be passed to the \c
445 /// useNodes() functions. Another application of multipass reading when
446 /// paths are given as a node map or an arc map.
447 /// It is impossible to read this in
448 /// a single pass, because the arcs are not constructed when the node
450 template <typename DGR>
451 class DigraphReader {
458 TEMPLATE_DIGRAPH_TYPEDEFS(DGR);
462 std::string _filename;
466 std::string _nodes_caption;
467 std::string _arcs_caption;
468 std::string _attributes_caption;
470 typedef std::map<std::string, Node> NodeIndex;
471 NodeIndex _node_index;
472 typedef std::map<std::string, Arc> ArcIndex;
475 typedef std::vector<std::pair<std::string,
476 _reader_bits::MapStorageBase<Node>*> > NodeMaps;
479 typedef std::vector<std::pair<std::string,
480 _reader_bits::MapStorageBase<Arc>*> >ArcMaps;
483 typedef std::multimap<std::string, _reader_bits::ValueStorageBase*>
485 Attributes _attributes;
494 std::istringstream line;
498 /// \brief Constructor
500 /// Construct a directed graph reader, which reads from the given
502 DigraphReader(DGR& digraph, std::istream& is = std::cin)
503 : _is(&is), local_is(false), _digraph(digraph),
504 _use_nodes(false), _use_arcs(false),
505 _skip_nodes(false), _skip_arcs(false) {}
507 /// \brief Constructor
509 /// Construct a directed graph reader, which reads from the given
511 DigraphReader(DGR& digraph, const std::string& fn)
512 : _is(new std::ifstream(fn.c_str())), local_is(true),
513 _filename(fn), _digraph(digraph),
514 _use_nodes(false), _use_arcs(false),
515 _skip_nodes(false), _skip_arcs(false) {
518 throw IoError("Cannot open file", fn);
522 /// \brief Constructor
524 /// Construct a directed graph reader, which reads from the given
526 DigraphReader(DGR& digraph, const char* fn)
527 : _is(new std::ifstream(fn)), local_is(true),
528 _filename(fn), _digraph(digraph),
529 _use_nodes(false), _use_arcs(false),
530 _skip_nodes(false), _skip_arcs(false) {
533 throw IoError("Cannot open file", fn);
537 /// \brief Destructor
539 for (typename NodeMaps::iterator it = _node_maps.begin();
540 it != _node_maps.end(); ++it) {
544 for (typename ArcMaps::iterator it = _arc_maps.begin();
545 it != _arc_maps.end(); ++it) {
549 for (typename Attributes::iterator it = _attributes.begin();
550 it != _attributes.end(); ++it) {
562 template <typename TDGR>
563 friend DigraphReader<TDGR> digraphReader(TDGR& digraph, std::istream& is);
564 template <typename TDGR>
565 friend DigraphReader<TDGR> digraphReader(TDGR& digraph,
566 const std::string& fn);
567 template <typename TDGR>
568 friend DigraphReader<TDGR> digraphReader(TDGR& digraph, const char *fn);
570 DigraphReader(DigraphReader& other)
571 : _is(other._is), local_is(other.local_is), _digraph(other._digraph),
572 _use_nodes(other._use_nodes), _use_arcs(other._use_arcs),
573 _skip_nodes(other._skip_nodes), _skip_arcs(other._skip_arcs) {
576 other.local_is = false;
578 _node_index.swap(other._node_index);
579 _arc_index.swap(other._arc_index);
581 _node_maps.swap(other._node_maps);
582 _arc_maps.swap(other._arc_maps);
583 _attributes.swap(other._attributes);
585 _nodes_caption = other._nodes_caption;
586 _arcs_caption = other._arcs_caption;
587 _attributes_caption = other._attributes_caption;
591 DigraphReader& operator=(const DigraphReader&);
595 /// \name Reading Rules
598 /// \brief Node map reading rule
600 /// Add a node map reading rule to the reader.
601 template <typename Map>
602 DigraphReader& nodeMap(const std::string& caption, Map& map) {
603 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
604 _reader_bits::MapStorageBase<Node>* storage =
605 new _reader_bits::MapStorage<Node, Map>(map);
606 _node_maps.push_back(std::make_pair(caption, storage));
610 /// \brief Node map reading rule
612 /// Add a node map reading rule with specialized converter to the
614 template <typename Map, typename Converter>
615 DigraphReader& nodeMap(const std::string& caption, Map& map,
616 const Converter& converter = Converter()) {
617 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
618 _reader_bits::MapStorageBase<Node>* storage =
619 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
620 _node_maps.push_back(std::make_pair(caption, storage));
624 /// \brief Arc map reading rule
626 /// Add an arc map reading rule to the reader.
627 template <typename Map>
628 DigraphReader& arcMap(const std::string& caption, Map& map) {
629 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
630 _reader_bits::MapStorageBase<Arc>* storage =
631 new _reader_bits::MapStorage<Arc, Map>(map);
632 _arc_maps.push_back(std::make_pair(caption, storage));
636 /// \brief Arc map reading rule
638 /// Add an arc map reading rule with specialized converter to the
640 template <typename Map, typename Converter>
641 DigraphReader& arcMap(const std::string& caption, Map& map,
642 const Converter& converter = Converter()) {
643 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
644 _reader_bits::MapStorageBase<Arc>* storage =
645 new _reader_bits::MapStorage<Arc, Map, Converter>(map, converter);
646 _arc_maps.push_back(std::make_pair(caption, storage));
650 /// \brief Attribute reading rule
652 /// Add an attribute reading rule to the reader.
653 template <typename Value>
654 DigraphReader& attribute(const std::string& caption, Value& value) {
655 _reader_bits::ValueStorageBase* storage =
656 new _reader_bits::ValueStorage<Value>(value);
657 _attributes.insert(std::make_pair(caption, storage));
661 /// \brief Attribute reading rule
663 /// Add an attribute reading rule with specialized converter to the
665 template <typename Value, typename Converter>
666 DigraphReader& attribute(const std::string& caption, Value& value,
667 const Converter& converter = Converter()) {
668 _reader_bits::ValueStorageBase* storage =
669 new _reader_bits::ValueStorage<Value, Converter>(value, converter);
670 _attributes.insert(std::make_pair(caption, storage));
674 /// \brief Node reading rule
676 /// Add a node reading rule to reader.
677 DigraphReader& node(const std::string& caption, Node& node) {
678 typedef _reader_bits::MapLookUpConverter<Node> Converter;
679 Converter converter(_node_index);
680 _reader_bits::ValueStorageBase* storage =
681 new _reader_bits::ValueStorage<Node, Converter>(node, converter);
682 _attributes.insert(std::make_pair(caption, storage));
686 /// \brief Arc reading rule
688 /// Add an arc reading rule to reader.
689 DigraphReader& arc(const std::string& caption, Arc& arc) {
690 typedef _reader_bits::MapLookUpConverter<Arc> Converter;
691 Converter converter(_arc_index);
692 _reader_bits::ValueStorageBase* storage =
693 new _reader_bits::ValueStorage<Arc, Converter>(arc, converter);
694 _attributes.insert(std::make_pair(caption, storage));
700 /// \name Select Section by Name
703 /// \brief Set \c \@nodes section to be read
705 /// Set \c \@nodes section to be read
706 DigraphReader& nodes(const std::string& caption) {
707 _nodes_caption = caption;
711 /// \brief Set \c \@arcs section to be read
713 /// Set \c \@arcs section to be read
714 DigraphReader& arcs(const std::string& caption) {
715 _arcs_caption = caption;
719 /// \brief Set \c \@attributes section to be read
721 /// Set \c \@attributes section to be read
722 DigraphReader& attributes(const std::string& caption) {
723 _attributes_caption = caption;
729 /// \name Using Previously Constructed Node or Arc Set
732 /// \brief Use previously constructed node set
734 /// Use previously constructed node set, and specify the node
736 template <typename Map>
737 DigraphReader& useNodes(const Map& map) {
738 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
739 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
741 _writer_bits::DefaultConverter<typename Map::Value> converter;
742 for (NodeIt n(_digraph); n != INVALID; ++n) {
743 _node_index.insert(std::make_pair(converter(map[n]), n));
748 /// \brief Use previously constructed node set
750 /// Use previously constructed node set, and specify the node
751 /// label map and a functor which converts the label map values to
753 template <typename Map, typename Converter>
754 DigraphReader& useNodes(const Map& map,
755 const Converter& converter = Converter()) {
756 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
757 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
759 for (NodeIt n(_digraph); n != INVALID; ++n) {
760 _node_index.insert(std::make_pair(converter(map[n]), n));
765 /// \brief Use previously constructed arc set
767 /// Use previously constructed arc set, and specify the arc
769 template <typename Map>
770 DigraphReader& useArcs(const Map& map) {
771 checkConcept<concepts::ReadMap<Arc, typename Map::Value>, Map>();
772 LEMON_ASSERT(!_use_arcs, "Multiple usage of useArcs() member");
774 _writer_bits::DefaultConverter<typename Map::Value> converter;
775 for (ArcIt a(_digraph); a != INVALID; ++a) {
776 _arc_index.insert(std::make_pair(converter(map[a]), a));
781 /// \brief Use previously constructed arc set
783 /// Use previously constructed arc set, and specify the arc
784 /// label map and a functor which converts the label map values to
786 template <typename Map, typename Converter>
787 DigraphReader& useArcs(const Map& map,
788 const Converter& converter = Converter()) {
789 checkConcept<concepts::ReadMap<Arc, typename Map::Value>, Map>();
790 LEMON_ASSERT(!_use_arcs, "Multiple usage of useArcs() member");
792 for (ArcIt a(_digraph); a != INVALID; ++a) {
793 _arc_index.insert(std::make_pair(converter(map[a]), a));
798 /// \brief Skips the reading of node section
800 /// Omit the reading of the node section. This implies that each node
801 /// map reading rule will be abandoned, and the nodes of the graph
802 /// will not be constructed, which usually cause that the arc set
803 /// could not be read due to lack of node name resolving.
804 /// Therefore \c skipArcs() function should also be used, or
805 /// \c useNodes() should be used to specify the label of the nodes.
806 DigraphReader& skipNodes() {
807 LEMON_ASSERT(!_skip_nodes, "Skip nodes already set");
812 /// \brief Skips the reading of arc section
814 /// Omit the reading of the arc section. This implies that each arc
815 /// map reading rule will be abandoned, and the arcs of the graph
816 /// will not be constructed.
817 DigraphReader& skipArcs() {
818 LEMON_ASSERT(!_skip_arcs, "Skip arcs already set");
829 while(++line_num, std::getline(*_is, str)) {
830 line.clear(); line.str(str);
832 if (line >> std::ws >> c && c != '#') {
841 return static_cast<bool>(*_is);
846 while (readSuccess() && line >> c && c != '@') {
856 std::vector<int> map_index(_node_maps.size());
857 int map_num, label_index;
860 if (!readLine() || !(line >> c) || c == '@') {
861 if (readSuccess() && line) line.putback(c);
862 if (!_node_maps.empty())
863 throw FormatError("Cannot find map names");
869 std::map<std::string, int> maps;
873 while (_reader_bits::readToken(line, map)) {
874 if (maps.find(map) != maps.end()) {
875 std::ostringstream msg;
876 msg << "Multiple occurence of node map: " << map;
877 throw FormatError(msg.str());
879 maps.insert(std::make_pair(map, index));
883 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
884 std::map<std::string, int>::iterator jt =
885 maps.find(_node_maps[i].first);
886 if (jt == maps.end()) {
887 std::ostringstream msg;
888 msg << "Map not found: " << _node_maps[i].first;
889 throw FormatError(msg.str());
891 map_index[i] = jt->second;
895 std::map<std::string, int>::iterator jt = maps.find("label");
896 if (jt != maps.end()) {
897 label_index = jt->second;
902 map_num = maps.size();
905 while (readLine() && line >> c && c != '@') {
908 std::vector<std::string> tokens(map_num);
909 for (int i = 0; i < map_num; ++i) {
910 if (!_reader_bits::readToken(line, tokens[i])) {
911 std::ostringstream msg;
912 msg << "Column not found (" << i + 1 << ")";
913 throw FormatError(msg.str());
916 if (line >> std::ws >> c)
917 throw FormatError("Extra character at the end of line");
921 n = _digraph.addNode();
922 if (label_index != -1)
923 _node_index.insert(std::make_pair(tokens[label_index], n));
925 if (label_index == -1)
926 throw FormatError("Label map not found");
927 typename std::map<std::string, Node>::iterator it =
928 _node_index.find(tokens[label_index]);
929 if (it == _node_index.end()) {
930 std::ostringstream msg;
931 msg << "Node with label not found: " << tokens[label_index];
932 throw FormatError(msg.str());
937 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
938 _node_maps[i].second->set(n, tokens[map_index[i]]);
949 std::vector<int> map_index(_arc_maps.size());
950 int map_num, label_index;
953 if (!readLine() || !(line >> c) || c == '@') {
954 if (readSuccess() && line) line.putback(c);
955 if (!_arc_maps.empty())
956 throw FormatError("Cannot find map names");
962 std::map<std::string, int> maps;
966 while (_reader_bits::readToken(line, map)) {
969 throw FormatError("'-' is not allowed as a map name");
970 else if (line >> std::ws >> c)
971 throw FormatError("Extra character at the end of line");
974 if (maps.find(map) != maps.end()) {
975 std::ostringstream msg;
976 msg << "Multiple occurence of arc map: " << map;
977 throw FormatError(msg.str());
979 maps.insert(std::make_pair(map, index));
983 for (int i = 0; i < static_cast<int>(_arc_maps.size()); ++i) {
984 std::map<std::string, int>::iterator jt =
985 maps.find(_arc_maps[i].first);
986 if (jt == maps.end()) {
987 std::ostringstream msg;
988 msg << "Map not found: " << _arc_maps[i].first;
989 throw FormatError(msg.str());
991 map_index[i] = jt->second;
995 std::map<std::string, int>::iterator jt = maps.find("label");
996 if (jt != maps.end()) {
997 label_index = jt->second;
1002 map_num = maps.size();
1005 while (readLine() && line >> c && c != '@') {
1008 std::string source_token;
1009 std::string target_token;
1011 if (!_reader_bits::readToken(line, source_token))
1012 throw FormatError("Source not found");
1014 if (!_reader_bits::readToken(line, target_token))
1015 throw FormatError("Target not found");
1017 std::vector<std::string> tokens(map_num);
1018 for (int i = 0; i < map_num; ++i) {
1019 if (!_reader_bits::readToken(line, tokens[i])) {
1020 std::ostringstream msg;
1021 msg << "Column not found (" << i + 1 << ")";
1022 throw FormatError(msg.str());
1025 if (line >> std::ws >> c)
1026 throw FormatError("Extra character at the end of line");
1031 typename NodeIndex::iterator it;
1033 it = _node_index.find(source_token);
1034 if (it == _node_index.end()) {
1035 std::ostringstream msg;
1036 msg << "Item not found: " << source_token;
1037 throw FormatError(msg.str());
1039 Node source = it->second;
1041 it = _node_index.find(target_token);
1042 if (it == _node_index.end()) {
1043 std::ostringstream msg;
1044 msg << "Item not found: " << target_token;
1045 throw FormatError(msg.str());
1047 Node target = it->second;
1049 a = _digraph.addArc(source, target);
1050 if (label_index != -1)
1051 _arc_index.insert(std::make_pair(tokens[label_index], a));
1053 if (label_index == -1)
1054 throw FormatError("Label map not found");
1055 typename std::map<std::string, Arc>::iterator it =
1056 _arc_index.find(tokens[label_index]);
1057 if (it == _arc_index.end()) {
1058 std::ostringstream msg;
1059 msg << "Arc with label not found: " << tokens[label_index];
1060 throw FormatError(msg.str());
1065 for (int i = 0; i < static_cast<int>(_arc_maps.size()); ++i) {
1066 _arc_maps[i].second->set(a, tokens[map_index[i]]);
1070 if (readSuccess()) {
1075 void readAttributes() {
1077 std::set<std::string> read_attr;
1080 while (readLine() && line >> c && c != '@') {
1083 std::string attr, token;
1084 if (!_reader_bits::readToken(line, attr))
1085 throw FormatError("Attribute name not found");
1086 if (!_reader_bits::readToken(line, token))
1087 throw FormatError("Attribute value not found");
1089 throw FormatError("Extra character at the end of line");
1092 std::set<std::string>::iterator it = read_attr.find(attr);
1093 if (it != read_attr.end()) {
1094 std::ostringstream msg;
1095 msg << "Multiple occurence of attribute: " << attr;
1096 throw FormatError(msg.str());
1098 read_attr.insert(attr);
1102 typename Attributes::iterator it = _attributes.lower_bound(attr);
1103 while (it != _attributes.end() && it->first == attr) {
1104 it->second->set(token);
1110 if (readSuccess()) {
1113 for (typename Attributes::iterator it = _attributes.begin();
1114 it != _attributes.end(); ++it) {
1115 if (read_attr.find(it->first) == read_attr.end()) {
1116 std::ostringstream msg;
1117 msg << "Attribute not found: " << it->first;
1118 throw FormatError(msg.str());
1125 /// \name Execution of the Reader
1128 /// \brief Start the batch processing
1130 /// This function starts the batch processing
1132 LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
1134 bool nodes_done = _skip_nodes;
1135 bool arcs_done = _skip_arcs;
1136 bool attributes_done = false;
1142 while (readSuccess()) {
1145 std::string section, caption;
1147 _reader_bits::readToken(line, section);
1148 _reader_bits::readToken(line, caption);
1151 throw FormatError("Extra character at the end of line");
1153 if (section == "nodes" && !nodes_done) {
1154 if (_nodes_caption.empty() || _nodes_caption == caption) {
1158 } else if ((section == "arcs" || section == "edges") &&
1160 if (_arcs_caption.empty() || _arcs_caption == caption) {
1164 } else if (section == "attributes" && !attributes_done) {
1165 if (_attributes_caption.empty() || _attributes_caption == caption) {
1167 attributes_done = true;
1173 } catch (FormatError& error) {
1174 error.line(line_num);
1175 error.file(_filename);
1181 throw FormatError("Section @nodes not found");
1185 throw FormatError("Section @arcs not found");
1188 if (!attributes_done && !_attributes.empty()) {
1189 throw FormatError("Section @attributes not found");
1198 /// \ingroup lemon_io
1200 /// \brief Return a \ref DigraphReader class
1202 /// This function just returns a \ref DigraphReader class.
1204 /// With this function a digraph can be read from an
1205 /// \ref lgf-format "LGF" file or input stream with several maps and
1206 /// attributes. For example, there is network flow problem on a
1207 /// digraph, i.e. a digraph with a \e capacity map on the arcs and
1208 /// \e source and \e target nodes. This digraph can be read with the
1212 ///ListDigraph digraph;
1213 ///ListDigraph::ArcMap<int> cm(digraph);
1214 ///ListDigraph::Node src, trg;
1215 ///digraphReader(digraph, std::cin).
1216 /// arcMap("capacity", cap).
1217 /// node("source", src).
1218 /// node("target", trg).
1222 /// For a complete documentation, please see the \ref DigraphReader
1223 /// class documentation.
1224 /// \warning Don't forget to put the \ref DigraphReader::run() "run()"
1225 /// to the end of the parameter list.
1226 /// \relates DigraphReader
1227 /// \sa digraphReader(TDGR& digraph, const std::string& fn)
1228 /// \sa digraphReader(TDGR& digraph, const char* fn)
1229 template <typename TDGR>
1230 DigraphReader<TDGR> digraphReader(TDGR& digraph, std::istream& is) {
1231 DigraphReader<TDGR> tmp(digraph, is);
1235 /// \brief Return a \ref DigraphReader class
1237 /// This function just returns a \ref DigraphReader class.
1238 /// \relates DigraphReader
1239 /// \sa digraphReader(TDGR& digraph, std::istream& is)
1240 template <typename TDGR>
1241 DigraphReader<TDGR> digraphReader(TDGR& digraph, const std::string& fn) {
1242 DigraphReader<TDGR> tmp(digraph, fn);
1246 /// \brief Return a \ref DigraphReader class
1248 /// This function just returns a \ref DigraphReader class.
1249 /// \relates DigraphReader
1250 /// \sa digraphReader(TDGR& digraph, std::istream& is)
1251 template <typename TDGR>
1252 DigraphReader<TDGR> digraphReader(TDGR& digraph, const char* fn) {
1253 DigraphReader<TDGR> tmp(digraph, fn);
1257 template <typename GR>
1260 template <typename TGR>
1261 GraphReader<TGR> graphReader(TGR& graph, std::istream& is = std::cin);
1262 template <typename TGR>
1263 GraphReader<TGR> graphReader(TGR& graph, const std::string& fn);
1264 template <typename TGR>
1265 GraphReader<TGR> graphReader(TGR& graph, const char *fn);
1267 /// \ingroup lemon_io
1269 /// \brief \ref lgf-format "LGF" reader for undirected graphs
1271 /// This utility reads an \ref lgf-format "LGF" file.
1273 /// It can be used almost the same way as \c DigraphReader.
1274 /// The only difference is that this class can handle edges and
1275 /// edge maps as well as arcs and arc maps.
1277 /// The columns in the \c \@edges (or \c \@arcs) section are the
1278 /// edge maps. However, if there are two maps with the same name
1279 /// prefixed with \c '+' and \c '-', then these can be read into an
1280 /// arc map. Similarly, an attribute can be read into an arc, if
1281 /// it's value is an edge label prefixed with \c '+' or \c '-'.
1282 template <typename GR>
1290 TEMPLATE_GRAPH_TYPEDEFS(GR);
1294 std::string _filename;
1298 std::string _nodes_caption;
1299 std::string _edges_caption;
1300 std::string _attributes_caption;
1302 typedef std::map<std::string, Node> NodeIndex;
1303 NodeIndex _node_index;
1304 typedef std::map<std::string, Edge> EdgeIndex;
1305 EdgeIndex _edge_index;
1307 typedef std::vector<std::pair<std::string,
1308 _reader_bits::MapStorageBase<Node>*> > NodeMaps;
1309 NodeMaps _node_maps;
1311 typedef std::vector<std::pair<std::string,
1312 _reader_bits::MapStorageBase<Edge>*> > EdgeMaps;
1313 EdgeMaps _edge_maps;
1315 typedef std::multimap<std::string, _reader_bits::ValueStorageBase*>
1317 Attributes _attributes;
1326 std::istringstream line;
1330 /// \brief Constructor
1332 /// Construct an undirected graph reader, which reads from the given
1334 GraphReader(GR& graph, std::istream& is = std::cin)
1335 : _is(&is), local_is(false), _graph(graph),
1336 _use_nodes(false), _use_edges(false),
1337 _skip_nodes(false), _skip_edges(false) {}
1339 /// \brief Constructor
1341 /// Construct an undirected graph reader, which reads from the given
1343 GraphReader(GR& graph, const std::string& fn)
1344 : _is(new std::ifstream(fn.c_str())), local_is(true),
1345 _filename(fn), _graph(graph),
1346 _use_nodes(false), _use_edges(false),
1347 _skip_nodes(false), _skip_edges(false) {
1350 throw IoError("Cannot open file", fn);
1354 /// \brief Constructor
1356 /// Construct an undirected graph reader, which reads from the given
1358 GraphReader(GR& graph, const char* fn)
1359 : _is(new std::ifstream(fn)), local_is(true),
1360 _filename(fn), _graph(graph),
1361 _use_nodes(false), _use_edges(false),
1362 _skip_nodes(false), _skip_edges(false) {
1365 throw IoError("Cannot open file", fn);
1369 /// \brief Destructor
1371 for (typename NodeMaps::iterator it = _node_maps.begin();
1372 it != _node_maps.end(); ++it) {
1376 for (typename EdgeMaps::iterator it = _edge_maps.begin();
1377 it != _edge_maps.end(); ++it) {
1381 for (typename Attributes::iterator it = _attributes.begin();
1382 it != _attributes.end(); ++it) {
1393 template <typename TGR>
1394 friend GraphReader<TGR> graphReader(TGR& graph, std::istream& is);
1395 template <typename TGR>
1396 friend GraphReader<TGR> graphReader(TGR& graph, const std::string& fn);
1397 template <typename TGR>
1398 friend GraphReader<TGR> graphReader(TGR& graph, const char *fn);
1400 GraphReader(GraphReader& other)
1401 : _is(other._is), local_is(other.local_is), _graph(other._graph),
1402 _use_nodes(other._use_nodes), _use_edges(other._use_edges),
1403 _skip_nodes(other._skip_nodes), _skip_edges(other._skip_edges) {
1406 other.local_is = false;
1408 _node_index.swap(other._node_index);
1409 _edge_index.swap(other._edge_index);
1411 _node_maps.swap(other._node_maps);
1412 _edge_maps.swap(other._edge_maps);
1413 _attributes.swap(other._attributes);
1415 _nodes_caption = other._nodes_caption;
1416 _edges_caption = other._edges_caption;
1417 _attributes_caption = other._attributes_caption;
1421 GraphReader& operator=(const GraphReader&);
1425 /// \name Reading Rules
1428 /// \brief Node map reading rule
1430 /// Add a node map reading rule to the reader.
1431 template <typename Map>
1432 GraphReader& nodeMap(const std::string& caption, Map& map) {
1433 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
1434 _reader_bits::MapStorageBase<Node>* storage =
1435 new _reader_bits::MapStorage<Node, Map>(map);
1436 _node_maps.push_back(std::make_pair(caption, storage));
1440 /// \brief Node map reading rule
1442 /// Add a node map reading rule with specialized converter to the
1444 template <typename Map, typename Converter>
1445 GraphReader& nodeMap(const std::string& caption, Map& map,
1446 const Converter& converter = Converter()) {
1447 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
1448 _reader_bits::MapStorageBase<Node>* storage =
1449 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
1450 _node_maps.push_back(std::make_pair(caption, storage));
1454 /// \brief Edge map reading rule
1456 /// Add an edge map reading rule to the reader.
1457 template <typename Map>
1458 GraphReader& edgeMap(const std::string& caption, Map& map) {
1459 checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
1460 _reader_bits::MapStorageBase<Edge>* storage =
1461 new _reader_bits::MapStorage<Edge, Map>(map);
1462 _edge_maps.push_back(std::make_pair(caption, storage));
1466 /// \brief Edge map reading rule
1468 /// Add an edge map reading rule with specialized converter to the
1470 template <typename Map, typename Converter>
1471 GraphReader& edgeMap(const std::string& caption, Map& map,
1472 const Converter& converter = Converter()) {
1473 checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
1474 _reader_bits::MapStorageBase<Edge>* storage =
1475 new _reader_bits::MapStorage<Edge, Map, Converter>(map, converter);
1476 _edge_maps.push_back(std::make_pair(caption, storage));
1480 /// \brief Arc map reading rule
1482 /// Add an arc map reading rule to the reader.
1483 template <typename Map>
1484 GraphReader& arcMap(const std::string& caption, Map& map) {
1485 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
1486 _reader_bits::MapStorageBase<Edge>* forward_storage =
1487 new _reader_bits::GraphArcMapStorage<Graph, true, Map>(_graph, map);
1488 _edge_maps.push_back(std::make_pair('+' + caption, forward_storage));
1489 _reader_bits::MapStorageBase<Edge>* backward_storage =
1490 new _reader_bits::GraphArcMapStorage<GR, false, Map>(_graph, map);
1491 _edge_maps.push_back(std::make_pair('-' + caption, backward_storage));
1495 /// \brief Arc map reading rule
1497 /// Add an arc map reading rule with specialized converter to the
1499 template <typename Map, typename Converter>
1500 GraphReader& arcMap(const std::string& caption, Map& map,
1501 const Converter& converter = Converter()) {
1502 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
1503 _reader_bits::MapStorageBase<Edge>* forward_storage =
1504 new _reader_bits::GraphArcMapStorage<GR, true, Map, Converter>
1505 (_graph, map, converter);
1506 _edge_maps.push_back(std::make_pair('+' + caption, forward_storage));
1507 _reader_bits::MapStorageBase<Edge>* backward_storage =
1508 new _reader_bits::GraphArcMapStorage<GR, false, Map, Converter>
1509 (_graph, map, converter);
1510 _edge_maps.push_back(std::make_pair('-' + caption, backward_storage));
1514 /// \brief Attribute reading rule
1516 /// Add an attribute reading rule to the reader.
1517 template <typename Value>
1518 GraphReader& attribute(const std::string& caption, Value& value) {
1519 _reader_bits::ValueStorageBase* storage =
1520 new _reader_bits::ValueStorage<Value>(value);
1521 _attributes.insert(std::make_pair(caption, storage));
1525 /// \brief Attribute reading rule
1527 /// Add an attribute reading rule with specialized converter to the
1529 template <typename Value, typename Converter>
1530 GraphReader& attribute(const std::string& caption, Value& value,
1531 const Converter& converter = Converter()) {
1532 _reader_bits::ValueStorageBase* storage =
1533 new _reader_bits::ValueStorage<Value, Converter>(value, converter);
1534 _attributes.insert(std::make_pair(caption, storage));
1538 /// \brief Node reading rule
1540 /// Add a node reading rule to reader.
1541 GraphReader& node(const std::string& caption, Node& node) {
1542 typedef _reader_bits::MapLookUpConverter<Node> Converter;
1543 Converter converter(_node_index);
1544 _reader_bits::ValueStorageBase* storage =
1545 new _reader_bits::ValueStorage<Node, Converter>(node, converter);
1546 _attributes.insert(std::make_pair(caption, storage));
1550 /// \brief Edge reading rule
1552 /// Add an edge reading rule to reader.
1553 GraphReader& edge(const std::string& caption, Edge& edge) {
1554 typedef _reader_bits::MapLookUpConverter<Edge> Converter;
1555 Converter converter(_edge_index);
1556 _reader_bits::ValueStorageBase* storage =
1557 new _reader_bits::ValueStorage<Edge, Converter>(edge, converter);
1558 _attributes.insert(std::make_pair(caption, storage));
1562 /// \brief Arc reading rule
1564 /// Add an arc reading rule to reader.
1565 GraphReader& arc(const std::string& caption, Arc& arc) {
1566 typedef _reader_bits::GraphArcLookUpConverter<GR> Converter;
1567 Converter converter(_graph, _edge_index);
1568 _reader_bits::ValueStorageBase* storage =
1569 new _reader_bits::ValueStorage<Arc, Converter>(arc, converter);
1570 _attributes.insert(std::make_pair(caption, storage));
1576 /// \name Select Section by Name
1579 /// \brief Set \c \@nodes section to be read
1581 /// Set \c \@nodes section to be read.
1582 GraphReader& nodes(const std::string& caption) {
1583 _nodes_caption = caption;
1587 /// \brief Set \c \@edges section to be read
1589 /// Set \c \@edges section to be read.
1590 GraphReader& edges(const std::string& caption) {
1591 _edges_caption = caption;
1595 /// \brief Set \c \@attributes section to be read
1597 /// Set \c \@attributes section to be read.
1598 GraphReader& attributes(const std::string& caption) {
1599 _attributes_caption = caption;
1605 /// \name Using Previously Constructed Node or Edge Set
1608 /// \brief Use previously constructed node set
1610 /// Use previously constructed node set, and specify the node
1612 template <typename Map>
1613 GraphReader& useNodes(const Map& map) {
1614 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
1615 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
1617 _writer_bits::DefaultConverter<typename Map::Value> converter;
1618 for (NodeIt n(_graph); n != INVALID; ++n) {
1619 _node_index.insert(std::make_pair(converter(map[n]), n));
1624 /// \brief Use previously constructed node set
1626 /// Use previously constructed node set, and specify the node
1627 /// label map and a functor which converts the label map values to
1629 template <typename Map, typename Converter>
1630 GraphReader& useNodes(const Map& map,
1631 const Converter& converter = Converter()) {
1632 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
1633 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
1635 for (NodeIt n(_graph); n != INVALID; ++n) {
1636 _node_index.insert(std::make_pair(converter(map[n]), n));
1641 /// \brief Use previously constructed edge set
1643 /// Use previously constructed edge set, and specify the edge
1645 template <typename Map>
1646 GraphReader& useEdges(const Map& map) {
1647 checkConcept<concepts::ReadMap<Edge, typename Map::Value>, Map>();
1648 LEMON_ASSERT(!_use_edges, "Multiple usage of useEdges() member");
1650 _writer_bits::DefaultConverter<typename Map::Value> converter;
1651 for (EdgeIt a(_graph); a != INVALID; ++a) {
1652 _edge_index.insert(std::make_pair(converter(map[a]), a));
1657 /// \brief Use previously constructed edge set
1659 /// Use previously constructed edge set, and specify the edge
1660 /// label map and a functor which converts the label map values to
1662 template <typename Map, typename Converter>
1663 GraphReader& useEdges(const Map& map,
1664 const Converter& converter = Converter()) {
1665 checkConcept<concepts::ReadMap<Edge, typename Map::Value>, Map>();
1666 LEMON_ASSERT(!_use_edges, "Multiple usage of useEdges() member");
1668 for (EdgeIt a(_graph); a != INVALID; ++a) {
1669 _edge_index.insert(std::make_pair(converter(map[a]), a));
1674 /// \brief Skip the reading of node section
1676 /// Omit the reading of the node section. This implies that each node
1677 /// map reading rule will be abandoned, and the nodes of the graph
1678 /// will not be constructed, which usually cause that the edge set
1679 /// could not be read due to lack of node name
1680 /// could not be read due to lack of node name resolving.
1681 /// Therefore \c skipEdges() function should also be used, or
1682 /// \c useNodes() should be used to specify the label of the nodes.
1683 GraphReader& skipNodes() {
1684 LEMON_ASSERT(!_skip_nodes, "Skip nodes already set");
1689 /// \brief Skip the reading of edge section
1691 /// Omit the reading of the edge section. This implies that each edge
1692 /// map reading rule will be abandoned, and the edges of the graph
1693 /// will not be constructed.
1694 GraphReader& skipEdges() {
1695 LEMON_ASSERT(!_skip_edges, "Skip edges already set");
1706 while(++line_num, std::getline(*_is, str)) {
1707 line.clear(); line.str(str);
1709 if (line >> std::ws >> c && c != '#') {
1717 bool readSuccess() {
1718 return static_cast<bool>(*_is);
1721 void skipSection() {
1723 while (readSuccess() && line >> c && c != '@') {
1726 if (readSuccess()) {
1733 std::vector<int> map_index(_node_maps.size());
1734 int map_num, label_index;
1737 if (!readLine() || !(line >> c) || c == '@') {
1738 if (readSuccess() && line) line.putback(c);
1739 if (!_node_maps.empty())
1740 throw FormatError("Cannot find map names");
1746 std::map<std::string, int> maps;
1750 while (_reader_bits::readToken(line, map)) {
1751 if (maps.find(map) != maps.end()) {
1752 std::ostringstream msg;
1753 msg << "Multiple occurence of node map: " << map;
1754 throw FormatError(msg.str());
1756 maps.insert(std::make_pair(map, index));
1760 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
1761 std::map<std::string, int>::iterator jt =
1762 maps.find(_node_maps[i].first);
1763 if (jt == maps.end()) {
1764 std::ostringstream msg;
1765 msg << "Map not found: " << _node_maps[i].first;
1766 throw FormatError(msg.str());
1768 map_index[i] = jt->second;
1772 std::map<std::string, int>::iterator jt = maps.find("label");
1773 if (jt != maps.end()) {
1774 label_index = jt->second;
1779 map_num = maps.size();
1782 while (readLine() && line >> c && c != '@') {
1785 std::vector<std::string> tokens(map_num);
1786 for (int i = 0; i < map_num; ++i) {
1787 if (!_reader_bits::readToken(line, tokens[i])) {
1788 std::ostringstream msg;
1789 msg << "Column not found (" << i + 1 << ")";
1790 throw FormatError(msg.str());
1793 if (line >> std::ws >> c)
1794 throw FormatError("Extra character at the end of line");
1798 n = _graph.addNode();
1799 if (label_index != -1)
1800 _node_index.insert(std::make_pair(tokens[label_index], n));
1802 if (label_index == -1)
1803 throw FormatError("Label map not found");
1804 typename std::map<std::string, Node>::iterator it =
1805 _node_index.find(tokens[label_index]);
1806 if (it == _node_index.end()) {
1807 std::ostringstream msg;
1808 msg << "Node with label not found: " << tokens[label_index];
1809 throw FormatError(msg.str());
1814 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
1815 _node_maps[i].second->set(n, tokens[map_index[i]]);
1819 if (readSuccess()) {
1826 std::vector<int> map_index(_edge_maps.size());
1827 int map_num, label_index;
1830 if (!readLine() || !(line >> c) || c == '@') {
1831 if (readSuccess() && line) line.putback(c);
1832 if (!_edge_maps.empty())
1833 throw FormatError("Cannot find map names");
1839 std::map<std::string, int> maps;
1843 while (_reader_bits::readToken(line, map)) {
1846 throw FormatError("'-' is not allowed as a map name");
1847 else if (line >> std::ws >> c)
1848 throw FormatError("Extra character at the end of line");
1851 if (maps.find(map) != maps.end()) {
1852 std::ostringstream msg;
1853 msg << "Multiple occurence of edge map: " << map;
1854 throw FormatError(msg.str());
1856 maps.insert(std::make_pair(map, index));
1860 for (int i = 0; i < static_cast<int>(_edge_maps.size()); ++i) {
1861 std::map<std::string, int>::iterator jt =
1862 maps.find(_edge_maps[i].first);
1863 if (jt == maps.end()) {
1864 std::ostringstream msg;
1865 msg << "Map not found: " << _edge_maps[i].first;
1866 throw FormatError(msg.str());
1868 map_index[i] = jt->second;
1872 std::map<std::string, int>::iterator jt = maps.find("label");
1873 if (jt != maps.end()) {
1874 label_index = jt->second;
1879 map_num = maps.size();
1882 while (readLine() && line >> c && c != '@') {
1885 std::string source_token;
1886 std::string target_token;
1888 if (!_reader_bits::readToken(line, source_token))
1889 throw FormatError("Node u not found");
1891 if (!_reader_bits::readToken(line, target_token))
1892 throw FormatError("Node v not found");
1894 std::vector<std::string> tokens(map_num);
1895 for (int i = 0; i < map_num; ++i) {
1896 if (!_reader_bits::readToken(line, tokens[i])) {
1897 std::ostringstream msg;
1898 msg << "Column not found (" << i + 1 << ")";
1899 throw FormatError(msg.str());
1902 if (line >> std::ws >> c)
1903 throw FormatError("Extra character at the end of line");
1908 typename NodeIndex::iterator it;
1910 it = _node_index.find(source_token);
1911 if (it == _node_index.end()) {
1912 std::ostringstream msg;
1913 msg << "Item not found: " << source_token;
1914 throw FormatError(msg.str());
1916 Node source = it->second;
1918 it = _node_index.find(target_token);
1919 if (it == _node_index.end()) {
1920 std::ostringstream msg;
1921 msg << "Item not found: " << target_token;
1922 throw FormatError(msg.str());
1924 Node target = it->second;
1926 e = _graph.addEdge(source, target);
1927 if (label_index != -1)
1928 _edge_index.insert(std::make_pair(tokens[label_index], e));
1930 if (label_index == -1)
1931 throw FormatError("Label map not found");
1932 typename std::map<std::string, Edge>::iterator it =
1933 _edge_index.find(tokens[label_index]);
1934 if (it == _edge_index.end()) {
1935 std::ostringstream msg;
1936 msg << "Edge with label not found: " << tokens[label_index];
1937 throw FormatError(msg.str());
1942 for (int i = 0; i < static_cast<int>(_edge_maps.size()); ++i) {
1943 _edge_maps[i].second->set(e, tokens[map_index[i]]);
1947 if (readSuccess()) {
1952 void readAttributes() {
1954 std::set<std::string> read_attr;
1957 while (readLine() && line >> c && c != '@') {
1960 std::string attr, token;
1961 if (!_reader_bits::readToken(line, attr))
1962 throw FormatError("Attribute name not found");
1963 if (!_reader_bits::readToken(line, token))
1964 throw FormatError("Attribute value not found");
1966 throw FormatError("Extra character at the end of line");
1969 std::set<std::string>::iterator it = read_attr.find(attr);
1970 if (it != read_attr.end()) {
1971 std::ostringstream msg;
1972 msg << "Multiple occurence of attribute: " << attr;
1973 throw FormatError(msg.str());
1975 read_attr.insert(attr);
1979 typename Attributes::iterator it = _attributes.lower_bound(attr);
1980 while (it != _attributes.end() && it->first == attr) {
1981 it->second->set(token);
1987 if (readSuccess()) {
1990 for (typename Attributes::iterator it = _attributes.begin();
1991 it != _attributes.end(); ++it) {
1992 if (read_attr.find(it->first) == read_attr.end()) {
1993 std::ostringstream msg;
1994 msg << "Attribute not found: " << it->first;
1995 throw FormatError(msg.str());
2002 /// \name Execution of the Reader
2005 /// \brief Start the batch processing
2007 /// This function starts the batch processing
2010 LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
2012 bool nodes_done = _skip_nodes;
2013 bool edges_done = _skip_edges;
2014 bool attributes_done = false;
2020 while (readSuccess()) {
2023 std::string section, caption;
2025 _reader_bits::readToken(line, section);
2026 _reader_bits::readToken(line, caption);
2029 throw FormatError("Extra character at the end of line");
2031 if (section == "nodes" && !nodes_done) {
2032 if (_nodes_caption.empty() || _nodes_caption == caption) {
2036 } else if ((section == "edges" || section == "arcs") &&
2038 if (_edges_caption.empty() || _edges_caption == caption) {
2042 } else if (section == "attributes" && !attributes_done) {
2043 if (_attributes_caption.empty() || _attributes_caption == caption) {
2045 attributes_done = true;
2051 } catch (FormatError& error) {
2052 error.line(line_num);
2053 error.file(_filename);
2059 throw FormatError("Section @nodes not found");
2063 throw FormatError("Section @edges not found");
2066 if (!attributes_done && !_attributes.empty()) {
2067 throw FormatError("Section @attributes not found");
2076 /// \ingroup lemon_io
2078 /// \brief Return a \ref GraphReader class
2080 /// This function just returns a \ref GraphReader class.
2082 /// With this function a graph can be read from an
2083 /// \ref lgf-format "LGF" file or input stream with several maps and
2084 /// attributes. For example, there is weighted matching problem on a
2085 /// graph, i.e. a graph with a \e weight map on the edges. This
2086 /// graph can be read with the following code:
2090 ///ListGraph::EdgeMap<int> weight(graph);
2091 ///graphReader(graph, std::cin).
2092 /// edgeMap("weight", weight).
2096 /// For a complete documentation, please see the \ref GraphReader
2097 /// class documentation.
2098 /// \warning Don't forget to put the \ref GraphReader::run() "run()"
2099 /// to the end of the parameter list.
2100 /// \relates GraphReader
2101 /// \sa graphReader(TGR& graph, const std::string& fn)
2102 /// \sa graphReader(TGR& graph, const char* fn)
2103 template <typename TGR>
2104 GraphReader<TGR> graphReader(TGR& graph, std::istream& is) {
2105 GraphReader<TGR> tmp(graph, is);
2109 /// \brief Return a \ref GraphReader class
2111 /// This function just returns a \ref GraphReader class.
2112 /// \relates GraphReader
2113 /// \sa graphReader(TGR& graph, std::istream& is)
2114 template <typename TGR>
2115 GraphReader<TGR> graphReader(TGR& graph, const std::string& fn) {
2116 GraphReader<TGR> tmp(graph, fn);
2120 /// \brief Return a \ref GraphReader class
2122 /// This function just returns a \ref GraphReader class.
2123 /// \relates GraphReader
2124 /// \sa graphReader(TGR& graph, std::istream& is)
2125 template <typename TGR>
2126 GraphReader<TGR> graphReader(TGR& graph, const char* fn) {
2127 GraphReader<TGR> tmp(graph, fn);
2131 template <typename BGR>
2132 class BpGraphReader;
2134 template <typename TBGR>
2135 BpGraphReader<TBGR> bpGraphReader(TBGR& graph, std::istream& is = std::cin);
2136 template <typename TBGR>
2137 BpGraphReader<TBGR> bpGraphReader(TBGR& graph, const std::string& fn);
2138 template <typename TBGR>
2139 BpGraphReader<TBGR> bpGraphReader(TBGR& graph, const char *fn);
2141 /// \ingroup lemon_io
2143 /// \brief \ref lgf-format "LGF" reader for bipartite graphs
2145 /// This utility reads an \ref lgf-format "LGF" file.
2147 /// It can be used almost the same way as \c GraphReader, but it
2148 /// reads the red and blue nodes from separate sections, and these
2149 /// sections can contain different set of maps.
2151 /// The red and blue maps are read from the corresponding
2152 /// sections. If a map is defined with the same name in both of
2153 /// these sections, then it can be read as a node map.
2154 template <typename BGR>
2155 class BpGraphReader {
2162 TEMPLATE_BPGRAPH_TYPEDEFS(BGR);
2166 std::string _filename;
2170 std::string _nodes_caption;
2171 std::string _edges_caption;
2172 std::string _attributes_caption;
2174 typedef std::map<std::string, Node> NodeIndex;
2175 NodeIndex _node_index;
2176 typedef std::map<std::string, Edge> EdgeIndex;
2177 EdgeIndex _edge_index;
2179 typedef std::vector<std::pair<std::string,
2180 _reader_bits::MapStorageBase<Node>*> > NodeMaps;
2182 NodeMaps _blue_maps;
2184 typedef std::vector<std::pair<std::string,
2185 _reader_bits::MapStorageBase<Edge>*> > EdgeMaps;
2186 EdgeMaps _edge_maps;
2188 typedef std::multimap<std::string, _reader_bits::ValueStorageBase*>
2190 Attributes _attributes;
2199 std::istringstream line;
2203 /// \brief Constructor
2205 /// Construct an undirected graph reader, which reads from the given
2207 BpGraphReader(BGR& graph, std::istream& is = std::cin)
2208 : _is(&is), local_is(false), _graph(graph),
2209 _use_nodes(false), _use_edges(false),
2210 _skip_nodes(false), _skip_edges(false) {}
2212 /// \brief Constructor
2214 /// Construct an undirected graph reader, which reads from the given
2216 BpGraphReader(BGR& graph, const std::string& fn)
2217 : _is(new std::ifstream(fn.c_str())), local_is(true),
2218 _filename(fn), _graph(graph),
2219 _use_nodes(false), _use_edges(false),
2220 _skip_nodes(false), _skip_edges(false) {
2223 throw IoError("Cannot open file", fn);
2227 /// \brief Constructor
2229 /// Construct an undirected graph reader, which reads from the given
2231 BpGraphReader(BGR& graph, const char* fn)
2232 : _is(new std::ifstream(fn)), local_is(true),
2233 _filename(fn), _graph(graph),
2234 _use_nodes(false), _use_edges(false),
2235 _skip_nodes(false), _skip_edges(false) {
2238 throw IoError("Cannot open file", fn);
2242 /// \brief Destructor
2244 for (typename NodeMaps::iterator it = _red_maps.begin();
2245 it != _red_maps.end(); ++it) {
2249 for (typename NodeMaps::iterator it = _blue_maps.begin();
2250 it != _blue_maps.end(); ++it) {
2254 for (typename EdgeMaps::iterator it = _edge_maps.begin();
2255 it != _edge_maps.end(); ++it) {
2259 for (typename Attributes::iterator it = _attributes.begin();
2260 it != _attributes.end(); ++it) {
2271 template <typename TBGR>
2272 friend BpGraphReader<TBGR> bpGraphReader(TBGR& graph, std::istream& is);
2273 template <typename TBGR>
2274 friend BpGraphReader<TBGR> bpGraphReader(TBGR& graph,
2275 const std::string& fn);
2276 template <typename TBGR>
2277 friend BpGraphReader<TBGR> bpGraphReader(TBGR& graph, const char *fn);
2279 BpGraphReader(BpGraphReader& other)
2280 : _is(other._is), local_is(other.local_is), _graph(other._graph),
2281 _use_nodes(other._use_nodes), _use_edges(other._use_edges),
2282 _skip_nodes(other._skip_nodes), _skip_edges(other._skip_edges) {
2285 other.local_is = false;
2287 _node_index.swap(other._node_index);
2288 _edge_index.swap(other._edge_index);
2290 _red_maps.swap(other._red_maps);
2291 _blue_maps.swap(other._blue_maps);
2292 _edge_maps.swap(other._edge_maps);
2293 _attributes.swap(other._attributes);
2295 _nodes_caption = other._nodes_caption;
2296 _edges_caption = other._edges_caption;
2297 _attributes_caption = other._attributes_caption;
2301 BpGraphReader& operator=(const BpGraphReader&);
2305 /// \name Reading Rules
2308 /// \brief Node map reading rule
2310 /// Add a node map reading rule to the reader.
2311 template <typename Map>
2312 BpGraphReader& nodeMap(const std::string& caption, Map& map) {
2313 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
2314 _reader_bits::MapStorageBase<Node>* red_storage =
2315 new _reader_bits::MapStorage<Node, Map>(map);
2316 _red_maps.push_back(std::make_pair(caption, red_storage));
2317 _reader_bits::MapStorageBase<Node>* blue_storage =
2318 new _reader_bits::MapStorage<Node, Map>(map);
2319 _blue_maps.push_back(std::make_pair(caption, blue_storage));
2323 /// \brief Node map reading rule
2325 /// Add a node map reading rule with specialized converter to the
2327 template <typename Map, typename Converter>
2328 BpGraphReader& nodeMap(const std::string& caption, Map& map,
2329 const Converter& converter = Converter()) {
2330 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
2331 _reader_bits::MapStorageBase<Node>* red_storage =
2332 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
2333 _red_maps.push_back(std::make_pair(caption, red_storage));
2334 _reader_bits::MapStorageBase<Node>* blue_storage =
2335 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
2336 _blue_maps.push_back(std::make_pair(caption, blue_storage));
2340 /// Add a red map reading rule to the reader.
2341 template <typename Map>
2342 BpGraphReader& redMap(const std::string& caption, Map& map) {
2343 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
2344 _reader_bits::MapStorageBase<Node>* storage =
2345 new _reader_bits::MapStorage<Node, Map>(map);
2346 _red_maps.push_back(std::make_pair(caption, storage));
2350 /// \brief Red map reading rule
2352 /// Add a red map reading rule with specialized converter to the
2354 template <typename Map, typename Converter>
2355 BpGraphReader& redMap(const std::string& caption, Map& map,
2356 const Converter& converter = Converter()) {
2357 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
2358 _reader_bits::MapStorageBase<Node>* storage =
2359 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
2360 _red_maps.push_back(std::make_pair(caption, storage));
2364 /// Add a blue map reading rule to the reader.
2365 template <typename Map>
2366 BpGraphReader& blueMap(const std::string& caption, Map& map) {
2367 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
2368 _reader_bits::MapStorageBase<Node>* storage =
2369 new _reader_bits::MapStorage<Node, Map>(map);
2370 _blue_maps.push_back(std::make_pair(caption, storage));
2374 /// \brief Blue map reading rule
2376 /// Add a blue map reading rule with specialized converter to the
2378 template <typename Map, typename Converter>
2379 BpGraphReader& blueMap(const std::string& caption, Map& map,
2380 const Converter& converter = Converter()) {
2381 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
2382 _reader_bits::MapStorageBase<Node>* storage =
2383 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
2384 _blue_maps.push_back(std::make_pair(caption, storage));
2388 /// \brief Edge map reading rule
2390 /// Add an edge map reading rule to the reader.
2391 template <typename Map>
2392 BpGraphReader& edgeMap(const std::string& caption, Map& map) {
2393 checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
2394 _reader_bits::MapStorageBase<Edge>* storage =
2395 new _reader_bits::MapStorage<Edge, Map>(map);
2396 _edge_maps.push_back(std::make_pair(caption, storage));
2400 /// \brief Edge map reading rule
2402 /// Add an edge map reading rule with specialized converter to the
2404 template <typename Map, typename Converter>
2405 BpGraphReader& edgeMap(const std::string& caption, Map& map,
2406 const Converter& converter = Converter()) {
2407 checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
2408 _reader_bits::MapStorageBase<Edge>* storage =
2409 new _reader_bits::MapStorage<Edge, Map, Converter>(map, converter);
2410 _edge_maps.push_back(std::make_pair(caption, storage));
2414 /// \brief Arc map reading rule
2416 /// Add an arc map reading rule to the reader.
2417 template <typename Map>
2418 BpGraphReader& arcMap(const std::string& caption, Map& map) {
2419 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
2420 _reader_bits::MapStorageBase<Edge>* forward_storage =
2421 new _reader_bits::GraphArcMapStorage<Graph, true, Map>(_graph, map);
2422 _edge_maps.push_back(std::make_pair('+' + caption, forward_storage));
2423 _reader_bits::MapStorageBase<Edge>* backward_storage =
2424 new _reader_bits::GraphArcMapStorage<BGR, false, Map>(_graph, map);
2425 _edge_maps.push_back(std::make_pair('-' + caption, backward_storage));
2429 /// \brief Arc map reading rule
2431 /// Add an arc map reading rule with specialized converter to the
2433 template <typename Map, typename Converter>
2434 BpGraphReader& arcMap(const std::string& caption, Map& map,
2435 const Converter& converter = Converter()) {
2436 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
2437 _reader_bits::MapStorageBase<Edge>* forward_storage =
2438 new _reader_bits::GraphArcMapStorage<BGR, true, Map, Converter>
2439 (_graph, map, converter);
2440 _edge_maps.push_back(std::make_pair('+' + caption, forward_storage));
2441 _reader_bits::MapStorageBase<Edge>* backward_storage =
2442 new _reader_bits::GraphArcMapStorage<BGR, false, Map, Converter>
2443 (_graph, map, converter);
2444 _edge_maps.push_back(std::make_pair('-' + caption, backward_storage));
2448 /// \brief Attribute reading rule
2450 /// Add an attribute reading rule to the reader.
2451 template <typename Value>
2452 BpGraphReader& attribute(const std::string& caption, Value& value) {
2453 _reader_bits::ValueStorageBase* storage =
2454 new _reader_bits::ValueStorage<Value>(value);
2455 _attributes.insert(std::make_pair(caption, storage));
2459 /// \brief Attribute reading rule
2461 /// Add an attribute reading rule with specialized converter to the
2463 template <typename Value, typename Converter>
2464 BpGraphReader& attribute(const std::string& caption, Value& value,
2465 const Converter& converter = Converter()) {
2466 _reader_bits::ValueStorageBase* storage =
2467 new _reader_bits::ValueStorage<Value, Converter>(value, converter);
2468 _attributes.insert(std::make_pair(caption, storage));
2472 /// \brief Node reading rule
2474 /// Add a node reading rule to reader.
2475 BpGraphReader& node(const std::string& caption, Node& node) {
2476 typedef _reader_bits::MapLookUpConverter<Node> Converter;
2477 Converter converter(_node_index);
2478 _reader_bits::ValueStorageBase* storage =
2479 new _reader_bits::ValueStorage<Node, Converter>(node, converter);
2480 _attributes.insert(std::make_pair(caption, storage));
2484 /// \brief Edge reading rule
2486 /// Add an edge reading rule to reader.
2487 BpGraphReader& edge(const std::string& caption, Edge& edge) {
2488 typedef _reader_bits::MapLookUpConverter<Edge> Converter;
2489 Converter converter(_edge_index);
2490 _reader_bits::ValueStorageBase* storage =
2491 new _reader_bits::ValueStorage<Edge, Converter>(edge, converter);
2492 _attributes.insert(std::make_pair(caption, storage));
2496 /// \brief Arc reading rule
2498 /// Add an arc reading rule to reader.
2499 BpGraphReader& arc(const std::string& caption, Arc& arc) {
2500 typedef _reader_bits::GraphArcLookUpConverter<BGR> Converter;
2501 Converter converter(_graph, _edge_index);
2502 _reader_bits::ValueStorageBase* storage =
2503 new _reader_bits::ValueStorage<Arc, Converter>(arc, converter);
2504 _attributes.insert(std::make_pair(caption, storage));
2510 /// \name Select Section by Name
2513 /// \brief Set \c \@nodes section to be read
2515 /// Set \c \@nodes section to be read.
2516 BpGraphReader& nodes(const std::string& caption) {
2517 _nodes_caption = caption;
2521 /// \brief Set \c \@edges section to be read
2523 /// Set \c \@edges section to be read.
2524 BpGraphReader& edges(const std::string& caption) {
2525 _edges_caption = caption;
2529 /// \brief Set \c \@attributes section to be read
2531 /// Set \c \@attributes section to be read.
2532 BpGraphReader& attributes(const std::string& caption) {
2533 _attributes_caption = caption;
2539 /// \name Using Previously Constructed Node or Edge Set
2542 /// \brief Use previously constructed node set
2544 /// Use previously constructed node set, and specify the node
2546 template <typename Map>
2547 BpGraphReader& useNodes(const Map& map) {
2548 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
2549 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
2551 _writer_bits::DefaultConverter<typename Map::Value> converter;
2552 for (NodeIt n(_graph); n != INVALID; ++n) {
2553 _node_index.insert(std::make_pair(converter(map[n]), n));
2558 /// \brief Use previously constructed node set
2560 /// Use previously constructed node set, and specify the node
2561 /// label map and a functor which converts the label map values to
2563 template <typename Map, typename Converter>
2564 BpGraphReader& useNodes(const Map& map,
2565 const Converter& converter = Converter()) {
2566 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
2567 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
2569 for (NodeIt n(_graph); n != INVALID; ++n) {
2570 _node_index.insert(std::make_pair(converter(map[n]), n));
2575 /// \brief Use previously constructed edge set
2577 /// Use previously constructed edge set, and specify the edge
2579 template <typename Map>
2580 BpGraphReader& useEdges(const Map& map) {
2581 checkConcept<concepts::ReadMap<Edge, typename Map::Value>, Map>();
2582 LEMON_ASSERT(!_use_edges, "Multiple usage of useEdges() member");
2584 _writer_bits::DefaultConverter<typename Map::Value> converter;
2585 for (EdgeIt a(_graph); a != INVALID; ++a) {
2586 _edge_index.insert(std::make_pair(converter(map[a]), a));
2591 /// \brief Use previously constructed edge set
2593 /// Use previously constructed edge set, and specify the edge
2594 /// label map and a functor which converts the label map values to
2596 template <typename Map, typename Converter>
2597 BpGraphReader& useEdges(const Map& map,
2598 const Converter& converter = Converter()) {
2599 checkConcept<concepts::ReadMap<Edge, typename Map::Value>, Map>();
2600 LEMON_ASSERT(!_use_edges, "Multiple usage of useEdges() member");
2602 for (EdgeIt a(_graph); a != INVALID; ++a) {
2603 _edge_index.insert(std::make_pair(converter(map[a]), a));
2608 /// \brief Skip the reading of node section
2610 /// Omit the reading of the node section. This implies that each node
2611 /// map reading rule will be abandoned, and the nodes of the graph
2612 /// will not be constructed, which usually cause that the edge set
2613 /// could not be read due to lack of node name
2614 /// could not be read due to lack of node name resolving.
2615 /// Therefore \c skipEdges() function should also be used, or
2616 /// \c useNodes() should be used to specify the label of the nodes.
2617 BpGraphReader& skipNodes() {
2618 LEMON_ASSERT(!_skip_nodes, "Skip nodes already set");
2623 /// \brief Skip the reading of edge section
2625 /// Omit the reading of the edge section. This implies that each edge
2626 /// map reading rule will be abandoned, and the edges of the graph
2627 /// will not be constructed.
2628 BpGraphReader& skipEdges() {
2629 LEMON_ASSERT(!_skip_edges, "Skip edges already set");
2640 while(++line_num, std::getline(*_is, str)) {
2641 line.clear(); line.str(str);
2643 if (line >> std::ws >> c && c != '#') {
2651 bool readSuccess() {
2652 return static_cast<bool>(*_is);
2655 void skipSection() {
2657 while (readSuccess() && line >> c && c != '@') {
2660 if (readSuccess()) {
2665 void readRedNodes() {
2667 std::vector<int> map_index(_red_maps.size());
2668 int map_num, label_index;
2671 if (!readLine() || !(line >> c) || c == '@') {
2672 if (readSuccess() && line) line.putback(c);
2673 if (!_red_maps.empty())
2674 throw FormatError("Cannot find map names");
2680 std::map<std::string, int> maps;
2684 while (_reader_bits::readToken(line, map)) {
2685 if (maps.find(map) != maps.end()) {
2686 std::ostringstream msg;
2687 msg << "Multiple occurence of red map: " << map;
2688 throw FormatError(msg.str());
2690 maps.insert(std::make_pair(map, index));
2694 for (int i = 0; i < static_cast<int>(_red_maps.size()); ++i) {
2695 std::map<std::string, int>::iterator jt =
2696 maps.find(_red_maps[i].first);
2697 if (jt == maps.end()) {
2698 std::ostringstream msg;
2699 msg << "Map not found: " << _red_maps[i].first;
2700 throw FormatError(msg.str());
2702 map_index[i] = jt->second;
2706 std::map<std::string, int>::iterator jt = maps.find("label");
2707 if (jt != maps.end()) {
2708 label_index = jt->second;
2713 map_num = maps.size();
2716 while (readLine() && line >> c && c != '@') {
2719 std::vector<std::string> tokens(map_num);
2720 for (int i = 0; i < map_num; ++i) {
2721 if (!_reader_bits::readToken(line, tokens[i])) {
2722 std::ostringstream msg;
2723 msg << "Column not found (" << i + 1 << ")";
2724 throw FormatError(msg.str());
2727 if (line >> std::ws >> c)
2728 throw FormatError("Extra character at the end of line");
2732 n = _graph.addRedNode();
2733 if (label_index != -1)
2734 _node_index.insert(std::make_pair(tokens[label_index], n));
2736 if (label_index == -1)
2737 throw FormatError("Label map not found");
2738 typename std::map<std::string, Node>::iterator it =
2739 _node_index.find(tokens[label_index]);
2740 if (it == _node_index.end()) {
2741 std::ostringstream msg;
2742 msg << "Node with label not found: " << tokens[label_index];
2743 throw FormatError(msg.str());
2748 for (int i = 0; i < static_cast<int>(_red_maps.size()); ++i) {
2749 _red_maps[i].second->set(n, tokens[map_index[i]]);
2753 if (readSuccess()) {
2758 void readBlueNodes() {
2760 std::vector<int> map_index(_blue_maps.size());
2761 int map_num, label_index;
2764 if (!readLine() || !(line >> c) || c == '@') {
2765 if (readSuccess() && line) line.putback(c);
2766 if (!_blue_maps.empty())
2767 throw FormatError("Cannot find map names");
2773 std::map<std::string, int> maps;
2777 while (_reader_bits::readToken(line, map)) {
2778 if (maps.find(map) != maps.end()) {
2779 std::ostringstream msg;
2780 msg << "Multiple occurence of blue map: " << map;
2781 throw FormatError(msg.str());
2783 maps.insert(std::make_pair(map, index));
2787 for (int i = 0; i < static_cast<int>(_blue_maps.size()); ++i) {
2788 std::map<std::string, int>::iterator jt =
2789 maps.find(_blue_maps[i].first);
2790 if (jt == maps.end()) {
2791 std::ostringstream msg;
2792 msg << "Map not found: " << _blue_maps[i].first;
2793 throw FormatError(msg.str());
2795 map_index[i] = jt->second;
2799 std::map<std::string, int>::iterator jt = maps.find("label");
2800 if (jt != maps.end()) {
2801 label_index = jt->second;
2806 map_num = maps.size();
2809 while (readLine() && line >> c && c != '@') {
2812 std::vector<std::string> tokens(map_num);
2813 for (int i = 0; i < map_num; ++i) {
2814 if (!_reader_bits::readToken(line, tokens[i])) {
2815 std::ostringstream msg;
2816 msg << "Column not found (" << i + 1 << ")";
2817 throw FormatError(msg.str());
2820 if (line >> std::ws >> c)
2821 throw FormatError("Extra character at the end of line");
2825 n = _graph.addBlueNode();
2826 if (label_index != -1)
2827 _node_index.insert(std::make_pair(tokens[label_index], n));
2829 if (label_index == -1)
2830 throw FormatError("Label map not found");
2831 typename std::map<std::string, Node>::iterator it =
2832 _node_index.find(tokens[label_index]);
2833 if (it == _node_index.end()) {
2834 std::ostringstream msg;
2835 msg << "Node with label not found: " << tokens[label_index];
2836 throw FormatError(msg.str());
2841 for (int i = 0; i < static_cast<int>(_blue_maps.size()); ++i) {
2842 _blue_maps[i].second->set(n, tokens[map_index[i]]);
2846 if (readSuccess()) {
2853 std::vector<int> map_index(_edge_maps.size());
2854 int map_num, label_index;
2857 if (!readLine() || !(line >> c) || c == '@') {
2858 if (readSuccess() && line) line.putback(c);
2859 if (!_edge_maps.empty())
2860 throw FormatError("Cannot find map names");
2866 std::map<std::string, int> maps;
2870 while (_reader_bits::readToken(line, map)) {
2871 if (maps.find(map) != maps.end()) {
2872 std::ostringstream msg;
2873 msg << "Multiple occurence of edge map: " << map;
2874 throw FormatError(msg.str());
2876 maps.insert(std::make_pair(map, index));
2880 for (int i = 0; i < static_cast<int>(_edge_maps.size()); ++i) {
2881 std::map<std::string, int>::iterator jt =
2882 maps.find(_edge_maps[i].first);
2883 if (jt == maps.end()) {
2884 std::ostringstream msg;
2885 msg << "Map not found: " << _edge_maps[i].first;
2886 throw FormatError(msg.str());
2888 map_index[i] = jt->second;
2892 std::map<std::string, int>::iterator jt = maps.find("label");
2893 if (jt != maps.end()) {
2894 label_index = jt->second;
2899 map_num = maps.size();
2902 while (readLine() && line >> c && c != '@') {
2905 std::string source_token;
2906 std::string target_token;
2908 if (!_reader_bits::readToken(line, source_token))
2909 throw FormatError("Red node not found");
2911 if (!_reader_bits::readToken(line, target_token))
2912 throw FormatError("Blue node not found");
2914 std::vector<std::string> tokens(map_num);
2915 for (int i = 0; i < map_num; ++i) {
2916 if (!_reader_bits::readToken(line, tokens[i])) {
2917 std::ostringstream msg;
2918 msg << "Column not found (" << i + 1 << ")";
2919 throw FormatError(msg.str());
2922 if (line >> std::ws >> c)
2923 throw FormatError("Extra character at the end of line");
2928 typename NodeIndex::iterator it;
2930 it = _node_index.find(source_token);
2931 if (it == _node_index.end()) {
2932 std::ostringstream msg;
2933 msg << "Item not found: " << source_token;
2934 throw FormatError(msg.str());
2936 Node source = it->second;
2937 if (!_graph.red(source)) {
2938 std::ostringstream msg;
2939 msg << "Item is not red node: " << source_token;
2940 throw FormatError(msg.str());
2943 it = _node_index.find(target_token);
2944 if (it == _node_index.end()) {
2945 std::ostringstream msg;
2946 msg << "Item not found: " << target_token;
2947 throw FormatError(msg.str());
2949 Node target = it->second;
2950 if (!_graph.blue(target)) {
2951 std::ostringstream msg;
2952 msg << "Item is not red node: " << source_token;
2953 throw FormatError(msg.str());
2956 e = _graph.addEdge(source, target);
2957 if (label_index != -1)
2958 _edge_index.insert(std::make_pair(tokens[label_index], e));
2960 if (label_index == -1)
2961 throw FormatError("Label map not found");
2962 typename std::map<std::string, Edge>::iterator it =
2963 _edge_index.find(tokens[label_index]);
2964 if (it == _edge_index.end()) {
2965 std::ostringstream msg;
2966 msg << "Edge with label not found: " << tokens[label_index];
2967 throw FormatError(msg.str());
2972 for (int i = 0; i < static_cast<int>(_edge_maps.size()); ++i) {
2973 _edge_maps[i].second->set(e, tokens[map_index[i]]);
2977 if (readSuccess()) {
2982 void readAttributes() {
2984 std::set<std::string> read_attr;
2987 while (readLine() && line >> c && c != '@') {
2990 std::string attr, token;
2991 if (!_reader_bits::readToken(line, attr))
2992 throw FormatError("Attribute name not found");
2993 if (!_reader_bits::readToken(line, token))
2994 throw FormatError("Attribute value not found");
2996 throw FormatError("Extra character at the end of line");
2999 std::set<std::string>::iterator it = read_attr.find(attr);
3000 if (it != read_attr.end()) {
3001 std::ostringstream msg;
3002 msg << "Multiple occurence of attribute: " << attr;
3003 throw FormatError(msg.str());
3005 read_attr.insert(attr);
3009 typename Attributes::iterator it = _attributes.lower_bound(attr);
3010 while (it != _attributes.end() && it->first == attr) {
3011 it->second->set(token);
3017 if (readSuccess()) {
3020 for (typename Attributes::iterator it = _attributes.begin();
3021 it != _attributes.end(); ++it) {
3022 if (read_attr.find(it->first) == read_attr.end()) {
3023 std::ostringstream msg;
3024 msg << "Attribute not found: " << it->first;
3025 throw FormatError(msg.str());
3032 /// \name Execution of the Reader
3035 /// \brief Start the batch processing
3037 /// This function starts the batch processing
3040 LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
3042 bool red_nodes_done = _skip_nodes;
3043 bool blue_nodes_done = _skip_nodes;
3044 bool edges_done = _skip_edges;
3045 bool attributes_done = false;
3051 while (readSuccess()) {
3054 std::string section, caption;
3056 _reader_bits::readToken(line, section);
3057 _reader_bits::readToken(line, caption);
3060 throw FormatError("Extra character at the end of line");
3062 if (section == "red_nodes" && !red_nodes_done) {
3063 if (_nodes_caption.empty() || _nodes_caption == caption) {
3065 red_nodes_done = true;
3067 } else if (section == "blue_nodes" && !blue_nodes_done) {
3068 if (_nodes_caption.empty() || _nodes_caption == caption) {
3070 blue_nodes_done = true;
3072 } else if ((section == "edges" || section == "arcs") &&
3074 if (_edges_caption.empty() || _edges_caption == caption) {
3078 } else if (section == "attributes" && !attributes_done) {
3079 if (_attributes_caption.empty() || _attributes_caption == caption) {
3081 attributes_done = true;
3087 } catch (FormatError& error) {
3088 error.line(line_num);
3089 error.file(_filename);
3094 if (!red_nodes_done) {
3095 throw FormatError("Section @red_nodes not found");
3098 if (!blue_nodes_done) {
3099 throw FormatError("Section @blue_nodes not found");
3103 throw FormatError("Section @edges not found");
3106 if (!attributes_done && !_attributes.empty()) {
3107 throw FormatError("Section @attributes not found");
3116 /// \ingroup lemon_io
3118 /// \brief Return a \ref BpGraphReader class
3120 /// This function just returns a \ref BpGraphReader class.
3122 /// With this function a graph can be read from an
3123 /// \ref lgf-format "LGF" file or input stream with several maps and
3124 /// attributes. For example, there is bipartite weighted matching problem
3125 /// on a graph, i.e. a graph with a \e weight map on the edges. This
3126 /// graph can be read with the following code:
3129 ///ListBpGraph graph;
3130 ///ListBpGraph::EdgeMap<int> weight(graph);
3131 ///bpGraphReader(graph, std::cin).
3132 /// edgeMap("weight", weight).
3136 /// For a complete documentation, please see the \ref BpGraphReader
3137 /// class documentation.
3138 /// \warning Don't forget to put the \ref BpGraphReader::run() "run()"
3139 /// to the end of the parameter list.
3140 /// \relates BpGraphReader
3141 /// \sa bpGraphReader(TBGR& graph, const std::string& fn)
3142 /// \sa bpGraphReader(TBGR& graph, const char* fn)
3143 template <typename TBGR>
3144 BpGraphReader<TBGR> bpGraphReader(TBGR& graph, std::istream& is) {
3145 BpGraphReader<TBGR> tmp(graph, is);
3149 /// \brief Return a \ref BpGraphReader class
3151 /// This function just returns a \ref BpGraphReader class.
3152 /// \relates BpGraphReader
3153 /// \sa bpGraphReader(TBGR& graph, std::istream& is)
3154 template <typename TBGR>
3155 BpGraphReader<TBGR> bpGraphReader(TBGR& graph, const std::string& fn) {
3156 BpGraphReader<TBGR> tmp(graph, fn);
3160 /// \brief Return a \ref BpGraphReader class
3162 /// This function just returns a \ref BpGraphReader class.
3163 /// \relates BpGraphReader
3164 /// \sa bpGraphReader(TBGR& graph, std::istream& is)
3165 template <typename TBGR>
3166 BpGraphReader<TBGR> bpGraphReader(TBGR& graph, const char* fn) {
3167 BpGraphReader<TBGR> tmp(graph, fn);
3171 class SectionReader;
3173 SectionReader sectionReader(std::istream& is);
3174 SectionReader sectionReader(const std::string& fn);
3175 SectionReader sectionReader(const char* fn);
3177 /// \ingroup lemon_io
3179 /// \brief Section reader class
3181 /// In the \ref lgf-format "LGF" file extra sections can be placed,
3182 /// which contain any data in arbitrary format. Such sections can be
3183 /// read with this class. A reading rule can be added to the class
3184 /// with two different functions. With the \c sectionLines() function a
3185 /// functor can process the section line-by-line, while with the \c
3186 /// sectionStream() member the section can be read from an input
3188 class SectionReader {
3193 std::string _filename;
3195 typedef std::map<std::string, _reader_bits::Section*> Sections;
3199 std::istringstream line;
3203 /// \brief Constructor
3205 /// Construct a section reader, which reads from the given input
3207 SectionReader(std::istream& is)
3208 : _is(&is), local_is(false) {}
3210 /// \brief Constructor
3212 /// Construct a section reader, which reads from the given file.
3213 SectionReader(const std::string& fn)
3214 : _is(new std::ifstream(fn.c_str())), local_is(true),
3218 throw IoError("Cannot open file", fn);
3222 /// \brief Constructor
3224 /// Construct a section reader, which reads from the given file.
3225 SectionReader(const char* fn)
3226 : _is(new std::ifstream(fn)), local_is(true),
3230 throw IoError("Cannot open file", fn);
3234 /// \brief Destructor
3236 for (Sections::iterator it = _sections.begin();
3237 it != _sections.end(); ++it) {
3249 friend SectionReader sectionReader(std::istream& is);
3250 friend SectionReader sectionReader(const std::string& fn);
3251 friend SectionReader sectionReader(const char* fn);
3253 SectionReader(SectionReader& other)
3254 : _is(other._is), local_is(other.local_is) {
3257 other.local_is = false;
3259 _sections.swap(other._sections);
3262 SectionReader& operator=(const SectionReader&);
3266 /// \name Section Readers
3269 /// \brief Add a section processor with line oriented reading
3271 /// The first parameter is the type descriptor of the section, the
3272 /// second is a functor, which takes just one \c std::string
3273 /// parameter. At the reading process, each line of the section
3274 /// will be given to the functor object. However, the empty lines
3275 /// and the comment lines are filtered out, and the leading
3276 /// whitespaces are trimmed from each processed string.
3278 /// For example, let's see a section, which contain several
3279 /// integers, which should be inserted into a vector.
3287 /// The functor is implemented as a struct:
3289 /// struct NumberSection {
3290 /// std::vector<int>& _data;
3291 /// NumberSection(std::vector<int>& data) : _data(data) {}
3292 /// void operator()(const std::string& line) {
3293 /// std::istringstream ls(line);
3295 /// while (ls >> value) _data.push_back(value);
3301 /// reader.sectionLines("numbers", NumberSection(vec));
3303 template <typename Functor>
3304 SectionReader& sectionLines(const std::string& type, Functor functor) {
3305 LEMON_ASSERT(!type.empty(), "Type is empty.");
3306 LEMON_ASSERT(_sections.find(type) == _sections.end(),
3307 "Multiple reading of section.");
3308 _sections.insert(std::make_pair(type,
3309 new _reader_bits::LineSection<Functor>(functor)));
3314 /// \brief Add a section processor with stream oriented reading
3316 /// The first parameter is the type of the section, the second is
3317 /// a functor, which takes an \c std::istream& and an \c int&
3318 /// parameter, the latter regard to the line number of stream. The
3319 /// functor can read the input while the section go on, and the
3320 /// line number should be modified accordingly.
3321 template <typename Functor>
3322 SectionReader& sectionStream(const std::string& type, Functor functor) {
3323 LEMON_ASSERT(!type.empty(), "Type is empty.");
3324 LEMON_ASSERT(_sections.find(type) == _sections.end(),
3325 "Multiple reading of section.");
3326 _sections.insert(std::make_pair(type,
3327 new _reader_bits::StreamSection<Functor>(functor)));
3337 while(++line_num, std::getline(*_is, str)) {
3338 line.clear(); line.str(str);
3340 if (line >> std::ws >> c && c != '#') {
3348 bool readSuccess() {
3349 return static_cast<bool>(*_is);
3352 void skipSection() {
3354 while (readSuccess() && line >> c && c != '@') {
3357 if (readSuccess()) {
3365 /// \name Execution of the Reader
3368 /// \brief Start the batch processing
3370 /// This function starts the batch processing.
3373 LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
3375 std::set<std::string> extra_sections;
3381 while (readSuccess()) {
3384 std::string section, caption;
3386 _reader_bits::readToken(line, section);
3387 _reader_bits::readToken(line, caption);
3390 throw FormatError("Extra character at the end of line");
3392 if (extra_sections.find(section) != extra_sections.end()) {
3393 std::ostringstream msg;
3394 msg << "Multiple occurence of section: " << section;
3395 throw FormatError(msg.str());
3397 Sections::iterator it = _sections.find(section);
3398 if (it != _sections.end()) {
3399 extra_sections.insert(section);
3400 it->second->process(*_is, line_num);
3404 } catch (FormatError& error) {
3405 error.line(line_num);
3406 error.file(_filename);
3410 for (Sections::iterator it = _sections.begin();
3411 it != _sections.end(); ++it) {
3412 if (extra_sections.find(it->first) == extra_sections.end()) {
3413 std::ostringstream os;
3414 os << "Cannot find section: " << it->first;
3415 throw FormatError(os.str());
3424 /// \ingroup lemon_io
3426 /// \brief Return a \ref SectionReader class
3428 /// This function just returns a \ref SectionReader class.
3430 /// Please see SectionReader documentation about the custom section
3433 /// \relates SectionReader
3434 /// \sa sectionReader(const std::string& fn)
3435 /// \sa sectionReader(const char *fn)
3436 inline SectionReader sectionReader(std::istream& is) {
3437 SectionReader tmp(is);
3441 /// \brief Return a \ref SectionReader class
3443 /// This function just returns a \ref SectionReader class.
3444 /// \relates SectionReader
3445 /// \sa sectionReader(std::istream& is)
3446 inline SectionReader sectionReader(const std::string& fn) {
3447 SectionReader tmp(fn);
3451 /// \brief Return a \ref SectionReader class
3453 /// This function just returns a \ref SectionReader class.
3454 /// \relates SectionReader
3455 /// \sa sectionReader(std::istream& is)
3456 inline SectionReader sectionReader(const char* fn) {
3457 SectionReader tmp(fn);
3461 /// \ingroup lemon_io
3463 /// \brief Reader for the contents of the \ref lgf-format "LGF" file
3465 /// This class can be used to read the sections, the map names and
3466 /// the attributes from a file. Usually, the LEMON programs know
3467 /// that, which type of graph, which maps and which attributes
3468 /// should be read from a file, but in general tools (like glemon)
3469 /// the contents of an LGF file should be guessed somehow. This class
3470 /// reads the graph and stores the appropriate information for
3471 /// reading the graph.
3474 /// LgfContents contents("graph.lgf");
3477 /// // Does it contain any node section and arc section?
3478 /// if (contents.nodeSectionNum() == 0 || contents.arcSectionNum()) {
3479 /// std::cerr << "Failure, cannot find graph." << std::endl;
3482 /// std::cout << "The name of the default node section: "
3483 /// << contents.nodeSection(0) << std::endl;
3484 /// std::cout << "The number of the arc maps: "
3485 /// << contents.arcMaps(0).size() << std::endl;
3486 /// std::cout << "The name of second arc map: "
3487 /// << contents.arcMaps(0)[1] << std::endl;
3495 std::vector<std::string> _node_sections;
3496 std::vector<std::string> _edge_sections;
3497 std::vector<std::string> _attribute_sections;
3498 std::vector<std::string> _extra_sections;
3500 std::vector<bool> _arc_sections;
3502 std::vector<std::vector<std::string> > _node_maps;
3503 std::vector<std::vector<std::string> > _edge_maps;
3505 std::vector<std::vector<std::string> > _attributes;
3509 std::istringstream line;
3513 /// \brief Constructor
3515 /// Construct an \e LGF contents reader, which reads from the given
3517 LgfContents(std::istream& is)
3518 : _is(&is), local_is(false) {}
3520 /// \brief Constructor
3522 /// Construct an \e LGF contents reader, which reads from the given
3524 LgfContents(const std::string& fn)
3525 : _is(new std::ifstream(fn.c_str())), local_is(true) {
3528 throw IoError("Cannot open file", fn);
3532 /// \brief Constructor
3534 /// Construct an \e LGF contents reader, which reads from the given
3536 LgfContents(const char* fn)
3537 : _is(new std::ifstream(fn)), local_is(true) {
3540 throw IoError("Cannot open file", fn);
3544 /// \brief Destructor
3546 if (local_is) delete _is;
3551 LgfContents(const LgfContents&);
3552 LgfContents& operator=(const LgfContents&);
3557 /// \name Node Sections
3560 /// \brief Gives back the number of node sections in the file.
3562 /// Gives back the number of node sections in the file.
3563 int nodeSectionNum() const {
3564 return _node_sections.size();
3567 /// \brief Returns the node section name at the given position.
3569 /// Returns the node section name at the given position.
3570 const std::string& nodeSection(int i) const {
3571 return _node_sections[i];
3574 /// \brief Gives back the node maps for the given section.
3576 /// Gives back the node maps for the given section.
3577 const std::vector<std::string>& nodeMapNames(int i) const {
3578 return _node_maps[i];
3583 /// \name Arc/Edge Sections
3586 /// \brief Gives back the number of arc/edge sections in the file.
3588 /// Gives back the number of arc/edge sections in the file.
3589 /// \note It is synonym of \c edgeSectionNum().
3590 int arcSectionNum() const {
3591 return _edge_sections.size();
3594 /// \brief Returns the arc/edge section name at the given position.
3596 /// Returns the arc/edge section name at the given position.
3597 /// \note It is synonym of \c edgeSection().
3598 const std::string& arcSection(int i) const {
3599 return _edge_sections[i];
3602 /// \brief Gives back the arc/edge maps for the given section.
3604 /// Gives back the arc/edge maps for the given section.
3605 /// \note It is synonym of \c edgeMapNames().
3606 const std::vector<std::string>& arcMapNames(int i) const {
3607 return _edge_maps[i];
3615 /// \brief Gives back the number of arc/edge sections in the file.
3617 /// Gives back the number of arc/edge sections in the file.
3618 /// \note It is synonym of \c arcSectionNum().
3619 int edgeSectionNum() const {
3620 return _edge_sections.size();
3623 /// \brief Returns the section name at the given position.
3625 /// Returns the section name at the given position.
3626 /// \note It is synonym of \c arcSection().
3627 const std::string& edgeSection(int i) const {
3628 return _edge_sections[i];
3631 /// \brief Gives back the edge maps for the given section.
3633 /// Gives back the edge maps for the given section.
3634 /// \note It is synonym of \c arcMapNames().
3635 const std::vector<std::string>& edgeMapNames(int i) const {
3636 return _edge_maps[i];
3641 /// \name Attribute Sections
3644 /// \brief Gives back the number of attribute sections in the file.
3646 /// Gives back the number of attribute sections in the file.
3647 int attributeSectionNum() const {
3648 return _attribute_sections.size();
3651 /// \brief Returns the attribute section name at the given position.
3653 /// Returns the attribute section name at the given position.
3654 const std::string& attributeSectionNames(int i) const {
3655 return _attribute_sections[i];
3658 /// \brief Gives back the attributes for the given section.
3660 /// Gives back the attributes for the given section.
3661 const std::vector<std::string>& attributes(int i) const {
3662 return _attributes[i];
3667 /// \name Extra Sections
3670 /// \brief Gives back the number of extra sections in the file.
3672 /// Gives back the number of extra sections in the file.
3673 int extraSectionNum() const {
3674 return _extra_sections.size();
3677 /// \brief Returns the extra section type at the given position.
3679 /// Returns the section type at the given position.
3680 const std::string& extraSection(int i) const {
3681 return _extra_sections[i];
3690 while(++line_num, std::getline(*_is, str)) {
3691 line.clear(); line.str(str);
3693 if (line >> std::ws >> c && c != '#') {
3701 bool readSuccess() {
3702 return static_cast<bool>(*_is);
3705 void skipSection() {
3707 while (readSuccess() && line >> c && c != '@') {
3710 if (readSuccess()) {
3715 void readMaps(std::vector<std::string>& maps) {
3717 if (!readLine() || !(line >> c) || c == '@') {
3718 if (readSuccess() && line) line.putback(c);
3723 while (_reader_bits::readToken(line, map)) {
3724 maps.push_back(map);
3728 void readAttributes(std::vector<std::string>& attrs) {
3731 while (readSuccess() && line >> c && c != '@') {
3734 _reader_bits::readToken(line, attr);
3735 attrs.push_back(attr);
3743 /// \name Execution of the Contents Reader
3746 /// \brief Starts the reading
3748 /// This function starts the reading.
3754 while (readSuccess()) {
3759 std::string section, caption;
3760 _reader_bits::readToken(line, section);
3761 _reader_bits::readToken(line, caption);
3763 if (section == "nodes") {
3764 _node_sections.push_back(caption);
3765 _node_maps.push_back(std::vector<std::string>());
3766 readMaps(_node_maps.back());
3767 readLine(); skipSection();
3768 } else if (section == "arcs" || section == "edges") {
3769 _edge_sections.push_back(caption);
3770 _arc_sections.push_back(section == "arcs");
3771 _edge_maps.push_back(std::vector<std::string>());
3772 readMaps(_edge_maps.back());
3773 readLine(); skipSection();
3774 } else if (section == "attributes") {
3775 _attribute_sections.push_back(caption);
3776 _attributes.push_back(std::vector<std::string>());
3777 readAttributes(_attributes.back());
3779 _extra_sections.push_back(section);
3780 readLine(); skipSection();