X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b2fb141eada975e36db406b18e4fdee68012d3a7..62bd5986b2a76f8bc3328296e8b425f1c03ae0b6:/src/instr/instr_private.h diff --git a/src/instr/instr_private.h b/src/instr/instr_private.h index ffdaac29d5..fbff688bca 100644 --- a/src/instr/instr_private.h +++ b/src/instr/instr_private.h @@ -1,238 +1,440 @@ -/* Copyright (c) 2010. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2010-2017. 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. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #ifndef INSTR_PRIVATE_H_ #define INSTR_PRIVATE_H_ +#include + +#include "simgrid/instr.h" +#include "instr/instr_interface.h" +#include "src/internal_config.h" #include "simgrid_config.h" -#ifdef HAVE_TRACING +SG_BEGIN_DECL() /* Need to define function drand48 for Windows */ +/* FIXME: use _drand48() defined in src/surf/random_mgr.c instead */ #ifdef _WIN32 # define drand48() (rand()/(RAND_MAX + 1.0)) #endif #define INSTR_DEFAULT_STR_SIZE 500 -#include "instr/instr.h" -#include "msg/msg.h" -#include "simdag/private.h" -#include "simix/private.h" -#include "xbt/graph_private.h" +#include "xbt/graph.h" +#include "xbt/dict.h" + +typedef enum { + PAJE_DefineContainerType, + PAJE_DefineVariableType, + PAJE_DefineStateType, + PAJE_DefineEventType, + PAJE_DefineLinkType, + PAJE_DefineEntityValue, + PAJE_CreateContainer, + PAJE_DestroyContainer, + PAJE_SetVariable, + PAJE_AddVariable, + PAJE_SubVariable, + PAJE_SetState, + PAJE_PushState, + PAJE_PopState, + PAJE_ResetState, + PAJE_StartLink, + PAJE_EndLink, + PAJE_NewEvent +} e_event_type; typedef enum { TYPE_VARIABLE, TYPE_LINK, TYPE_CONTAINER, TYPE_STATE, - TYPE_EVENT, + TYPE_EVENT } e_entity_types; -typedef struct s_type *type_t; -typedef struct s_type { +//-------------------------------------------------- +class s_type; +typedef s_type *type_t; +class s_type { + public: char *id; char *name; char *color; e_entity_types kind; - struct s_type *father; + s_type *father; xbt_dict_t children; xbt_dict_t values; //valid for all types except variable and container -}s_type_t; +}; -typedef struct s_val *val_t; -typedef struct s_val { +typedef s_type s_type_t; + +//-------------------------------------------------- +class s_val; +typedef s_val *val_t; + +class s_val { + public: char *id; char *name; char *color; type_t father; -}s_val_t; +}; +typedef s_val s_val_t; +//-------------------------------------------------- typedef enum { INSTR_HOST, INSTR_LINK, INSTR_ROUTER, INSTR_AS, INSTR_SMPI, + INSTR_MSG_VM, INSTR_MSG_PROCESS, - INSTR_MSG_TASK, + INSTR_MSG_TASK } e_container_types; -typedef struct s_container *container_t; -typedef struct s_container { +//-------------------------------------------------- +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 */ - struct s_container *father; + s_container *father; xbt_dict_t children; -}s_container_t; +}; +typedef s_container s_container_t; + +//-------------------------------------------------- +class PajeEvent { + public: + double timestamp; + e_event_type event_type; + virtual void print() = 0; + void *data; + 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 { + container_t container; + type_t type; + double value; + public: + SetVariableEvent (double timestamp, container_t container, type_t type, double value); + void print() override; +}; + + +class AddVariableEvent:public PajeEvent { + container_t container; + type_t type; + double value; + public: + AddVariableEvent (double timestamp, container_t container, type_t type, double value); + void print() override; +}; + +//-------------------------------------------------- + + +class SubVariableEvent : public PajeEvent { + public: + container_t container; + type_t type; + double value; + public: + SubVariableEvent(double timestamp, container_t container, type_t type, double value); + void print() override; +}; +//-------------------------------------------------- + +class SetStateEvent : public PajeEvent { + public: + container_t container; + type_t type; + val_t value; + const char* filename; + int linenumber; + public: + SetStateEvent (double timestamp, container_t container, type_t type, val_t value); + void print() override; +}; + + +class PushStateEvent : public PajeEvent { + public: + container_t container; + type_t type; + val_t value; + int size; + const char* filename; + int linenumber; + void* extra_; + public: + PushStateEvent (double timestamp, container_t container, type_t type, val_t value); + PushStateEvent (double timestamp, container_t container, type_t type, val_t value, + 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); + void print() override; +}; + +class ResetStateEvent : public PajeEvent { + container_t container; + type_t type; + public: + ResetStateEvent (double timestamp, container_t container, type_t type); + void print() override; +}; -extern xbt_dict_t created_categories; -extern double TRACE_last_timestamp_to_dump; +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; +}; + +class EndLinkEvent : public PajeEvent { + container_t container; + type_t type; + container_t 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; +}; + + +class NewEvent : public PajeEvent { + public: + container_t container; + type_t type; + val_t value; + public: + NewEvent (double timestamp, container_t container, type_t type, val_t value); + void print() override; + +}; + + +extern XBT_PRIVATE xbt_dict_t created_categories; +extern XBT_PRIVATE xbt_dict_t declared_marks; +extern XBT_PRIVATE xbt_dict_t user_host_variables; +extern XBT_PRIVATE xbt_dict_t user_vm_variables; +extern XBT_PRIVATE xbt_dict_t user_link_variables; +extern XBT_PRIVATE double TRACE_last_timestamp_to_dump; + +/* instr_paje_header.c */ +XBT_PRIVATE void TRACE_header(int basic, int size); /* from paje.c */ -void TRACE_paje_create_header(void); -void TRACE_paje_start(void); -void TRACE_paje_end(void); -void TRACE_paje_dump_buffer (int force); -void new_pajeDefineContainerType(type_t type); -void new_pajeDefineVariableType(type_t type); -void new_pajeDefineStateType(type_t type); -void new_pajeDefineEventType(type_t type); -void new_pajeDefineLinkType(type_t type, type_t source, type_t dest); -void new_pajeDefineEntityValue (val_t type); -void new_pajeCreateContainer (container_t container); -void new_pajeDestroyContainer (container_t container); -void new_pajeSetVariable (double timestamp, container_t container, type_t type, double value); -void new_pajeAddVariable (double timestamp, container_t container, type_t type, double value); -void new_pajeSubVariable (double timestamp, container_t container, type_t type, double value); -void new_pajeSetState (double timestamp, container_t container, type_t type, val_t value); -void new_pajePushState (double timestamp, container_t container, type_t type, val_t value); -void new_pajePopState (double timestamp, container_t container, type_t type); -void new_pajeStartLink (double timestamp, container_t container, type_t type, container_t sourceContainer, const char *value, const char *key); -void new_pajeEndLink (double timestamp, container_t container, type_t type, container_t destContainer, const char *value, const char *key); -void new_pajeNewEvent (double timestamp, container_t container, type_t type, val_t value); - -/* declaration of instrumentation functions from msg_task_instr.c */ -char *TRACE_task_container(m_task_t task, char *output, int len); -void TRACE_msg_task_create(m_task_t task); -void TRACE_msg_task_execute_start(m_task_t task); -void TRACE_msg_task_execute_end(m_task_t task); -void TRACE_msg_task_destroy(m_task_t task); -void TRACE_msg_task_get_start(void); -void TRACE_msg_task_get_end(double start_time, m_task_t task); -int TRACE_msg_task_put_start(m_task_t task); //returns TRUE if the task_put_end must be called -void TRACE_msg_task_put_end(void); - -/* declaration of instrumentation functions from msg_process_instr.c */ -char *instr_process_id (m_process_t proc, char *str, int len); -char *instr_process_id_2 (const char *process_name, int process_pid, char *str, int len); -void TRACE_msg_process_change_host(m_process_t process, m_host_t old_host, - m_host_t new_host); -void TRACE_msg_process_create (const char *process_name, int process_pid, m_host_t host); -void TRACE_msg_process_kill(m_process_t process); -void TRACE_msg_process_suspend(m_process_t process); -void TRACE_msg_process_resume(m_process_t process); -void TRACE_msg_process_sleep_in(m_process_t process); //called from msg/gos.c -void TRACE_msg_process_sleep_out(m_process_t process); -void TRACE_msg_process_end(m_process_t process); - -/* from surf_instr.c */ -void TRACE_surf_alloc(void); -void TRACE_surf_release(void); -void TRACE_surf_host_set_power(double date, const char *resource, double power); -void TRACE_surf_link_set_bandwidth(double date, const char *resource, double bandwidth); -void TRACE_surf_link_set_latency(double date, const char *resource, double latency); -void TRACE_surf_action(surf_action_t surf_action, const char *category); - -//for tracing gtnets -void TRACE_surf_gtnets_communicate(void *action, const char *src, const char *dst); -void TRACE_surf_gtnets_destroy(void *action); - -/* from smpi_instr.c */ -void TRACE_internal_smpi_set_category (const char *category); -const char *TRACE_internal_smpi_get_category (void); -void TRACE_smpi_alloc(void); -void TRACE_smpi_release(void); -void TRACE_smpi_init(int rank); -void TRACE_smpi_finalize(int rank); -void TRACE_smpi_start(void); -void TRACE_smpi_collective_in(int rank, int root, const char *operation); -void TRACE_smpi_collective_out(int rank, int root, const char *operation); -void TRACE_smpi_ptp_in(int rank, int src, int dst, const char *operation); -void TRACE_smpi_ptp_out(int rank, int src, int dst, const char *operation); -void TRACE_smpi_send(int rank, int src, int dst); -void TRACE_smpi_recv(int rank, int src, int dst); +XBT_PRIVATE void TRACE_paje_start(); +XBT_PRIVATE void TRACE_paje_end(); +XBT_PRIVATE void TRACE_paje_dump_buffer (int force); + /* from instr_config.c */ -int TRACE_start (void); -int TRACE_end (void); -int TRACE_needs_platform (void); -int TRACE_is_enabled(void); -int TRACE_platform(void); -int TRACE_is_configured(void); -int TRACE_smpi_is_enabled(void); -int TRACE_smpi_is_grouped(void); -int TRACE_categorized (void); -int TRACE_uncategorized (void); -int TRACE_msg_task_is_enabled(void); -int TRACE_msg_process_is_enabled(void); -int TRACE_buffer (void); -int TRACE_onelink_only (void); -int TRACE_disable_destroy (void); -char *TRACE_get_filename(void); -char *TRACE_get_triva_uncat_conf (void); -char *TRACE_get_triva_cat_conf (void); -void TRACE_global_init(int *argc, char **argv); -void TRACE_help(int detailed); -void TRACE_generate_triva_uncat_conf (void); -void TRACE_generate_triva_cat_conf (void); -void TRACE_set_network_update_mechanism (void); +XBT_PRIVATE bool TRACE_needs_platform (); +XBT_PRIVATE bool TRACE_is_enabled(); +XBT_PRIVATE bool TRACE_platform(); +XBT_PRIVATE bool TRACE_platform_topology(); +XBT_PRIVATE bool TRACE_is_configured(); +XBT_PRIVATE bool TRACE_categorized (); +XBT_PRIVATE bool TRACE_uncategorized (); +XBT_PRIVATE bool TRACE_msg_process_is_enabled(); +XBT_PRIVATE bool TRACE_msg_vm_is_enabled(); +XBT_PRIVATE bool TRACE_buffer (); +XBT_PRIVATE bool TRACE_disable_link(); +XBT_PRIVATE bool TRACE_disable_speed(); +XBT_PRIVATE bool TRACE_onelink_only (); +XBT_PRIVATE bool TRACE_disable_destroy (); +XBT_PRIVATE bool TRACE_basic (); +XBT_PRIVATE bool TRACE_display_sizes (); +XBT_PRIVATE char *TRACE_get_comment (); +XBT_PRIVATE char *TRACE_get_comment_file (); +XBT_PRIVATE int TRACE_precision (); +XBT_PRIVATE char *TRACE_get_filename(); +XBT_PRIVATE char *TRACE_get_viva_uncat_conf (); +XBT_PRIVATE char *TRACE_get_viva_cat_conf (); +XBT_PRIVATE void TRACE_generate_viva_uncat_conf (); +XBT_PRIVATE void TRACE_generate_viva_cat_conf (); +XBT_PRIVATE void instr_pause_tracing (); +XBT_PRIVATE void instr_resume_tracing (); + +/* Public functions used in SMPI */ +XBT_PUBLIC(bool) TRACE_smpi_is_enabled(); +XBT_PUBLIC(bool) TRACE_smpi_is_grouped(); +XBT_PUBLIC(bool) TRACE_smpi_is_computing(); +XBT_PUBLIC(bool) TRACE_smpi_is_sleeping(); +XBT_PUBLIC(bool) TRACE_smpi_view_internals(); /* from resource_utilization.c */ -void TRACE_surf_host_set_utilization(const char *resource, - smx_action_t smx_action, - surf_action_t surf_action, - double value, double now, +XBT_PRIVATE void TRACE_surf_host_set_utilization(const char *resource, const char *category, double value, double now, double delta); -void TRACE_surf_link_set_utilization(const char *resource, smx_action_t smx_action, - surf_action_t surf_action, - double value, double now, +XBT_PRIVATE void TRACE_surf_link_set_utilization(const char *resource,const char *category, double value, double now, double delta); -void TRACE_surf_resource_utilization_start(smx_action_t action); -void TRACE_surf_resource_utilization_event(smx_action_t action, double now, - double delta, - const char *variable, - const char *resource, - double value); -void TRACE_surf_resource_utilization_end(smx_action_t action); -void TRACE_surf_resource_utilization_alloc(void); -void TRACE_surf_resource_utilization_release(void); - -/* sd_instr.c */ -void TRACE_sd_task_create(SD_task_t task); -void TRACE_sd_task_destroy(SD_task_t task); +XBT_PUBLIC(void) TRACE_surf_resource_utilization_alloc(); /* instr_paje.c */ -extern xbt_dict_t trivaNodeTypes; -extern xbt_dict_t trivaEdgeTypes; -container_t newContainer (const char *name, e_container_types kind, container_t father); -container_t getContainer (const char *name); -int knownContainerWithName (const char *name); -container_t getContainerByName (const char *name); -char *getContainerIdByName (const char *name); -char *getVariableTypeIdByName (const char *name, type_t father); -container_t getRootContainer (void); -void instr_paje_init (container_t root); -type_t getRootType (void); -type_t getContainerType (const char *name, type_t father); -type_t getEventType (const char *name, const char *color, type_t father); -type_t getVariableType (const char *name, const char *color, type_t father); -type_t getLinkType (const char *name, type_t father, type_t source, type_t dest); -type_t getStateType (const char *name, type_t father); -type_t getType (const char *name, type_t father); -val_t getValue (const char *valuename, const char *color, type_t father); -val_t getValueByName (const char *valuename, type_t father); -void destroyContainer (container_t container); -void destroyAllContainers (void); - -/* instr_routing.c */ -void instr_routing_define_callbacks (void); -void instr_new_variable_type (const char *new_typename, const char *color); -void instr_new_user_variable_type (const char *father_type, const char *new_typename, const char *color); -int instr_platform_traced (void); -xbt_graph_t instr_routing_platform_graph (void); -void instr_routing_platform_graph_export_graphviz (xbt_graph_t g, const char *filename); - -#endif /* HAVE_TRACING */ - -#ifdef HAVE_JEDULE -#include "instr/jedule/jedule_sd_binding.h" -#endif +extern XBT_PRIVATE xbt_dict_t trivaNodeTypes; +extern XBT_PRIVATE xbt_dict_t 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(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_alloc (); +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); +void PJ_type_free_all (); +XBT_PRIVATE XBT_PRIVATE void PJ_type_free (type_t type); -#endif /* INSTR_PRIVATE_H_ */ +/* instr_paje_values.c */ +XBT_PUBLIC(val_t) PJ_value_new (const char *name, const char *color, type_t father); +XBT_PUBLIC(val_t) PJ_value_get_or_new (const char *name, const char *color, type_t father); +XBT_PUBLIC(val_t) PJ_value_get (const char *name, const type_t father); +XBT_PRIVATE void PJ_value_free (val_t value); + +XBT_PRIVATE void TRACE_TI_start(); +XBT_PRIVATE void TRACE_TI_end(); + +XBT_PRIVATE void TRACE_paje_dump_buffer (int force); +XBT_PRIVATE void dump_comment_file (const char *filename); +XBT_PRIVATE void dump_comment (const char *comment); + +struct s_instr_extra_data; +typedef struct s_instr_extra_data *instr_extra_data; + +typedef enum{ + TRACING_INIT, + TRACING_FINALIZE, + TRACING_COMM_SIZE, + TRACING_COMM_SPLIT, + TRACING_COMM_DUP, + TRACING_SEND, + TRACING_ISEND, + TRACING_SSEND, + TRACING_ISSEND, + TRACING_RECV, + TRACING_IRECV, + TRACING_SENDRECV, + TRACING_TEST, + TRACING_WAIT, + TRACING_WAITALL, + TRACING_WAITANY, + TRACING_BARRIER, + TRACING_BCAST, + TRACING_REDUCE, + TRACING_ALLREDUCE, + TRACING_ALLTOALL, + TRACING_ALLTOALLV, + TRACING_GATHER, + TRACING_GATHERV, + TRACING_SCATTER, + TRACING_SCATTERV, + TRACING_ALLGATHER, + TRACING_ALLGATHERV, + TRACING_REDUCE_SCATTER, + TRACING_COMPUTING, + TRACING_SLEEPING, + TRACING_SCAN, + TRACING_EXSCAN +} e_caller_type ; + +typedef struct s_instr_extra_data { + e_caller_type type; + int send_size; + int recv_size; + double comp_size; + double sleep_duration; + int src; + int dst; + int root; + const char* datatype1; + const char* datatype2; + int * sendcounts; + int * recvcounts; + int num_processes; +} s_instr_extra_data_t; + +/* Format of TRACING output. + * - paje is the regular format, that we all know + * - TI is a trick to reuse the tracing functions to generate a time independent trace during the execution. Such trace can easily be replayed with smpi_replay afterward. + * This trick should be removed and replaced by some code using the signal that we will create to cleanup the TRACING + */ +typedef enum { instr_fmt_paje, instr_fmt_TI } instr_fmt_type_t; +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 (val_t value); +void LogContainerCreation (container_t container); +void LogContainerDestruction (container_t container); +void LogDefineEventType(type_t type); + +#endif