Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix another race in log initializations.
[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 "simix/simix.h"
12 #include "surf/surf.h"
13 #include "xbt/fifo.h"
14 #include "xbt/dynar.h"
15 #include "xbt/swag.h"
16 #include "xbt/dict.h"
17 #include "xbt/config.h"
18 #include "instr/instr_private.h"
19
20 SG_BEGIN_DECL()
21
22 /**************** datatypes **********************************/
23 typedef struct simdata_host {
24   smx_host_t smx_host;          /* SURF modeling                                                                */
25   msg_mailbox_t *mailboxes;     /* mailboxes to store msg tasks of of the host  */
26 } s_simdata_host_t;
27
28 /********************************* Task **************************************/
29
30 typedef struct simdata_task {
31   smx_action_t compute;         /* SIMIX modeling of computation */
32   smx_action_t comm;            /* SIMIX modeling of communication */
33   double message_size;          /* Data size */
34   double computation_amount;    /* Computation size */
35   m_process_t sender;
36   m_process_t receiver;
37   m_host_t source;
38   double priority;
39   double rate;
40   int isused;  /* Indicates whether the task is used in SIMIX currently */
41   int host_nb;                  /* ==0 if sequential task; parallel task if not */
42   /*******  Parallel Tasks Only !!!! *******/
43   smx_host_t *host_list;
44   double *comp_amount;
45   double *comm_amount;
46 } s_simdata_task_t;
47
48 /******************************* Process *************************************/
49
50 typedef struct simdata_process {
51   m_host_t m_host;              /* the host on which the process is running */
52   int PID;                      /* used for debugging purposes */
53   int PPID;                     /* The parent PID */
54   m_host_t put_host;            /* used for debugging purposes */
55 #ifdef MSG_USE_DEPRECATED
56   m_channel_t put_channel;      /* used for debugging purposes */
57 #endif
58   smx_action_t waiting_action;
59   m_task_t waiting_task;
60   char **argv;                  /* arguments table if any */
61   int argc;                     /* arguments number if any */
62   MSG_error_t last_errno;       /* the last value returned by a MSG_function */
63   void* data;                   /* user data */
64 } s_simdata_process_t, *simdata_process_t;
65
66 typedef struct process_arg {
67   const char *name;
68   xbt_main_func_t code;
69   void *data;
70   m_host_t m_host;
71   int argc;
72   char **argv;
73   double kill_time;
74 } s_process_arg_t, *process_arg_t;
75
76 typedef struct msg_comm {
77   smx_action_t s_comm;          /* SIMIX communication object encapsulated (the same for both processes) */
78   m_task_t task_sent;           /* task sent (NULL for the receiver) */
79   m_task_t *task_received;      /* where the task will be received (NULL for the sender) */
80   MSG_error_t status;           /* status of the communication once finished */
81 } s_msg_comm_t;
82
83 /************************** Global variables ********************************/
84 typedef struct MSG_Global {
85   xbt_fifo_t host;
86 #ifdef MSG_USE_DEPRECATED
87   int max_channel;
88 #endif
89   int PID;
90   int session;
91   unsigned long int sent_msg;   /* Total amount of messages sent during the simulation */
92   void (*task_copy_callback) (m_task_t task, m_process_t src, m_process_t dst);
93   void_f_pvoid_t process_data_cleanup;
94 } s_MSG_Global_t, *MSG_Global_t;
95
96 /*extern MSG_Global_t msg_global;*/
97 XBT_PUBLIC_DATA(MSG_Global_t) msg_global;
98
99
100 /*************************************************************/
101
102 #ifdef MSG_USE_DEPRECATED
103 #  define PROCESS_SET_ERRNO(val) \
104   (((simdata_process_t) SIMIX_process_self_get_data(SIMIX_process_self()))->last_errno=val)
105 #  define PROCESS_GET_ERRNO() \
106   (((simdata_process_t) SIMIX_process_self_get_data(SIMIX_process_self()))->last_errno)
107 #define MSG_RETURN(val) do {PROCESS_SET_ERRNO(val);return(val);} while(0)
108 /* #define CHECK_ERRNO()  ASSERT((PROCESS_GET_ERRNO()!=MSG_HOST_FAILURE),"Host failed, you cannot call this function.") */
109
110 /*#define CHECK_HOST()  xbt_assert(simcall_host_get_state(SIMIX_host_self())==1,\
111                                   "Host failed, you cannot call this function. (state=%d)",simcall_host_get_state(SIMIX_host_self()))*/
112 #else
113 #  define MSG_RETURN(val) return(val)
114 #endif
115 #define CHECK_HOST()
116
117 m_host_t __MSG_host_create(smx_host_t workstation, void *data);
118 void __MSG_host_destroy(m_host_t host);
119
120 void __MSG_display_process_status(void);
121
122 void MSG_process_cleanup_from_SIMIX(smx_process_t smx_proc);
123 void MSG_process_create_from_SIMIX(smx_process_t *process, const char *name,
124                                    xbt_main_func_t code, void *data,
125                                    const char *hostname, int argc,
126                                    char **argv, xbt_dict_t properties);
127 void MSG_process_kill_from_SIMIX(smx_process_t p);
128 void MSG_comm_copy_data_from_SIMIX(smx_action_t comm, void* buff, size_t buff_size);
129
130 void _MSG_action_init(void);
131 void _MSG_action_exit(void);
132
133 SG_END_DECL()
134 #endif