Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I blame someone else for this
[simgrid.git] / include / xbt / automaton.h
1 #ifndef _XBT_AUTOMATON_H
2 #define _XBT_AUTOMATON_H
3
4 #include <stdlib.h>
5 #include <string.h>
6 #include <xbt/dynar.h>
7 #include <xbt/sysdep.h>
8 #include <xbt/graph.h>
9
10 SG_BEGIN_DECL()
11
12 typedef struct xbt_automaton_state {
13   char* id;
14   int type; /* -1 = init, 0 = inter, 1 = final */
15   xbt_dynar_t in;
16   xbt_dynar_t out;
17 } s_xbt_automaton_state;
18
19 typedef struct xbt_automaton_state* xbt_automaton_state_t;
20
21 typedef struct xbt_automaton {
22   xbt_dynar_t propositional_symbols;
23   xbt_dynar_t transitions;
24   xbt_dynar_t states;
25   xbt_automaton_state_t current_state;
26 } s_xbt_automaton;
27
28 typedef struct xbt_automaton* xbt_automaton_t;
29
30 typedef struct xbt_automaton_exp_label{
31   enum{or=0, and=1, not=2, predicat=3, one=4} type;
32   union{
33     struct{
34       struct xbt_automaton_exp_label* left_exp;
35       struct xbt_automaton_exp_label* right_exp;
36     }or_and;
37     struct xbt_automaton_exp_label* exp_not;
38     char* predicat;
39   }u;
40 } s_xbt_automaton_exp_label;
41
42 typedef struct xbt_automaton_exp_label* xbt_automaton_exp_label_t;
43
44
45 typedef struct xbt_automaton_transition {
46   xbt_automaton_state_t src;
47   xbt_automaton_state_t dst;
48   xbt_automaton_exp_label_t label;
49 } s_xbt_automaton_transition;
50
51 typedef struct xbt_automaton_transition* xbt_automaton_transition_t;
52
53
54 typedef struct xbt_automaton_propositional_symbol{
55   char* pred;
56   void* function;
57 } s_xbt_automaton_propositional_symbol;
58
59 typedef struct xbt_automaton_propositional_symbol* xbt_automaton_propositional_symbol_t;
60
61
62 XBT_PUBLIC(xbt_automaton_t) xbt_automaton_new(void);
63
64 XBT_PUBLIC(void) xbt_automaton_load(xbt_automaton_t automaton, const char *file);
65
66 XBT_PUBLIC(xbt_automaton_state_t) xbt_automaton_state_new(xbt_automaton_t a, int type, char* id);
67
68 XBT_PUBLIC(xbt_automaton_transition_t) xbt_automaton_transition_new(xbt_automaton_t a, xbt_automaton_state_t src, xbt_automaton_state_t dst, xbt_automaton_exp_label_t label);
69
70 XBT_PUBLIC(xbt_automaton_exp_label_t) xbt_automaton_exp_label_new(int type, ...);
71
72 XBT_PUBLIC(xbt_dynar_t) xbt_automaton_get_states(xbt_automaton_t a);
73
74 XBT_PUBLIC(xbt_dynar_t) xbt_automaton_get_transitions(xbt_automaton_t a);
75
76 XBT_PUBLIC(xbt_automaton_transition_t) xbt_automaton_get_transition(xbt_automaton_t a, xbt_automaton_state_t src, xbt_automaton_state_t dst);
77
78 XBT_PUBLIC(xbt_automaton_state_t) xbt_automaton_transition_get_source(xbt_automaton_transition_t t);
79
80 XBT_PUBLIC(xbt_automaton_state_t) xbt_automaton_transition_get_destination(xbt_automaton_transition_t t);
81
82 XBT_PUBLIC(void) xbt_automaton_transition_set_source(xbt_automaton_transition_t t, xbt_automaton_state_t src);
83
84 XBT_PUBLIC(void) xbt_automaton_transition_set_destination(xbt_automaton_transition_t t, xbt_automaton_state_t dst);
85
86 XBT_PUBLIC(xbt_dynar_t) xbt_automaton_state_get_out_transitions(xbt_automaton_state_t s);
87
88 XBT_PUBLIC(xbt_dynar_t) xbt_automaton_state_get_in_transitions(xbt_automaton_state_t s);
89
90 XBT_PUBLIC(xbt_automaton_state_t) xbt_automaton_state_exists(xbt_automaton_t a, char *id); 
91
92 XBT_PUBLIC(void) xbt_automaton_display(xbt_automaton_t a);
93
94 XBT_PUBLIC(void) xbt_automaton_exp_label_display(xbt_automaton_exp_label_t l);
95
96 XBT_PUBLIC(xbt_automaton_propositional_symbol_t) xbt_automaton_propositional_symbol_new(xbt_automaton_t a, const char* id, void* fct);
97
98 XBT_PUBLIC(xbt_automaton_state_t) xbt_automaton_get_current_state(xbt_automaton_t a);
99
100 XBT_PUBLIC(int) xbt_automaton_state_compare(xbt_automaton_state_t s1, xbt_automaton_state_t s2);
101
102 XBT_PUBLIC(int) xbt_automaton_propositional_symbols_compare_value(xbt_dynar_t s1, xbt_dynar_t s2);
103
104 XBT_PUBLIC(int) xbt_automaton_transition_compare(const void *t1, const void *t2);
105
106 XBT_PUBLIC(int) xbt_automaton_exp_label_compare(xbt_automaton_exp_label_t l1, xbt_automaton_exp_label_t l2);
107
108 XBT_PUBLIC(void) xbt_automaton_state_free_voidp(void *s);
109
110 XBT_PUBLIC(void) xbt_automaton_state_free(xbt_automaton_state_t s);
111
112 XBT_PUBLIC(void) xbt_automaton_transition_free_voidp(void *t);
113
114 XBT_PUBLIC(void) xbt_automaton_exp_label_free_voidp(void *e);
115
116 XBT_PUBLIC(void) xbt_automaton_propositional_symbol_free_voidp(void *ps);
117
118 XBT_PUBLIC(void) xbt_automaton_free(xbt_automaton_t a);
119
120 SG_END_DECL()
121
122 #endif