Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
new tracing mask TRACE_VOLUME to trace the msg tasks communication size and group...
[simgrid.git] / include / instr / instr.h
1 /*
2  * instr.h
3  *
4  *  Created on: Nov 23, 2009
5  *      Author: Lucas Schnorr
6  *     License: This program is free software; you can redistribute
7  *              it and/or modify it under the terms of the license
8  *              (GNU LGPL) which comes with this package.
9  *
10  *     Copyright (c) 2009 The SimGrid team.
11  */
12
13 #ifndef INSTR_H_
14 #define INSTR_H_
15
16 #include "instr/tracing_config.h"
17
18 #ifdef HAVE_TRACING
19
20 #define NO_TRACE                0
21 #define TRACE_PLATFORM  1
22 #define TRACE_PROCESS   2
23 #define TRACE_TASK      4
24 #define TRACE_VOLUME    8
25
26 #include "xbt.h"
27 #include "msg/msg.h"
28
29 /* Trace error codes (used in exceptions) */
30 #define TRACE_ERROR_COMPLEX_ROUTES 100
31 #define TRACE_ERROR_TYPE_NOT_DEFINED 200
32 #define TRACE_ERROR_TYPE_ALREADY_DEFINED 201
33 #define TRACE_ERROR_CATEGORY_NOT_DEFINED 300
34 #define TRACE_ERROR_CATEGORY_ALREADY_DEFINED 301
35 #define TRACE_ERROR_MASK 400
36 #define TRACE_ERROR_FILE_OPEN 401
37 #define TRACE_ERROR_START 500
38
39 XBT_PUBLIC(int) TRACE_start_with_mask (const char *filename, int mask);
40 XBT_PUBLIC(int) TRACE_start (const char *filename);
41 XBT_PUBLIC(int) TRACE_end (void);
42 XBT_PUBLIC(int) TRACE_category (const char *category);
43 XBT_PUBLIC(void) TRACE_define_type (const char *type, const char *parent_type, int final);
44 XBT_PUBLIC(int) TRACE_create_category (const char *category, const char *type, const char *parent_category);
45 XBT_PUBLIC(void) TRACE_msg_set_task_category (m_task_t task, const char *category);
46 XBT_PUBLIC(void) TRACE_msg_set_process_category (m_process_t process, const char *category);
47 XBT_PUBLIC(void) TRACE_set_mask (int mask);
48 XBT_PUBLIC(void) __TRACE_host_variable (double time, const char *variable, double value, const char *what);
49 XBT_PUBLIC(void) __TRACE_link_variable (double time, const char *src, const char *dst, const char *variable, double value, const char *what);
50
51 #define TRACE_host_variable_declare(var) \
52         __TRACE_host_variable(0,var,0,"declare");
53
54 #define TRACE_host_variable_set_with_time(time,var,value) \
55         __TRACE_host_variable(time,var,value,"set");
56
57 #define TRACE_host_variable_add_with_time(time,var,value) \
58         __TRACE_host_variable(time,var,value,"add");
59
60 #define TRACE_host_variable_sub_with_time(time,var,value) \
61         __TRACE_host_variable(time,var,value,"sub");
62
63 #define TRACE_host_variable_set(var,value) \
64         __TRACE_host_variable(MSG_get_clock(),var,value,"set");
65
66 #define TRACE_host_variable_add(var,value) \
67         __TRACE_host_variable(MSG_get_clock(),var,value,"add");
68
69 #define TRACE_host_variable_sub(var,value) \
70         __TRACE_host_variable(MSG_get_clock(),var,value,"sub");
71
72 #define TRACE_link_variable_declare(var) \
73         __TRACE_link_variable(0,NULL,NULL,var,0,"declare");
74
75 #define TRACE_link_variable_set_with_time(time,src,dst,var,value) \
76         __TRACE_link_variable(time,src,dst,var,value,"set");
77
78 #define TRACE_link_variable_add_with_time(time,src,dst,var,value) \
79         __TRACE_link_variable(time,src,dst,var,value,"add");
80
81 #define TRACE_link_variable_sub_with_time(time,src,dst,var,value) \
82         __TRACE_link_variable(time,src,dst,var,value,"sub");
83
84 #define TRACE_link_variable_set(src,dst,var,value) \
85         __TRACE_link_variable(MSG_get_clock(),src,dst,var,value,"set");
86
87 #define TRACE_link_variable_add(src,dst,var,value) \
88         __TRACE_link_variable(MSG_get_clock(),src,dst,var,value,"add");
89
90 #define TRACE_link_variable_sub(src,dst,var,value) \
91         __TRACE_link_variable(MSG_get_clock(),src,dst,var,value,"sub");
92
93 #else /* HAVE_TRACING */
94
95 #define TRACE_start(filename)
96 #define TRACE_start_with_mask(filename,mask)
97 #define TRACE_end()
98 #define TRACE_category(cat)
99 #define TRACE_define_type(cat,supercat,final)
100 #define TRACE_create_category(inst,cat)
101 #define TRACE_msg_set_task_category(task,cat)
102 #define TRACE_msg_set_process_category(proc,cat)
103 #define TRACE_set_mask(mask)
104
105 #define TRACE_host_variable_declare(var)
106 #define TRACE_host_variable_set_with_time(time,var,value)
107 #define TRACE_host_variable_add_with_time(time,var,value)
108 #define TRACE_host_variable_sub_with_time(time,var,value)
109 #define TRACE_host_variable_set(var,value)
110 #define TRACE_host_variable_add(var,value)
111 #define TRACE_host_variable_sub(var,value)
112 #define TRACE_link_variable_declare(var)
113 #define TRACE_link_variable_set_with_time(time,src,dst,var,value)
114 #define TRACE_link_variable_add_with_time(time,src,dst,var,value)
115 #define TRACE_link_variable_sub_with_time(time,src,dst,var,value)
116 #define TRACE_link_variable_set(src,dst,var,value)
117 #define TRACE_link_variable_add(src,dst,var,value)
118 #define TRACE_link_variable_sub(src,dst,var,value)
119
120 #endif /* HAVE_TRACING */
121
122 #endif /* INSTR_H_ */