* This file is a part of LEMON, a generic C++ optimization library
* Copyright (C) 2003-2008
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
* (Egervary Research Group on Combinatorial Optimization, EGRES).
* Permission to use, modify and distribute this software is granted
* provided that this copyright notice appears in all copies. For
* precise terms see the accompanying LICENSE file.
* This software is provided "AS IS" with no warranty of any kind,
* express or implied, and with no claim as to its suitability for any
///\brief Lemon Graph Format reader.
#ifndef LEMON_LGF_READER_H
#define LEMON_LGF_READER_H
#include <lemon/assert.h>
#include <lemon/graph_utils.h>
#include <lemon/lgf_writer.h>
#include <lemon/concept_check.h>
#include <lemon/concepts/maps.h>
template <typename Value>
struct DefaultConverter {
Value operator()(const std::string& str) {
std::istringstream is(str);
if (is >> std::ws >> c) {
throw DataFormatError("Remaining characters in token");
struct DefaultConverter<std::string> {
std::string operator()(const std::string& str) {
template <typename _Item>
virtual ~MapStorageBase() {}
virtual void set(const Item& item, const std::string& value) = 0;
template <typename _Item, typename _Map,
typename _Converter = DefaultConverter<typename _Map::Value> >
class MapStorage : public MapStorageBase<_Item> {
typedef _Converter Converter;
MapStorage(Map& map, const Converter& converter = Converter())
: _map(map), _converter(converter) {}
virtual void set(const Item& item ,const std::string& value) {
_map.set(item, _converter(value));
virtual ~ValueStorageBase() {}
virtual void set(const std::string&) = 0;
template <typename _Value, typename _Converter = DefaultConverter<_Value> >
class ValueStorage : public ValueStorageBase {
typedef _Converter Converter;
ValueStorage(Value& value, const Converter& converter = Converter())
: _value(value), _converter(converter) {}
virtual void set(const std::string& value) {
_value = _converter(value);
template <typename Value>
struct MapLookUpConverter {
const std::map<std::string, Value>& _map;
MapLookUpConverter(const std::map<std::string, Value>& map)
Value operator()(const std::string& str) {
typename std::map<std::string, Value>::const_iterator it =
msg << "Item not found: " << str;
throw DataFormatError(msg.str().c_str());
bool isWhiteSpace(char c) {
return c == ' ' || c == '\t' || c == '\v' ||
c == '\n' || c == '\r' || c == '\f';
return '0' <= c && c <='7';
LEMON_ASSERT(isOct(c), "The character is not octal.");
return ('0' <= c && c <= '9') ||
('a' <= c && c <= 'z') ||
LEMON_ASSERT(isHex(c), "The character is not hexadecimal.");
if ('0' <= c && c <= '9') return c - '0';
if ('a' <= c && c <= 'z') return c - 'a' + 10;
bool isIdentifierFirstChar(char c) {
return ('a' <= c && c <= 'z') ||
('A' <= c && c <= 'Z') || c == '_';
bool isIdentifierChar(char c) {
return isIdentifierFirstChar(c) ||
char readEscape(std::istream& is) {
throw DataFormatError("Escape format error");
if (!is.get(c) || !isHex(c))
throw DataFormatError("Escape format error");
else if (code = valueHex(c), !is.get(c) || !isHex(c)) is.putback(c);
else code = code * 16 + valueHex(c);
throw DataFormatError("Escape format error");
else if (code = valueOct(c), !is.get(c) || !isOct(c))
else if (code = code * 8 + valueOct(c), !is.get(c) || !isOct(c))
else code = code * 8 + valueOct(c);
std::istream& readToken(std::istream& is, std::string& str) {
while (is.get(c) && c != '\"') {
throw DataFormatError("Quoted format error");
while (is.get(c) && !isWhiteSpace(c)) {
std::istream& readIdentifier(std::istream& is, std::string& str) {
if (!isIdentifierFirstChar(c))
throw DataFormatError("Wrong char in identifier");
while (is.get(c) && !isWhiteSpace(c)) {
if (!isIdentifierChar(c))
throw DataFormatError("Wrong char in identifier");
template <typename _Digraph>
typedef _Digraph Digraph;
GRAPH_TYPEDEFS(typename Digraph);
std::string _nodes_caption;
std::string _arcs_caption;
std::string _attributes_caption;
typedef std::map<std::string, Node> NodeIndex;
typedef std::map<std::string, Arc> ArcIndex;
typedef std::vector<std::pair<std::string,
_reader_bits::MapStorageBase<Node>*> > NodeMaps;
typedef std::vector<std::pair<std::string,
_reader_bits::MapStorageBase<Arc>*> >ArcMaps;
typedef std::multimap<std::string, _reader_bits::ValueStorageBase*>
DigraphReader(std::istream& is, Digraph& digraph)
: _is(&is), local_is(false), _digraph(digraph),
_use_nodes(false), _use_arcs(false) {}
DigraphReader(const std::string& fn, Digraph& digraph)
: _is(new std::ifstream(fn.c_str())), local_is(true), _digraph(digraph),
_use_nodes(false), _use_arcs(false) {}
DigraphReader(const char* fn, Digraph& digraph)
: _is(new std::ifstream(fn)), local_is(true), _digraph(digraph),
_use_nodes(false), _use_arcs(false) {}
DigraphReader(DigraphReader& other)
: _is(other._is), local_is(other.local_is), _digraph(other._digraph),
_use_nodes(other._use_nodes), _use_arcs(other._use_arcs) {
_node_index.swap(other._node_index);
_arc_index.swap(other._arc_index);
_node_maps.swap(other._node_maps);
_arc_maps.swap(other._arc_maps);
_attributes.swap(other._attributes);
_nodes_caption = other._nodes_caption;
_arcs_caption = other._arcs_caption;
_attributes_caption = other._attributes_caption;
for (typename NodeMaps::iterator it = _node_maps.begin();
it != _node_maps.end(); ++it) {
for (typename ArcMaps::iterator it = _arc_maps.begin();
it != _arc_maps.end(); ++it) {
for (typename Attributes::iterator it = _attributes.begin();
it != _attributes.end(); ++it) {
DigraphReader& operator=(const DigraphReader&);
DigraphReader& nodeMap(const std::string& caption, Map& map) {
checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
_reader_bits::MapStorageBase<Node>* storage =
new _reader_bits::MapStorage<Node, Map>(map);
_node_maps.push_back(std::make_pair(caption, storage));
template <typename Map, typename Converter>
DigraphReader& nodeMap(const std::string& caption, Map& map,
const Converter& converter = Converter()) {
checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
_reader_bits::MapStorageBase<Node>* storage =
new _reader_bits::MapStorage<Node, Map, Converter>(map, converter);
_node_maps.push_back(std::make_pair(caption, storage));
DigraphReader& arcMap(const std::string& caption, Map& map) {
checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
_reader_bits::MapStorageBase<Arc>* storage =
new _reader_bits::MapStorage<Arc, Map>(map);
_arc_maps.push_back(std::make_pair(caption, storage));
template <typename Map, typename Converter>
DigraphReader& arcMap(const std::string& caption, Map& map,
const Converter& converter = Converter()) {
checkConcept<concepts::WriteMap<Arc, typename Map::Value>, Map>();
_reader_bits::MapStorageBase<Arc>* storage =
new _reader_bits::MapStorage<Arc, Map, Converter>(map, converter);
_arc_maps.push_back(std::make_pair(caption, storage));
template <typename Value>
DigraphReader& attribute(const std::string& caption, Value& value) {
_reader_bits::ValueStorageBase* storage =
new _reader_bits::ValueStorage<Value>(value);
_attributes.insert(std::make_pair(caption, storage));
template <typename Value, typename Converter>
DigraphReader& attribute(const std::string& caption, Value& value,
const Converter& converter = Converter()) {
_reader_bits::ValueStorageBase* storage =
new _reader_bits::ValueStorage<Value, Converter>(value, converter);
_attributes.insert(std::make_pair(caption, storage));
DigraphReader& node(const std::string& caption, Node& node) {
typedef _reader_bits::MapLookUpConverter<Node> Converter;
Converter converter(_node_index);
_reader_bits::ValueStorageBase* storage =
new _reader_bits::ValueStorage<Node, Converter>(node, converter);
_attributes.insert(std::make_pair(caption, storage));
DigraphReader& arc(const std::string& caption, Arc& arc) {
typedef _reader_bits::MapLookUpConverter<Arc> Converter;
Converter converter(_arc_index);
_reader_bits::ValueStorageBase* storage =
new _reader_bits::ValueStorage<Arc, Converter>(arc, converter);
_attributes.insert(std::make_pair(caption, storage));
DigraphReader& nodes(const std::string& caption) {
_nodes_caption = caption;
DigraphReader& arcs(const std::string& caption) {
DigraphReader& attributes(const std::string& caption) {
_attributes_caption = caption;
DigraphReader& useNodes(const Map& map) {
checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
_writer_bits::DefaultConverter<typename Map::Value> converter;
for (NodeIt n(_digraph); n != INVALID; ++n) {
_node_index.insert(std::make_pair(converter(map[n]), n));
template <typename Map, typename Converter>
DigraphReader& useNodes(const Map& map,
const Converter& converter = Converter()) {
checkConcept<concepts::ReadMap<Node, typename Map::Value>, Map>();
LEMON_ASSERT(!_use_nodes, "Multiple usage of useNodes() member");
for (NodeIt n(_digraph); n != INVALID; ++n) {
_node_index.insert(std::make_pair(converter(map[n]), n));
DigraphReader& useArcs(const Map& map) {
checkConcept<concepts::ReadMap<Arc, typename Map::Value>, Map>();
LEMON_ASSERT(!_use_arcs, "Multiple usage of useArcs() member");
_writer_bits::DefaultConverter<typename Map::Value> converter;
for (ArcIt a(_digraph); a != INVALID; ++a) {
_arc_index.insert(std::make_pair(converter(map[a]), a));
template <typename Map, typename Converter>
DigraphReader& useArcs(const Map& map,
const Converter& converter = Converter()) {
checkConcept<concepts::ReadMap<Arc, typename Map::Value>, Map>();
LEMON_ASSERT(!_use_arcs, "Multiple usage of useArcs() member");
for (ArcIt a(_digraph); a != INVALID; ++a) {
_arc_index.insert(std::make_pair(converter(map[a]), a));
while(++line_num, std::getline(*_is, str)) {
line.clear(); line.str(str);
if (line >> std::ws >> c && c != '#') {
return static_cast<bool>(*_is);
while (readSuccess() && line >> c && c != '@') {
std::vector<int> map_index(_node_maps.size());
int map_num, label_index;
throw DataFormatError("Cannot find map captions");
std::map<std::string, int> maps;
while (_reader_bits::readIdentifier(line, map)) {
if (maps.find(map) != maps.end()) {
msg << "Multiple occurence of node map: " << map;
throw DataFormatError(msg.str().c_str());
maps.insert(std::make_pair(map, index));
for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
std::map<std::string, int>::iterator jt =
maps.find(_node_maps[i].first);
msg << "Map not found in file: " << _node_maps[i].first;
throw DataFormatError(msg.str().c_str());
map_index[i] = jt->second;
std::map<std::string, int>::iterator jt = maps.find("label");
throw DataFormatError("Label map not found in file");
label_index = jt->second;
while (readLine() && line >> c && c != '@') {
std::vector<std::string> tokens(map_num);
for (int i = 0; i < map_num; ++i) {
if (!_reader_bits::readToken(line, tokens[i])) {
msg << "Column not found (" << i + 1 << ")";
throw DataFormatError(msg.str().c_str());
if (line >> std::ws >> c)
throw DataFormatError("Extra character on the end of line");
_node_index.insert(std::make_pair(tokens[label_index], n));
typename std::map<std::string, Node>::iterator it =
_node_index.find(tokens[label_index]);
if (it == _node_index.end()) {
msg << "Node with label not found: " << tokens[label_index];
throw DataFormatError(msg.str().c_str());
for (int i = 0; i < static_cast<int>(_node_maps.size()); ++i) {
_node_maps[i].second->set(n, tokens[map_index[i]]);
std::vector<int> map_index(_arc_maps.size());
int map_num, label_index;
throw DataFormatError("Cannot find map captions");
std::map<std::string, int> maps;
while (_reader_bits::readIdentifier(line, map)) {
if (maps.find(map) != maps.end()) {
msg << "Multiple occurence of arc map: " << map;
throw DataFormatError(msg.str().c_str());
maps.insert(std::make_pair(map, index));
for (int i = 0; i < static_cast<int>(_arc_maps.size()); ++i) {
std::map<std::string, int>::iterator jt =
maps.find(_arc_maps[i].first);
msg << "Map not found in file: " << _arc_maps[i].first;
throw DataFormatError(msg.str().c_str());
map_index[i] = jt->second;
std::map<std::string, int>::iterator jt = maps.find("label");
throw DataFormatError("Label map not found in file");
label_index = jt->second;
while (readLine() && line >> c && c != '@') {
std::string source_token;
std::string target_token;
if (!_reader_bits::readToken(line, source_token))
throw DataFormatError("Source not found");
if (!_reader_bits::readToken(line, target_token))
throw DataFormatError("Source not found");
std::vector<std::string> tokens(map_num);
for (int i = 0; i < map_num; ++i) {
if (!_reader_bits::readToken(line, tokens[i])) {
msg << "Column not found (" << i + 1 << ")";
throw DataFormatError(msg.str().c_str());
if (line >> std::ws >> c)
throw DataFormatError("Extra character on the end of line");
typename NodeIndex::iterator it;
it = _node_index.find(source_token);
if (it == _node_index.end()) {
msg << "Item not found: " << source_token;
throw DataFormatError(msg.str().c_str());
Node source = it->second;
it = _node_index.find(target_token);
if (it == _node_index.end()) {
msg << "Item not found: " << target_token;
throw DataFormatError(msg.str().c_str());
Node target = it->second;
a = _digraph.addArc(source, target);
_arc_index.insert(std::make_pair(tokens[label_index], a));
typename std::map<std::string, Arc>::iterator it =
_arc_index.find(tokens[label_index]);
if (it == _arc_index.end()) {
msg << "Arc with label not found: " << tokens[label_index];
throw DataFormatError(msg.str().c_str());
for (int i = 0; i < static_cast<int>(_arc_maps.size()); ++i) {
_arc_maps[i].second->set(a, tokens[map_index[i]]);
std::set<std::string> read_attr;
while (readLine() && line >> c && c != '@') {
if (!_reader_bits::readIdentifier(line, attr))
throw DataFormatError("Attribute name not found");
if (!_reader_bits::readToken(line, token))
throw DataFormatError("Attribute value not found");
throw DataFormatError("Extra character on the end of line");
std::set<std::string>::iterator it = read_attr.find(attr);
if (it != read_attr.end()) {
msg << "Multiple occurence of attribute " << attr;
throw DataFormatError(msg.str().c_str());
typename Attributes::iterator it = _attributes.lower_bound(attr);
while (it != _attributes.end() && it->first == attr) {
for (typename Attributes::iterator it = _attributes.begin();
it != _attributes.end(); ++it) {
if (read_attr.find(it->first) == read_attr.end()) {
msg << "Attribute not found in file: " << it->first;
throw DataFormatError(msg.str().c_str());
LEMON_ASSERT(_is != 0, "This reader assigned to an other reader");
bool attributes_done = false;
std::string section, caption;
_reader_bits::readIdentifier(line, section);
_reader_bits::readIdentifier(line, caption);
throw DataFormatError("Extra character on the end of line");
if (section == "nodes" && !nodes_done) {
if (_nodes_caption.empty() || _nodes_caption == caption) {
} else if ((section == "arcs" || section == "edges") &&
if (_arcs_caption.empty() || _arcs_caption == caption) {
} else if (section == "attributes" && !attributes_done) {
if (_attributes_caption.empty() || _attributes_caption == caption) {
} catch (DataFormatError& error) {
throw DataFormatError("Section @nodes not found");
throw DataFormatError("Section @arcs not found");
if (!attributes_done && !_attributes.empty()) {
throw DataFormatError("Section @attributes not found");
template <typename Digraph>
DigraphReader<Digraph> digraphReader(std::istream& is, Digraph& digraph) {
return DigraphReader<Digraph>(is, digraph);
template <typename Digraph>
DigraphReader<Digraph> digraphReader(const std::string& fn,
return DigraphReader<Digraph>(fn, digraph);
template <typename Digraph>
DigraphReader<Digraph> digraphReader(const char* fn, Digraph& digraph) {
return DigraphReader<Digraph>(fn, digraph);