Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
All hosts types fusion to xbt_dictelm_t
[simgrid.git] / src / surf / instr_surf.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 #include "surf/surf_private.h"
9 #include "surf/network_gtnets_private.h"
10
11 #ifdef HAVE_TRACING
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_surf, instr, "Tracing Surf");
14
15 void TRACE_surf_alloc(void)
16 {
17   TRACE_surf_resource_utilization_alloc();
18 }
19
20 void TRACE_surf_release(void)
21 {
22   TRACE_surf_resource_utilization_release();
23 }
24
25 void TRACE_surf_host_set_power(double date, const char *resource, double power)
26 {
27   if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) {
28     container_t container = PJ_container_get(resource);
29     type_t type = PJ_type_get ("power", container->type);
30     new_pajeSetVariable(date, container, type, power);
31   }
32 }
33
34 void TRACE_surf_link_set_bandwidth(double date, const char *resource, double bandwidth)
35 {
36   if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) {
37     container_t container = PJ_container_get(resource);
38     type_t type = PJ_type_get ("bandwidth", container->type);
39     new_pajeSetVariable(date, container, type, bandwidth);
40   }
41 }
42
43 /* to trace gtnets */
44 void TRACE_surf_gtnets_communicate(void *action, void *src, void *dst)
45 {
46   surf_action_network_GTNETS_t gtnets_action = (surf_action_network_GTNETS_t)action;
47   gtnets_action->src = src;
48   gtnets_action->dst = dst;
49 }
50
51 void TRACE_surf_action(surf_action_t surf_action, const char *category)
52 {
53   if (!TRACE_is_enabled())
54     return;
55   if (!TRACE_categorized ())
56     return;
57   if (!category)
58     return;
59
60   surf_action->category = xbt_strdup(category);
61 }
62 #endif /* HAVE_TRACING */