Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move function to class
[simgrid.git] / src / instr / instr_paje_events.cpp
index 258b4e7..92e53e1 100644 (file)
@@ -10,7 +10,7 @@
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_paje_events, instr, "Paje tracing event system (events)");
 extern std::ofstream tracing_file;
-std::map<container_t, FILE*> tracing_files; // TI specific
+extern std::map<container_t, std::ofstream*> tracing_files; // TI specific
 
 namespace simgrid {
 namespace instr {
@@ -26,6 +26,15 @@ PajeEvent::PajeEvent(Container* container, Type* type, double timestamp, e_event
   insertIntoBuffer();
 };
 
+void PajeEvent::print()
+{
+  if (trace_format != simgrid::instr::TraceFormat::Paje)
+    return;
+
+  XBT_DEBUG("Dump %s", stream_.str().c_str());
+  tracing_file << stream_.str() << std::endl;
+}
+
 StateEvent::StateEvent(Container* container, Type* type, e_event_type event_type, EntityValue* value, TIData* extra)
     : PajeEvent::PajeEvent(container, type, SIMIX_get_clock(), event_type), value(value), extra_(extra)
 {
@@ -104,7 +113,7 @@ void StateEvent::print()
       /* Subtract -1 because this is the process id and we transform it to the rank id */
       stream_ << stoi(getContainer()->get_name().erase(0, 5)) - 1 << " " << extra_->print();
 
-    fprintf(tracing_files.at(getContainer()), "%s\n", stream_.str().c_str());
+    *tracing_files.at(getContainer()) << stream_.str() << std::endl;
   } else {
     THROW_IMPOSSIBLE;
   }