Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ok, I stop trying to please sonar.
[simgrid.git] / src / msg / msg_private.h
1 /* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef METASIMGRID_PRIVATE_H
7 #define METASIMGRID_PRIVATE_H
8
9 #include "simgrid/msg.h"
10
11 #include "src/kernel/activity/SynchroExec.hpp"
12 #include "src/kernel/activity/SynchroComm.hpp"
13
14 #include <xbt/Extendable.hpp>
15
16 /**************** datatypes **********************************/
17 /**************************** Host Extension *********************************/
18 namespace simgrid {
19 class MsgHostExt {
20 public:
21   static simgrid::xbt::Extension<s4u::Host, MsgHostExt> EXTENSION_ID;
22
23   ~MsgHostExt() {
24     delete file_descriptor_table;
25   }
26   std::vector<int>* file_descriptor_table = nullptr; // Created lazily on need
27 };
28 }
29 /********************************* Task **************************************/
30
31 typedef struct simdata_task {
32   ~simdata_task()
33   {
34     if (this->compute)
35       this->compute->unref();
36
37     /* parallel tasks only */
38     xbt_free(this->host_list);
39   }
40   void setUsed();
41   void setNotUsed()
42   {
43     this->isused = false;
44   }
45
46   simgrid::kernel::activity::Exec *compute = nullptr; /* SIMIX modeling of computation */
47   simgrid::kernel::activity::Comm *comm = nullptr;    /* SIMIX modeling of communication */
48   double bytes_amount = 0.0; /* Data size */
49   double flops_amount = 0.0; /* Computation size */
50   msg_process_t sender = nullptr;
51   msg_process_t receiver = nullptr;
52   msg_host_t source = nullptr;
53   double priority = 0.0;
54   double bound = 0.0; /* Capping for CPU resource */
55   double rate = 0.0;  /* Capping for network resource */
56
57   bool isused = false;  /* Indicates whether the task is used in SIMIX currently */
58   int host_nb = 0;      /* ==0 if sequential task; parallel task if not */
59   /*******  Parallel Tasks Only !!!! *******/
60   sg_host_t *host_list = nullptr;
61   double *flops_parallel_amount = nullptr;
62   double *bytes_parallel_amount = nullptr;
63
64 private:
65   void reportMultipleUse() const;
66 } s_simdata_task_t;
67
68 /********************************* File **************************************/
69 typedef struct simdata_file {
70   smx_file_t smx_file;
71 } s_simdata_file_t;
72
73 /******************************* Process *************************************/
74
75 namespace simgrid {
76 class MsgActorExt {
77 public:
78   explicit MsgActorExt(void* d) : data(d) {}
79   msg_error_t errno_ = MSG_OK;  /* the last value returned by a MSG_function */
80   void* data = nullptr; /* user data */
81 };
82 }
83
84 typedef struct process_arg {
85   const char *name;
86   xbt_main_func_t code;
87   void *data;
88   msg_host_t m_host;
89   int argc;
90   char **argv;
91   double kill_time;
92 } s_process_arg_t, *process_arg_t;
93
94 typedef struct msg_comm {
95   smx_activity_t s_comm;          /* SIMIX communication object encapsulated (the same for both processes) */
96   msg_task_t task_sent;           /* task sent (NULL for the receiver) */
97   msg_task_t *task_received;      /* where the task will be received (NULL for the sender) */
98   msg_error_t status;           /* status of the communication once finished */
99 } s_msg_comm_t;
100
101 /************************** Global variables ********************************/
102 typedef struct MSG_Global {
103   int debug_multiple_use;       /* whether we want an error message when reusing the same Task for 2 things */
104   unsigned long int sent_msg;   /* Total amount of messages sent during the simulation */
105   void (*task_copy_callback) (msg_task_t task, msg_process_t src, msg_process_t dst);
106   void_f_pvoid_t process_data_cleanup;
107 } s_MSG_Global_t, *MSG_Global_t;
108
109 SG_BEGIN_DECL()
110
111 XBT_PUBLIC_DATA(MSG_Global_t) msg_global;
112
113 /*************************************************************/
114
115 XBT_PRIVATE msg_host_t __MSG_host_create(sg_host_t host);
116 XBT_PRIVATE msg_storage_t __MSG_storage_create(smx_storage_t storage);
117 XBT_PRIVATE void __MSG_storage_destroy(msg_storage_priv_t host);
118 XBT_PRIVATE void __MSG_file_destroy(msg_file_priv_t host);
119
120 XBT_PRIVATE void MSG_process_cleanup_from_SIMIX(smx_actor_t smx_proc);
121 XBT_PRIVATE smx_actor_t MSG_process_create_from_SIMIX(const char* name, std::function<void()> code, void* data,
122                                                       sg_host_t host, xbt_dict_t properties,
123                                                       smx_actor_t parent_process);
124 XBT_PRIVATE void MSG_comm_copy_data_from_SIMIX(smx_activity_t comm, void* buff, size_t buff_size);
125
126 XBT_PRIVATE void MSG_post_create_environment();
127
128 XBT_PRIVATE void MSG_host_add_task(msg_host_t host, msg_task_t task);
129 XBT_PRIVATE void MSG_host_del_task(msg_host_t host, msg_task_t task);
130
131 /********** Tracing **********/
132 /* declaration of instrumentation functions from msg_task_instr.c */
133 XBT_PRIVATE void TRACE_msg_set_task_category(msg_task_t task, const char *category);
134 XBT_PRIVATE void TRACE_msg_task_create(msg_task_t task);
135 XBT_PRIVATE void TRACE_msg_task_execute_start(msg_task_t task);
136 XBT_PRIVATE void TRACE_msg_task_execute_end(msg_task_t task);
137 XBT_PRIVATE void TRACE_msg_task_destroy(msg_task_t task);
138 XBT_PRIVATE void TRACE_msg_task_get_end(double start_time, msg_task_t task);
139 XBT_PRIVATE void TRACE_msg_task_get_start();
140 XBT_PRIVATE int TRACE_msg_task_put_start(msg_task_t task);    //returns TRUE if the task_put_end must be called
141 XBT_PRIVATE void TRACE_msg_task_put_end();
142
143 /* declaration of instrumentation functions from msg_process_instr.c */
144 XBT_PRIVATE char *instr_process_id (msg_process_t proc, char *str, int len);
145 XBT_PRIVATE char *instr_process_id_2 (const char *process_name, int process_pid, char *str, int len);
146 XBT_PRIVATE void TRACE_msg_process_change_host(msg_process_t process, msg_host_t old_host, msg_host_t new_host);
147 XBT_PRIVATE void TRACE_msg_process_create (const char *process_name, int process_pid, msg_host_t host);
148 XBT_PRIVATE void TRACE_msg_process_destroy (const char *process_name, int process_pid);
149 XBT_PRIVATE void TRACE_msg_process_kill(smx_process_exit_status_t status, msg_process_t process);
150 XBT_PRIVATE void TRACE_msg_process_suspend(msg_process_t process);
151 XBT_PRIVATE void TRACE_msg_process_resume(msg_process_t process);
152 XBT_PRIVATE void TRACE_msg_process_sleep_in(msg_process_t process);   //called from msg/gos.c
153 XBT_PRIVATE void TRACE_msg_process_sleep_out(msg_process_t process);
154
155 SG_END_DECL()
156
157 XBT_PUBLIC(msg_process_t)
158 MSG_process_create_from_stdfunc(const char* name, std::function<void()> code, void* data, msg_host_t host,
159                                 xbt_dict_t properties);
160
161 inline void simdata_task::setUsed()
162 {
163   if (this->isused)
164     this->reportMultipleUse();
165   if (msg_global->debug_multiple_use) {
166     // TODO, backtrace
167   }
168   this->isused = true;
169 }
170
171 #endif