Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define and throw simgrid::TracingError.
[simgrid.git] / src / instr / instr_paje_types.hpp
index 75f38b5..0c9c668 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2010-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. */
@@ -7,6 +7,7 @@
 #define INSTR_PAJE_TYPES_HPP
 
 #include "src/instr/instr_private.hpp"
+#include <memory>
 #include <sstream>
 #include <string>
 #include <vector>
@@ -23,81 +24,83 @@ class Type {
   Type* father_;
 
 public:
-  std::map<std::string, Type*> children_;
+  std::map<std::string, std::unique_ptr<Type>> children_;
   Container* issuer_ = nullptr;
   std::stringstream stream_;
 
-  Type(std::string name, std::string alias, std::string color, Type* father);
-  virtual ~Type();
+  Type(const std::string& name, const std::string& alias, const std::string& color, Type* father);
+  virtual ~Type() = default;
 
-  std::string get_name() { return name_; }
+  const std::string& get_name() const { return name_; }
   const char* get_cname() { return name_.c_str(); }
   long long int get_id() { return id_; }
-  bool isColored() { return not color_.empty(); }
+  bool is_colored() { return not color_.empty(); }
 
-  Type* byName(std::string name);
-  ContainerType* getOrCreateContainerType(std::string name);
-  EventType* getOrCreateEventType(std::string name);
-  LinkType* getOrCreateLinkType(std::string name, Type* source, Type* dest);
-  StateType* getOrCreateStateType(std::string name);
-  VariableType* getOrCreateVariableType(std::string name, std::string color);
+  Type* by_name(const std::string& name);
+  LinkType* by_name_or_create(const std::string& name, Type* source, Type* dest);
+  VariableType* by_name_or_create(const std::string& name, const std::string& color);
 
-  void setCallingContainer(Container* container) { issuer_ = container; }
+  template <class T> T* by_name_or_create(const std::string& name)
+  {
+    auto cont = children_.find(name);
+    return cont == children_.end() ? new T(name, this) : static_cast<T*>(cont->second.get());
+  }
 
-  void logDefinition(e_event_type event_type);
-  void logDefinition(Type* source, Type* dest);
+  void set_calling_container(Container* container) { issuer_ = container; }
+
+  void log_definition(e_event_type event_type);
+  void log_definition(Type* source, Type* dest);
 };
 
 class ContainerType : public Type {
 public:
-  explicit ContainerType(std::string name) : Type(name, name, "", nullptr){};
-  ContainerType(std::string name, Type* father);
+  explicit ContainerType(const std::string& name) : Type(name, name, "", nullptr){};
+  ContainerType(const 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, double value);
-  void addEvent(double timestamp, double value);
-  void subEvent(double timestamp, double value);
+  VariableType(const std::string& name, const std::string& color, Type* father);
+  void instr_event(double now, double delta, const char* resource, double value);
+  void set_event(double timestamp, double value);
+  void add_event(double timestamp, double value);
+  void sub_event(double timestamp, double value);
 };
 
 class ValueType : public Type {
 public:
-  std::map<std::string, EntityValue*> values_;
-  ValueType(std::string name, std::string alias, Type* father) : Type(name, alias, "", father){};
-  ValueType(std::string name, Type* father) : Type(name, name, "", father){};
-  virtual ~ValueType();
-  void addEntityValue(std::string name, std::string color);
-  void addEntityValue(std::string name);
-  EntityValue* getEntityValue(std::string name);
+  std::map<std::string, EntityValue> values_;
+  ValueType(const std::string& name, const std::string& alias, Type* father) : Type(name, alias, "", father){};
+  ValueType(const std::string& name, Type* father) : Type(name, name, "", father){};
+  virtual ~ValueType() = default;
+  void add_entity_value(const std::string& name, const std::string& color);
+  void add_entity_value(const std::string& name);
+  EntityValue* get_entity_value(const std::string& name);
 };
 
 class LinkType : public ValueType {
 public:
-  LinkType(std::string name, std::string alias, Type* father);
-  void startEvent(Container* startContainer, std::string value, std::string key);
-  void startEvent(Container* startContainer, std::string value, std::string key, int size);
-  void endEvent(Container* endContainer, std::string value, std::string key);
+  LinkType(const std::string& name, const std::string& alias, Type* father);
+  void start_event(Container* startContainer, const std::string& value, const std::string& key);
+  void start_event(Container* startContainer, const std::string& value, const std::string& key, int size);
+  void end_event(Container* endContainer, const std::string& value, const std::string& key);
 };
 
 class EventType : public ValueType {
 public:
-  EventType(std::string name, Type* father);
+  EventType(const std::string& name, Type* father);
 };
 
 class StateType : public ValueType {
   std::vector<StateEvent*> events_;
 public:
-  StateType(std::string name, Type* father);
-  ~StateType();
-  void setEvent(std::string value_name);
-  void pushEvent(std::string value_name);
-  void pushEvent(std::string value_name, TIData* extra);
-  void popEvent();
-  void popEvent(TIData* extra);
+  StateType(const std::string& name, Type* father);
+  void set_event(const std::string& value_name);
+  void push_event(const std::string& value_name);
+  void push_event(const std::string& value_name, TIData* extra);
+  void pop_event();
+  void pop_event(TIData* extra);
 };
 }
 }