Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sonar: use lowercase for field names.
[simgrid.git] / src / instr / instr_paje_types.hpp
index f1d24c2..8306af0 100644 (file)
@@ -7,6 +7,9 @@
 #define INSTR_PAJE_TYPES_HPP
 
 #include "src/instr/instr_private.hpp"
+#include <string>
+#include <vector>
+
 namespace simgrid {
 namespace instr {
 enum e_event_type : unsigned int;
@@ -16,6 +19,8 @@ class EventType;
 class LinkType;
 class StateType;
 class VariableType;
+class StateEvent;
+class VariableEvent;
 
 class Type {
   long long int id_;
@@ -51,12 +56,19 @@ public:
 
 class ContainerType : public Type {
 public:
+  ContainerType(std::string name) : Type(name, name, "", nullptr){};
   ContainerType(std::string name, Type* father);
 };
 
 class VariableType : public Type {
+  std::vector<VariableEvent*> events_;
+
 public:
   VariableType(std::string name, std::string color, Type* father);
+  ~VariableType();
+  void setEvent(double timestamp, Container* container, double value);
+  void addEvent(double timestamp, Container* container, double value);
+  void subEvent(double timestamp, Container* container, double value);
 };
 
 class ValueType : public Type {
@@ -81,8 +93,15 @@ public:
 };
 
 class StateType : public ValueType {
+  std::vector<StateEvent*> events_;
+
 public:
   StateType(std::string name, Type* father);
+  ~StateType();
+  void setEvent(double timestamp, Container* container, std::string value_name);
+  void pushEvent(double timestamp, Container* container, std::string value_name);
+  void pushEvent(double timestamp, Container* container, std::string value_name, void* extra);
+  void popEvent(double timestamp, Container* container);
 };
 }
 }