X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/390c4ee50cea7f1cb52ffc4bd7435a7ad4e9cc75..4f07a5a6873fe49b411ace45de96adfbef8cb41a:/src/instr/instr_paje_events.cpp diff --git a/src/instr/instr_paje_events.cpp b/src/instr/instr_paje_events.cpp index 22faeb5d1a..ed016d8cab 100644 --- a/src/instr/instr_paje_events.cpp +++ b/src/instr/instr_paje_events.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2012-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2012-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -9,8 +9,8 @@ #include "src/surf/surf_interface.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_paje_events, instr, "Paje tracing event system (events)"); -extern FILE* tracing_file; -std::map tracing_files; // TI specific +extern std::ofstream tracing_file; +extern std::map tracing_files; // TI specific namespace simgrid { namespace instr { @@ -19,18 +19,27 @@ PajeEvent::PajeEvent(Container* container, Type* type, double timestamp, e_event : container_(container), type_(type), timestamp_(timestamp), eventType_(eventType) { XBT_DEBUG("%s: event_type=%u, timestamp=%.*f", __func__, eventType_, TRACE_precision(), timestamp_); - if (instr_fmt_type == instr_fmt_paje) { + if (trace_format == simgrid::instr::TraceFormat::Paje) { stream_ << std::fixed << std::setprecision(TRACE_precision()); stream_ << eventType_ << " " << timestamp_ << " " << type_->get_id() << " " << container_->get_id(); } - insertIntoBuffer(); + insert_into_buffer(); }; +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) { #if HAVE_SMPI - if (xbt_cfg_get_boolean("smpi/trace-call-location")) { + if (simgrid::config::get_value("smpi/trace-call-location")) { smpi_trace_call_location_t* loc = smpi_trace_get_call_location(); filename = loc->filename; linenumber = loc->linenumber; @@ -40,76 +49,80 @@ StateEvent::StateEvent(Container* container, Type* type, e_event_type event_type void NewEvent::print() { - if (instr_fmt_type != instr_fmt_paje) + if (trace_format != simgrid::instr::TraceFormat::Paje) return; - stream_ << " " << value->getId(); + stream_ << " " << value->get_id(); XBT_DEBUG("Dump %s", stream_.str().c_str()); - fprintf(tracing_file, "%s\n", stream_.str().c_str()); + tracing_file << stream_.str() << std::endl; } void LinkEvent::print() { - if (instr_fmt_type != instr_fmt_paje) + if (trace_format != simgrid::instr::TraceFormat::Paje) return; stream_ << " " << value_ << " " << endpoint_->get_id() << " " << key_; - if (TRACE_display_sizes()) + if (TRACE_display_sizes() && size_ != -1) stream_ << " " << size_; XBT_DEBUG("Dump %s", stream_.str().c_str()); - fprintf(tracing_file, "%s\n", stream_.str().c_str()); + tracing_file << stream_.str() << std::endl; } void VariableEvent::print() { - if (instr_fmt_type != instr_fmt_paje) + if (trace_format != simgrid::instr::TraceFormat::Paje) return; - stream_ << " " << value; + stream_ << " " << value_; XBT_DEBUG("Dump %s", stream_.str().c_str()); - fprintf(tracing_file, "%s\n", stream_.str().c_str()); + tracing_file << stream_.str() << std::endl; +} + +StateEvent::~StateEvent(){ + delete extra_; } void StateEvent::print() { - if (instr_fmt_type == instr_fmt_paje) { + if (trace_format == simgrid::instr::TraceFormat::Paje) { if (value != nullptr) // PAJE_PopState Event does not need to have a value - stream_ << " " << value->getId(); + stream_ << " " << value->get_id(); if (TRACE_display_sizes()) - stream_ << " " << ((extra_ != nullptr) ? extra_->display_size() : 0); + stream_ << " " << ((extra_ != nullptr) ? extra_->display_size() : ""); #if HAVE_SMPI - if (xbt_cfg_get_boolean("smpi/trace-call-location")) { + if (simgrid::config::get_value("smpi/trace-call-location")) { stream_ << " \"" << filename << "\" " << linenumber; } #endif XBT_DEBUG("Dump %s", stream_.str().c_str()); - fprintf(tracing_file, "%s\n", stream_.str().c_str()); - } else if (instr_fmt_type == instr_fmt_TI) { + tracing_file << stream_.str() << std::endl; + } else if (trace_format == simgrid::instr::TraceFormat::Ti) { if (extra_ == nullptr) return; /* Unimplemented calls are: WAITANY, SENDRECV, SCAN, EXSCAN, SSEND, and ISSEND. */ // FIXME: dirty extract "rank-" from the name, as we want the bare process id here - if (getContainer()->get_name().find("rank-") != 0) - stream_ << getContainer()->get_name() << " " << extra_->print(); - else + if (get_container()->get_name().find("rank-") != 0) { + stream_ << get_container()->get_name() << " " << extra_->print(); + } else { /* 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()); + std::string container_name(get_container()->get_name()); + stream_ << stoi(container_name.erase(0, 5)) - 1 << " " << extra_->print(); + } + *tracing_files.at(get_container()) << stream_.str() << std::endl; } else { THROW_IMPOSSIBLE; } - delete extra_; } } }