Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] it seems there are no availability traces for latency, no need for this funct...
[simgrid.git] / src / instr / 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_is_enabled())
28     return;
29
30   container_t container = PJ_container_get(resource);
31   type_t type = PJ_type_get ("power", container->type);
32   new_pajeSetVariable(date, container, type, power);
33 }
34
35 void TRACE_surf_link_set_bandwidth(double date, const char *resource, double bandwidth)
36 {
37   if (!TRACE_is_enabled())
38     return;
39
40   container_t container = PJ_container_get(resource);
41   type_t type = PJ_type_get ("bandwidth", container->type);
42   new_pajeSetVariable(date, container, type, bandwidth);
43 }
44
45 /* to trace gtnets */
46 void TRACE_surf_gtnets_communicate(void *action, void *src, void *dst)
47 {
48   surf_action_network_GTNETS_t gtnets_action = (surf_action_network_GTNETS_t)action;
49   gtnets_action->src = src;
50   gtnets_action->dst = dst;
51 }
52
53 void TRACE_surf_action(surf_action_t surf_action, const char *category)
54 {
55   if (!TRACE_is_enabled())
56     return;
57   if (!TRACE_categorized ())
58     return;
59   if (!category)
60     return;
61
62   surf_action->category = xbt_strdup(category);
63 }
64 #endif /* HAVE_TRACING */