0
3
0
| ... | ... |
@@ -33,67 +33,75 @@ |
| 33 | 33 |
Otherwise the file consists of sections starting with |
| 34 | 34 |
a header line. The header lines starts with an \c '@' character followed by the |
| 35 | 35 |
type of section. The standard section types are \c \@nodes, \c |
| 36 | 36 |
\@arcs and \c \@edges |
| 37 | 37 |
and \@attributes. Each header line may also have an optional |
| 38 | 38 |
\e name, which can be use to distinguish the sections of the same |
| 39 | 39 |
type. |
| 40 | 40 |
|
| 41 | 41 |
The standard sections are column oriented, each line consists of |
| 42 | 42 |
<em>token</em>s separated by whitespaces. A token can be \e plain or |
| 43 | 43 |
\e quoted. A plain token is just a sequence of non-whitespace characters, |
| 44 | 44 |
while a quoted token is a |
| 45 | 45 |
character sequence surrounded by double quotes, and it can also |
| 46 | 46 |
contain whitespaces and escape sequences. |
| 47 | 47 |
|
| 48 | 48 |
The \c \@nodes section describes a set of nodes and associated |
| 49 | 49 |
maps. The first is a header line, its columns are the names of the |
| 50 | 50 |
maps appearing in the following lines. |
| 51 | 51 |
One of the maps must be called \c |
| 52 | 52 |
"label", which plays special role in the file. |
| 53 | 53 |
The following |
| 54 | 54 |
non-empty lines until the next section describes nodes of the |
| 55 | 55 |
graph. Each line contains the values of the node maps |
| 56 | 56 |
associated to the current node. |
| 57 | 57 |
|
| 58 | 58 |
\code |
| 59 | 59 |
@nodes |
| 60 | 60 |
label coordinates size title |
| 61 | 61 |
1 (10,20) 10 "First node" |
| 62 | 62 |
2 (80,80) 8 "Second node" |
| 63 | 63 |
3 (40,10) 10 "Third node" |
| 64 | 64 |
\endcode |
| 65 | 65 |
|
| 66 | 66 |
The \c \@arcs section is very similar to the \c \@nodes section, |
| 67 | 67 |
it again starts with a header line describing the names of the maps, |
| 68 | 68 |
but the \c "label" map is not obligatory here. The following lines |
| 69 | 69 |
describe the arcs. The first two tokens of each line are |
| 70 | 70 |
the source and the target node of the arc, respectively, then come the map |
| 71 | 71 |
values. The source and target tokens must be node labels. |
| 72 | 72 |
|
| 73 | 73 |
\code |
| 74 | 74 |
@arcs |
| 75 | 75 |
capacity |
| 76 | 76 |
1 2 16 |
| 77 | 77 |
1 3 12 |
| 78 | 78 |
2 3 18 |
| 79 | 79 |
\endcode |
| 80 | 80 |
|
| 81 |
The \c \@edges is just a synonym of \c \@arcs. |
|
| 81 |
The \c \@edges is just a synonym of \c \@arcs. The @arcs section can |
|
| 82 |
also store the edge set of an undirected graph. In such case there is |
|
| 83 |
a conventional method for store arc maps in the file, if two columns |
|
| 84 |
has the same caption with \c '+' and \c '-' prefix, then these columns |
|
| 85 |
can be regarded as the values of an arc map. |
|
| 82 | 86 |
|
| 83 | 87 |
The \c \@attributes section contains key-value pairs, each line |
| 84 |
consists of two tokens, an attribute name, and then an attribute |
|
| 88 |
consists of two tokens, an attribute name, and then an attribute |
|
| 89 |
value. The value of the attribute could be also a label value of a |
|
| 90 |
node or an edge, or even an edge label prefixed with \c '+' or \c '-', |
|
| 91 |
which regards to the forward or backward directed arc of the |
|
| 92 |
corresponding edge. |
|
| 85 | 93 |
|
| 86 | 94 |
\code |
| 87 | 95 |
@attributes |
| 88 | 96 |
source 1 |
| 89 | 97 |
target 3 |
| 90 | 98 |
caption "LEMON test digraph" |
| 91 | 99 |
\endcode |
| 92 | 100 |
|
| 93 | 101 |
The \e LGF can contain extra sections, but there is no restriction on |
| 94 | 102 |
the format of such sections. |
| 95 | 103 |
|
| 96 | 104 |
*/ |
| 97 | 105 |
} |
| 98 | 106 |
|
| 99 | 107 |
// LocalWords: whitespace whitespaces |
| ... | ... |
@@ -1181,96 +1181,102 @@ |
| 1181 | 1181 |
template <typename Digraph> |
| 1182 | 1182 |
DigraphReader<Digraph> digraphReader(std::istream& is, Digraph& digraph) {
|
| 1183 | 1183 |
DigraphReader<Digraph> tmp(is, digraph); |
| 1184 | 1184 |
return tmp; |
| 1185 | 1185 |
} |
| 1186 | 1186 |
|
| 1187 | 1187 |
/// \brief Return a \ref DigraphReader class |
| 1188 | 1188 |
/// |
| 1189 | 1189 |
/// This function just returns a \ref DigraphReader class. |
| 1190 | 1190 |
/// \relates DigraphReader |
| 1191 | 1191 |
template <typename Digraph> |
| 1192 | 1192 |
DigraphReader<Digraph> digraphReader(const std::string& fn, |
| 1193 | 1193 |
Digraph& digraph) {
|
| 1194 | 1194 |
DigraphReader<Digraph> tmp(fn, digraph); |
| 1195 | 1195 |
return tmp; |
| 1196 | 1196 |
} |
| 1197 | 1197 |
|
| 1198 | 1198 |
/// \brief Return a \ref DigraphReader class |
| 1199 | 1199 |
/// |
| 1200 | 1200 |
/// This function just returns a \ref DigraphReader class. |
| 1201 | 1201 |
/// \relates DigraphReader |
| 1202 | 1202 |
template <typename Digraph> |
| 1203 | 1203 |
DigraphReader<Digraph> digraphReader(const char* fn, Digraph& digraph) {
|
| 1204 | 1204 |
DigraphReader<Digraph> tmp(fn, digraph); |
| 1205 | 1205 |
return tmp; |
| 1206 | 1206 |
} |
| 1207 | 1207 |
|
| 1208 | 1208 |
template <typename Graph> |
| 1209 | 1209 |
class GraphReader; |
| 1210 | 1210 |
|
| 1211 | 1211 |
template <typename Graph> |
| 1212 | 1212 |
GraphReader<Graph> graphReader(std::istream& is, Graph& graph); |
| 1213 | 1213 |
|
| 1214 | 1214 |
template <typename Graph> |
| 1215 | 1215 |
GraphReader<Graph> graphReader(const std::string& fn, Graph& graph); |
| 1216 | 1216 |
|
| 1217 | 1217 |
template <typename Graph> |
| 1218 | 1218 |
GraphReader<Graph> graphReader(const char *fn, Graph& graph); |
| 1219 | 1219 |
|
| 1220 | 1220 |
/// \ingroup lemon_io |
| 1221 | 1221 |
/// |
| 1222 | 1222 |
/// \brief \ref lgf-format "LGF" reader for undirected graphs |
| 1223 | 1223 |
/// |
| 1224 | 1224 |
/// This utility reads an \ref lgf-format "LGF" file. |
| 1225 | 1225 |
/// |
| 1226 | 1226 |
/// It can be used almost the same way as \c DigraphReader. |
| 1227 | 1227 |
/// The only difference is that this class can handle edges and |
| 1228 | 1228 |
/// edge maps as well as arcs and arc maps. |
| 1229 |
/// |
|
| 1230 |
/// The columns in the \c \@edges (or \c \@arcs) section are the |
|
| 1231 |
/// edge maps. However, if there are two maps with the same name |
|
| 1232 |
/// prefixed with \c '+' and \c '-', then these can be read into an |
|
| 1233 |
/// arc map. Similarly, an attribute can be read into an arc, if |
|
| 1234 |
/// it's value is an edge label prefixed with \c '+' or \c '-'. |
|
| 1229 | 1235 |
template <typename _Graph> |
| 1230 | 1236 |
class GraphReader {
|
| 1231 | 1237 |
public: |
| 1232 | 1238 |
|
| 1233 | 1239 |
typedef _Graph Graph; |
| 1234 | 1240 |
TEMPLATE_GRAPH_TYPEDEFS(Graph); |
| 1235 | 1241 |
|
| 1236 | 1242 |
private: |
| 1237 | 1243 |
|
| 1238 | 1244 |
std::istream* _is; |
| 1239 | 1245 |
bool local_is; |
| 1240 | 1246 |
|
| 1241 | 1247 |
Graph& _graph; |
| 1242 | 1248 |
|
| 1243 | 1249 |
std::string _nodes_caption; |
| 1244 | 1250 |
std::string _edges_caption; |
| 1245 | 1251 |
std::string _attributes_caption; |
| 1246 | 1252 |
|
| 1247 | 1253 |
typedef std::map<std::string, Node> NodeIndex; |
| 1248 | 1254 |
NodeIndex _node_index; |
| 1249 | 1255 |
typedef std::map<std::string, Edge> EdgeIndex; |
| 1250 | 1256 |
EdgeIndex _edge_index; |
| 1251 | 1257 |
|
| 1252 | 1258 |
typedef std::vector<std::pair<std::string, |
| 1253 | 1259 |
_reader_bits::MapStorageBase<Node>*> > NodeMaps; |
| 1254 | 1260 |
NodeMaps _node_maps; |
| 1255 | 1261 |
|
| 1256 | 1262 |
typedef std::vector<std::pair<std::string, |
| 1257 | 1263 |
_reader_bits::MapStorageBase<Edge>*> > EdgeMaps; |
| 1258 | 1264 |
EdgeMaps _edge_maps; |
| 1259 | 1265 |
|
| 1260 | 1266 |
typedef std::multimap<std::string, _reader_bits::ValueStorageBase*> |
| 1261 | 1267 |
Attributes; |
| 1262 | 1268 |
Attributes _attributes; |
| 1263 | 1269 |
|
| 1264 | 1270 |
bool _use_nodes; |
| 1265 | 1271 |
bool _use_edges; |
| 1266 | 1272 |
|
| 1267 | 1273 |
bool _skip_nodes; |
| 1268 | 1274 |
bool _skip_edges; |
| 1269 | 1275 |
|
| 1270 | 1276 |
int line_num; |
| 1271 | 1277 |
std::istringstream line; |
| 1272 | 1278 |
|
| 1273 | 1279 |
public: |
| 1274 | 1280 |
|
| 1275 | 1281 |
/// \brief Constructor |
| 1276 | 1282 |
/// |
| ... | ... |
@@ -869,96 +869,102 @@ |
| 869 | 869 |
const Digraph& digraph) {
|
| 870 | 870 |
DigraphWriter<Digraph> tmp(os, digraph); |
| 871 | 871 |
return tmp; |
| 872 | 872 |
} |
| 873 | 873 |
|
| 874 | 874 |
/// \brief Return a \ref DigraphWriter class |
| 875 | 875 |
/// |
| 876 | 876 |
/// This function just returns a \ref DigraphWriter class. |
| 877 | 877 |
/// \relates DigraphWriter |
| 878 | 878 |
template <typename Digraph> |
| 879 | 879 |
DigraphWriter<Digraph> digraphWriter(const std::string& fn, |
| 880 | 880 |
const Digraph& digraph) {
|
| 881 | 881 |
DigraphWriter<Digraph> tmp(fn, digraph); |
| 882 | 882 |
return tmp; |
| 883 | 883 |
} |
| 884 | 884 |
|
| 885 | 885 |
/// \brief Return a \ref DigraphWriter class |
| 886 | 886 |
/// |
| 887 | 887 |
/// This function just returns a \ref DigraphWriter class. |
| 888 | 888 |
/// \relates DigraphWriter |
| 889 | 889 |
template <typename Digraph> |
| 890 | 890 |
DigraphWriter<Digraph> digraphWriter(const char* fn, |
| 891 | 891 |
const Digraph& digraph) {
|
| 892 | 892 |
DigraphWriter<Digraph> tmp(fn, digraph); |
| 893 | 893 |
return tmp; |
| 894 | 894 |
} |
| 895 | 895 |
|
| 896 | 896 |
template <typename Graph> |
| 897 | 897 |
class GraphWriter; |
| 898 | 898 |
|
| 899 | 899 |
template <typename Graph> |
| 900 | 900 |
GraphWriter<Graph> graphWriter(std::ostream& os, const Graph& graph); |
| 901 | 901 |
|
| 902 | 902 |
template <typename Graph> |
| 903 | 903 |
GraphWriter<Graph> graphWriter(const std::string& fn, const Graph& graph); |
| 904 | 904 |
|
| 905 | 905 |
template <typename Graph> |
| 906 | 906 |
GraphWriter<Graph> graphWriter(const char *fn, const Graph& graph); |
| 907 | 907 |
|
| 908 | 908 |
/// \ingroup lemon_io |
| 909 | 909 |
/// |
| 910 | 910 |
/// \brief \ref lgf-format "LGF" writer for directed graphs |
| 911 | 911 |
/// |
| 912 | 912 |
/// This utility writes an \ref lgf-format "LGF" file. |
| 913 | 913 |
/// |
| 914 | 914 |
/// It can be used almost the same way as \c DigraphWriter. |
| 915 | 915 |
/// The only difference is that this class can handle edges and |
| 916 | 916 |
/// edge maps as well as arcs and arc maps. |
| 917 |
/// |
|
| 918 |
/// The arc maps are written into the file as two columns, the |
|
| 919 |
/// caption of the columns are the name of the map prefixed with \c |
|
| 920 |
/// '+' and \c '-'. The arcs are written into the \c \@attributes |
|
| 921 |
/// section as a \c '+' or a \c '-' prefix (depends on the direction |
|
| 922 |
/// of the arc) and the label of corresponding edge. |
|
| 917 | 923 |
template <typename _Graph> |
| 918 | 924 |
class GraphWriter {
|
| 919 | 925 |
public: |
| 920 | 926 |
|
| 921 | 927 |
typedef _Graph Graph; |
| 922 | 928 |
TEMPLATE_GRAPH_TYPEDEFS(Graph); |
| 923 | 929 |
|
| 924 | 930 |
private: |
| 925 | 931 |
|
| 926 | 932 |
|
| 927 | 933 |
std::ostream* _os; |
| 928 | 934 |
bool local_os; |
| 929 | 935 |
|
| 930 | 936 |
Graph& _graph; |
| 931 | 937 |
|
| 932 | 938 |
std::string _nodes_caption; |
| 933 | 939 |
std::string _edges_caption; |
| 934 | 940 |
std::string _attributes_caption; |
| 935 | 941 |
|
| 936 | 942 |
typedef std::map<Node, std::string> NodeIndex; |
| 937 | 943 |
NodeIndex _node_index; |
| 938 | 944 |
typedef std::map<Edge, std::string> EdgeIndex; |
| 939 | 945 |
EdgeIndex _edge_index; |
| 940 | 946 |
|
| 941 | 947 |
typedef std::vector<std::pair<std::string, |
| 942 | 948 |
_writer_bits::MapStorageBase<Node>* > > NodeMaps; |
| 943 | 949 |
NodeMaps _node_maps; |
| 944 | 950 |
|
| 945 | 951 |
typedef std::vector<std::pair<std::string, |
| 946 | 952 |
_writer_bits::MapStorageBase<Edge>* > >EdgeMaps; |
| 947 | 953 |
EdgeMaps _edge_maps; |
| 948 | 954 |
|
| 949 | 955 |
typedef std::vector<std::pair<std::string, |
| 950 | 956 |
_writer_bits::ValueStorageBase*> > Attributes; |
| 951 | 957 |
Attributes _attributes; |
| 952 | 958 |
|
| 953 | 959 |
bool _skip_nodes; |
| 954 | 960 |
bool _skip_edges; |
| 955 | 961 |
|
| 956 | 962 |
public: |
| 957 | 963 |
|
| 958 | 964 |
/// \brief Constructor |
| 959 | 965 |
/// |
| 960 | 966 |
/// Construct a directed graph writer, which writes to the given |
| 961 | 967 |
/// output stream. |
| 962 | 968 |
GraphWriter(std::ostream& is, const Graph& graph) |
| 963 | 969 |
: _os(&is), local_os(false), _graph(graph), |
| 964 | 970 |
_skip_nodes(false), _skip_edges(false) {}
|
0 comments (0 inline)