Logo AND Algorithmique Numérique Distribuée

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