Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
graphicator re-implemented
[simgrid.git] / src / instr / instr_private.h
1 /* Copyright (c) 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5   * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef INSTR_PRIVATE_H_
8 #define INSTR_PRIVATE_H_
9
10 #include "simgrid_config.h"
11
12 #ifdef HAVE_TRACING
13
14 #define INSTR_DEFAULT_STR_SIZE 500
15
16 #include "instr/instr.h"
17 #include "msg/msg.h"
18 #include "simdag/private.h"
19 #include "simix/private.h"
20
21 typedef enum {
22   TYPE_VARIABLE,
23   TYPE_LINK,
24   TYPE_CONTAINER,
25   TYPE_STATE,
26   TYPE_EVENT,
27 } e_entity_types;
28
29 typedef struct s_type *type_t;
30 typedef struct s_type {
31   char *id;
32   char *name;
33   char *color;
34   e_entity_types kind;
35   struct s_type *father;
36   xbt_dict_t children;
37   xbt_dict_t values; //valid for all types except variable and container
38 }s_type_t;
39
40 typedef struct s_val *val_t;
41 typedef struct s_val {
42   char *id;
43   char *name;
44   char *color;
45   type_t father;
46 }s_val_t;
47
48 typedef enum {
49   INSTR_HOST,
50   INSTR_LINK,
51   INSTR_ROUTER,
52   INSTR_AS,
53   INSTR_SMPI,
54   INSTR_MSG_PROCESS,
55   INSTR_MSG_TASK,
56 } e_container_types;
57
58 typedef struct s_container *container_t;
59 typedef struct s_container {
60   char *name;     /* Unique name of this container */
61   char *id;       /* Unique id of this container */
62   type_t type;    /* Type of this container */
63   int level;      /* Level in the hierarchy, root level is 0 */
64   e_container_types kind; /* This container is of what kind */
65   struct s_container *father;
66   xbt_dict_t children;
67 }s_container_t;
68
69 extern xbt_dict_t created_categories;
70 extern double TRACE_last_timestamp_to_dump;
71
72 /* from paje.c */
73 void TRACE_paje_create_header(void);
74 void TRACE_paje_start(void);
75 void TRACE_paje_end(void);
76 void TRACE_paje_dump_buffer (int force);
77 void new_pajeDefineContainerType(type_t type);
78 void new_pajeDefineVariableType(type_t type);
79 void new_pajeDefineStateType(type_t type);
80 void new_pajeDefineEventType(type_t type);
81 void new_pajeDefineLinkType(type_t type, type_t source, type_t dest);
82 void new_pajeDefineEntityValue (val_t type);
83 void new_pajeCreateContainer (container_t container);
84 void new_pajeDestroyContainer (container_t container);
85 void new_pajeSetVariable (double timestamp, container_t container, type_t type, double value);
86 void new_pajeAddVariable (double timestamp, container_t container, type_t type, double value);
87 void new_pajeSubVariable (double timestamp, container_t container, type_t type, double value);
88 void new_pajeSetState (double timestamp, container_t container, type_t type, val_t value);
89 void new_pajePushState (double timestamp, container_t container, type_t type, val_t value);
90 void new_pajePopState (double timestamp, container_t container, type_t type);
91 void new_pajeStartLink (double timestamp, container_t container, type_t type, container_t sourceContainer, const char *value, const char *key);
92 void new_pajeEndLink (double timestamp, container_t container, type_t type, container_t destContainer, const char *value, const char *key);
93 void new_pajeNewEvent (double timestamp, container_t container, type_t type, val_t value);
94
95 /* declaration of instrumentation functions from msg_task_instr.c */
96 char *TRACE_task_container(m_task_t task, char *output, int len);
97 void TRACE_msg_task_create(m_task_t task);
98 void TRACE_msg_task_execute_start(m_task_t task);
99 void TRACE_msg_task_execute_end(m_task_t task);
100 void TRACE_msg_task_destroy(m_task_t task);
101 void TRACE_msg_task_get_start(void);
102 void TRACE_msg_task_get_end(double start_time, m_task_t task);
103 int TRACE_msg_task_put_start(m_task_t task);    //returns TRUE if the task_put_end must be called
104 void TRACE_msg_task_put_end(void);
105
106 /* declaration of instrumentation functions from msg_process_instr.c */
107 char *instr_process_id (m_process_t proc, char *str, int len);
108 void TRACE_msg_process_change_host(m_process_t process, m_host_t old_host,
109                                    m_host_t new_host);
110 void TRACE_msg_process_create (m_process_t process);
111 void TRACE_msg_process_kill(m_process_t process);
112 void TRACE_msg_process_suspend(m_process_t process);
113 void TRACE_msg_process_resume(m_process_t process);
114 void TRACE_msg_process_sleep_in(m_process_t process);   //called from msg/gos.c
115 void TRACE_msg_process_sleep_out(m_process_t process);
116 void TRACE_msg_process_end(m_process_t process);
117
118 /* declaration of instrumentation functions from msg_volume.c */
119 void TRACE_msg_volume_start(m_task_t task);
120 void TRACE_msg_volume_finish(m_task_t task);
121
122 /* from smx.c */
123 void TRACE_smx_host_execute(smx_action_t act);
124 void TRACE_smx_action_communicate(smx_action_t act, smx_process_t proc);
125 void TRACE_smx_action_destroy(smx_action_t act);
126
127 /* from surf_instr.c */
128 void TRACE_surf_alloc(void);
129 void TRACE_surf_release(void);
130 void TRACE_surf_host_set_power(double date, const char *resource, double power);
131 void TRACE_surf_link_set_bandwidth(double date, const char *resource, double bandwidth);
132 void TRACE_surf_link_set_latency(double date, const char *resource, double latency);
133 void TRACE_surf_action(surf_action_t surf_action, const char *category);
134
135 //for tracing gtnets
136 void TRACE_surf_gtnets_communicate(void *action, int src, int dst);
137 int TRACE_surf_gtnets_get_src(void *action);
138 int TRACE_surf_gtnets_get_dst(void *action);
139 void TRACE_surf_gtnets_destroy(void *action);
140
141 /* from smpi_instr.c */
142 void TRACE_internal_smpi_set_category (const char *category);
143 const char *TRACE_internal_smpi_get_category (void);
144 void TRACE_smpi_alloc(void);
145 void TRACE_smpi_release(void);
146 void TRACE_smpi_init(int rank);
147 void TRACE_smpi_finalize(int rank);
148 void TRACE_smpi_start(void);
149 void TRACE_smpi_collective_in(int rank, int root, const char *operation);
150 void TRACE_smpi_collective_out(int rank, int root, const char *operation);
151 void TRACE_smpi_ptp_in(int rank, int src, int dst, const char *operation);
152 void TRACE_smpi_ptp_out(int rank, int src, int dst, const char *operation);
153 void TRACE_smpi_send(int rank, int src, int dst);
154 void TRACE_smpi_recv(int rank, int src, int dst);
155
156 /* from instr_config.c */
157 int TRACE_start (void);
158 int TRACE_end (void);
159 void TRACE_activate (void);
160 void TRACE_desactivate (void);
161 int TRACE_is_active (void);
162 int TRACE_is_enabled(void);
163 int TRACE_is_configured(void);
164 int TRACE_smpi_is_enabled(void);
165 int TRACE_smpi_is_grouped(void);
166 int TRACE_categorized (void);
167 int TRACE_uncategorized (void);
168 int TRACE_msg_task_is_enabled(void);
169 int TRACE_msg_process_is_enabled(void);
170 int TRACE_msg_volume_is_enabled(void);
171 char *TRACE_get_filename(void);
172 char *TRACE_get_platform_method(void);
173 char *TRACE_get_triva_uncat_conf (void);
174 char *TRACE_get_triva_cat_conf (void);
175 void TRACE_global_init(int *argc, char **argv);
176 void TRACE_help(int detailed);
177 void TRACE_generate_triva_uncat_conf (void);
178 void TRACE_generate_triva_cat_conf (void);
179
180 /* from resource_utilization.c */
181 void TRACE_surf_host_set_utilization(const char *resource,
182                                      smx_action_t smx_action,
183                                      surf_action_t surf_action,
184                                      double value, double now,
185                                      double delta);
186 void TRACE_surf_link_set_utilization(const char *resource, smx_action_t smx_action,
187                                      surf_action_t surf_action,
188                                      double value, double now,
189                                      double delta);
190 void TRACE_surf_resource_utilization_start(smx_action_t action);
191 void TRACE_surf_resource_utilization_event(smx_action_t action, double now,
192                                            double delta,
193                                            const char *variable,
194                                            const char *resource,
195                                            double value);
196 void TRACE_surf_resource_utilization_end(smx_action_t action);
197 void TRACE_surf_resource_utilization_alloc(void);
198 void TRACE_surf_resource_utilization_release(void);
199
200 /* sd_instr.c */
201 void TRACE_sd_task_create(SD_task_t task);
202 void TRACE_sd_task_destroy(SD_task_t task);
203
204 /* instr_paje.c */
205 extern xbt_dict_t trivaNodeTypes;
206 extern xbt_dict_t trivaEdgeTypes;
207 container_t newContainer (const char *name, e_container_types kind, container_t father);
208 container_t getContainer (const char *name);
209 int knownContainerWithName (const char *name);
210 container_t getContainerByName (const char *name);
211 char *getContainerIdByName (const char *name);
212 char *getVariableTypeIdByName (const char *name, type_t father);
213 container_t getRootContainer (void);
214 void instr_paje_init (container_t root);
215 type_t getRootType (void);
216 type_t getContainerType (const char *name, type_t father);
217 type_t getEventType (const char *name, const char *color, type_t father);
218 type_t getVariableType (const char *name, const char *color, type_t father);
219 type_t getLinkType (const char *name, type_t father, type_t source, type_t dest);
220 type_t getStateType (const char *name, type_t father);
221 type_t getType (const char *name, type_t father);
222 val_t getValue (const char *valuename, const char *color, type_t father);
223 val_t getValueByName (const char *valuename, type_t father);
224 void destroyContainer (container_t container);
225 void destroyAllContainers (void);
226
227 /* instr_routing.c */
228 void instr_routing_define_callbacks (void);
229 void instr_new_user_variable_type (const char *new_typename, const char *color);
230 void instr_new_user_link_variable_type  (const char *new_typename, const char *color);
231 void instr_new_user_host_variable_type  (const char *new_typename, const char *color);
232 int instr_platform_traced (void);
233 xbt_graph_t instr_routing_platform_graph (void);
234
235 #endif /* HAVE_TRACING */
236
237 #ifdef HAVE_JEDULE
238 #include "instr/jedule/jedule_sd_binding.h"
239 #endif
240
241 #endif /* INSTR_PRIVATE_H_ */