Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make surf++ compile
[simgrid.git] / src / msg / msg_private.h
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef METASIMGRID_PRIVATE_H
8 #define METASIMGRID_PRIVATE_H
9
10 #include "msg/msg.h"
11 #include "simgrid/simix.h"
12 #include "surf/solver.h"
13 #include "surf/surf.h"
14 #include "xbt/fifo.h"
15 #include "xbt/dynar.h"
16 #include "xbt/swag.h"
17 #include "xbt/dict.h"
18 #include "xbt/config.h"
19 #include "instr/instr_private.h"
20 SG_BEGIN_DECL()
21
22 /**************** datatypes **********************************/
23
24 /********************************* Task **************************************/
25
26 typedef struct simdata_task {
27   smx_action_t compute;         /* SIMIX modeling of computation */
28   smx_action_t comm;            /* SIMIX modeling of communication */
29   double message_size;          /* Data size */
30   double computation_amount;    /* Computation size */
31   msg_process_t sender;
32   msg_process_t receiver;
33   msg_host_t source;
34   double priority;
35   double rate;
36   int isused;  /* Indicates whether the task is used in SIMIX currently */
37   int host_nb;                  /* ==0 if sequential task; parallel task if not */
38   /*******  Parallel Tasks Only !!!! *******/
39   smx_host_t *host_list;
40   double *comp_amount;
41   double *comm_amount;
42 } s_simdata_task_t;
43
44 /********************************* File **************************************/
45 typedef struct simdata_file {
46   smx_file_t smx_file;
47 } s_simdata_file_t;
48
49 /*************** Begin GPU ***************/
50 typedef struct simdata_gpu_task {
51   double computation_amount;    /* Computation size */
52   double dispatch_latency;
53   double collect_latency;
54   int isused;  /* Indicates whether the task is used in SIMIX currently */
55 } s_simdata_gpu_task_t;
56 /*************** End GPU ***************/
57
58 /******************************* Process *************************************/
59
60 typedef struct simdata_process {
61   msg_host_t m_host;              /* the host on which the process is running */
62   msg_host_t put_host;            /* used for debugging purposes */
63 #ifdef MSG_USE_DEPRECATED
64   m_channel_t put_channel;      /* used for debugging purposes */
65 #endif
66   smx_action_t waiting_action;
67   msg_task_t waiting_task;
68   char **argv;                  /* arguments table if any */
69   int argc;                     /* arguments number if any */
70   msg_error_t last_errno;       /* the last value returned by a MSG_function */
71
72   msg_vm_t vm;                 /* virtual machine the process is in */
73
74   void* data;                   /* user data */
75 } s_simdata_process_t, *simdata_process_t;
76
77 typedef struct process_arg {
78   const char *name;
79   xbt_main_func_t code;
80   void *data;
81   msg_host_t m_host;
82   int argc;
83   char **argv;
84   double kill_time;
85 } s_process_arg_t, *process_arg_t;
86
87 typedef struct msg_comm {
88   smx_action_t s_comm;          /* SIMIX communication object encapsulated (the same for both processes) */
89   msg_task_t task_sent;           /* task sent (NULL for the receiver) */
90   msg_task_t *task_received;      /* where the task will be received (NULL for the sender) */
91   msg_error_t status;           /* status of the communication once finished */
92 } s_msg_comm_t;
93 /*
94 typedef enum {
95   msg_vm_state_suspended, msg_vm_state_running, msg_vm_state_migrating
96 } e_msg_vm_state_t;
97
98 typedef struct msg_vm {
99   const char *name;
100   s_xbt_swag_hookup_t all_vms_hookup;
101   s_xbt_swag_hookup_t host_vms_hookup;
102   xbt_dynar_t processes;
103   e_msg_vm_state_t state;
104   msg_host_t location;
105   int coreAmount;
106 } s_msg_vm_t;
107 */
108 /************************** Global variables ********************************/
109 typedef struct MSG_Global {
110   xbt_fifo_t host;
111 #ifdef MSG_USE_DEPRECATED
112   int max_channel;
113 #endif
114   int session;
115   unsigned long int sent_msg;   /* Total amount of messages sent during the simulation */
116   void (*task_copy_callback) (msg_task_t task, msg_process_t src, msg_process_t dst);
117   void_f_pvoid_t process_data_cleanup;
118   xbt_swag_t vms;
119 } s_MSG_Global_t, *MSG_Global_t;
120
121 /*extern MSG_Global_t msg_global;*/
122 XBT_PUBLIC_DATA(MSG_Global_t) msg_global;
123
124
125 /*************************************************************/
126
127 #ifdef MSG_USE_DEPRECATED
128 #  define PROCESS_SET_ERRNO(val) \
129   (((simdata_process_t) SIMIX_process_self_get_data(SIMIX_process_self()))->last_errno=val)
130 #  define PROCESS_GET_ERRNO() \
131   (((simdata_process_t) SIMIX_process_self_get_data(SIMIX_process_self()))->last_errno)
132 #define MSG_RETURN(val) do {PROCESS_SET_ERRNO(val);return(val);} while(0)
133 /* #define CHECK_ERRNO()  ASSERT((PROCESS_GET_ERRNO()!=MSG_HOST_FAILURE),"Host failed, you cannot call this function.") */
134
135 #else
136 #  define MSG_RETURN(val) return(val)
137 #endif
138
139 msg_host_t __MSG_host_create(smx_host_t workstation);
140 void __MSG_host_destroy(msg_host_priv_t host);
141
142 void MSG_process_cleanup_from_SIMIX(smx_process_t smx_proc);
143 void MSG_process_create_from_SIMIX(smx_process_t *process, const char *name,
144                                    xbt_main_func_t code, void *data,
145                                    const char *hostname, double kill_time,  int argc,
146                                    char **argv, xbt_dict_t properties, int auto_restart);
147 void MSG_comm_copy_data_from_SIMIX(smx_action_t comm, void* buff, size_t buff_size);
148
149 void _MSG_action_init(void);
150 void _MSG_action_exit(void);
151
152 void MSG_post_create_environment(void);
153
154 /********** Tracing **********/
155 /* declaration of instrumentation functions from msg_task_instr.c */
156 void TRACE_msg_set_task_category(msg_task_t task, const char *category);
157 void TRACE_msg_task_create(msg_task_t task);
158 void TRACE_msg_task_execute_start(msg_task_t task);
159 void TRACE_msg_task_execute_end(msg_task_t task);
160 void TRACE_msg_task_destroy(msg_task_t task);
161 void TRACE_msg_task_get_start(void);
162 void TRACE_msg_task_get_end(double start_time, msg_task_t task);
163 int TRACE_msg_task_put_start(msg_task_t task);    //returns TRUE if the task_put_end must be called
164 void TRACE_msg_task_put_end(void);
165
166 /* declaration of instrumentation functions from msg_process_instr.c */
167 char *instr_process_id (msg_process_t proc, char *str, int len);
168 char *instr_process_id_2 (const char *process_name, int process_pid, char *str, int len);
169 void TRACE_msg_process_change_host(msg_process_t process, msg_host_t old_host,
170                                    msg_host_t new_host);
171 void TRACE_msg_process_create (const char *process_name, int process_pid, msg_host_t host);
172 void TRACE_msg_process_destroy (const char *process_name, int process_pid, msg_host_t host);
173 void TRACE_msg_process_kill(msg_process_t process);
174 void TRACE_msg_process_suspend(msg_process_t process);
175 void TRACE_msg_process_resume(msg_process_t process);
176 void TRACE_msg_process_sleep_in(msg_process_t process);   //called from msg/gos.c
177 void TRACE_msg_process_sleep_out(msg_process_t process);
178 void TRACE_msg_process_end(msg_process_t process);
179
180 /* declaration of instrumentation functions from instr_msg_vm.c */
181 char *instr_vm_id (msg_vm_t vm, char *str, int len);
182 char *instr_vm_id_2 (const char *vm_name, char *str, int len);
183 void TRACE_msg_vm_change_host(msg_vm_t vm, msg_host_t old_host,
184                                    msg_host_t new_host);
185 void TRACE_msg_vm_create (const char *vm_name, msg_host_t host);
186 void TRACE_msg_vm_kill(msg_vm_t process);
187 void TRACE_msg_vm_suspend(msg_vm_t vm);
188 void TRACE_msg_vm_resume(msg_vm_t vm);
189 void TRACE_msg_vm_sleep_in(msg_vm_t vm);
190 void TRACE_msg_vm_sleep_out(msg_vm_t vm);
191 void TRACE_msg_vm_end(msg_vm_t vm);
192
193 SG_END_DECL()
194 #endif