1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2009
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 _Graph, bool _dir, typename _Map,
105 typename _Converter = DefaultConverter<typename _Map::Value> >
106 class GraphArcMapStorage : public MapStorageBase<typename _Graph::Edge> {
109 typedef _Converter Converter;
110 typedef _Graph Graph;
111 typedef typename Graph::Edge Item;
112 static const bool dir = _dir;
117 Converter _converter;
120 GraphArcMapStorage(const Graph& 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 Graph>
177 struct GraphArcLookUpConverter {
179 const std::map<std::string, typename Graph::Edge>& _map;
181 GraphArcLookUpConverter(const Graph& graph,
182 const std::map<std::string,
183 typename Graph::Edge>& map)
184 : _graph(graph), _map(map) {}
186 typename Graph::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 Graph::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 Digraph>
393 template <typename Digraph>
394 DigraphReader<Digraph> digraphReader(Digraph& digraph,
395 std::istream& is = std::cin);
396 template <typename Digraph>
397 DigraphReader<Digraph> digraphReader(Digraph& digraph, const std::string& fn);
398 template <typename Digraph>
399 DigraphReader<Digraph> digraphReader(Digraph& digraph, const char *fn);
401 /// \ingroup lemon_io
403 /// \brief \ref lgf-format "LGF" reader for directed graphs
405 /// This utility reads an \ref lgf-format "LGF" file.
407 /// The reading method does a batch processing. The user creates a
408 /// reader object, then various reading rules can be added to the
409 /// reader, and eventually the reading is executed with the \c run()
410 /// member function. A map reading rule can be added to the reader
411 /// with the \c nodeMap() or \c arcMap() members. An optional
412 /// converter parameter can also be added as a standard functor
413 /// converting from \c std::string to the value type of the map. If it
414 /// is set, it will determine how the tokens in the file should be
415 /// converted to the value type of the map. If the functor is not set,
416 /// then a default conversion will be used. One map can be read into
417 /// multiple map objects at the same time. The \c attribute(), \c
418 /// node() and \c arc() functions are used to add attribute reading
422 /// DigraphReader<Digraph>(digraph, std::cin).
423 /// nodeMap("coordinates", coord_map).
424 /// arcMap("capacity", cap_map).
425 /// node("source", src).
426 /// node("target", trg).
427 /// attribute("caption", caption).
431 /// By default the reader uses the first section in the file of the
432 /// proper type. If a section has an optional name, then it can be
433 /// selected for reading by giving an optional name parameter to the
434 /// \c nodes(), \c arcs() or \c attributes() functions.
436 /// The \c useNodes() and \c useArcs() functions are used to tell the reader
437 /// that the nodes or arcs should not be constructed (added to the
438 /// graph) during the reading, but instead the label map of the items
439 /// are given as a parameter of these functions. An
440 /// application of these functions is multipass reading, which is
441 /// important if two \c \@arcs sections must be read from the
442 /// file. In this case the first phase would read the node set and one
443 /// of the arc sets, while the second phase would read the second arc
444 /// set into an \e ArcSet class (\c SmartArcSet or \c ListArcSet).
445 /// The previously read label node map should be passed to the \c
446 /// useNodes() functions. Another application of multipass reading when
447 /// paths are given as a node map or an arc map.
448 /// It is impossible to read this in
449 /// a single pass, because the arcs are not constructed when the node
451 template <typename _Digraph>
452 class DigraphReader {
455 typedef _Digraph Digraph;
456 TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
463 std::string _filename;
467 std::string _nodes_caption;
468 std::string _arcs_caption;
469 std::string _attributes_caption;
471 typedef std::map<std::string, Node> NodeIndex;
472 NodeIndex _node_index;
473 typedef std::map<std::string, Arc> ArcIndex;
476 typedef std::vector<std::pair<std::string,
477 _reader_bits::MapStorageBase<Node>*> > NodeMaps;
480 typedef std::vector<std::pair<std::string,
481 _reader_bits::MapStorageBase<Arc>*> >ArcMaps;
484 typedef std::multimap<std::string, _reader_bits::ValueStorageBase*>
486 Attributes _attributes;
495 std::istringstream line;
499 /// \brief Constructor
501 /// Construct a directed graph reader, which reads from the given
503 DigraphReader(Digraph& digraph, std::istream& is = std::cin)
504 : _is(&is), local_is(false), _digraph(digraph),
505 _use_nodes(false), _use_arcs(false),
506 _skip_nodes(false), _skip_arcs(false) {}
508 /// \brief Constructor
510 /// Construct a directed graph reader, which reads from the given
512 DigraphReader(Digraph& digraph, const std::string& fn)
513 : _is(new std::ifstream(fn.c_str())), local_is(true),
514 _filename(fn), _digraph(digraph),
515 _use_nodes(false), _use_arcs(false),
516 _skip_nodes(false), _skip_arcs(false) {
519 throw IoError("Cannot open file", fn);
523 /// \brief Constructor
525 /// Construct a directed graph reader, which reads from the given
527 DigraphReader(Digraph& digraph, const char* fn)
528 : _is(new std::ifstream(fn)), local_is(true),
529 _filename(fn), _digraph(digraph),
530 _use_nodes(false), _use_arcs(false),
531 _skip_nodes(false), _skip_arcs(false) {
534 throw IoError("Cannot open file", fn);
538 /// \brief Destructor
540 for (typename NodeMaps::iterator it = _node_maps.begin();
541 it != _node_maps.end(); ++it) {
545 for (typename ArcMaps::iterator it = _arc_maps.begin();
546 it != _arc_maps.end(); ++it) {
550 for (typename Attributes::iterator it = _attributes.begin();
551 it != _attributes.end(); ++it) {
563 template <typename DGR>
564 friend DigraphReader<DGR> digraphReader(DGR& digraph, std::istream& is);
565 template <typename DGR>
566 friend DigraphReader<DGR> digraphReader(DGR& digraph,
567 const std::string& fn);
568 template <typename DGR>
569 friend DigraphReader<DGR> digraphReader(DGR& digraph, const char *fn);
571 DigraphReader(DigraphReader& other)
572 : _is(other._is), local_is(other.local_is), _digraph(other._digraph),
573 _use_nodes(other._use_nodes), _use_arcs(other._use_arcs),
574 _skip_nodes(other._skip_nodes), _skip_arcs(other._skip_arcs) {
577 other.local_is = false;
579 _node_index.swap(other._node_index);
580 _arc_index.swap(other._arc_index);
582 _node_maps.swap(other._node_maps);
583 _arc_maps.swap(other._arc_maps);
584 _attributes.swap(other._attributes);
586 _nodes_caption = other._nodes_caption;
587 _arcs_caption = other._arcs_caption;
588 _attributes_caption = other._attributes_caption;
592 DigraphReader& operator=(const DigraphReader&);
596 /// \name Reading rules
599 /// \brief Node map reading rule
601 /// Add a node map reading rule to the reader.
602 template <typename Map>
603 DigraphReader& nodeMap(const std::string& caption, Map& map) {
604 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
605 _reader_bits::MapStorageBase<Node>* storage =
606 new _reader_bits::MapStorage<Node, Map>(map);
607 _node_maps.push_back(std::make_pair(caption, storage));
611 /// \brief Node map reading rule
613 /// Add a node map reading rule with specialized converter to the
615 template <typename Map, typename Converter>
616 DigraphReader& nodeMap(const std::string& caption, Map& map,
617 const Converter& converter = Converter()) {
618 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
619 _reader_bits::MapStorageBase<Node>* storage =
620 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
621 _node_maps.push_back(std::make_pair(caption, storage));
625 /// \brief Arc map reading rule
627 /// Add an arc map reading rule to the reader.
628 template <typename Map>
629 DigraphReader& arcMap(const std::string& caption, Map& map) {
630 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
631 _reader_bits::MapStorageBase<Arc>* storage =
632 new _reader_bits::MapStorage<Arc, Map>(map);
633 _arc_maps.push_back(std::make_pair(caption, storage));
637 /// \brief Arc map reading rule
639 /// Add an arc map reading rule with specialized converter to the
641 template <typename Map, typename Converter>
642 DigraphReader& arcMap(const std::string& caption, Map& map,
643 const Converter& converter = Converter()) {
644 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
645 _reader_bits::MapStorageBase<Arc>* storage =
646 new _reader_bits::MapStorage<Arc, Map, Converter>(map, converter);
647 _arc_maps.push_back(std::make_pair(caption, storage));
651 /// \brief Attribute reading rule
653 /// Add an attribute reading rule to the reader.
654 template <typename Value>
655 DigraphReader& attribute(const std::string& caption, Value& value) {
656 _reader_bits::ValueStorageBase* storage =
657 new _reader_bits::ValueStorage<Value>(value);
658 _attributes.insert(std::make_pair(caption, storage));
662 /// \brief Attribute reading rule
664 /// Add an attribute reading rule with specialized converter to the
666 template <typename Value, typename Converter>
667 DigraphReader& attribute(const std::string& caption, Value& value,
668 const Converter& converter = Converter()) {
669 _reader_bits::ValueStorageBase* storage =
670 new _reader_bits::ValueStorage<Value, Converter>(value, converter);
671 _attributes.insert(std::make_pair(caption, storage));
675 /// \brief Node reading rule
677 /// Add a node reading rule to reader.
678 DigraphReader& node(const std::string& caption, Node& node) {
679 typedef _reader_bits::MapLookUpConverter<Node> Converter;
680 Converter converter(_node_index);
681 _reader_bits::ValueStorageBase* storage =
682 new _reader_bits::ValueStorage<Node, Converter>(node, converter);
683 _attributes.insert(std::make_pair(caption, storage));
687 /// \brief Arc reading rule
689 /// Add an arc reading rule to reader.
690 DigraphReader& arc(const std::string& caption, Arc& arc) {
691 typedef _reader_bits::MapLookUpConverter<Arc> Converter;
692 Converter converter(_arc_index);
693 _reader_bits::ValueStorageBase* storage =
694 new _reader_bits::ValueStorage<Arc, Converter>(arc, converter);
695 _attributes.insert(std::make_pair(caption, storage));
701 /// \name Select section by name
704 /// \brief Set \c \@nodes section to be read
706 /// Set \c \@nodes section to be read
707 DigraphReader& nodes(const std::string& caption) {
708 _nodes_caption = caption;
712 /// \brief Set \c \@arcs section to be read
714 /// Set \c \@arcs section to be read
715 DigraphReader& arcs(const std::string& caption) {
716 _arcs_caption = caption;
720 /// \brief Set \c \@attributes section to be read
722 /// Set \c \@attributes section to be read
723 DigraphReader& attributes(const std::string& caption) {
724 _attributes_caption = caption;
730 /// \name Using previously constructed node or arc set
733 /// \brief Use previously constructed node set
735 /// Use previously constructed node set, and specify the node
737 template <typename Map>
738 DigraphReader& useNodes(const Map& map) {
739 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
740 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
742 _writer_bits::DefaultConverter<typename Map::Value> converter;
743 for (NodeIt n(_digraph); n != INVALID; ++n) {
744 _node_index.insert(std::make_pair(converter(map[n]), n));
749 /// \brief Use previously constructed node set
751 /// Use previously constructed node set, and specify the node
752 /// label map and a functor which converts the label map values to
754 template <typename Map, typename Converter>
755 DigraphReader& useNodes(const Map& map,
756 const Converter& converter = Converter()) {
757 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
758 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
760 for (NodeIt n(_digraph); n != INVALID; ++n) {
761 _node_index.insert(std::make_pair(converter(map[n]), n));
766 /// \brief Use previously constructed arc set
768 /// Use previously constructed arc set, and specify the arc
770 template <typename Map>
771 DigraphReader& useArcs(const Map& map) {
772 checkConcept<concepts::ReadMap<Arc, typename Map::Value>, Map>();
773 LEMON_ASSERT(!_use_arcs, "Multiple usage of useArcs() member");
775 _writer_bits::DefaultConverter<typename Map::Value> converter;
776 for (ArcIt a(_digraph); a != INVALID; ++a) {
777 _arc_index.insert(std::make_pair(converter(map[a]), a));
782 /// \brief Use previously constructed arc set
784 /// Use previously constructed arc set, and specify the arc
785 /// label map and a functor which converts the label map values to
787 template <typename Map, typename Converter>
788 DigraphReader& useArcs(const Map& map,
789 const Converter& converter = Converter()) {
790 checkConcept<concepts::ReadMap<Arc, typename Map::Value>, Map>();
791 LEMON_ASSERT(!_use_arcs, "Multiple usage of useArcs() member");
793 for (ArcIt a(_digraph); a != INVALID; ++a) {
794 _arc_index.insert(std::make_pair(converter(map[a]), a));
799 /// \brief Skips the reading of node section
801 /// Omit the reading of the node section. This implies that each node
802 /// map reading rule will be abandoned, and the nodes of the graph
803 /// will not be constructed, which usually cause that the arc set
804 /// could not be read due to lack of node name resolving.
805 /// Therefore \c skipArcs() function should also be used, or
806 /// \c useNodes() should be used to specify the label of the nodes.
807 DigraphReader& skipNodes() {
808 LEMON_ASSERT(!_skip_nodes, "Skip nodes already set");
813 /// \brief Skips the reading of arc section
815 /// Omit the reading of the arc section. This implies that each arc
816 /// map reading rule will be abandoned, and the arcs of the graph
817 /// will not be constructed.
818 DigraphReader& skipArcs() {
819 LEMON_ASSERT(!_skip_arcs, "Skip arcs already set");
830 while(++line_num, std::getline(*_is, str)) {
831 line.clear(); line.str(str);
833 if (line >> std::ws >> c && c != '#') {
842 return static_cast<bool>(*_is);
847 while (readSuccess() && line >> c && c != '@') {
857 std::vector<int> map_index(_node_maps.size());
858 int map_num, label_index;
861 if (!readLine() || !(line >> c) || c == '@') {
862 if (readSuccess() && line) line.putback(c);
863 if (!_node_maps.empty())
864 throw FormatError("Cannot find map names");
870 std::map<std::string, int> maps;
874 while (_reader_bits::readToken(line, map)) {
875 if (maps.find(map) != maps.end()) {
876 std::ostringstream msg;
877 msg << "Multiple occurence of node map: " << map;
878 throw FormatError(msg.str());
880 maps.insert(std::make_pair(map, index));
884 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
885 std::map<std::string, int>::iterator jt =
886 maps.find(_node_maps[i].first);
887 if (jt == maps.end()) {
888 std::ostringstream msg;
889 msg << "Map not found: " << _node_maps[i].first;
890 throw FormatError(msg.str());
892 map_index[i] = jt->second;
896 std::map<std::string, int>::iterator jt = maps.find("label");
897 if (jt != maps.end()) {
898 label_index = jt->second;
903 map_num = maps.size();
906 while (readLine() && line >> c && c != '@') {
909 std::vector<std::string> tokens(map_num);
910 for (int i = 0; i < map_num; ++i) {
911 if (!_reader_bits::readToken(line, tokens[i])) {
912 std::ostringstream msg;
913 msg << "Column not found (" << i + 1 << ")";
914 throw FormatError(msg.str());
917 if (line >> std::ws >> c)
918 throw FormatError("Extra character at the end of line");
922 n = _digraph.addNode();
923 if (label_index != -1)
924 _node_index.insert(std::make_pair(tokens[label_index], n));
926 if (label_index == -1)
927 throw FormatError("Label map not found");
928 typename std::map<std::string, Node>::iterator it =
929 _node_index.find(tokens[label_index]);
930 if (it == _node_index.end()) {
931 std::ostringstream msg;
932 msg << "Node with label not found: " << tokens[label_index];
933 throw FormatError(msg.str());
938 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
939 _node_maps[i].second->set(n, tokens[map_index[i]]);
950 std::vector<int> map_index(_arc_maps.size());
951 int map_num, label_index;
954 if (!readLine() || !(line >> c) || c == '@') {
955 if (readSuccess() && line) line.putback(c);
956 if (!_arc_maps.empty())
957 throw FormatError("Cannot find map names");
963 std::map<std::string, int> maps;
967 while (_reader_bits::readToken(line, map)) {
968 if (maps.find(map) != maps.end()) {
969 std::ostringstream msg;
970 msg << "Multiple occurence of arc map: " << map;
971 throw FormatError(msg.str());
973 maps.insert(std::make_pair(map, index));
977 for (int i = 0; i < static_cast<int>(_arc_maps.size()); ++i) {
978 std::map<std::string, int>::iterator jt =
979 maps.find(_arc_maps[i].first);
980 if (jt == maps.end()) {
981 std::ostringstream msg;
982 msg << "Map not found: " << _arc_maps[i].first;
983 throw FormatError(msg.str());
985 map_index[i] = jt->second;
989 std::map<std::string, int>::iterator jt = maps.find("label");
990 if (jt != maps.end()) {
991 label_index = jt->second;
996 map_num = maps.size();
999 while (readLine() && line >> c && c != '@') {
1002 std::string source_token;
1003 std::string target_token;
1005 if (!_reader_bits::readToken(line, source_token))
1006 throw FormatError("Source not found");
1008 if (!_reader_bits::readToken(line, target_token))
1009 throw FormatError("Target not found");
1011 std::vector<std::string> tokens(map_num);
1012 for (int i = 0; i < map_num; ++i) {
1013 if (!_reader_bits::readToken(line, tokens[i])) {
1014 std::ostringstream msg;
1015 msg << "Column not found (" << i + 1 << ")";
1016 throw FormatError(msg.str());
1019 if (line >> std::ws >> c)
1020 throw FormatError("Extra character at the end of line");
1025 typename NodeIndex::iterator it;
1027 it = _node_index.find(source_token);
1028 if (it == _node_index.end()) {
1029 std::ostringstream msg;
1030 msg << "Item not found: " << source_token;
1031 throw FormatError(msg.str());
1033 Node source = it->second;
1035 it = _node_index.find(target_token);
1036 if (it == _node_index.end()) {
1037 std::ostringstream msg;
1038 msg << "Item not found: " << target_token;
1039 throw FormatError(msg.str());
1041 Node target = it->second;
1043 a = _digraph.addArc(source, target);
1044 if (label_index != -1)
1045 _arc_index.insert(std::make_pair(tokens[label_index], a));
1047 if (label_index == -1)
1048 throw FormatError("Label map not found");
1049 typename std::map<std::string, Arc>::iterator it =
1050 _arc_index.find(tokens[label_index]);
1051 if (it == _arc_index.end()) {
1052 std::ostringstream msg;
1053 msg << "Arc with label not found: " << tokens[label_index];
1054 throw FormatError(msg.str());
1059 for (int i = 0; i < static_cast<int>(_arc_maps.size()); ++i) {
1060 _arc_maps[i].second->set(a, tokens[map_index[i]]);
1064 if (readSuccess()) {
1069 void readAttributes() {
1071 std::set<std::string> read_attr;
1074 while (readLine() && line >> c && c != '@') {
1077 std::string attr, token;
1078 if (!_reader_bits::readToken(line, attr))
1079 throw FormatError("Attribute name not found");
1080 if (!_reader_bits::readToken(line, token))
1081 throw FormatError("Attribute value not found");
1083 throw FormatError("Extra character at the end of line");
1086 std::set<std::string>::iterator it = read_attr.find(attr);
1087 if (it != read_attr.end()) {
1088 std::ostringstream msg;
1089 msg << "Multiple occurence of attribute: " << attr;
1090 throw FormatError(msg.str());
1092 read_attr.insert(attr);
1096 typename Attributes::iterator it = _attributes.lower_bound(attr);
1097 while (it != _attributes.end() && it->first == attr) {
1098 it->second->set(token);
1104 if (readSuccess()) {
1107 for (typename Attributes::iterator it = _attributes.begin();
1108 it != _attributes.end(); ++it) {
1109 if (read_attr.find(it->first) == read_attr.end()) {
1110 std::ostringstream msg;
1111 msg << "Attribute not found: " << it->first;
1112 throw FormatError(msg.str());
1119 /// \name Execution of the reader
1122 /// \brief Start the batch processing
1124 /// This function starts the batch processing
1126 LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
1128 bool nodes_done = _skip_nodes;
1129 bool arcs_done = _skip_arcs;
1130 bool attributes_done = false;
1136 while (readSuccess()) {
1139 std::string section, caption;
1141 _reader_bits::readToken(line, section);
1142 _reader_bits::readToken(line, caption);
1145 throw FormatError("Extra character at the end of line");
1147 if (section == "nodes" && !nodes_done) {
1148 if (_nodes_caption.empty() || _nodes_caption == caption) {
1152 } else if ((section == "arcs" || section == "edges") &&
1154 if (_arcs_caption.empty() || _arcs_caption == caption) {
1158 } else if (section == "attributes" && !attributes_done) {
1159 if (_attributes_caption.empty() || _attributes_caption == caption) {
1161 attributes_done = true;
1167 } catch (FormatError& error) {
1168 error.line(line_num);
1169 error.file(_filename);
1175 throw FormatError("Section @nodes not found");
1179 throw FormatError("Section @arcs not found");
1182 if (!attributes_done && !_attributes.empty()) {
1183 throw FormatError("Section @attributes not found");
1192 /// \brief Return a \ref DigraphReader class
1194 /// This function just returns a \ref DigraphReader class.
1195 /// \relates DigraphReader
1196 template <typename Digraph>
1197 DigraphReader<Digraph> digraphReader(Digraph& digraph, std::istream& is) {
1198 DigraphReader<Digraph> tmp(digraph, is);
1202 /// \brief Return a \ref DigraphReader class
1204 /// This function just returns a \ref DigraphReader class.
1205 /// \relates DigraphReader
1206 template <typename Digraph>
1207 DigraphReader<Digraph> digraphReader(Digraph& digraph,
1208 const std::string& fn) {
1209 DigraphReader<Digraph> tmp(digraph, fn);
1213 /// \brief Return a \ref DigraphReader class
1215 /// This function just returns a \ref DigraphReader class.
1216 /// \relates DigraphReader
1217 template <typename Digraph>
1218 DigraphReader<Digraph> digraphReader(Digraph& digraph, const char* fn) {
1219 DigraphReader<Digraph> tmp(digraph, fn);
1223 template <typename Graph>
1226 template <typename Graph>
1227 GraphReader<Graph> graphReader(Graph& graph,
1228 std::istream& is = std::cin);
1229 template <typename Graph>
1230 GraphReader<Graph> graphReader(Graph& graph, const std::string& fn);
1231 template <typename Graph>
1232 GraphReader<Graph> graphReader(Graph& graph, const char *fn);
1234 /// \ingroup lemon_io
1236 /// \brief \ref lgf-format "LGF" reader for undirected graphs
1238 /// This utility reads an \ref lgf-format "LGF" file.
1240 /// It can be used almost the same way as \c DigraphReader.
1241 /// The only difference is that this class can handle edges and
1242 /// edge maps as well as arcs and arc maps.
1244 /// The columns in the \c \@edges (or \c \@arcs) section are the
1245 /// edge maps. However, if there are two maps with the same name
1246 /// prefixed with \c '+' and \c '-', then these can be read into an
1247 /// arc map. Similarly, an attribute can be read into an arc, if
1248 /// it's value is an edge label prefixed with \c '+' or \c '-'.
1249 template <typename _Graph>
1253 typedef _Graph Graph;
1254 TEMPLATE_GRAPH_TYPEDEFS(Graph);
1260 std::string _filename;
1264 std::string _nodes_caption;
1265 std::string _edges_caption;
1266 std::string _attributes_caption;
1268 typedef std::map<std::string, Node> NodeIndex;
1269 NodeIndex _node_index;
1270 typedef std::map<std::string, Edge> EdgeIndex;
1271 EdgeIndex _edge_index;
1273 typedef std::vector<std::pair<std::string,
1274 _reader_bits::MapStorageBase<Node>*> > NodeMaps;
1275 NodeMaps _node_maps;
1277 typedef std::vector<std::pair<std::string,
1278 _reader_bits::MapStorageBase<Edge>*> > EdgeMaps;
1279 EdgeMaps _edge_maps;
1281 typedef std::multimap<std::string, _reader_bits::ValueStorageBase*>
1283 Attributes _attributes;
1292 std::istringstream line;
1296 /// \brief Constructor
1298 /// Construct an undirected graph reader, which reads from the given
1300 GraphReader(Graph& graph, std::istream& is = std::cin)
1301 : _is(&is), local_is(false), _graph(graph),
1302 _use_nodes(false), _use_edges(false),
1303 _skip_nodes(false), _skip_edges(false) {}
1305 /// \brief Constructor
1307 /// Construct an undirected graph reader, which reads from the given
1309 GraphReader(Graph& graph, const std::string& fn)
1310 : _is(new std::ifstream(fn.c_str())), local_is(true),
1311 _filename(fn), _graph(graph),
1312 _use_nodes(false), _use_edges(false),
1313 _skip_nodes(false), _skip_edges(false) {
1316 throw IoError("Cannot open file", fn);
1320 /// \brief Constructor
1322 /// Construct an undirected graph reader, which reads from the given
1324 GraphReader(Graph& graph, const char* fn)
1325 : _is(new std::ifstream(fn)), local_is(true),
1326 _filename(fn), _graph(graph),
1327 _use_nodes(false), _use_edges(false),
1328 _skip_nodes(false), _skip_edges(false) {
1331 throw IoError("Cannot open file", fn);
1335 /// \brief Destructor
1337 for (typename NodeMaps::iterator it = _node_maps.begin();
1338 it != _node_maps.end(); ++it) {
1342 for (typename EdgeMaps::iterator it = _edge_maps.begin();
1343 it != _edge_maps.end(); ++it) {
1347 for (typename Attributes::iterator it = _attributes.begin();
1348 it != _attributes.end(); ++it) {
1359 template <typename GR>
1360 friend GraphReader<GR> graphReader(GR& graph, std::istream& is);
1361 template <typename GR>
1362 friend GraphReader<GR> graphReader(GR& graph, const std::string& fn);
1363 template <typename GR>
1364 friend GraphReader<GR> graphReader(GR& graph, const char *fn);
1366 GraphReader(GraphReader& other)
1367 : _is(other._is), local_is(other.local_is), _graph(other._graph),
1368 _use_nodes(other._use_nodes), _use_edges(other._use_edges),
1369 _skip_nodes(other._skip_nodes), _skip_edges(other._skip_edges) {
1372 other.local_is = false;
1374 _node_index.swap(other._node_index);
1375 _edge_index.swap(other._edge_index);
1377 _node_maps.swap(other._node_maps);
1378 _edge_maps.swap(other._edge_maps);
1379 _attributes.swap(other._attributes);
1381 _nodes_caption = other._nodes_caption;
1382 _edges_caption = other._edges_caption;
1383 _attributes_caption = other._attributes_caption;
1387 GraphReader& operator=(const GraphReader&);
1391 /// \name Reading rules
1394 /// \brief Node map reading rule
1396 /// Add a node map reading rule to the reader.
1397 template <typename Map>
1398 GraphReader& nodeMap(const std::string& caption, Map& map) {
1399 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
1400 _reader_bits::MapStorageBase<Node>* storage =
1401 new _reader_bits::MapStorage<Node, Map>(map);
1402 _node_maps.push_back(std::make_pair(caption, storage));
1406 /// \brief Node map reading rule
1408 /// Add a node map reading rule with specialized converter to the
1410 template <typename Map, typename Converter>
1411 GraphReader& nodeMap(const std::string& caption, Map& map,
1412 const Converter& converter = Converter()) {
1413 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
1414 _reader_bits::MapStorageBase<Node>* storage =
1415 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
1416 _node_maps.push_back(std::make_pair(caption, storage));
1420 /// \brief Edge map reading rule
1422 /// Add an edge map reading rule to the reader.
1423 template <typename Map>
1424 GraphReader& edgeMap(const std::string& caption, Map& map) {
1425 checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
1426 _reader_bits::MapStorageBase<Edge>* storage =
1427 new _reader_bits::MapStorage<Edge, Map>(map);
1428 _edge_maps.push_back(std::make_pair(caption, storage));
1432 /// \brief Edge map reading rule
1434 /// Add an edge map reading rule with specialized converter to the
1436 template <typename Map, typename Converter>
1437 GraphReader& edgeMap(const std::string& caption, Map& map,
1438 const Converter& converter = Converter()) {
1439 checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
1440 _reader_bits::MapStorageBase<Edge>* storage =
1441 new _reader_bits::MapStorage<Edge, Map, Converter>(map, converter);
1442 _edge_maps.push_back(std::make_pair(caption, storage));
1446 /// \brief Arc map reading rule
1448 /// Add an arc map reading rule to the reader.
1449 template <typename Map>
1450 GraphReader& arcMap(const std::string& caption, Map& map) {
1451 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
1452 _reader_bits::MapStorageBase<Edge>* forward_storage =
1453 new _reader_bits::GraphArcMapStorage<Graph, true, Map>(_graph, map);
1454 _edge_maps.push_back(std::make_pair('+' + caption, forward_storage));
1455 _reader_bits::MapStorageBase<Edge>* backward_storage =
1456 new _reader_bits::GraphArcMapStorage<Graph, false, Map>(_graph, map);
1457 _edge_maps.push_back(std::make_pair('-' + caption, backward_storage));
1461 /// \brief Arc map reading rule
1463 /// Add an arc map reading rule with specialized converter to the
1465 template <typename Map, typename Converter>
1466 GraphReader& arcMap(const std::string& caption, Map& map,
1467 const Converter& converter = Converter()) {
1468 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
1469 _reader_bits::MapStorageBase<Edge>* forward_storage =
1470 new _reader_bits::GraphArcMapStorage<Graph, true, Map, Converter>
1471 (_graph, map, converter);
1472 _edge_maps.push_back(std::make_pair('+' + caption, forward_storage));
1473 _reader_bits::MapStorageBase<Edge>* backward_storage =
1474 new _reader_bits::GraphArcMapStorage<Graph, false, Map, Converter>
1475 (_graph, map, converter);
1476 _edge_maps.push_back(std::make_pair('-' + caption, backward_storage));
1480 /// \brief Attribute reading rule
1482 /// Add an attribute reading rule to the reader.
1483 template <typename Value>
1484 GraphReader& attribute(const std::string& caption, Value& value) {
1485 _reader_bits::ValueStorageBase* storage =
1486 new _reader_bits::ValueStorage<Value>(value);
1487 _attributes.insert(std::make_pair(caption, storage));
1491 /// \brief Attribute reading rule
1493 /// Add an attribute reading rule with specialized converter to the
1495 template <typename Value, typename Converter>
1496 GraphReader& attribute(const std::string& caption, Value& value,
1497 const Converter& converter = Converter()) {
1498 _reader_bits::ValueStorageBase* storage =
1499 new _reader_bits::ValueStorage<Value, Converter>(value, converter);
1500 _attributes.insert(std::make_pair(caption, storage));
1504 /// \brief Node reading rule
1506 /// Add a node reading rule to reader.
1507 GraphReader& node(const std::string& caption, Node& node) {
1508 typedef _reader_bits::MapLookUpConverter<Node> Converter;
1509 Converter converter(_node_index);
1510 _reader_bits::ValueStorageBase* storage =
1511 new _reader_bits::ValueStorage<Node, Converter>(node, converter);
1512 _attributes.insert(std::make_pair(caption, storage));
1516 /// \brief Edge reading rule
1518 /// Add an edge reading rule to reader.
1519 GraphReader& edge(const std::string& caption, Edge& edge) {
1520 typedef _reader_bits::MapLookUpConverter<Edge> Converter;
1521 Converter converter(_edge_index);
1522 _reader_bits::ValueStorageBase* storage =
1523 new _reader_bits::ValueStorage<Edge, Converter>(edge, converter);
1524 _attributes.insert(std::make_pair(caption, storage));
1528 /// \brief Arc reading rule
1530 /// Add an arc reading rule to reader.
1531 GraphReader& arc(const std::string& caption, Arc& arc) {
1532 typedef _reader_bits::GraphArcLookUpConverter<Graph> Converter;
1533 Converter converter(_graph, _edge_index);
1534 _reader_bits::ValueStorageBase* storage =
1535 new _reader_bits::ValueStorage<Arc, Converter>(arc, converter);
1536 _attributes.insert(std::make_pair(caption, storage));
1542 /// \name Select section by name
1545 /// \brief Set \c \@nodes section to be read
1547 /// Set \c \@nodes section to be read.
1548 GraphReader& nodes(const std::string& caption) {
1549 _nodes_caption = caption;
1553 /// \brief Set \c \@edges section to be read
1555 /// Set \c \@edges section to be read.
1556 GraphReader& edges(const std::string& caption) {
1557 _edges_caption = caption;
1561 /// \brief Set \c \@attributes section to be read
1563 /// Set \c \@attributes section to be read.
1564 GraphReader& attributes(const std::string& caption) {
1565 _attributes_caption = caption;
1571 /// \name Using previously constructed node or edge set
1574 /// \brief Use previously constructed node set
1576 /// Use previously constructed node set, and specify the node
1578 template <typename Map>
1579 GraphReader& useNodes(const Map& map) {
1580 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
1581 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
1583 _writer_bits::DefaultConverter<typename Map::Value> converter;
1584 for (NodeIt n(_graph); n != INVALID; ++n) {
1585 _node_index.insert(std::make_pair(converter(map[n]), n));
1590 /// \brief Use previously constructed node set
1592 /// Use previously constructed node set, and specify the node
1593 /// label map and a functor which converts the label map values to
1595 template <typename Map, typename Converter>
1596 GraphReader& useNodes(const Map& map,
1597 const Converter& converter = Converter()) {
1598 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
1599 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
1601 for (NodeIt n(_graph); n != INVALID; ++n) {
1602 _node_index.insert(std::make_pair(converter(map[n]), n));
1607 /// \brief Use previously constructed edge set
1609 /// Use previously constructed edge set, and specify the edge
1611 template <typename Map>
1612 GraphReader& useEdges(const Map& map) {
1613 checkConcept<concepts::ReadMap<Edge, typename Map::Value>, Map>();
1614 LEMON_ASSERT(!_use_edges, "Multiple usage of useEdges() member");
1616 _writer_bits::DefaultConverter<typename Map::Value> converter;
1617 for (EdgeIt a(_graph); a != INVALID; ++a) {
1618 _edge_index.insert(std::make_pair(converter(map[a]), a));
1623 /// \brief Use previously constructed edge set
1625 /// Use previously constructed edge set, and specify the edge
1626 /// label map and a functor which converts the label map values to
1628 template <typename Map, typename Converter>
1629 GraphReader& useEdges(const Map& map,
1630 const Converter& converter = Converter()) {
1631 checkConcept<concepts::ReadMap<Edge, typename Map::Value>, Map>();
1632 LEMON_ASSERT(!_use_edges, "Multiple usage of useEdges() member");
1634 for (EdgeIt a(_graph); a != INVALID; ++a) {
1635 _edge_index.insert(std::make_pair(converter(map[a]), a));
1640 /// \brief Skip the reading of node section
1642 /// Omit the reading of the node section. This implies that each node
1643 /// map reading rule will be abandoned, and the nodes of the graph
1644 /// will not be constructed, which usually cause that the edge set
1645 /// could not be read due to lack of node name
1646 /// could not be read due to lack of node name resolving.
1647 /// Therefore \c skipEdges() function should also be used, or
1648 /// \c useNodes() should be used to specify the label of the nodes.
1649 GraphReader& skipNodes() {
1650 LEMON_ASSERT(!_skip_nodes, "Skip nodes already set");
1655 /// \brief Skip the reading of edge section
1657 /// Omit the reading of the edge section. This implies that each edge
1658 /// map reading rule will be abandoned, and the edges of the graph
1659 /// will not be constructed.
1660 GraphReader& skipEdges() {
1661 LEMON_ASSERT(!_skip_edges, "Skip edges already set");
1672 while(++line_num, std::getline(*_is, str)) {
1673 line.clear(); line.str(str);
1675 if (line >> std::ws >> c && c != '#') {
1683 bool readSuccess() {
1684 return static_cast<bool>(*_is);
1687 void skipSection() {
1689 while (readSuccess() && line >> c && c != '@') {
1692 if (readSuccess()) {
1699 std::vector<int> map_index(_node_maps.size());
1700 int map_num, label_index;
1703 if (!readLine() || !(line >> c) || c == '@') {
1704 if (readSuccess() && line) line.putback(c);
1705 if (!_node_maps.empty())
1706 throw FormatError("Cannot find map names");
1712 std::map<std::string, int> maps;
1716 while (_reader_bits::readToken(line, map)) {
1717 if (maps.find(map) != maps.end()) {
1718 std::ostringstream msg;
1719 msg << "Multiple occurence of node map: " << map;
1720 throw FormatError(msg.str());
1722 maps.insert(std::make_pair(map, index));
1726 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
1727 std::map<std::string, int>::iterator jt =
1728 maps.find(_node_maps[i].first);
1729 if (jt == maps.end()) {
1730 std::ostringstream msg;
1731 msg << "Map not found: " << _node_maps[i].first;
1732 throw FormatError(msg.str());
1734 map_index[i] = jt->second;
1738 std::map<std::string, int>::iterator jt = maps.find("label");
1739 if (jt != maps.end()) {
1740 label_index = jt->second;
1745 map_num = maps.size();
1748 while (readLine() && line >> c && c != '@') {
1751 std::vector<std::string> tokens(map_num);
1752 for (int i = 0; i < map_num; ++i) {
1753 if (!_reader_bits::readToken(line, tokens[i])) {
1754 std::ostringstream msg;
1755 msg << "Column not found (" << i + 1 << ")";
1756 throw FormatError(msg.str());
1759 if (line >> std::ws >> c)
1760 throw FormatError("Extra character at the end of line");
1764 n = _graph.addNode();
1765 if (label_index != -1)
1766 _node_index.insert(std::make_pair(tokens[label_index], n));
1768 if (label_index == -1)
1769 throw FormatError("Label map not found");
1770 typename std::map<std::string, Node>::iterator it =
1771 _node_index.find(tokens[label_index]);
1772 if (it == _node_index.end()) {
1773 std::ostringstream msg;
1774 msg << "Node with label not found: " << tokens[label_index];
1775 throw FormatError(msg.str());
1780 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
1781 _node_maps[i].second->set(n, tokens[map_index[i]]);
1785 if (readSuccess()) {
1792 std::vector<int> map_index(_edge_maps.size());
1793 int map_num, label_index;
1796 if (!readLine() || !(line >> c) || c == '@') {
1797 if (readSuccess() && line) line.putback(c);
1798 if (!_edge_maps.empty())
1799 throw FormatError("Cannot find map names");
1805 std::map<std::string, int> maps;
1809 while (_reader_bits::readToken(line, map)) {
1810 if (maps.find(map) != maps.end()) {
1811 std::ostringstream msg;
1812 msg << "Multiple occurence of edge map: " << map;
1813 throw FormatError(msg.str());
1815 maps.insert(std::make_pair(map, index));
1819 for (int i = 0; i < static_cast<int>(_edge_maps.size()); ++i) {
1820 std::map<std::string, int>::iterator jt =
1821 maps.find(_edge_maps[i].first);
1822 if (jt == maps.end()) {
1823 std::ostringstream msg;
1824 msg << "Map not found: " << _edge_maps[i].first;
1825 throw FormatError(msg.str());
1827 map_index[i] = jt->second;
1831 std::map<std::string, int>::iterator jt = maps.find("label");
1832 if (jt != maps.end()) {
1833 label_index = jt->second;
1838 map_num = maps.size();
1841 while (readLine() && line >> c && c != '@') {
1844 std::string source_token;
1845 std::string target_token;
1847 if (!_reader_bits::readToken(line, source_token))
1848 throw FormatError("Node u not found");
1850 if (!_reader_bits::readToken(line, target_token))
1851 throw FormatError("Node v not found");
1853 std::vector<std::string> tokens(map_num);
1854 for (int i = 0; i < map_num; ++i) {
1855 if (!_reader_bits::readToken(line, tokens[i])) {
1856 std::ostringstream msg;
1857 msg << "Column not found (" << i + 1 << ")";
1858 throw FormatError(msg.str());
1861 if (line >> std::ws >> c)
1862 throw FormatError("Extra character at the end of line");
1867 typename NodeIndex::iterator it;
1869 it = _node_index.find(source_token);
1870 if (it == _node_index.end()) {
1871 std::ostringstream msg;
1872 msg << "Item not found: " << source_token;
1873 throw FormatError(msg.str());
1875 Node source = it->second;
1877 it = _node_index.find(target_token);
1878 if (it == _node_index.end()) {
1879 std::ostringstream msg;
1880 msg << "Item not found: " << target_token;
1881 throw FormatError(msg.str());
1883 Node target = it->second;
1885 e = _graph.addEdge(source, target);
1886 if (label_index != -1)
1887 _edge_index.insert(std::make_pair(tokens[label_index], e));
1889 if (label_index == -1)
1890 throw FormatError("Label map not found");
1891 typename std::map<std::string, Edge>::iterator it =
1892 _edge_index.find(tokens[label_index]);
1893 if (it == _edge_index.end()) {
1894 std::ostringstream msg;
1895 msg << "Edge with label not found: " << tokens[label_index];
1896 throw FormatError(msg.str());
1901 for (int i = 0; i < static_cast<int>(_edge_maps.size()); ++i) {
1902 _edge_maps[i].second->set(e, tokens[map_index[i]]);
1906 if (readSuccess()) {
1911 void readAttributes() {
1913 std::set<std::string> read_attr;
1916 while (readLine() && line >> c && c != '@') {
1919 std::string attr, token;
1920 if (!_reader_bits::readToken(line, attr))
1921 throw FormatError("Attribute name not found");
1922 if (!_reader_bits::readToken(line, token))
1923 throw FormatError("Attribute value not found");
1925 throw FormatError("Extra character at the end of line");
1928 std::set<std::string>::iterator it = read_attr.find(attr);
1929 if (it != read_attr.end()) {
1930 std::ostringstream msg;
1931 msg << "Multiple occurence of attribute: " << attr;
1932 throw FormatError(msg.str());
1934 read_attr.insert(attr);
1938 typename Attributes::iterator it = _attributes.lower_bound(attr);
1939 while (it != _attributes.end() && it->first == attr) {
1940 it->second->set(token);
1946 if (readSuccess()) {
1949 for (typename Attributes::iterator it = _attributes.begin();
1950 it != _attributes.end(); ++it) {
1951 if (read_attr.find(it->first) == read_attr.end()) {
1952 std::ostringstream msg;
1953 msg << "Attribute not found: " << it->first;
1954 throw FormatError(msg.str());
1961 /// \name Execution of the reader
1964 /// \brief Start the batch processing
1966 /// This function starts the batch processing
1969 LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
1971 bool nodes_done = _skip_nodes;
1972 bool edges_done = _skip_edges;
1973 bool attributes_done = false;
1979 while (readSuccess()) {
1982 std::string section, caption;
1984 _reader_bits::readToken(line, section);
1985 _reader_bits::readToken(line, caption);
1988 throw FormatError("Extra character at the end of line");
1990 if (section == "nodes" && !nodes_done) {
1991 if (_nodes_caption.empty() || _nodes_caption == caption) {
1995 } else if ((section == "edges" || section == "arcs") &&
1997 if (_edges_caption.empty() || _edges_caption == caption) {
2001 } else if (section == "attributes" && !attributes_done) {
2002 if (_attributes_caption.empty() || _attributes_caption == caption) {
2004 attributes_done = true;
2010 } catch (FormatError& error) {
2011 error.line(line_num);
2012 error.file(_filename);
2018 throw FormatError("Section @nodes not found");
2022 throw FormatError("Section @edges not found");
2025 if (!attributes_done && !_attributes.empty()) {
2026 throw FormatError("Section @attributes not found");
2035 /// \brief Return a \ref GraphReader class
2037 /// This function just returns a \ref GraphReader class.
2038 /// \relates GraphReader
2039 template <typename Graph>
2040 GraphReader<Graph> graphReader(Graph& graph, std::istream& is) {
2041 GraphReader<Graph> tmp(graph, is);
2045 /// \brief Return a \ref GraphReader class
2047 /// This function just returns a \ref GraphReader class.
2048 /// \relates GraphReader
2049 template <typename Graph>
2050 GraphReader<Graph> graphReader(Graph& graph, const std::string& fn) {
2051 GraphReader<Graph> tmp(graph, fn);
2055 /// \brief Return a \ref GraphReader class
2057 /// This function just returns a \ref GraphReader class.
2058 /// \relates GraphReader
2059 template <typename Graph>
2060 GraphReader<Graph> graphReader(Graph& graph, const char* fn) {
2061 GraphReader<Graph> tmp(graph, fn);
2065 class SectionReader;
2067 SectionReader sectionReader(std::istream& is);
2068 SectionReader sectionReader(const std::string& fn);
2069 SectionReader sectionReader(const char* fn);
2071 /// \ingroup lemon_io
2073 /// \brief Section reader class
2075 /// In the \ref lgf-format "LGF" file extra sections can be placed,
2076 /// which contain any data in arbitrary format. Such sections can be
2077 /// read with this class. A reading rule can be added to the class
2078 /// with two different functions. With the \c sectionLines() function a
2079 /// functor can process the section line-by-line, while with the \c
2080 /// sectionStream() member the section can be read from an input
2082 class SectionReader {
2087 std::string _filename;
2089 typedef std::map<std::string, _reader_bits::Section*> Sections;
2093 std::istringstream line;
2097 /// \brief Constructor
2099 /// Construct a section reader, which reads from the given input
2101 SectionReader(std::istream& is)
2102 : _is(&is), local_is(false) {}
2104 /// \brief Constructor
2106 /// Construct a section reader, which reads from the given file.
2107 SectionReader(const std::string& fn)
2108 : _is(new std::ifstream(fn.c_str())), local_is(true),
2112 throw IoError("Cannot open file", fn);
2116 /// \brief Constructor
2118 /// Construct a section reader, which reads from the given file.
2119 SectionReader(const char* fn)
2120 : _is(new std::ifstream(fn)), local_is(true),
2124 throw IoError("Cannot open file", fn);
2128 /// \brief Destructor
2130 for (Sections::iterator it = _sections.begin();
2131 it != _sections.end(); ++it) {
2143 friend SectionReader sectionReader(std::istream& is);
2144 friend SectionReader sectionReader(const std::string& fn);
2145 friend SectionReader sectionReader(const char* fn);
2147 SectionReader(SectionReader& other)
2148 : _is(other._is), local_is(other.local_is) {
2151 other.local_is = false;
2153 _sections.swap(other._sections);
2156 SectionReader& operator=(const SectionReader&);
2160 /// \name Section readers
2163 /// \brief Add a section processor with line oriented reading
2165 /// The first parameter is the type descriptor of the section, the
2166 /// second is a functor, which takes just one \c std::string
2167 /// parameter. At the reading process, each line of the section
2168 /// will be given to the functor object. However, the empty lines
2169 /// and the comment lines are filtered out, and the leading
2170 /// whitespaces are trimmed from each processed string.
2172 /// For example let's see a section, which contain several
2173 /// integers, which should be inserted into a vector.
2181 /// The functor is implemented as a struct:
2183 /// struct NumberSection {
2184 /// std::vector<int>& _data;
2185 /// NumberSection(std::vector<int>& data) : _data(data) {}
2186 /// void operator()(const std::string& line) {
2187 /// std::istringstream ls(line);
2189 /// while (ls >> value) _data.push_back(value);
2195 /// reader.sectionLines("numbers", NumberSection(vec));
2197 template <typename Functor>
2198 SectionReader& sectionLines(const std::string& type, Functor functor) {
2199 LEMON_ASSERT(!type.empty(), "Type is empty.");
2200 LEMON_ASSERT(_sections.find(type) == _sections.end(),
2201 "Multiple reading of section.");
2202 _sections.insert(std::make_pair(type,
2203 new _reader_bits::LineSection<Functor>(functor)));
2208 /// \brief Add a section processor with stream oriented reading
2210 /// The first parameter is the type of the section, the second is
2211 /// a functor, which takes an \c std::istream& and an \c int&
2212 /// parameter, the latter regard to the line number of stream. The
2213 /// functor can read the input while the section go on, and the
2214 /// line number should be modified accordingly.
2215 template <typename Functor>
2216 SectionReader& sectionStream(const std::string& type, Functor functor) {
2217 LEMON_ASSERT(!type.empty(), "Type is empty.");
2218 LEMON_ASSERT(_sections.find(type) == _sections.end(),
2219 "Multiple reading of section.");
2220 _sections.insert(std::make_pair(type,
2221 new _reader_bits::StreamSection<Functor>(functor)));
2231 while(++line_num, std::getline(*_is, str)) {
2232 line.clear(); line.str(str);
2234 if (line >> std::ws >> c && c != '#') {
2242 bool readSuccess() {
2243 return static_cast<bool>(*_is);
2246 void skipSection() {
2248 while (readSuccess() && line >> c && c != '@') {
2251 if (readSuccess()) {
2259 /// \name Execution of the reader
2262 /// \brief Start the batch processing
2264 /// This function starts the batch processing.
2267 LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
2269 std::set<std::string> extra_sections;
2275 while (readSuccess()) {
2278 std::string section, caption;
2280 _reader_bits::readToken(line, section);
2281 _reader_bits::readToken(line, caption);
2284 throw FormatError("Extra character at the end of line");
2286 if (extra_sections.find(section) != extra_sections.end()) {
2287 std::ostringstream msg;
2288 msg << "Multiple occurence of section: " << section;
2289 throw FormatError(msg.str());
2291 Sections::iterator it = _sections.find(section);
2292 if (it != _sections.end()) {
2293 extra_sections.insert(section);
2294 it->second->process(*_is, line_num);
2298 } catch (FormatError& error) {
2299 error.line(line_num);
2300 error.file(_filename);
2304 for (Sections::iterator it = _sections.begin();
2305 it != _sections.end(); ++it) {
2306 if (extra_sections.find(it->first) == extra_sections.end()) {
2307 std::ostringstream os;
2308 os << "Cannot find section: " << it->first;
2309 throw FormatError(os.str());
2318 /// \brief Return a \ref SectionReader class
2320 /// This function just returns a \ref SectionReader class.
2321 /// \relates SectionReader
2322 inline SectionReader sectionReader(std::istream& is) {
2323 SectionReader tmp(is);
2327 /// \brief Return a \ref SectionReader class
2329 /// This function just returns a \ref SectionReader class.
2330 /// \relates SectionReader
2331 inline SectionReader sectionReader(const std::string& fn) {
2332 SectionReader tmp(fn);
2336 /// \brief Return a \ref SectionReader class
2338 /// This function just returns a \ref SectionReader class.
2339 /// \relates SectionReader
2340 inline SectionReader sectionReader(const char* fn) {
2341 SectionReader tmp(fn);
2345 /// \ingroup lemon_io
2347 /// \brief Reader for the contents of the \ref lgf-format "LGF" file
2349 /// This class can be used to read the sections, the map names and
2350 /// the attributes from a file. Usually, the LEMON programs know
2351 /// that, which type of graph, which maps and which attributes
2352 /// should be read from a file, but in general tools (like glemon)
2353 /// the contents of an LGF file should be guessed somehow. This class
2354 /// reads the graph and stores the appropriate information for
2355 /// reading the graph.
2358 /// LgfContents contents("graph.lgf");
2361 /// // Does it contain any node section and arc section?
2362 /// if (contents.nodeSectionNum() == 0 || contents.arcSectionNum()) {
2363 /// std::cerr << "Failure, cannot find graph." << std::endl;
2366 /// std::cout << "The name of the default node section: "
2367 /// << contents.nodeSection(0) << std::endl;
2368 /// std::cout << "The number of the arc maps: "
2369 /// << contents.arcMaps(0).size() << std::endl;
2370 /// std::cout << "The name of second arc map: "
2371 /// << contents.arcMaps(0)[1] << std::endl;
2379 std::vector<std::string> _node_sections;
2380 std::vector<std::string> _edge_sections;
2381 std::vector<std::string> _attribute_sections;
2382 std::vector<std::string> _extra_sections;
2384 std::vector<bool> _arc_sections;
2386 std::vector<std::vector<std::string> > _node_maps;
2387 std::vector<std::vector<std::string> > _edge_maps;
2389 std::vector<std::vector<std::string> > _attributes;
2393 std::istringstream line;
2397 /// \brief Constructor
2399 /// Construct an \e LGF contents reader, which reads from the given
2401 LgfContents(std::istream& is)
2402 : _is(&is), local_is(false) {}
2404 /// \brief Constructor
2406 /// Construct an \e LGF contents reader, which reads from the given
2408 LgfContents(const std::string& fn)
2409 : _is(new std::ifstream(fn.c_str())), local_is(true) {
2412 throw IoError("Cannot open file", fn);
2416 /// \brief Constructor
2418 /// Construct an \e LGF contents reader, which reads from the given
2420 LgfContents(const char* fn)
2421 : _is(new std::ifstream(fn)), local_is(true) {
2424 throw IoError("Cannot open file", fn);
2428 /// \brief Destructor
2430 if (local_is) delete _is;
2435 LgfContents(const LgfContents&);
2436 LgfContents& operator=(const LgfContents&);
2441 /// \name Node sections
2444 /// \brief Gives back the number of node sections in the file.
2446 /// Gives back the number of node sections in the file.
2447 int nodeSectionNum() const {
2448 return _node_sections.size();
2451 /// \brief Returns the node section name at the given position.
2453 /// Returns the node section name at the given position.
2454 const std::string& nodeSection(int i) const {
2455 return _node_sections[i];
2458 /// \brief Gives back the node maps for the given section.
2460 /// Gives back the node maps for the given section.
2461 const std::vector<std::string>& nodeMapNames(int i) const {
2462 return _node_maps[i];
2467 /// \name Arc/Edge sections
2470 /// \brief Gives back the number of arc/edge sections in the file.
2472 /// Gives back the number of arc/edge sections in the file.
2473 /// \note It is synonym of \c edgeSectionNum().
2474 int arcSectionNum() const {
2475 return _edge_sections.size();
2478 /// \brief Returns the arc/edge section name at the given position.
2480 /// Returns the arc/edge section name at the given position.
2481 /// \note It is synonym of \c edgeSection().
2482 const std::string& arcSection(int i) const {
2483 return _edge_sections[i];
2486 /// \brief Gives back the arc/edge maps for the given section.
2488 /// Gives back the arc/edge maps for the given section.
2489 /// \note It is synonym of \c edgeMapNames().
2490 const std::vector<std::string>& arcMapNames(int i) const {
2491 return _edge_maps[i];
2499 /// \brief Gives back the number of arc/edge sections in the file.
2501 /// Gives back the number of arc/edge sections in the file.
2502 /// \note It is synonym of \c arcSectionNum().
2503 int edgeSectionNum() const {
2504 return _edge_sections.size();
2507 /// \brief Returns the section name at the given position.
2509 /// Returns the section name at the given position.
2510 /// \note It is synonym of \c arcSection().
2511 const std::string& edgeSection(int i) const {
2512 return _edge_sections[i];
2515 /// \brief Gives back the edge maps for the given section.
2517 /// Gives back the edge maps for the given section.
2518 /// \note It is synonym of \c arcMapNames().
2519 const std::vector<std::string>& edgeMapNames(int i) const {
2520 return _edge_maps[i];
2525 /// \name Attribute sections
2528 /// \brief Gives back the number of attribute sections in the file.
2530 /// Gives back the number of attribute sections in the file.
2531 int attributeSectionNum() const {
2532 return _attribute_sections.size();
2535 /// \brief Returns the attribute section name at the given position.
2537 /// Returns the attribute section name at the given position.
2538 const std::string& attributeSectionNames(int i) const {
2539 return _attribute_sections[i];
2542 /// \brief Gives back the attributes for the given section.
2544 /// Gives back the attributes for the given section.
2545 const std::vector<std::string>& attributes(int i) const {
2546 return _attributes[i];
2551 /// \name Extra sections
2554 /// \brief Gives back the number of extra sections in the file.
2556 /// Gives back the number of extra sections in the file.
2557 int extraSectionNum() const {
2558 return _extra_sections.size();
2561 /// \brief Returns the extra section type at the given position.
2563 /// Returns the section type at the given position.
2564 const std::string& extraSection(int i) const {
2565 return _extra_sections[i];
2574 while(++line_num, std::getline(*_is, str)) {
2575 line.clear(); line.str(str);
2577 if (line >> std::ws >> c && c != '#') {
2585 bool readSuccess() {
2586 return static_cast<bool>(*_is);
2589 void skipSection() {
2591 while (readSuccess() && line >> c && c != '@') {
2594 if (readSuccess()) {
2599 void readMaps(std::vector<std::string>& maps) {
2601 if (!readLine() || !(line >> c) || c == '@') {
2602 if (readSuccess() && line) line.putback(c);
2607 while (_reader_bits::readToken(line, map)) {
2608 maps.push_back(map);
2612 void readAttributes(std::vector<std::string>& attrs) {
2615 while (readSuccess() && line >> c && c != '@') {
2618 _reader_bits::readToken(line, attr);
2619 attrs.push_back(attr);
2627 /// \name Execution of the contents reader
2630 /// \brief Starts the reading
2632 /// This function starts the reading.
2638 while (readSuccess()) {
2643 std::string section, caption;
2644 _reader_bits::readToken(line, section);
2645 _reader_bits::readToken(line, caption);
2647 if (section == "nodes") {
2648 _node_sections.push_back(caption);
2649 _node_maps.push_back(std::vector<std::string>());
2650 readMaps(_node_maps.back());
2651 readLine(); skipSection();
2652 } else if (section == "arcs" || section == "edges") {
2653 _edge_sections.push_back(caption);
2654 _arc_sections.push_back(section == "arcs");
2655 _edge_maps.push_back(std::vector<std::string>());
2656 readMaps(_edge_maps.back());
2657 readLine(); skipSection();
2658 } else if (section == "attributes") {
2659 _attribute_sections.push_back(caption);
2660 _attributes.push_back(std::vector<std::string>());
2661 readAttributes(_attributes.back());
2663 _extra_sections.push_back(section);
2664 readLine(); skipSection();