X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2d0e2d7e6947278ab1bafd1cad44ecd78416c79c..9ad3b281f6e187eeb20c48f88820a1c0091bcf8f:/src/instr/instr_private.h diff --git a/src/instr/instr_private.h b/src/instr/instr_private.h index bedae27a32..c9520562c3 100644 --- a/src/instr/instr_private.h +++ b/src/instr/instr_private.h @@ -14,8 +14,6 @@ #include "src/internal_config.h" #include -SG_BEGIN_DECL() - /* Need to define function drand48 for Windows */ /* FIXME: use _drand48() defined in src/surf/random_mgr.c instead */ #ifdef _WIN32 @@ -27,6 +25,8 @@ SG_BEGIN_DECL() #include "xbt/graph.h" #include "xbt/dict.h" +namespace simgrid { +namespace instr { typedef enum { PAJE_DefineContainerType, PAJE_DefineVariableType, @@ -58,33 +58,40 @@ typedef enum { //-------------------------------------------------- -class ess_type { - public: - char *id; - char *name; - char *color; -}; - -class s_type; -typedef s_type *type_t; -class s_type : public ess_type { - public: - e_entity_types kind; - s_type *father; - xbt_dict_t children; - xbt_dict_t values; //valid for all types except variable and container - s_type (const char *typeNameBuff, const char *key, const char *color, e_entity_types kind, type_t father); +class Type { +public: + char* id_; + char* name_; + char* color_; + + e_entity_types kind_; + Type* father_; + xbt_dict_t children_; + xbt_dict_t values_; // valid for all types except variable and container + Type(const char* typeNameBuff, const char* key, const char* color, e_entity_types kind, Type* father); + ~Type(); + Type* getChild(const char* name); + Type* getChildOrNull(const char* name); + + static Type* containerNew(const char* name, Type* father); + static Type* eventNew(const char* name, Type* father); + static Type* variableNew(const char* name, const char* color, Type* father); + static Type* linkNew(const char* name, Type* father, Type* source, Type* dest); + static Type* stateNew(const char* name, Type* father); }; //-------------------------------------------------- -class value : public ess_type{ +class Value { public: - type_t father; - value* ret; - value(const char* name, const char* color, type_t father); - ~value(); - static value* get_or_new(const char* name, const char* color, type_t father); - static value* get(const char* name, type_t father); + char* id_; + char* name_; + char* color_; + + Type* father_; + Value(const char* name, const char* color, Type* father); + ~Value(); + static Value* get_or_new(const char* name, const char* color, Type* father); + static Value* get(const char* name, Type* father); }; @@ -101,171 +108,161 @@ typedef enum { } e_container_types; //-------------------------------------------------- -class s_container; -typedef s_container *container_t; -class s_container { - public: - sg_netpoint_t netpoint; - char *name; /* Unique name of this container */ - char *id; /* Unique id of this container */ - type_t type; /* Type of this container */ - int level; /* Level in the hierarchy, root level is 0 */ - e_container_types kind; /* This container is of what kind */ - s_container *father; - xbt_dict_t children; +class Container { +public: + Container(const char* name, simgrid::instr::e_container_types kind, Container* father); + virtual ~Container(); + + sg_netpoint_t netpoint_; + char* name_; /* Unique name of this container */ + char* id_; /* Unique id of this container */ + Type* type_; /* Type of this container */ + int level_ = 0; /* Level in the hierarchy, root level is 0 */ + e_container_types kind_; /* This container is of what kind */ + Container* father_; + xbt_dict_t children_; }; //-------------------------------------------------- class PajeEvent { public: - double timestamp; - e_event_type event_type; - virtual void print() = 0; - void *data; - virtual ~PajeEvent(); + double timestamp_; + e_event_type eventType_; + virtual void print() = 0; + virtual ~PajeEvent(); }; //-------------------------------------------------- - -class DefineVariableTypeEvent : public PajeEvent -{ - public: - type_t type; - DefineVariableTypeEvent(type_t type); - void print() override; -}; -//-------------------------------------------------- - -class DefineStateTypeEvent : public PajeEvent { - type_t type; - public: - DefineStateTypeEvent(type_t type); - void print() override; -}; - - class SetVariableEvent : public PajeEvent { private: - container_t container; - type_t type; - double value; + Container* container; + Type* type; + double value; + public: - SetVariableEvent (double timestamp, container_t container, type_t type, double value); - void print() override; + SetVariableEvent(double timestamp, Container* container, Type* type, double value); + void print() override; }; - class AddVariableEvent:public PajeEvent { private: - container_t container; - type_t type; - double value; + Container* container; + Type* type; + double value; + public: - AddVariableEvent (double timestamp, container_t container, type_t type, double value); - void print() override; + AddVariableEvent(double timestamp, Container* container, Type* type, double value); + void print() override; }; - //-------------------------------------------------- class SubVariableEvent : public PajeEvent { private: - container_t container; - type_t type; - double value; + Container* container; + Type* type; + double value; + public: - SubVariableEvent(double timestamp, container_t container, type_t type, double value); - void print() override; + SubVariableEvent(double timestamp, Container* container, Type* type, double value); + void print() override; }; //-------------------------------------------------- class SetStateEvent : public PajeEvent { private: - container_t container; - type_t type; - value* val; - const char* filename; - int linenumber; + Container* container; + Type* type; + Value* val; + const char* filename; + int linenumber; + public: - SetStateEvent(double timestamp, container_t container, type_t type, value* val); + SetStateEvent(double timestamp, Container* container, Type* type, Value* val); void print() override; }; class PushStateEvent : public PajeEvent { public: - container_t container; - type_t type; - value* val; - int size; - const char* filename; - int linenumber; - void* extra_; + Container* container; + Type* type; + Value* val; + int size; + const char* filename; + int linenumber; + void* extra_; + public: - PushStateEvent(double timestamp, container_t container, type_t type, value* val); - PushStateEvent(double timestamp, container_t container, type_t type, value* val, void* extra); + PushStateEvent(double timestamp, Container* container, Type* type, Value* val); + PushStateEvent(double timestamp, Container* container, Type* type, Value* val, void* extra); void print() override; }; class PopStateEvent : public PajeEvent { - container_t container; - type_t type; - public: - PopStateEvent (double timestamp, container_t container, type_t type); + Container* container; + Type* type; + +public: + PopStateEvent(double timestamp, Container* container, Type* type); void print() override; }; class ResetStateEvent : public PajeEvent { - container_t container; - type_t type; - public: - ResetStateEvent (double timestamp, container_t container, type_t type); + Container* container; + Type* type; + +public: + ResetStateEvent(double timestamp, Container* container, Type* type); void print() override; }; class StartLinkEvent : public PajeEvent { - public: - container_t container; - type_t type; - container_t sourceContainer; - char *value; - char *key; - int size; - public: - ~StartLinkEvent(); - StartLinkEvent(double timestamp, container_t container, type_t type, container_t sourceContainer, const char* value, - const char* key); - StartLinkEvent(double timestamp, container_t container, type_t type, container_t sourceContainer, const char* value, - const char* key, int size); - void print() override; + Container* container_; + Type* type_; + Container* sourceContainer_; + std::string value_; + std::string key_; + int size_; + +public: + StartLinkEvent(double timestamp, Container* container, Type* type, Container* sourceContainer, const char* value, + const char* key); + StartLinkEvent(double timestamp, Container* container, Type* type, Container* sourceContainer, const char* value, + const char* key, int size); + void print() override; }; class EndLinkEvent : public PajeEvent { - container_t container; - type_t type; - container_t destContainer; + Container* container; + Type* type; + Container* destContainer; char *value; char *key; public: - EndLinkEvent (double timestamp, container_t container, type_t type, container_t destContainer, - const char *value, const char *key); - ~EndLinkEvent(); - void print() override; + EndLinkEvent(double timestamp, Container* container, Type* type, Container* destContainer, const char* value, + const char* key); + ~EndLinkEvent(); + void print() override; }; class NewEvent : public PajeEvent { public: - container_t container; - type_t type; - value* val; - -public: - NewEvent(double timestamp, container_t container, type_t type, value* val); - void print() override; + Container* container; + Type* type; + Value* val; + public: + NewEvent(double timestamp, Container* container, Type* type, Value* val); + void print() override; }; +} +} // namespace simgrid::instr +typedef simgrid::instr::Container* container_t; + +SG_BEGIN_DECL() extern XBT_PRIVATE std::set created_categories; extern XBT_PRIVATE std::set declared_marks; @@ -329,32 +326,17 @@ XBT_PUBLIC(void) TRACE_surf_resource_utilization_alloc(); extern XBT_PRIVATE std::set trivaNodeTypes; extern XBT_PRIVATE std::set trivaEdgeTypes; XBT_PRIVATE long long int instr_new_paje_id (); -XBT_PRIVATE void PJ_container_alloc (); -XBT_PRIVATE void PJ_container_release (); -XBT_PUBLIC(container_t) PJ_container_new (const char *name, e_container_types kind, container_t father); XBT_PUBLIC(container_t) PJ_container_get (const char *name); -XBT_PUBLIC(container_t) PJ_container_get_or_null (const char *name); +XBT_PUBLIC(simgrid::instr::Container*) PJ_container_get_or_null(const char* name); XBT_PUBLIC(container_t) PJ_container_get_root (); XBT_PUBLIC(void) PJ_container_set_root (container_t root); -XBT_PUBLIC(void) PJ_container_free (container_t container); XBT_PUBLIC(void) PJ_container_free_all (void); XBT_PUBLIC(void) PJ_container_remove_from_parent (container_t container); /* instr_paje_types.c */ -XBT_PRIVATE void PJ_type_release (); -XBT_PUBLIC(type_t) PJ_type_get_root (); -XBT_PRIVATE type_t PJ_type_container_new (const char *name, type_t father); -XBT_PRIVATE type_t PJ_type_event_new (const char *name, type_t father); -type_t PJ_type_link_new (const char *name, type_t father, type_t source, type_t dest); -XBT_PRIVATE XBT_PRIVATE type_t PJ_type_variable_new (const char *name, const char *color, type_t father); -XBT_PRIVATE type_t PJ_type_state_new (const char *name, type_t father); -XBT_PUBLIC(type_t) PJ_type_get (const char *name, const type_t father); -XBT_PUBLIC(type_t) PJ_type_get_or_null (const char *name, type_t father); -XBT_PRIVATE XBT_PRIVATE void PJ_type_free (type_t type); +XBT_PUBLIC(simgrid::instr::Type*) PJ_type_get_root(); /* instr_config.c */ -XBT_PRIVATE void recursiveDestroyType (type_t type); - XBT_PRIVATE void TRACE_TI_start(); XBT_PRIVATE void TRACE_TI_end(); @@ -427,13 +409,13 @@ extern instr_fmt_type_t instr_fmt_type; SG_END_DECL() -void DefineContainerEvent(type_t type); -void LogVariableTypeDefinition(type_t type); -void LogStateTypeDefinition(type_t type); -void LogLinkTypeDefinition(type_t type, type_t source, type_t dest); -void LogEntityValue(value* val); +void LogContainerTypeDefinition(simgrid::instr::Type* type); +void LogVariableTypeDefinition(simgrid::instr::Type* type); +void LogStateTypeDefinition(simgrid::instr::Type* type); +void LogLinkTypeDefinition(simgrid::instr::Type* type, simgrid::instr::Type* source, simgrid::instr::Type* dest); +void LogEntityValue(simgrid::instr::Value* val); void LogContainerCreation (container_t container); void LogContainerDestruction (container_t container); -void LogDefineEventType(type_t type); +void LogDefineEventType(simgrid::instr::Type* type); #endif