Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
658402c9df708d4cc92545ae74a6161556cf8855
[simgrid.git] / include / xbt / graph.h
1 /*      $Id$     */
2
3 /* Copyright (c) 2006 Darina Dimitrova, Arnaud Legrand. 
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
9 #ifndef _XBT_GRAPH_H
10 #define _XBT_GRAPH_H
11 #include "xbt/misc.h" /* SG_BEGIN_DECL */
12 #include "xbt/dynar.h"
13 SG_BEGIN_DECL()
14
15   /** @addtogroup XBT_graph
16    *  @brief A graph data type with several interesting algorithms
17    * 
18    * @{
19    */
20
21 typedef struct xbt_node  *xbt_node_t;
22 typedef struct xbt_edge  *xbt_edge_t;
23 typedef struct xbt_graph *xbt_graph_t;
24
25 /* API */
26 xbt_graph_t xbt_graph_new_graph(unsigned short int directed, void *data);
27 xbt_node_t xbt_graph_new_node(xbt_graph_t g, void *data);
28 xbt_edge_t xbt_graph_new_edge(xbt_graph_t g, xbt_node_t src, xbt_node_t dst, 
29                               void *data);
30 void *xbt_graph_node_get_data(xbt_node_t node);
31 void  xbt_graph_node_set_data(xbt_node_t node, void *data);
32 void *xbt_graph_edge_get_data(xbt_edge_t edge);
33 void  xbt_graph_edge_set_data(xbt_edge_t edge, void *data);
34
35 xbt_edge_t xbt_graph_get_edge(xbt_graph_t g, xbt_node_t src, xbt_node_t dst);
36
37 void xbt_graph_edge_set_length(xbt_edge_t e, double length);
38 double xbt_graph_edge_get_length(xbt_edge_t e);
39 double* xbt_graph_get_length_matrix(xbt_graph_t g);
40
41 void xbt_graph_free_node(xbt_graph_t g, xbt_node_t n, 
42                            void_f_pvoid_t *node_free_function , void_f_pvoid_t *edge_free_function);
43 void xbt_graph_free_edge(xbt_graph_t g, xbt_edge_t e, 
44                            void_f_pvoid_t *free_function);
45 void xbt_graph_free_graph(xbt_graph_t g, 
46                           void_f_pvoid_t *node_free_function,
47                           void_f_pvoid_t *edge_free_function,
48                           void_f_pvoid_t *graph_free_function);
49
50 int __xbt_find_in_dynar(xbt_dynar_t dynar, void *p);
51
52 xbt_dynar_t xbt_graph_get_nodes(xbt_graph_t g);
53 xbt_dynar_t xbt_graph_get_edges(xbt_graph_t g);
54 xbt_node_t xbt_graph_edge_get_source(xbt_edge_t e);
55 xbt_node_t xbt_graph_edge_get_target(xbt_edge_t e);
56 xbt_graph_t xbt_graph_read(const char *filename,
57                            void *(node_label_and_data)(xbt_node_t, const char*, const char*),
58                            void *(edge_label_and_data)(xbt_edge_t, const char*, const char*)
59                            );
60  
61 void xbt_graph_export_graphviz(xbt_graph_t g, const char *filename,
62                                const char *(node_name)(xbt_node_t),
63                                const char *(edge_name)(xbt_edge_t));
64 void xbt_graph_export_graphxml(xbt_graph_t g, const char *filename,
65                                const char *(node_name)(xbt_node_t),
66                                const char *(edge_name)(xbt_edge_t),
67                                const char *(node_data_print)(void *),
68                                const char *(edge_data_print)(void *));
69
70 /* Not implemented yet ! */
71 /* void *xbt_graph_to_array(xbt_graph_t g);  */
72 xbt_node_t* xbt_graph_shortest_paths(xbt_graph_t g);
73
74
75
76 /** @brief transforms the network structure of a directed acyclic graph given into a linear structure
77     @return: an array containing the nodes of the graph sorted in order reverse to the path of exploration 
78             if a cycle is detected an exception is raised  
79   */
80
81 xbt_node_t* xbt_graph_topo_sort(xbt_graph_t g);
82
83 xbt_edge_t* xbt_graph_spanning_tree_prim(xbt_graph_t g);
84
85
86
87
88 /** Convenient for loop : g is a graph, n a node, e an edge, b a bucket and i an item **/
89
90 /* #define xbt_graph_foreachInNeighbor(v,n,i)            \ */
91 /*    for(i=xbt_fifo_get_first_item((v)->in);              \ */
92 /*      ((i)?(n=((xbt_edge_t)((xbt_fifo_get_item_content(i)) */
93 /* )->src):(NULL));\ */
94 /*        i=xbt_fifo_get_next_item(i)) */
95 /* #define xbt_graph_foreachOutNeighbor(v,n,i)           \ */
96 /*    for(i=xbt_fifo_get_first_item((v)->out);             \ */
97 /*      ((i)?(n=((xbt_edge_t)(xbt_fifo_get_item_content(i)))->dst):(NULL));\ */
98 /*        i=xbt_fifo_get_next_item(i)) */
99
100
101
102 SG_END_DECL()
103
104 #endif                          /* _XBT_GRAPH_H */
105 /** @} */
106
107
108
109
110