Logo AND Algorithmique Numérique Distribuée

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