Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove one of the many pimple: HostModel::p_cpuModel
[simgrid.git] / src / surf / instr_surf.c
1 /* Copyright (c) 2010, 2012-2014. 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
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_surf, instr, "Tracing Surf");
11
12 void TRACE_surf_alloc(void)
13 {
14   TRACE_surf_resource_utilization_alloc();
15 }
16
17 void TRACE_surf_release(void)
18 {
19   TRACE_surf_resource_utilization_release();
20 }
21
22 void TRACE_surf_host_set_power(double date, const char *resource, double power)
23 {
24   if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) {
25     container_t container = PJ_container_get(resource);
26     type_t type = PJ_type_get ("power", container->type);
27     new_pajeSetVariable(date, container, type, power);
28   }
29 }
30
31 void TRACE_surf_link_set_bandwidth(double date, const char *resource, double bandwidth)
32 {
33   if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) {
34     container_t container = PJ_container_get(resource);
35     type_t type = PJ_type_get ("bandwidth", container->type);
36     new_pajeSetVariable(date, container, type, bandwidth);
37   }
38 }
39
40 /* to trace gtnets */
41 void TRACE_surf_gtnets_communicate(void *action, void *src, void *dst)
42 {
43   /*FIXME:surf_action_network_GTNETS_t gtnets_action = (surf_action_network_GTNETS_t)action;
44   gtnets_action->src = src;
45   gtnets_action->dst = dst;*/
46 }
47
48 void TRACE_surf_action(surf_action_t surf_action, const char *category)
49 {
50   if (!TRACE_is_enabled())
51     return;
52   if (!TRACE_categorized ())
53     return;
54   if (!category)
55     return;
56
57   surf_action_set_category(surf_action, category);
58 }