Fix bug caused by m4 consuming pairs of square brackets (#108).
3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2008
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 Lemon Graph Format reader.
24 #ifndef LEMON_LGF_READER_H
25 #define LEMON_LGF_READER_H
34 #include <lemon/assert.h>
35 #include <lemon/graph_utils.h>
37 #include <lemon/lgf_writer.h>
39 #include <lemon/concept_check.h>
40 #include <lemon/concepts/maps.h>
44 namespace _reader_bits {
46 template <typename Value>
47 struct DefaultConverter {
48 Value operator()(const std::string& str) {
49 std::istringstream is(str);
54 if (is >> std::ws >> c) {
55 throw DataFormatError("Remaining characters in token");
62 struct DefaultConverter<std::string> {
63 std::string operator()(const std::string& str) {
68 template <typename _Item>
69 class MapStorageBase {
75 virtual ~MapStorageBase() {}
77 virtual void set(const Item& item, const std::string& value) = 0;
81 template <typename _Item, typename _Map,
82 typename _Converter = DefaultConverter<typename _Map::Value> >
83 class MapStorage : public MapStorageBase<_Item> {
86 typedef _Converter Converter;
94 MapStorage(Map& map, const Converter& converter = Converter())
95 : _map(map), _converter(converter) {}
96 virtual ~MapStorage() {}
98 virtual void set(const Item& item ,const std::string& value) {
99 _map.set(item, _converter(value));
103 template <typename _Graph, bool _dir, typename _Map,
104 typename _Converter = DefaultConverter<typename _Map::Value> >
105 class GraphArcMapStorage : public MapStorageBase<typename _Graph::Edge> {
108 typedef _Converter Converter;
109 typedef _Graph Graph;
110 typedef typename Graph::Edge Item;
111 static const bool dir = _dir;
116 Converter _converter;
119 GraphArcMapStorage(const Graph& graph, Map& map,
120 const Converter& converter = Converter())
121 : _graph(graph), _map(map), _converter(converter) {}
122 virtual ~GraphArcMapStorage() {}
124 virtual void set(const Item& item ,const std::string& value) {
125 _map.set(_graph.direct(item, dir), _converter(value));
129 class ValueStorageBase {
131 ValueStorageBase() {}
132 virtual ~ValueStorageBase() {}
134 virtual void set(const std::string&) = 0;
137 template <typename _Value, typename _Converter = DefaultConverter<_Value> >
138 class ValueStorage : public ValueStorageBase {
140 typedef _Value Value;
141 typedef _Converter Converter;
145 Converter _converter;
148 ValueStorage(Value& value, const Converter& converter = Converter())
149 : _value(value), _converter(converter) {}
151 virtual void set(const std::string& value) {
152 _value = _converter(value);
156 template <typename Value>
157 struct MapLookUpConverter {
158 const std::map<std::string, Value>& _map;
160 MapLookUpConverter(const std::map<std::string, Value>& map)
163 Value operator()(const std::string& str) {
164 typename std::map<std::string, Value>::const_iterator it =
166 if (it == _map.end()) {
167 std::ostringstream msg;
168 msg << "Item not found: " << str;
169 throw DataFormatError(msg.str().c_str());
175 template <typename Graph>
176 struct GraphArcLookUpConverter {
178 const std::map<std::string, typename Graph::Edge>& _map;
180 GraphArcLookUpConverter(const Graph& graph,
181 const std::map<std::string,
182 typename Graph::Edge>& map)
183 : _graph(graph), _map(map) {}
185 typename Graph::Arc operator()(const std::string& str) {
186 if (str.empty() || (str[0] != '+' && str[0] != '-')) {
187 throw DataFormatError("Item must start with '+' or '-'");
189 typename std::map<std::string, typename Graph::Edge>
190 ::const_iterator it = _map.find(str.substr(1));
191 if (it == _map.end()) {
192 throw DataFormatError("Item not found");
194 return _graph.direct(it->second, str[0] == '+');
198 bool isWhiteSpace(char c) {
199 return c == ' ' || c == '\t' || c == '\v' ||
200 c == '\n' || c == '\r' || c == '\f';
204 return '0' <= c && c <='7';
207 int valueOct(char c) {
208 LEMON_ASSERT(isOct(c), "The character is not octal.");
213 return ('0' <= c && c <= '9') ||
214 ('a' <= c && c <= 'z') ||
215 ('A' <= c && c <= 'Z');
218 int valueHex(char c) {
219 LEMON_ASSERT(isHex(c), "The character is not hexadecimal.");
220 if ('0' <= c && c <= '9') return c - '0';
221 if ('a' <= c && c <= 'z') return c - 'a' + 10;
225 bool isIdentifierFirstChar(char c) {
226 return ('a' <= c && c <= 'z') ||
227 ('A' <= c && c <= 'Z') || c == '_';
230 bool isIdentifierChar(char c) {
231 return isIdentifierFirstChar(c) ||
232 ('0' <= c && c <= '9');
235 char readEscape(std::istream& is) {
238 throw DataFormatError("Escape format error");
266 if (!is.get(c) || !isHex(c))
267 throw DataFormatError("Escape format error");
268 else if (code = valueHex(c), !is.get(c) || !isHex(c)) is.putback(c);
269 else code = code * 16 + valueHex(c);
276 throw DataFormatError("Escape format error");
277 else if (code = valueOct(c), !is.get(c) || !isOct(c))
279 else if (code = code * 8 + valueOct(c), !is.get(c) || !isOct(c))
281 else code = code * 8 + valueOct(c);
287 std::istream& readToken(std::istream& is, std::string& str) {
288 std::ostringstream os;
297 while (is.get(c) && c != '\"') {
303 throw DataFormatError("Quoted format error");
306 while (is.get(c) && !isWhiteSpace(c)) {
323 virtual ~Section() {}
324 virtual void process(std::istream& is, int& line_num) = 0;
327 template <typename Functor>
328 class LineSection : public Section {
335 LineSection(const Functor& functor) : _functor(functor) {}
336 virtual ~LineSection() {}
338 virtual void process(std::istream& is, int& line_num) {
341 while (is.get(c) && c != '@') {
344 } else if (c == '#') {
347 } else if (!isWhiteSpace(c)) {
354 if (is) is.putback(c);
355 else if (is.eof()) is.clear();
359 template <typename Functor>
360 class StreamSection : public Section {
367 StreamSection(const Functor& functor) : _functor(functor) {}
368 virtual ~StreamSection() {}
370 virtual void process(std::istream& is, int& line_num) {
371 _functor(is, line_num);
374 while (is.get(c) && c != '@') {
377 } else if (!isWhiteSpace(c)) {
382 if (is) is.putback(c);
383 else if (is.eof()) is.clear();
389 /// \ingroup lemon_io
391 /// \brief LGF reader for directed graphs
393 /// This utility reads an \ref lgf-format "LGF" file.
395 /// The reading method does a batch processing. The user creates a
396 /// reader object, then various reading rules can be added to the
397 /// reader, and eventually the reading is executed with the \c run()
398 /// member function. A map reading rule can be added to the reader
399 /// with the \c nodeMap() or \c arcMap() members. An optional
400 /// converter parameter can also be added as a standard functor
401 /// converting from std::string to the value type of the map. If it
402 /// is set, it will determine how the tokens in the file should be
403 /// is converted to the map's value type. If the functor is not set,
404 /// then a default conversion will be used. One map can be read into
405 /// multiple map objects at the same time. The \c attribute(), \c
406 /// node() and \c arc() functions are used to add attribute reading
410 /// DigraphReader<Digraph>(std::cin, digraph).
411 /// nodeMap("coordinates", coord_map).
412 /// arcMap("capacity", cap_map).
413 /// node("source", src).
414 /// node("target", trg).
415 /// attribute("caption", caption).
419 /// By default the reader uses the first section in the file of the
420 /// proper type. If a section has an optional name, then it can be
421 /// selected for reading by giving an optional name parameter to the
422 /// \c nodes(), \c arcs() or \c attributes() functions. The readers
423 /// also can load extra sections with the \c sectionLines() and
424 /// sectionStream() functions.
426 /// The \c useNodes() and \c useArcs() functions are used to tell the reader
427 /// that the nodes or arcs should not be constructed (added to the
428 /// graph) during the reading, but instead the label map of the items
429 /// are given as a parameter of these functions. An
430 /// application of these function is multipass reading, which is
431 /// important if two \e \@arcs sections must be read from the
432 /// file. In this example the first phase would read the node set and one
433 /// of the arc sets, while the second phase would read the second arc
434 /// set into an \e ArcSet class (\c SmartArcSet or \c ListArcSet).
435 /// The previously read label node map should be passed to the \c
436 /// useNodes() functions. Another application of multipass reading when
437 /// paths are given as a node map or an arc map. It is impossible read this in
438 /// a single pass, because the arcs are not constructed when the node
440 template <typename _Digraph>
441 class DigraphReader {
444 typedef _Digraph Digraph;
445 TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
455 std::string _nodes_caption;
456 std::string _arcs_caption;
457 std::string _attributes_caption;
459 typedef std::map<std::string, Node> NodeIndex;
460 NodeIndex _node_index;
461 typedef std::map<std::string, Arc> ArcIndex;
464 typedef std::vector<std::pair<std::string,
465 _reader_bits::MapStorageBase<Node>*> > NodeMaps;
468 typedef std::vector<std::pair<std::string,
469 _reader_bits::MapStorageBase<Arc>*> >ArcMaps;
472 typedef std::multimap<std::string, _reader_bits::ValueStorageBase*>
474 Attributes _attributes;
476 typedef std::map<std::string, _reader_bits::Section*> Sections;
483 std::istringstream line;
487 /// \brief Constructor
489 /// Construct a directed graph reader, which reads from the given
491 DigraphReader(std::istream& is, Digraph& digraph)
492 : _is(&is), local_is(false), _digraph(digraph),
493 _use_nodes(false), _use_arcs(false) {}
495 /// \brief Constructor
497 /// Construct a directed graph reader, which reads from the given
499 DigraphReader(const std::string& fn, Digraph& digraph)
500 : _is(new std::ifstream(fn.c_str())), local_is(true), _digraph(digraph),
501 _use_nodes(false), _use_arcs(false) {}
503 /// \brief Constructor
505 /// Construct a directed graph reader, which reads from the given
507 DigraphReader(const char* fn, Digraph& digraph)
508 : _is(new std::ifstream(fn)), local_is(true), _digraph(digraph),
509 _use_nodes(false), _use_arcs(false) {}
511 /// \brief Copy constructor
513 /// The copy constructor transfers all data from the other reader,
514 /// therefore the copied reader will not be usable more.
515 DigraphReader(DigraphReader& other)
516 : _is(other._is), local_is(other.local_is), _digraph(other._digraph),
517 _use_nodes(other._use_nodes), _use_arcs(other._use_arcs) {
520 other.local_is = false;
522 _node_index.swap(other._node_index);
523 _arc_index.swap(other._arc_index);
525 _node_maps.swap(other._node_maps);
526 _arc_maps.swap(other._arc_maps);
527 _attributes.swap(other._attributes);
529 _nodes_caption = other._nodes_caption;
530 _arcs_caption = other._arcs_caption;
531 _attributes_caption = other._attributes_caption;
533 _sections.swap(other._sections);
536 /// \brief Destructor
538 for (typename NodeMaps::iterator it = _node_maps.begin();
539 it != _node_maps.end(); ++it) {
543 for (typename ArcMaps::iterator it = _arc_maps.begin();
544 it != _arc_maps.end(); ++it) {
548 for (typename Attributes::iterator it = _attributes.begin();
549 it != _attributes.end(); ++it) {
553 for (typename Sections::iterator it = _sections.begin();
554 it != _sections.end(); ++it) {
566 DigraphReader& operator=(const DigraphReader&);
570 /// \name Reading rules
573 /// \brief Node map reading rule
575 /// Add a node map reading rule to the reader.
576 template <typename Map>
577 DigraphReader& nodeMap(const std::string& caption, Map& map) {
578 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
579 _reader_bits::MapStorageBase<Node>* storage =
580 new _reader_bits::MapStorage<Node, Map>(map);
581 _node_maps.push_back(std::make_pair(caption, storage));
585 /// \brief Node map reading rule
587 /// Add a node map reading rule with specialized converter to the
589 template <typename Map, typename Converter>
590 DigraphReader& nodeMap(const std::string& caption, Map& map,
591 const Converter& converter = Converter()) {
592 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
593 _reader_bits::MapStorageBase<Node>* storage =
594 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
595 _node_maps.push_back(std::make_pair(caption, storage));
599 /// \brief Arc map reading rule
601 /// Add an arc map reading rule to the reader.
602 template <typename Map>
603 DigraphReader& arcMap(const std::string& caption, Map& map) {
604 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
605 _reader_bits::MapStorageBase<Arc>* storage =
606 new _reader_bits::MapStorage<Arc, Map>(map);
607 _arc_maps.push_back(std::make_pair(caption, storage));
611 /// \brief Arc map reading rule
613 /// Add an arc map reading rule with specialized converter to the
615 template <typename Map, typename Converter>
616 DigraphReader& arcMap(const std::string& caption, Map& map,
617 const Converter& converter = Converter()) {
618 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
619 _reader_bits::MapStorageBase<Arc>* storage =
620 new _reader_bits::MapStorage<Arc, Map, Converter>(map, converter);
621 _arc_maps.push_back(std::make_pair(caption, storage));
625 /// \brief Attribute reading rule
627 /// Add an attribute reading rule to the reader.
628 template <typename Value>
629 DigraphReader& attribute(const std::string& caption, Value& value) {
630 _reader_bits::ValueStorageBase* storage =
631 new _reader_bits::ValueStorage<Value>(value);
632 _attributes.insert(std::make_pair(caption, storage));
636 /// \brief Attribute reading rule
638 /// Add an attribute reading rule with specialized converter to the
640 template <typename Value, typename Converter>
641 DigraphReader& attribute(const std::string& caption, Value& value,
642 const Converter& converter = Converter()) {
643 _reader_bits::ValueStorageBase* storage =
644 new _reader_bits::ValueStorage<Value, Converter>(value, converter);
645 _attributes.insert(std::make_pair(caption, storage));
649 /// \brief Node reading rule
651 /// Add a node reading rule to reader.
652 DigraphReader& node(const std::string& caption, Node& node) {
653 typedef _reader_bits::MapLookUpConverter<Node> Converter;
654 Converter converter(_node_index);
655 _reader_bits::ValueStorageBase* storage =
656 new _reader_bits::ValueStorage<Node, Converter>(node, converter);
657 _attributes.insert(std::make_pair(caption, storage));
661 /// \brief Arc reading rule
663 /// Add an arc reading rule to reader.
664 DigraphReader& arc(const std::string& caption, Arc& arc) {
665 typedef _reader_bits::MapLookUpConverter<Arc> Converter;
666 Converter converter(_arc_index);
667 _reader_bits::ValueStorageBase* storage =
668 new _reader_bits::ValueStorage<Arc, Converter>(arc, converter);
669 _attributes.insert(std::make_pair(caption, storage));
675 /// \name Select section by name
678 /// \brief Set \c \@nodes section to be read
680 /// Set \c \@nodes section to be read
681 DigraphReader& nodes(const std::string& caption) {
682 _nodes_caption = caption;
686 /// \brief Set \c \@arcs section to be read
688 /// Set \c \@arcs section to be read
689 DigraphReader& arcs(const std::string& caption) {
690 _arcs_caption = caption;
694 /// \brief Set \c \@attributes section to be read
696 /// Set \c \@attributes section to be read
697 DigraphReader& attributes(const std::string& caption) {
698 _attributes_caption = caption;
704 /// \name Section readers
707 /// \brief Add a section processor with line oriented reading
709 /// In the \e LGF file extra sections can be placed, which contain
710 /// any data in arbitrary format. These sections can be read with
711 /// this function line by line. The first parameter is the type
712 /// descriptor of the section, the second is a functor, which
713 /// takes just one \c std::string parameter. At the reading
714 /// process, each line of the section will be given to the functor
715 /// object. However, the empty lines and the comment lines are
716 /// filtered out, and the leading whitespaces are stipped from
717 /// each processed string.
719 /// For example let's see a section, which contain several
720 /// integers, which should be inserted into a vector.
728 /// The functor is implemented as an struct:
730 /// struct NumberSection {
731 /// std::vector<int>& _data;
732 /// NumberSection(std::vector<int>& data) : _data(data) {}
733 /// void operator()(const std::string& line) {
734 /// std::istringstream ls(line);
736 /// while (ls >> value) _data.push_back(value);
742 /// reader.sectionLines("numbers", NumberSection(vec));
744 template <typename Functor>
745 DigraphReader& sectionLines(const std::string& type, Functor functor) {
746 LEMON_ASSERT(!type.empty(), "Type is not empty.");
747 LEMON_ASSERT(_sections.find(type) == _sections.end(),
748 "Multiple reading of section.");
749 LEMON_ASSERT(type != "nodes" && type != "arcs" && type != "edges" &&
750 type != "attributes", "Multiple reading of section.");
751 _sections.insert(std::make_pair(type,
752 new _reader_bits::LineSection<Functor>(functor)));
757 /// \brief Add a section processor with stream oriented reading
759 /// In the \e LGF file extra sections can be placed, which contain
760 /// any data in arbitrary format. These sections can be read
761 /// directly with this function. The first parameter is the type
762 /// of the section, the second is a functor, which takes an \c
763 /// std::istream& and an int& parameter, the latter regard to the
764 /// line number of stream. The functor can read the input while
765 /// the section go on, and the line number should be modified
767 template <typename Functor>
768 DigraphReader& sectionStream(const std::string& type, Functor functor) {
769 LEMON_ASSERT(!type.empty(), "Type is not empty.");
770 LEMON_ASSERT(_sections.find(type) == _sections.end(),
771 "Multiple reading of section.");
772 LEMON_ASSERT(type != "nodes" && type != "arcs" && type != "edges" &&
773 type != "attributes", "Multiple reading of section.");
774 _sections.insert(std::make_pair(type,
775 new _reader_bits::StreamSection<Functor>(functor)));
781 /// \name Using previously constructed node or arc set
784 /// \brief Use previously constructed node set
786 /// Use previously constructed node set, and specify the node
788 template <typename Map>
789 DigraphReader& useNodes(const Map& map) {
790 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
791 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
793 _writer_bits::DefaultConverter<typename Map::Value> converter;
794 for (NodeIt n(_digraph); n != INVALID; ++n) {
795 _node_index.insert(std::make_pair(converter(map[n]), n));
800 /// \brief Use previously constructed node set
802 /// Use previously constructed node set, and specify the node
803 /// label map and a functor which converts the label map values to
805 template <typename Map, typename Converter>
806 DigraphReader& useNodes(const Map& map,
807 const Converter& converter = Converter()) {
808 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
809 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
811 for (NodeIt n(_digraph); n != INVALID; ++n) {
812 _node_index.insert(std::make_pair(converter(map[n]), n));
817 /// \brief Use previously constructed arc set
819 /// Use previously constructed arc set, and specify the arc
821 template <typename Map>
822 DigraphReader& useArcs(const Map& map) {
823 checkConcept<concepts::ReadMap<Arc, typename Map::Value>, Map>();
824 LEMON_ASSERT(!_use_arcs, "Multiple usage of useArcs() member");
826 _writer_bits::DefaultConverter<typename Map::Value> converter;
827 for (ArcIt a(_digraph); a != INVALID; ++a) {
828 _arc_index.insert(std::make_pair(converter(map[a]), a));
833 /// \brief Use previously constructed arc set
835 /// Use previously constructed arc set, and specify the arc
836 /// label map and a functor which converts the label map values to
838 template <typename Map, typename Converter>
839 DigraphReader& useArcs(const Map& map,
840 const Converter& converter = Converter()) {
841 checkConcept<concepts::ReadMap<Arc, typename Map::Value>, Map>();
842 LEMON_ASSERT(!_use_arcs, "Multiple usage of useArcs() member");
844 for (ArcIt a(_digraph); a != INVALID; ++a) {
845 _arc_index.insert(std::make_pair(converter(map[a]), a));
856 while(++line_num, std::getline(*_is, str)) {
857 line.clear(); line.str(str);
859 if (line >> std::ws >> c && c != '#') {
868 return static_cast<bool>(*_is);
873 while (readSuccess() && line >> c && c != '@') {
881 std::vector<int> map_index(_node_maps.size());
882 int map_num, label_index;
885 if (!readLine() || !(line >> c) || c == '@') {
886 if (readSuccess() && line) line.putback(c);
887 if (!_node_maps.empty())
888 throw DataFormatError("Cannot find map names");
894 std::map<std::string, int> maps;
898 while (_reader_bits::readToken(line, map)) {
899 if (maps.find(map) != maps.end()) {
900 std::ostringstream msg;
901 msg << "Multiple occurence of node map: " << map;
902 throw DataFormatError(msg.str().c_str());
904 maps.insert(std::make_pair(map, index));
908 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
909 std::map<std::string, int>::iterator jt =
910 maps.find(_node_maps[i].first);
911 if (jt == maps.end()) {
912 std::ostringstream msg;
913 msg << "Map not found in file: " << _node_maps[i].first;
914 throw DataFormatError(msg.str().c_str());
916 map_index[i] = jt->second;
920 std::map<std::string, int>::iterator jt = maps.find("label");
921 if (jt != maps.end()) {
922 label_index = jt->second;
927 map_num = maps.size();
930 while (readLine() && line >> c && c != '@') {
933 std::vector<std::string> tokens(map_num);
934 for (int i = 0; i < map_num; ++i) {
935 if (!_reader_bits::readToken(line, tokens[i])) {
936 std::ostringstream msg;
937 msg << "Column not found (" << i + 1 << ")";
938 throw DataFormatError(msg.str().c_str());
941 if (line >> std::ws >> c)
942 throw DataFormatError("Extra character on the end of line");
946 n = _digraph.addNode();
947 if (label_index != -1)
948 _node_index.insert(std::make_pair(tokens[label_index], n));
950 if (label_index == -1)
951 throw DataFormatError("Label map not found in file");
952 typename std::map<std::string, Node>::iterator it =
953 _node_index.find(tokens[label_index]);
954 if (it == _node_index.end()) {
955 std::ostringstream msg;
956 msg << "Node with label not found: " << tokens[label_index];
957 throw DataFormatError(msg.str().c_str());
962 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
963 _node_maps[i].second->set(n, tokens[map_index[i]]);
974 std::vector<int> map_index(_arc_maps.size());
975 int map_num, label_index;
978 if (!readLine() || !(line >> c) || c == '@') {
979 if (readSuccess() && line) line.putback(c);
980 if (!_arc_maps.empty())
981 throw DataFormatError("Cannot find map names");
987 std::map<std::string, int> maps;
991 while (_reader_bits::readToken(line, map)) {
992 if (maps.find(map) != maps.end()) {
993 std::ostringstream msg;
994 msg << "Multiple occurence of arc map: " << map;
995 throw DataFormatError(msg.str().c_str());
997 maps.insert(std::make_pair(map, index));
1001 for (int i = 0; i < static_cast<int>(_arc_maps.size()); ++i) {
1002 std::map<std::string, int>::iterator jt =
1003 maps.find(_arc_maps[i].first);
1004 if (jt == maps.end()) {
1005 std::ostringstream msg;
1006 msg << "Map not found in file: " << _arc_maps[i].first;
1007 throw DataFormatError(msg.str().c_str());
1009 map_index[i] = jt->second;
1013 std::map<std::string, int>::iterator jt = maps.find("label");
1014 if (jt != maps.end()) {
1015 label_index = jt->second;
1020 map_num = maps.size();
1023 while (readLine() && line >> c && c != '@') {
1026 std::string source_token;
1027 std::string target_token;
1029 if (!_reader_bits::readToken(line, source_token))
1030 throw DataFormatError("Source not found");
1032 if (!_reader_bits::readToken(line, target_token))
1033 throw DataFormatError("Target not found");
1035 std::vector<std::string> tokens(map_num);
1036 for (int i = 0; i < map_num; ++i) {
1037 if (!_reader_bits::readToken(line, tokens[i])) {
1038 std::ostringstream msg;
1039 msg << "Column not found (" << i + 1 << ")";
1040 throw DataFormatError(msg.str().c_str());
1043 if (line >> std::ws >> c)
1044 throw DataFormatError("Extra character on the end of line");
1049 typename NodeIndex::iterator it;
1051 it = _node_index.find(source_token);
1052 if (it == _node_index.end()) {
1053 std::ostringstream msg;
1054 msg << "Item not found: " << source_token;
1055 throw DataFormatError(msg.str().c_str());
1057 Node source = it->second;
1059 it = _node_index.find(target_token);
1060 if (it == _node_index.end()) {
1061 std::ostringstream msg;
1062 msg << "Item not found: " << target_token;
1063 throw DataFormatError(msg.str().c_str());
1065 Node target = it->second;
1067 a = _digraph.addArc(source, target);
1068 if (label_index != -1)
1069 _arc_index.insert(std::make_pair(tokens[label_index], a));
1071 if (label_index == -1)
1072 throw DataFormatError("Label map not found in file");
1073 typename std::map<std::string, Arc>::iterator it =
1074 _arc_index.find(tokens[label_index]);
1075 if (it == _arc_index.end()) {
1076 std::ostringstream msg;
1077 msg << "Arc with label not found: " << tokens[label_index];
1078 throw DataFormatError(msg.str().c_str());
1083 for (int i = 0; i < static_cast<int>(_arc_maps.size()); ++i) {
1084 _arc_maps[i].second->set(a, tokens[map_index[i]]);
1088 if (readSuccess()) {
1093 void readAttributes() {
1095 std::set<std::string> read_attr;
1098 while (readLine() && line >> c && c != '@') {
1101 std::string attr, token;
1102 if (!_reader_bits::readToken(line, attr))
1103 throw DataFormatError("Attribute name not found");
1104 if (!_reader_bits::readToken(line, token))
1105 throw DataFormatError("Attribute value not found");
1107 throw DataFormatError("Extra character on the end of line");
1110 std::set<std::string>::iterator it = read_attr.find(attr);
1111 if (it != read_attr.end()) {
1112 std::ostringstream msg;
1113 msg << "Multiple occurence of attribute " << attr;
1114 throw DataFormatError(msg.str().c_str());
1116 read_attr.insert(attr);
1120 typename Attributes::iterator it = _attributes.lower_bound(attr);
1121 while (it != _attributes.end() && it->first == attr) {
1122 it->second->set(token);
1128 if (readSuccess()) {
1131 for (typename Attributes::iterator it = _attributes.begin();
1132 it != _attributes.end(); ++it) {
1133 if (read_attr.find(it->first) == read_attr.end()) {
1134 std::ostringstream msg;
1135 msg << "Attribute not found in file: " << it->first;
1136 throw DataFormatError(msg.str().c_str());
1143 /// \name Execution of the reader
1146 /// \brief Start the batch processing
1148 /// This function starts the batch processing
1150 LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
1152 throw DataFormatError("Cannot find file");
1155 bool nodes_done = false;
1156 bool arcs_done = false;
1157 bool attributes_done = false;
1158 std::set<std::string> extra_sections;
1164 while (readSuccess()) {
1167 std::string section, caption;
1169 _reader_bits::readToken(line, section);
1170 _reader_bits::readToken(line, caption);
1173 throw DataFormatError("Extra character on the end of line");
1175 if (section == "nodes" && !nodes_done) {
1176 if (_nodes_caption.empty() || _nodes_caption == caption) {
1180 } else if ((section == "arcs" || section == "edges") &&
1182 if (_arcs_caption.empty() || _arcs_caption == caption) {
1186 } else if (section == "attributes" && !attributes_done) {
1187 if (_attributes_caption.empty() || _attributes_caption == caption) {
1189 attributes_done = true;
1192 if (extra_sections.find(section) != extra_sections.end()) {
1193 std::ostringstream msg;
1194 msg << "Multiple occurence of section " << section;
1195 throw DataFormatError(msg.str().c_str());
1197 Sections::iterator it = _sections.find(section);
1198 if (it != _sections.end()) {
1199 extra_sections.insert(section);
1200 it->second->process(*_is, line_num);
1205 } catch (DataFormatError& error) {
1206 error.line(line_num);
1212 throw DataFormatError("Section @nodes not found");
1216 throw DataFormatError("Section @arcs not found");
1219 if (!attributes_done && !_attributes.empty()) {
1220 throw DataFormatError("Section @attributes not found");
1229 /// \relates DigraphReader
1230 template <typename Digraph>
1231 DigraphReader<Digraph> digraphReader(std::istream& is, Digraph& digraph) {
1232 DigraphReader<Digraph> tmp(is, digraph);
1236 /// \relates DigraphReader
1237 template <typename Digraph>
1238 DigraphReader<Digraph> digraphReader(const std::string& fn,
1240 DigraphReader<Digraph> tmp(fn, digraph);
1244 /// \relates DigraphReader
1245 template <typename Digraph>
1246 DigraphReader<Digraph> digraphReader(const char* fn, Digraph& digraph) {
1247 DigraphReader<Digraph> tmp(fn, digraph);
1251 /// \ingroup lemon_io
1253 /// \brief LGF reader for undirected graphs
1255 /// This utility reads an \ref lgf-format "LGF" file.
1256 template <typename _Graph>
1260 typedef _Graph Graph;
1261 TEMPLATE_GRAPH_TYPEDEFS(Graph);
1271 std::string _nodes_caption;
1272 std::string _edges_caption;
1273 std::string _attributes_caption;
1275 typedef std::map<std::string, Node> NodeIndex;
1276 NodeIndex _node_index;
1277 typedef std::map<std::string, Edge> EdgeIndex;
1278 EdgeIndex _edge_index;
1280 typedef std::vector<std::pair<std::string,
1281 _reader_bits::MapStorageBase<Node>*> > NodeMaps;
1282 NodeMaps _node_maps;
1284 typedef std::vector<std::pair<std::string,
1285 _reader_bits::MapStorageBase<Edge>*> > EdgeMaps;
1286 EdgeMaps _edge_maps;
1288 typedef std::multimap<std::string, _reader_bits::ValueStorageBase*>
1290 Attributes _attributes;
1292 typedef std::map<std::string, _reader_bits::Section*> Sections;
1299 std::istringstream line;
1303 /// \brief Constructor
1305 /// Construct a undirected graph reader, which reads from the given
1307 GraphReader(std::istream& is, Graph& graph)
1308 : _is(&is), local_is(false), _graph(graph),
1309 _use_nodes(false), _use_edges(false) {}
1311 /// \brief Constructor
1313 /// Construct a undirected graph reader, which reads from the given
1315 GraphReader(const std::string& fn, Graph& graph)
1316 : _is(new std::ifstream(fn.c_str())), local_is(true), _graph(graph),
1317 _use_nodes(false), _use_edges(false) {}
1319 /// \brief Constructor
1321 /// Construct a undirected graph reader, which reads from the given
1323 GraphReader(const char* fn, Graph& graph)
1324 : _is(new std::ifstream(fn)), local_is(true), _graph(graph),
1325 _use_nodes(false), _use_edges(false) {}
1327 /// \brief Copy constructor
1329 /// The copy constructor transfers all data from the other reader,
1330 /// therefore the copied reader will not be usable more.
1331 GraphReader(GraphReader& other)
1332 : _is(other._is), local_is(other.local_is), _graph(other._graph),
1333 _use_nodes(other._use_nodes), _use_edges(other._use_edges) {
1336 other.local_is = false;
1338 _node_index.swap(other._node_index);
1339 _edge_index.swap(other._edge_index);
1341 _node_maps.swap(other._node_maps);
1342 _edge_maps.swap(other._edge_maps);
1343 _attributes.swap(other._attributes);
1345 _nodes_caption = other._nodes_caption;
1346 _edges_caption = other._edges_caption;
1347 _attributes_caption = other._attributes_caption;
1349 _sections.swap(other._sections);
1352 /// \brief Destructor
1354 for (typename NodeMaps::iterator it = _node_maps.begin();
1355 it != _node_maps.end(); ++it) {
1359 for (typename EdgeMaps::iterator it = _edge_maps.begin();
1360 it != _edge_maps.end(); ++it) {
1364 for (typename Attributes::iterator it = _attributes.begin();
1365 it != _attributes.end(); ++it) {
1369 for (typename Sections::iterator it = _sections.begin();
1370 it != _sections.end(); ++it) {
1382 GraphReader& operator=(const GraphReader&);
1386 /// \name Reading rules
1389 /// \brief Node map reading rule
1391 /// Add a node map reading rule to the reader.
1392 template <typename Map>
1393 GraphReader& nodeMap(const std::string& caption, Map& map) {
1394 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
1395 _reader_bits::MapStorageBase<Node>* storage =
1396 new _reader_bits::MapStorage<Node, Map>(map);
1397 _node_maps.push_back(std::make_pair(caption, storage));
1401 /// \brief Node map reading rule
1403 /// Add a node map reading rule with specialized converter to the
1405 template <typename Map, typename Converter>
1406 GraphReader& nodeMap(const std::string& caption, Map& map,
1407 const Converter& converter = Converter()) {
1408 checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
1409 _reader_bits::MapStorageBase<Node>* storage =
1410 new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
1411 _node_maps.push_back(std::make_pair(caption, storage));
1415 /// \brief Edge map reading rule
1417 /// Add an edge map reading rule to the reader.
1418 template <typename Map>
1419 GraphReader& edgeMap(const std::string& caption, Map& map) {
1420 checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
1421 _reader_bits::MapStorageBase<Edge>* storage =
1422 new _reader_bits::MapStorage<Edge, Map>(map);
1423 _edge_maps.push_back(std::make_pair(caption, storage));
1427 /// \brief Edge map reading rule
1429 /// Add an edge map reading rule with specialized converter to the
1431 template <typename Map, typename Converter>
1432 GraphReader& edgeMap(const std::string& caption, Map& map,
1433 const Converter& converter = Converter()) {
1434 checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
1435 _reader_bits::MapStorageBase<Edge>* storage =
1436 new _reader_bits::MapStorage<Edge, Map, Converter>(map, converter);
1437 _edge_maps.push_back(std::make_pair(caption, storage));
1441 /// \brief Arc map reading rule
1443 /// Add an arc map reading rule to the reader.
1444 template <typename Map>
1445 GraphReader& arcMap(const std::string& caption, Map& map) {
1446 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
1447 _reader_bits::MapStorageBase<Edge>* forward_storage =
1448 new _reader_bits::GraphArcMapStorage<Graph, true, Map>(_graph, map);
1449 _edge_maps.push_back(std::make_pair('+' + caption, forward_storage));
1450 _reader_bits::MapStorageBase<Edge>* backward_storage =
1451 new _reader_bits::GraphArcMapStorage<Graph, false, Map>(_graph, map);
1452 _edge_maps.push_back(std::make_pair('-' + caption, backward_storage));
1456 /// \brief Arc map reading rule
1458 /// Add an arc map reading rule with specialized converter to the
1460 template <typename Map, typename Converter>
1461 GraphReader& arcMap(const std::string& caption, Map& map,
1462 const Converter& converter = Converter()) {
1463 checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
1464 _reader_bits::MapStorageBase<Edge>* forward_storage =
1465 new _reader_bits::GraphArcMapStorage<Graph, true, Map, Converter>
1466 (_graph, map, converter);
1467 _edge_maps.push_back(std::make_pair('+' + caption, forward_storage));
1468 _reader_bits::MapStorageBase<Edge>* backward_storage =
1469 new _reader_bits::GraphArcMapStorage<Graph, false, Map, Converter>
1470 (_graph, map, converter);
1471 _edge_maps.push_back(std::make_pair('-' + caption, backward_storage));
1475 /// \brief Attribute reading rule
1477 /// Add an attribute reading rule to the reader.
1478 template <typename Value>
1479 GraphReader& attribute(const std::string& caption, Value& value) {
1480 _reader_bits::ValueStorageBase* storage =
1481 new _reader_bits::ValueStorage<Value>(value);
1482 _attributes.insert(std::make_pair(caption, storage));
1486 /// \brief Attribute reading rule
1488 /// Add an attribute reading rule with specialized converter to the
1490 template <typename Value, typename Converter>
1491 GraphReader& attribute(const std::string& caption, Value& value,
1492 const Converter& converter = Converter()) {
1493 _reader_bits::ValueStorageBase* storage =
1494 new _reader_bits::ValueStorage<Value, Converter>(value, converter);
1495 _attributes.insert(std::make_pair(caption, storage));
1499 /// \brief Node reading rule
1501 /// Add a node reading rule to reader.
1502 GraphReader& node(const std::string& caption, Node& node) {
1503 typedef _reader_bits::MapLookUpConverter<Node> Converter;
1504 Converter converter(_node_index);
1505 _reader_bits::ValueStorageBase* storage =
1506 new _reader_bits::ValueStorage<Node, Converter>(node, converter);
1507 _attributes.insert(std::make_pair(caption, storage));
1511 /// \brief Edge reading rule
1513 /// Add an edge reading rule to reader.
1514 GraphReader& edge(const std::string& caption, Edge& edge) {
1515 typedef _reader_bits::MapLookUpConverter<Edge> Converter;
1516 Converter converter(_edge_index);
1517 _reader_bits::ValueStorageBase* storage =
1518 new _reader_bits::ValueStorage<Edge, Converter>(edge, converter);
1519 _attributes.insert(std::make_pair(caption, storage));
1523 /// \brief Arc reading rule
1525 /// Add an arc reading rule to reader.
1526 GraphReader& arc(const std::string& caption, Arc& arc) {
1527 typedef _reader_bits::GraphArcLookUpConverter<Graph> Converter;
1528 Converter converter(_graph, _edge_index);
1529 _reader_bits::ValueStorageBase* storage =
1530 new _reader_bits::ValueStorage<Arc, Converter>(arc, converter);
1531 _attributes.insert(std::make_pair(caption, storage));
1537 /// \name Select section by name
1540 /// \brief Set \c \@nodes section to be read
1542 /// Set \c \@nodes section to be read
1543 GraphReader& nodes(const std::string& caption) {
1544 _nodes_caption = caption;
1548 /// \brief Set \c \@edges section to be read
1550 /// Set \c \@edges section to be read
1551 GraphReader& edges(const std::string& caption) {
1552 _edges_caption = caption;
1556 /// \brief Set \c \@attributes section to be read
1558 /// Set \c \@attributes section to be read
1559 GraphReader& attributes(const std::string& caption) {
1560 _attributes_caption = caption;
1566 /// \name Section readers
1569 /// \brief Add a section processor with line oriented reading
1571 /// In the \e LGF file extra sections can be placed, which contain
1572 /// any data in arbitrary format. These sections can be read with
1573 /// this function line by line. The first parameter is the type
1574 /// descriptor of the section, the second is a functor, which
1575 /// takes just one \c std::string parameter. At the reading
1576 /// process, each line of the section will be given to the functor
1577 /// object. However, the empty lines and the comment lines are
1578 /// filtered out, and the leading whitespaces are stipped from
1579 /// each processed string.
1581 /// For example let's see a section, which contain several
1582 /// integers, which should be inserted into a vector.
1590 /// The functor is implemented as an struct:
1592 /// struct NumberSection {
1593 /// std::vector<int>& _data;
1594 /// NumberSection(std::vector<int>& data) : _data(data) {}
1595 /// void operator()(const std::string& line) {
1596 /// std::istringstream ls(line);
1598 /// while (ls >> value) _data.push_back(value);
1604 /// reader.sectionLines("numbers", NumberSection(vec));
1606 template <typename Functor>
1607 GraphReader& sectionLines(const std::string& type, Functor functor) {
1608 LEMON_ASSERT(!type.empty(), "Type is not empty.");
1609 LEMON_ASSERT(_sections.find(type) == _sections.end(),
1610 "Multiple reading of section.");
1611 LEMON_ASSERT(type != "nodes" && type != "arcs" && type != "edges" &&
1612 type != "attributes", "Multiple reading of section.");
1613 _sections.insert(std::make_pair(type,
1614 new _reader_bits::LineSection<Functor>(functor)));
1619 /// \brief Add a section processor with stream oriented reading
1621 /// In the \e LGF file extra sections can be placed, which contain
1622 /// any data in arbitrary format. These sections can be read
1623 /// directly with this function. The first parameter is the type
1624 /// of the section, the second is a functor, which takes an \c
1625 /// std::istream& and an int& parameter, the latter regard to the
1626 /// line number of stream. The functor can read the input while
1627 /// the section go on, and the line number should be modified
1629 template <typename Functor>
1630 GraphReader& sectionStream(const std::string& type, Functor functor) {
1631 LEMON_ASSERT(!type.empty(), "Type is not empty.");
1632 LEMON_ASSERT(_sections.find(type) == _sections.end(),
1633 "Multiple reading of section.");
1634 LEMON_ASSERT(type != "nodes" && type != "arcs" && type != "edges" &&
1635 type != "attributes", "Multiple reading of section.");
1636 _sections.insert(std::make_pair(type,
1637 new _reader_bits::StreamSection<Functor>(functor)));
1643 /// \name Using previously constructed node or edge set
1646 /// \brief Use previously constructed node set
1648 /// Use previously constructed node set, and specify the node
1650 template <typename Map>
1651 GraphReader& useNodes(const Map& map) {
1652 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
1653 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
1655 _writer_bits::DefaultConverter<typename Map::Value> converter;
1656 for (NodeIt n(_graph); n != INVALID; ++n) {
1657 _node_index.insert(std::make_pair(converter(map[n]), n));
1662 /// \brief Use previously constructed node set
1664 /// Use previously constructed node set, and specify the node
1665 /// label map and a functor which converts the label map values to
1667 template <typename Map, typename Converter>
1668 GraphReader& useNodes(const Map& map,
1669 const Converter& converter = Converter()) {
1670 checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
1671 LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
1673 for (NodeIt n(_graph); n != INVALID; ++n) {
1674 _node_index.insert(std::make_pair(converter(map[n]), n));
1679 /// \brief Use previously constructed edge set
1681 /// Use previously constructed edge set, and specify the edge
1683 template <typename Map>
1684 GraphReader& useEdges(const Map& map) {
1685 checkConcept<concepts::ReadMap<Edge, typename Map::Value>, Map>();
1686 LEMON_ASSERT(!_use_edges, "Multiple usage of useEdges() member");
1688 _writer_bits::DefaultConverter<typename Map::Value> converter;
1689 for (EdgeIt a(_graph); a != INVALID; ++a) {
1690 _edge_index.insert(std::make_pair(converter(map[a]), a));
1695 /// \brief Use previously constructed edge set
1697 /// Use previously constructed edge set, and specify the edge
1698 /// label map and a functor which converts the label map values to
1700 template <typename Map, typename Converter>
1701 GraphReader& useEdges(const Map& map,
1702 const Converter& converter = Converter()) {
1703 checkConcept<concepts::ReadMap<Edge, typename Map::Value>, Map>();
1704 LEMON_ASSERT(!_use_edges, "Multiple usage of useEdges() member");
1706 for (EdgeIt a(_graph); a != INVALID; ++a) {
1707 _edge_index.insert(std::make_pair(converter(map[a]), a));
1718 while(++line_num, std::getline(*_is, str)) {
1719 line.clear(); line.str(str);
1721 if (line >> std::ws >> c && c != '#') {
1729 bool readSuccess() {
1730 return static_cast<bool>(*_is);
1733 void skipSection() {
1735 while (readSuccess() && line >> c && c != '@') {
1743 std::vector<int> map_index(_node_maps.size());
1744 int map_num, label_index;
1747 if (!readLine() || !(line >> c) || c == '@') {
1748 if (readSuccess() && line) line.putback(c);
1749 if (!_node_maps.empty())
1750 throw DataFormatError("Cannot find map names");
1756 std::map<std::string, int> maps;
1760 while (_reader_bits::readToken(line, map)) {
1761 if (maps.find(map) != maps.end()) {
1762 std::ostringstream msg;
1763 msg << "Multiple occurence of node map: " << map;
1764 throw DataFormatError(msg.str().c_str());
1766 maps.insert(std::make_pair(map, index));
1770 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
1771 std::map<std::string, int>::iterator jt =
1772 maps.find(_node_maps[i].first);
1773 if (jt == maps.end()) {
1774 std::ostringstream msg;
1775 msg << "Map not found in file: " << _node_maps[i].first;
1776 throw DataFormatError(msg.str().c_str());
1778 map_index[i] = jt->second;
1782 std::map<std::string, int>::iterator jt = maps.find("label");
1783 if (jt != maps.end()) {
1784 label_index = jt->second;
1789 map_num = maps.size();
1792 while (readLine() && line >> c && c != '@') {
1795 std::vector<std::string> tokens(map_num);
1796 for (int i = 0; i < map_num; ++i) {
1797 if (!_reader_bits::readToken(line, tokens[i])) {
1798 std::ostringstream msg;
1799 msg << "Column not found (" << i + 1 << ")";
1800 throw DataFormatError(msg.str().c_str());
1803 if (line >> std::ws >> c)
1804 throw DataFormatError("Extra character on the end of line");
1808 n = _graph.addNode();
1809 if (label_index != -1)
1810 _node_index.insert(std::make_pair(tokens[label_index], n));
1812 if (label_index == -1)
1813 throw DataFormatError("Label map not found in file");
1814 typename std::map<std::string, Node>::iterator it =
1815 _node_index.find(tokens[label_index]);
1816 if (it == _node_index.end()) {
1817 std::ostringstream msg;
1818 msg << "Node with label not found: " << tokens[label_index];
1819 throw DataFormatError(msg.str().c_str());
1824 for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
1825 _node_maps[i].second->set(n, tokens[map_index[i]]);
1829 if (readSuccess()) {
1836 std::vector<int> map_index(_edge_maps.size());
1837 int map_num, label_index;
1840 if (!readLine() || !(line >> c) || c == '@') {
1841 if (readSuccess() && line) line.putback(c);
1842 if (!_edge_maps.empty())
1843 throw DataFormatError("Cannot find map names");
1849 std::map<std::string, int> maps;
1853 while (_reader_bits::readToken(line, map)) {
1854 if (maps.find(map) != maps.end()) {
1855 std::ostringstream msg;
1856 msg << "Multiple occurence of edge map: " << map;
1857 throw DataFormatError(msg.str().c_str());
1859 maps.insert(std::make_pair(map, index));
1863 for (int i = 0; i < static_cast<int>(_edge_maps.size()); ++i) {
1864 std::map<std::string, int>::iterator jt =
1865 maps.find(_edge_maps[i].first);
1866 if (jt == maps.end()) {
1867 std::ostringstream msg;
1868 msg << "Map not found in file: " << _edge_maps[i].first;
1869 throw DataFormatError(msg.str().c_str());
1871 map_index[i] = jt->second;
1875 std::map<std::string, int>::iterator jt = maps.find("label");
1876 if (jt != maps.end()) {
1877 label_index = jt->second;
1882 map_num = maps.size();
1885 while (readLine() && line >> c && c != '@') {
1888 std::string source_token;
1889 std::string target_token;
1891 if (!_reader_bits::readToken(line, source_token))
1892 throw DataFormatError("Node u not found");
1894 if (!_reader_bits::readToken(line, target_token))
1895 throw DataFormatError("Node v not found");
1897 std::vector<std::string> tokens(map_num);
1898 for (int i = 0; i < map_num; ++i) {
1899 if (!_reader_bits::readToken(line, tokens[i])) {
1900 std::ostringstream msg;
1901 msg << "Column not found (" << i + 1 << ")";
1902 throw DataFormatError(msg.str().c_str());
1905 if (line >> std::ws >> c)
1906 throw DataFormatError("Extra character on the end of line");
1911 typename NodeIndex::iterator it;
1913 it = _node_index.find(source_token);
1914 if (it == _node_index.end()) {
1915 std::ostringstream msg;
1916 msg << "Item not found: " << source_token;
1917 throw DataFormatError(msg.str().c_str());
1919 Node source = it->second;
1921 it = _node_index.find(target_token);
1922 if (it == _node_index.end()) {
1923 std::ostringstream msg;
1924 msg << "Item not found: " << target_token;
1925 throw DataFormatError(msg.str().c_str());
1927 Node target = it->second;
1929 e = _graph.addEdge(source, target);
1930 if (label_index != -1)
1931 _edge_index.insert(std::make_pair(tokens[label_index], e));
1933 if (label_index == -1)
1934 throw DataFormatError("Label map not found in file");
1935 typename std::map<std::string, Edge>::iterator it =
1936 _edge_index.find(tokens[label_index]);
1937 if (it == _edge_index.end()) {
1938 std::ostringstream msg;
1939 msg << "Edge with label not found: " << tokens[label_index];
1940 throw DataFormatError(msg.str().c_str());
1945 for (int i = 0; i < static_cast<int>(_edge_maps.size()); ++i) {
1946 _edge_maps[i].second->set(e, tokens[map_index[i]]);
1950 if (readSuccess()) {
1955 void readAttributes() {
1957 std::set<std::string> read_attr;
1960 while (readLine() && line >> c && c != '@') {
1963 std::string attr, token;
1964 if (!_reader_bits::readToken(line, attr))
1965 throw DataFormatError("Attribute name not found");
1966 if (!_reader_bits::readToken(line, token))
1967 throw DataFormatError("Attribute value not found");
1969 throw DataFormatError("Extra character on the end of line");
1972 std::set<std::string>::iterator it = read_attr.find(attr);
1973 if (it != read_attr.end()) {
1974 std::ostringstream msg;
1975 msg << "Multiple occurence of attribute " << attr;
1976 throw DataFormatError(msg.str().c_str());
1978 read_attr.insert(attr);
1982 typename Attributes::iterator it = _attributes.lower_bound(attr);
1983 while (it != _attributes.end() && it->first == attr) {
1984 it->second->set(token);
1990 if (readSuccess()) {
1993 for (typename Attributes::iterator it = _attributes.begin();
1994 it != _attributes.end(); ++it) {
1995 if (read_attr.find(it->first) == read_attr.end()) {
1996 std::ostringstream msg;
1997 msg << "Attribute not found in file: " << it->first;
1998 throw DataFormatError(msg.str().c_str());
2005 /// \name Execution of the reader
2008 /// \brief Start the batch processing
2010 /// This function starts the batch processing
2013 LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
2015 bool nodes_done = false;
2016 bool edges_done = false;
2017 bool attributes_done = false;
2018 std::set<std::string> extra_sections;
2024 while (readSuccess()) {
2027 std::string section, caption;
2029 _reader_bits::readToken(line, section);
2030 _reader_bits::readToken(line, caption);
2033 throw DataFormatError("Extra character on the end of line");
2035 if (section == "nodes" && !nodes_done) {
2036 if (_nodes_caption.empty() || _nodes_caption == caption) {
2040 } else if ((section == "edges" || section == "arcs") &&
2042 if (_edges_caption.empty() || _edges_caption == caption) {
2046 } else if (section == "attributes" && !attributes_done) {
2047 if (_attributes_caption.empty() || _attributes_caption == caption) {
2049 attributes_done = true;
2052 if (extra_sections.find(section) != extra_sections.end()) {
2053 std::ostringstream msg;
2054 msg << "Multiple occurence of section " << section;
2055 throw DataFormatError(msg.str().c_str());
2057 Sections::iterator it = _sections.find(section);
2058 if (it != _sections.end()) {
2059 extra_sections.insert(section);
2060 it->second->process(*_is, line_num);
2065 } catch (DataFormatError& error) {
2066 error.line(line_num);
2072 throw DataFormatError("Section @nodes not found");
2076 throw DataFormatError("Section @edges not found");
2079 if (!attributes_done && !_attributes.empty()) {
2080 throw DataFormatError("Section @attributes not found");
2089 /// \relates GraphReader
2090 template <typename Graph>
2091 GraphReader<Graph> graphReader(std::istream& is, Graph& graph) {
2092 GraphReader<Graph> tmp(is, graph);
2096 /// \relates GraphReader
2097 template <typename Graph>
2098 GraphReader<Graph> graphReader(const std::string& fn,
2100 GraphReader<Graph> tmp(fn, graph);
2104 /// \relates GraphReader
2105 template <typename Graph>
2106 GraphReader<Graph> graphReader(const char* fn, Graph& graph) {
2107 GraphReader<Graph> tmp(fn, graph);
2111 /// \ingroup lemon_io
2113 /// \brief Reader for the contents of the \ref lgf-format "LGF" file
2115 /// This class can be used to read the sections, the map names and
2116 /// the attributes from a file. Usually, the Lemon programs know
2117 /// that, which type of graph, which maps and which attributes
2118 /// should be read from a file, but in general tools (like glemon)
2119 /// the contents of an LGF file should be guessed somehow. This class
2120 /// reads the graph and stores the appropriate information for
2121 /// reading the graph.
2123 ///\code LgfContents contents("graph.lgf");
2126 /// // does it contain any node section and arc section
2127 /// if (contents.nodeSectionNum() == 0 || contents.arcSectionNum()) {
2128 /// std::cerr << "Failure, cannot find graph" << std::endl;
2131 /// std::cout << "The name of the default node section : "
2132 /// << contents.nodeSection(0) << std::endl;
2133 /// std::cout << "The number of the arc maps : "
2134 /// << contents.arcMaps(0).size() << std::endl;
2135 /// std::cout << "The name of second arc map : "
2136 /// << contents.arcMaps(0)[1] << std::endl;
2144 std::vector<std::string> _node_sections;
2145 std::vector<std::string> _edge_sections;
2146 std::vector<std::string> _attribute_sections;
2147 std::vector<std::string> _extra_sections;
2149 std::vector<bool> _arc_sections;
2151 std::vector<std::vector<std::string> > _node_maps;
2152 std::vector<std::vector<std::string> > _edge_maps;
2154 std::vector<std::vector<std::string> > _attributes;
2158 std::istringstream line;
2162 /// \brief Constructor
2164 /// Construct an \e LGF contents reader, which reads from the given
2166 LgfContents(std::istream& is)
2167 : _is(&is), local_is(false) {}
2169 /// \brief Constructor
2171 /// Construct an \e LGF contents reader, which reads from the given
2173 LgfContents(const std::string& fn)
2174 : _is(new std::ifstream(fn.c_str())), local_is(true) {}
2176 /// \brief Constructor
2178 /// Construct an \e LGF contents reader, which reads from the given
2180 LgfContents(const char* fn)
2181 : _is(new std::ifstream(fn)), local_is(true) {}
2183 /// \brief Copy constructor
2185 /// The copy constructor transfers all data from the other reader,
2186 /// therefore the copied reader will not be usable more.
2187 LgfContents(LgfContents& other)
2188 : _is(other._is), local_is(other.local_is) {
2191 other.local_is = false;
2193 _node_sections.swap(other._node_sections);
2194 _edge_sections.swap(other._edge_sections);
2195 _attribute_sections.swap(other._attribute_sections);
2196 _extra_sections.swap(other._extra_sections);
2198 _arc_sections.swap(other._arc_sections);
2200 _node_maps.swap(other._node_maps);
2201 _edge_maps.swap(other._edge_maps);
2202 _attributes.swap(other._attributes);
2205 /// \brief Destructor
2207 if (local_is) delete _is;
2211 /// \name Node sections
2214 /// \brief Gives back the number of node sections in the file.
2216 /// Gives back the number of node sections in the file.
2217 int nodeSectionNum() const {
2218 return _node_sections.size();
2221 /// \brief Returns the section name at the given position.
2223 /// Returns the section name at the given position.
2224 const std::string& nodeSection(int i) const {
2225 return _node_sections[i];
2228 /// \brief Gives back the node maps for the given section.
2230 /// Gives back the node maps for the given section.
2231 const std::vector<std::string>& nodeMapNames(int i) const {
2232 return _node_maps[i];
2237 /// \name Arc/Edge sections
2240 /// \brief Gives back the number of arc/edge sections in the file.
2242 /// Gives back the number of arc/edge sections in the file.
2243 /// \note It is synonym of \c edgeSectionNum().
2244 int arcSectionNum() const {
2245 return _edge_sections.size();
2248 /// \brief Returns the section name at the given position.
2250 /// Returns the section name at the given position.
2251 /// \note It is synonym of \c edgeSection().
2252 const std::string& arcSection(int i) const {
2253 return _edge_sections[i];
2256 /// \brief Gives back the arc/edge maps for the given section.
2258 /// Gives back the arc/edge maps for the given section.
2259 /// \note It is synonym of \c edgeMapNames().
2260 const std::vector<std::string>& arcMapNames(int i) const {
2261 return _edge_maps[i];
2269 /// \brief Gives back the number of arc/edge sections in the file.
2271 /// Gives back the number of arc/edge sections in the file.
2272 /// \note It is synonym of \c arcSectionNum().
2273 int edgeSectionNum() const {
2274 return _edge_sections.size();
2277 /// \brief Returns the section name at the given position.
2279 /// Returns the section name at the given position.
2280 /// \note It is synonym of \c arcSection().
2281 const std::string& edgeSection(int i) const {
2282 return _edge_sections[i];
2285 /// \brief Gives back the edge maps for the given section.
2287 /// Gives back the edge maps for the given section.
2288 /// \note It is synonym of \c arcMapNames().
2289 const std::vector<std::string>& edgeMapNames(int i) const {
2290 return _edge_maps[i];
2295 /// \name Attribute sections
2298 /// \brief Gives back the number of attribute sections in the file.
2300 /// Gives back the number of attribute sections in the file.
2301 int attributeSectionNum() const {
2302 return _attribute_sections.size();
2305 /// \brief Returns the section name at the given position.
2307 /// Returns the section name at the given position.
2308 const std::string& attributeSectionNames(int i) const {
2309 return _attribute_sections[i];
2312 /// \brief Gives back the attributes for the given section.
2314 /// Gives back the attributes for the given section.
2315 const std::vector<std::string>& attributes(int i) const {
2316 return _attributes[i];
2321 /// \name Extra sections
2324 /// \brief Gives back the number of extra sections in the file.
2326 /// Gives back the number of extra sections in the file.
2327 int extraSectionNum() const {
2328 return _extra_sections.size();
2331 /// \brief Returns the extra section type at the given position.
2333 /// Returns the section type at the given position.
2334 const std::string& extraSection(int i) const {
2335 return _extra_sections[i];
2344 while(++line_num, std::getline(*_is, str)) {
2345 line.clear(); line.str(str);
2347 if (line >> std::ws >> c && c != '#') {
2355 bool readSuccess() {
2356 return static_cast<bool>(*_is);
2359 void skipSection() {
2361 while (readSuccess() && line >> c && c != '@') {
2367 void readMaps(std::vector<std::string>& maps) {
2369 if (!readLine() || !(line >> c) || c == '@') {
2370 if (readSuccess() && line) line.putback(c);
2375 while (_reader_bits::readToken(line, map)) {
2376 maps.push_back(map);
2380 void readAttributes(std::vector<std::string>& attrs) {
2383 while (readSuccess() && line >> c && c != '@') {
2386 _reader_bits::readToken(line, attr);
2387 attrs.push_back(attr);
2395 /// \name Execution of the contents reader
2398 /// \brief Start the reading
2400 /// This function starts the reading
2406 while (readSuccess()) {
2411 std::string section, caption;
2412 _reader_bits::readToken(line, section);
2413 _reader_bits::readToken(line, caption);
2415 if (section == "nodes") {
2416 _node_sections.push_back(caption);
2417 _node_maps.push_back(std::vector<std::string>());
2418 readMaps(_node_maps.back());
2419 readLine(); skipSection();
2420 } else if (section == "arcs" || section == "edges") {
2421 _edge_sections.push_back(caption);
2422 _arc_sections.push_back(section == "arcs");
2423 _edge_maps.push_back(std::vector<std::string>());
2424 readMaps(_edge_maps.back());
2425 readLine(); skipSection();
2426 } else if (section == "attributes") {
2427 _attribute_sections.push_back(caption);
2428 _attributes.push_back(std::vector<std::string>());
2429 readAttributes(_attributes.back());
2431 _extra_sections.push_back(section);
2432 readLine(); skipSection();