Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
588a149145264026f708b04669aaaac83b1eb25a
[simgrid.git] / testsuite / xbt / graphxml_usage.c
1 /* A few basic tests for the graphxml library                               */
2
3 /* Copyright (c) 2006 Darina Dimitrova, Arnaud Legrand. All rights reserved.*/
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7 #ifdef __BORLANDC__
8 #pragma hdrstop
9 #endif
10
11 #include <stdio.h>
12
13 #ifdef _MSC_VER
14 #define snprintf        _snprintf
15 #endif
16
17 #include "xbt/module.h"
18 #include "xbt/sysdep.h"
19 #include "xbt/graph.h"
20 #include "xbt/graphxml.h"
21 #include "xbt/log.h"
22
23 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Logging specific to graphxml test");
24
25
26 static void *node_label_and_data(xbt_node_t node, const char *label,
27                                  const char *data)
28 {
29   char *lbl = xbt_strdup(label);
30   return lbl;
31 }
32
33 #define free_label free
34
35 static const char *node_name(xbt_node_t n)
36 {
37   return xbt_graph_node_get_data(n);
38 }
39
40 void test(char *graph_file);
41 void test(char *graph_file)
42 {
43   int test_node_deletion = 0;
44   int test_edge_deletion = 0;
45   int test_export_xml = 1;
46   int test_export_dot = 1;
47   int test_export_length = 1;
48   int test_shortest_paths = 1;
49   int test_topo_sort = 1;
50
51   unsigned long i, j;
52   unsigned long n;
53
54   xbt_dynar_t edges = NULL;
55   xbt_dynar_t nodes = NULL;
56
57   xbt_graph_t graph = xbt_graph_read(graph_file, &node_label_and_data, NULL);
58
59   n = xbt_dynar_length(xbt_graph_get_nodes(graph));
60
61   if (test_export_xml) {
62     INFO0("---- Testing XML export. Exporting to testgraph.xml ----");
63     xbt_graph_export_graphxml(graph, "testgraph.xml", NULL, NULL, NULL, NULL);
64   }
65   if (test_export_dot) {
66     INFO0("---- Testing GraphViz export. Exporting to testgraph.dot ----");
67     xbt_graph_export_graphviz(graph, "testgraph.dot", node_name, NULL);
68   }
69
70   if (test_export_length) {
71     char *buf = NULL;
72     double *adj = NULL;
73
74     INFO0("---- Dumping Edge lengths ----");
75     adj = xbt_graph_get_length_matrix(graph);
76     buf = xbt_new0(char, n * 20);
77     for (i = 0; i < n; i++) {
78       for (j = 0; j < n; j++) {
79         sprintf(buf + strlen(buf), "%le\t", adj[i * n + j]);
80       }
81       INFO1("%s", buf);
82       buf[0] = '\000';
83     }
84     free(buf);
85     free(adj);
86   }
87
88   if (test_shortest_paths) {
89     char *buf = NULL;
90     xbt_node_t *route = NULL;
91
92     INFO0("---- Testing Shortest Paths ----");
93     route = xbt_graph_shortest_paths(graph);
94     buf = xbt_new0(char, n * 40);
95     for (i = 0; i < n; i++) {
96       for (j = 0; j < n; j++) {
97         if (route[i * n + j])
98           snprintf(buf + strlen(buf), 40, "%s\t",
99                    node_name(route[i * n + j]));
100       }
101       INFO1("%s", buf);
102       buf[0] = '\000';
103     }
104     free(buf);
105     free(route);
106   }
107
108   if (test_topo_sort) {
109     xbt_node_t *sorted = NULL;
110
111     INFO0("---- Testing Topological Sort ----");
112     sorted = xbt_graph_topo_sort(graph);
113     for (i = 0; i < n; i++) {
114       if (sorted[i]) {
115         INFO3("sorted[%lu] = %s (%p)", i, node_name(sorted[i]), sorted[i]);
116       }
117     }
118     free(sorted);
119   }
120
121
122   if (test_node_deletion) {
123     INFO0("---- Testing Node Deletion ----");
124     nodes = xbt_graph_get_nodes(graph);
125     edges = xbt_graph_get_edges(graph);
126     INFO2("Before Node deletion: %lu nodes, %lu edges",
127           xbt_dynar_length(nodes), xbt_dynar_length(edges));
128
129     while (xbt_dynar_length(nodes))
130       xbt_graph_free_node(graph,
131                           *((xbt_node_t *) xbt_dynar_get_ptr(nodes, 0)),
132                           free_label, NULL);
133     INFO2("After Node deletion:  %lu nodes, %lu edges",
134           xbt_dynar_length(nodes), xbt_dynar_length(edges));
135   }
136
137   if (test_edge_deletion) {
138     INFO0("---- Testing Edge Deletion ----");
139     nodes = xbt_graph_get_nodes(graph);
140     edges = xbt_graph_get_edges(graph);
141     INFO2("Before Edge deletion: %lu nodes, %lu edges",
142           xbt_dynar_length(nodes), xbt_dynar_length(edges));
143
144     while (xbt_dynar_length(edges))
145       xbt_graph_free_edge(graph,
146                           *((xbt_edge_t *) xbt_dynar_get_ptr(edges, 0)),
147                           NULL);
148
149     INFO2("After Edge deletion:  %lu nodes, %lu edges",
150           xbt_dynar_length(nodes), xbt_dynar_length(edges));
151   }
152
153   xbt_graph_free_graph(graph, free_label, NULL, NULL);
154 }
155
156 #ifdef __BORLANDC__
157 #pragma argsused
158 #endif
159
160 int main(int argc, char **argv)
161 {
162   xbt_init(&argc, argv);
163   if (argc == 1) {
164     fprintf(stderr, "Usage : %s graph.xml\n", argv[0]);
165
166     return 1;
167   }
168   test(argv[1]);
169
170   return 0;
171 }