Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill all aspects related to masks in the tracing interface
[simgrid.git] / src / instr / variables_instr.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/private.h"
8 #include "surf/surf_private.h"
9 #include "surf/network_private.h"
10
11 #ifdef HAVE_TRACING
12
13 extern routing_t used_routing;
14
15 void __TRACE_link_variable (double time, const char *src, const char *dst, const char *variable, double value, const char *what)
16 {
17         char valuestr[100];
18         int src_id, dst_id;
19         xbt_dynar_t route = NULL;
20         unsigned int i;
21     void *link_ptr;
22     char *link = NULL;
23   if (!IS_TRACING || !IS_TRACING_PLATFORM) return;
24
25   snprintf (valuestr, 100, "%g", value);
26
27   if (strcmp (what, "declare") == 0){
28         pajeDefineVariableType (variable, "LINK", variable);
29         return;
30   }
31
32   if (!used_routing) return;
33
34   src_id = *(int*)xbt_dict_get(used_routing->host_id,src);
35   dst_id = *(int*)xbt_dict_get(used_routing->host_id,dst);
36   route = used_routing->get_route(src_id, dst_id);
37
38   xbt_dynar_foreach(route, i, link_ptr) {
39         link = (*(link_CM02_t)link_ptr).lmm_resource.generic_resource.name;
40
41         if (strcmp (what, "set") == 0){
42           pajeSetVariable (time, variable, link, valuestr);
43         }else if (strcmp (what, "add") == 0){
44           pajeAddVariable (time, variable, link, valuestr);
45         }else if (strcmp (what, "sub") == 0){
46           pajeSubVariable (time, variable, link, valuestr);
47         }
48   }
49 }
50
51 void __TRACE_host_variable (double time, const char *variable, double value, const char *what)
52 {
53         char valuestr[100];
54   if (!IS_TRACING || !IS_TRACING_PLATFORM) return;
55
56   snprintf (valuestr, 100, "%g", value);
57
58   if (strcmp (what, "declare") == 0){
59         pajeDefineVariableType (variable, "HOST", variable);
60   }else if (strcmp (what, "set") == 0){
61         pajeSetVariable (time, variable, MSG_host_self()->name, valuestr);
62   }else if (strcmp (what, "add") == 0){
63         pajeAddVariable (time, variable, MSG_host_self()->name, valuestr);
64   }else if (strcmp (what, "sub") == 0){
65         pajeSubVariable (time, variable, MSG_host_self()->name, valuestr);
66   }
67 }
68
69
70 #endif /* HAVE_TRACING */