Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] simpler verifications to see what is enabled before tracing
[simgrid.git] / src / instr / instr_msg_task.c
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 #include "instr/instr_private.h"
8
9 #ifdef HAVE_TRACING
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_msg, instr, "MSG");
12
13 /*
14  * TRACE_msg_set_task_category: tracing interface function
15  */
16 void TRACE_msg_set_task_category(m_task_t task, const char *category)
17 {
18   if (!TRACE_is_active())
19     return;
20
21   xbt_assert3(task->category == NULL, "Task %p(%s) already has a category (%s).",
22       task, task->name, task->category);
23   if (TRACE_msg_task_is_enabled()){
24     xbt_assert2(task->name != NULL,
25         "Task %p(%s) must have a unique name in order to be traced, if --cfg=tracing/msg/task:1 is used.",
26         task, task->name);
27     xbt_assert3(getContainer(task->name)==NULL,
28         "Task %p(%s). Tracing already knows a task with name %s."
29         "The name of each task must be unique, if --cfg=tracing/msg/task:1 is used.", task, task->name, task->name);
30   }
31
32   if (category == NULL) {
33     //if user provides a NULL category, task is no longer traced
34     xbt_free (task->category);
35     task->category = NULL;
36     return;
37   }
38
39   //set task category
40   task->category = xbt_strdup (category);
41   DEBUG3("MSG task %p(%s), category %s", task, task->name, task->category);
42
43   if (TRACE_msg_task_is_enabled()){
44     m_host_t host = MSG_host_self();
45     container_t host_container = getContainer(host->name);
46     //check to see if there is a container with the task->name
47     xbt_assert3(getContainer(task->name) == NULL,
48         "Task %p(%s). Tracing already knows a task with name %s."
49         "The name of each task must be unique, if --cfg=tracing/msg/task:1 is used.", task, task->name, task->name);
50     container_t msg = newContainer(task->name, INSTR_MSG_TASK, host_container);
51     type_t type = getType (task->category);
52     if (!type){
53       type = getVariableType(task->category, NULL, msg->type);
54     }
55     new_pajeSetVariable (SIMIX_get_clock(), msg, type, 1);
56
57     type = getType ("MSG_TASK_STATE");
58     new_pajePushState (MSG_get_clock(), msg, type, "created");
59   }
60 }
61
62 /* MSG_task_create related function*/
63 void TRACE_msg_task_create(m_task_t task)
64 {
65   static long long counter = 0;
66   task->counter = counter++;
67   task->category = NULL;
68   DEBUG2("CREATE %p, %lld", task, task->counter);
69 }
70
71 /* MSG_task_execute related functions */
72 void TRACE_msg_task_execute_start(m_task_t task)
73 {
74   if (!(TRACE_msg_task_is_enabled() &&
75         task->category)) return;
76
77   DEBUG3("EXEC,in %p, %lld, %s", task, task->counter, task->category);
78
79   container_t task_container = getContainer (task->name);
80   type_t type = getType ("MSG_TASK_STATE");
81   new_pajePushState (MSG_get_clock(), task_container, type, "MSG_task_execute");
82 }
83
84 void TRACE_msg_task_execute_end(m_task_t task)
85 {
86   if (!(TRACE_msg_task_is_enabled() &&
87         task->category)) return;
88
89   DEBUG3("EXEC,out %p, %lld, %s", task, task->counter, task->category);
90
91   container_t task_container = getContainer (task->name);
92   type_t type = getType ("MSG_TASK_STATE");
93   new_pajePopState (MSG_get_clock(), task_container, type);
94 }
95
96 /* MSG_task_destroy related functions */
97 void TRACE_msg_task_destroy(m_task_t task)
98 {
99   if (!(TRACE_msg_task_is_enabled() &&
100         task->category)) return;
101
102   //that's the end, let's destroy it
103   destroyContainer (getContainer(task->name));
104
105   DEBUG3("DESTROY %p, %lld, %s", task, task->counter, task->category);
106
107   //free category
108   xbt_free(task->category);
109   task->category = NULL;
110   return;
111 }
112
113 /* MSG_task_get related functions */
114 void TRACE_msg_task_get_start(void)
115 {
116   if (!TRACE_msg_task_is_enabled()) return;
117
118   DEBUG0("GET,in");
119 }
120
121 void TRACE_msg_task_get_end(double start_time, m_task_t task)
122 {
123   if (!(TRACE_msg_task_is_enabled() &&
124         task->category)) return;
125
126   DEBUG3("GET,out %p, %lld, %s", task, task->counter, task->category);
127
128   //FIXME
129   //if (TRACE_msg_volume_is_enabled()){
130   //  TRACE_msg_volume_end(task);
131   //}
132
133   m_host_t host = MSG_host_self();
134   container_t host_container = getContainer(host->name);
135   container_t msg = newContainer(task->name, INSTR_MSG_TASK, host_container);
136   type_t type = getType (task->category);
137   new_pajeSetVariable (SIMIX_get_clock(), msg, type, 1);
138
139   type = getType ("MSG_TASK_STATE");
140   new_pajePushState (MSG_get_clock(), msg, type, "created");
141
142   type = getType ("MSG_TASK_LINK");
143   char key[INSTR_DEFAULT_STR_SIZE];
144   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", task->counter);
145   new_pajeEndLink (MSG_get_clock(), getRootContainer(), type, msg, "SR", key);
146 }
147
148 /* MSG_task_put related functions */
149 int TRACE_msg_task_put_start(m_task_t task)
150 {
151   if (!(TRACE_msg_task_is_enabled() &&
152         task->category)) return 0;
153
154   DEBUG3("PUT,in %p, %lld, %s", task, task->counter, task->category);
155
156   container_t msg = getContainer (task->name);
157   type_t type = getType ("MSG_TASK_STATE");
158   new_pajePopState (MSG_get_clock(), msg, type);
159
160   type = getType ("MSG_TASK_LINK");
161   char key[INSTR_DEFAULT_STR_SIZE];
162   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", task->counter);
163   new_pajeStartLink(MSG_get_clock(), getRootContainer(), type, msg, "SR", key);
164
165   destroyContainer (msg);
166
167   //FIXME
168   //if (TRACE_msg_volume_is_enabled()){
169   //  TRACE_msg_volume_start(task);
170   //}
171
172   return 1;
173 }
174
175 void TRACE_msg_task_put_end(void)
176 {
177   if (!TRACE_msg_task_is_enabled()) return;
178
179   DEBUG0("PUT,out");
180 }
181
182 #endif /* HAVE_TRACING */