Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Enum class for Paje event types.
[simgrid.git] / src / instr / instr_paje_header.cpp
1 /* Copyright (c) 2010-2020. 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 "simgrid/Exception.hpp"
8 #include "src/instr/instr_private.hpp"
9 #include "xbt/virtu.h" /* xbt::cmdline */
10
11 extern std::ofstream tracing_file;
12 namespace simgrid {
13 namespace instr {
14 namespace paje {
15
16 void dump_generator_version()
17 {
18   tracing_file << "#This file was generated using SimGrid-" << SIMGRID_VERSION_MAJOR << "." << SIMGRID_VERSION_MINOR
19                << "." << SIMGRID_VERSION_PATCH << std::endl;
20   tracing_file << "#[";
21   for (auto str : simgrid::xbt::cmdline) {
22     tracing_file << str << " ";
23   }
24   tracing_file << "]" << std::endl;
25 }
26
27 void dump_comment_file(const std::string& filename)
28 {
29   if (filename.empty())
30     return;
31   std::ifstream fs(filename.c_str(), std::ifstream::in);
32
33   if (fs.fail())
34     throw TracingError(XBT_THROW_POINT,
35                        xbt::string_printf("Comment file %s could not be opened for reading.", filename.c_str()));
36
37   while (not fs.eof()) {
38     std::string line;
39     std::getline(fs, line);
40     tracing_file << "# " << line;
41   }
42   fs.close();
43 }
44
45 void dump_header(bool basic, bool display_sizes)
46 {
47   // Types
48   tracing_file << "%EventDef PajeDefineContainerType " << PajeEventType::DefineContainerType << std::endl;
49   tracing_file << "%       Alias string" << std::endl;
50   if (basic)
51     tracing_file << "%       ContainerType string" << std::endl;
52   else
53     tracing_file << "%       Type string" << std::endl;
54
55   tracing_file << "%       Name string" << std::endl;
56   tracing_file << "%EndEventDef" << std::endl;
57
58   tracing_file << "%EventDef PajeDefineVariableType " << PajeEventType::DefineVariableType << std::endl;
59   tracing_file << "%       Alias string" << std::endl;
60   tracing_file << "%       " << (basic ? "Container" : "") << "Type string" << std::endl;
61   tracing_file << "%       Name string" << std::endl;
62   tracing_file << "%       Color color" << std::endl;
63   tracing_file << "%EndEventDef" << std::endl;
64
65   tracing_file << "%EventDef PajeDefineStateType " << PajeEventType::DefineStateType << std::endl;
66   tracing_file << "%       Alias string" << std::endl;
67   tracing_file << "%       " << (basic ? "Container" : "") << "Type string" << std::endl;
68   tracing_file << "%       Name string" << std::endl;
69   tracing_file << "%EndEventDef" << std::endl;
70
71   tracing_file << "%EventDef PajeDefineEventType " << PajeEventType::DefineEventType << std::endl;
72   tracing_file << "%       Alias string" << std::endl;
73   tracing_file << "%       " << (basic ? "Container" : "") << "Type string" << std::endl;
74   tracing_file << "%       Name string" << std::endl;
75   tracing_file << "%EndEventDef" << std::endl;
76
77   tracing_file << "%EventDef PajeDefineLinkType " << PajeEventType::DefineLinkType << std::endl;
78   tracing_file << "%       Alias string" << std::endl;
79   tracing_file << "%       " << (basic ? "Container" : "") << "Type string" << std::endl;
80   tracing_file << "%       " << (basic ? "Source" : "Start") << "ContainerType string" << std::endl;
81   tracing_file << "%       " << (basic ? "Dest" : "End") << "ContainerType string" << std::endl;
82   tracing_file << "%       Name string" << std::endl;
83   tracing_file << "%EndEventDef" << std::endl;
84
85   // EntityValue
86   tracing_file << "%EventDef PajeDefineEntityValue " << PajeEventType::DefineEntityValue << std::endl;
87   tracing_file << "%       Alias string" << std::endl;
88   tracing_file << "%       " << (basic ? "Entity" : "") << "Type string" << std::endl;
89   tracing_file << "%       Name string" << std::endl;
90   tracing_file << "%       Color color" << std::endl;
91   tracing_file << "%EndEventDef" << std::endl;
92
93   // Container
94   tracing_file << "%EventDef PajeCreateContainer " << PajeEventType::CreateContainer << std::endl;
95   tracing_file << "%       Time date" << std::endl;
96   tracing_file << "%       Alias string" << std::endl;
97   tracing_file << "%       Type string" << std::endl;
98   tracing_file << "%       Container string" << std::endl;
99   tracing_file << "%       Name string" << std::endl;
100   tracing_file << "%EndEventDef" << std::endl;
101
102   tracing_file << "%EventDef PajeDestroyContainer " << PajeEventType::DestroyContainer << std::endl;
103   tracing_file << "%       Time date" << std::endl;
104   tracing_file << "%       Type string" << std::endl;
105   tracing_file << "%       Name string" << std::endl;
106   tracing_file << "%EndEventDef" << std::endl;
107
108   // Variable
109   tracing_file << "%EventDef PajeSetVariable " << PajeEventType::SetVariable << std::endl;
110   tracing_file << "%       Time date" << std::endl;
111   tracing_file << "%       Type string" << std::endl;
112   tracing_file << "%       Container string" << std::endl;
113   tracing_file << "%       Value double" << std::endl;
114   tracing_file << "%EndEventDef" << std::endl;
115
116   tracing_file << "%EventDef PajeAddVariable " << PajeEventType::AddVariable << std::endl;
117   tracing_file << "%       Time date" << std::endl;
118   tracing_file << "%       Type string" << std::endl;
119   tracing_file << "%       Container string" << std::endl;
120   tracing_file << "%       Value double" << std::endl;
121   tracing_file << "%EndEventDef" << std::endl;
122
123   tracing_file << "%EventDef PajeSubVariable " << PajeEventType::SubVariable << std::endl;
124   tracing_file << "%       Time date" << std::endl;
125   tracing_file << "%       Type string" << std::endl;
126   tracing_file << "%       Container string" << std::endl;
127   tracing_file << "%       Value double" << std::endl;
128   tracing_file << "%EndEventDef" << std::endl;
129
130   // State
131   tracing_file << "%EventDef PajeSetState " << PajeEventType::SetState << std::endl;
132   tracing_file << "%       Time date" << std::endl;
133   tracing_file << "%       Type string" << std::endl;
134   tracing_file << "%       Container string" << std::endl;
135   tracing_file << "%       Value string" << std::endl;
136   tracing_file << "%EndEventDef" << std::endl;
137
138   tracing_file << "%EventDef PajePushState " << PajeEventType::PushState << std::endl;
139   tracing_file << "%       Time date" << std::endl;
140   tracing_file << "%       Type string" << std::endl;
141   tracing_file << "%       Container string" << std::endl;
142   tracing_file << "%       Value string" << std::endl;
143   if (display_sizes)
144     tracing_file << "%       Size int" << std::endl;
145 #if HAVE_SMPI
146   if (simgrid::config::get_value<bool>("smpi/trace-call-location")) {
147     /* paje currently (May 2016) uses "Filename" and "Linenumber" as reserved words. We cannot use them... */
148     tracing_file << "%       Fname string" << std::endl;
149     tracing_file << "%       Lnumber int" << std::endl;
150   }
151 #endif
152   tracing_file << "%EndEventDef" << std::endl;
153
154   tracing_file << "%EventDef PajePopState " << PajeEventType::PopState << std::endl;
155   tracing_file << "%       Time date" << std::endl;
156   tracing_file << "%       Type string" << std::endl;
157   tracing_file << "%       Container string" << std::endl;
158   tracing_file << "%EndEventDef" << std::endl;
159
160   if (not basic) {
161     tracing_file << "%EventDef PajeResetState " << PajeEventType::ResetState << std::endl;
162     tracing_file << "%       Time date" << std::endl;
163     tracing_file << "%       Type string" << std::endl;
164     tracing_file << "%       Container string" << std::endl;
165     tracing_file << "%EndEventDef" << std::endl;
166   }
167
168   // Link
169   tracing_file << "%EventDef PajeStartLink " << PajeEventType::StartLink << std::endl;
170   tracing_file << "%       Time date" << std::endl;
171   tracing_file << "%       Type string" << std::endl;
172   tracing_file << "%       Container string" << std::endl;
173   tracing_file << "%       Value string" << std::endl;
174   tracing_file << "%       " << (basic ? "Source" : "Start") << "Container string" << std::endl;
175   tracing_file << "%       Key string" << std::endl;
176   if (display_sizes)
177     tracing_file << "%       Size int" << std::endl;
178   tracing_file << "%EndEventDef" << std::endl;
179
180   tracing_file << "%EventDef PajeEndLink " << PajeEventType::EndLink << std::endl;
181   tracing_file << "%       Time date" << std::endl;
182   tracing_file << "%       Type string" << std::endl;
183   tracing_file << "%       Container string" << std::endl;
184   tracing_file << "%       Value string" << std::endl;
185   tracing_file << "%       " << (basic ? "Dest" : "End") << "Container string" << std::endl;
186   tracing_file << "%       Key string" << std::endl;
187   tracing_file << "%EndEventDef" << std::endl;
188
189   // Event
190   tracing_file << "%EventDef PajeNewEvent " << PajeEventType::NewEvent << std::endl;
191   tracing_file << "%       Time date" << std::endl;
192   tracing_file << "%       Type string" << std::endl;
193   tracing_file << "%       Container string" << std::endl;
194   tracing_file << "%       Value string" << std::endl;
195   tracing_file << "%EndEventDef" << std::endl;
196 }
197 } // namespace paje
198 } // namespace instr
199 } // namespace simgrid