X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7d28d93b90eedd2a49da8b9b990296669e46d05c..72d32c4e88a57f4786f62fec48a1bfa454adbff9:/src/instr/instr_paje_events.hpp diff --git a/src/instr/instr_paje_events.hpp b/src/instr/instr_paje_events.hpp index dd24ec5a36..d182088913 100644 --- a/src/instr/instr_paje_events.hpp +++ b/src/instr/instr_paje_events.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2022. 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. */ @@ -12,8 +12,7 @@ #include #include -namespace simgrid { -namespace instr { +namespace simgrid::instr { class EntityValue; class TIData; @@ -40,16 +39,19 @@ enum class PajeEventType : unsigned int { inline std::ostream& operator<<(std::ostream& os, PajeEventType event) { - return os << static_cast::type>(event); + return os << static_cast>(event); } class PajeEvent { Container* container_; Type* type_; -public: static xbt::signal on_creation; static xbt::signal on_destruction; +public: + static void on_creation_cb(const std::function& cb) { on_creation.connect(cb); } + static void on_destruction_cb(const std::function& cb) { on_destruction.connect(cb); } + double timestamp_; PajeEventType eventType_; std::stringstream stream_; @@ -83,8 +85,10 @@ class StateEvent : public PajeEvent { #endif std::unique_ptr extra_; -public: static xbt::signal on_destruction; + +public: + static void on_destruction_cb(const std::function& cb) { on_destruction.connect(cb); } StateEvent(Container* container, Type* type, PajeEventType event_type, EntityValue* value, TIData* extra); ~StateEvent() override { on_destruction(*this); } bool has_extra() const { return extra_ != nullptr; } @@ -95,12 +99,12 @@ class LinkEvent : public PajeEvent { Container* endpoint_; std::string value_; std::string key_; - int size_ = -1; + size_t size_; public: LinkEvent(Container* container, Type* type, PajeEventType event_type, Container* sourceContainer, - const std::string& value, const std::string& key, int size) - : PajeEvent(container, type, SIMIX_get_clock(), event_type) + const std::string& value, const std::string& key, size_t size = static_cast(-1)) + : PajeEvent(container, type, simgrid_get_clock(), event_type) , endpoint_(sourceContainer) , value_(value) , key_(key) @@ -120,6 +124,5 @@ public: } void print() override; }; -} // namespace instr -} // namespace simgrid +} // namespace simgrid::instr #endif