Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
new tracing mask TRACE_VOLUME to trace the msg tasks communication size and group...
[simgrid.git] / src / msg / private.h
1 /*     $Id$      */
2
3 /* Copyright (c) 2002-2007 Arnaud Legrand.                                  */
4 /* Copyright (c) 2007 Bruno Donassolo.                                      */
5 /* All rights reserved.                                                     */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #ifndef METASIMGRID_PRIVATE_H
11 #define METASIMGRID_PRIVATE_H
12
13 #include "msg/msg.h"
14 #include "simix/simix.h"
15 #include "surf/surf.h"
16 #include "xbt/fifo.h"
17 #include "xbt/dynar.h"
18 #include "xbt/swag.h"
19 #include "xbt/dict.h"
20 #include "xbt/config.h"
21 #include "instr/private.h"
22
23 SG_BEGIN_DECL()
24
25 /**************** datatypes **********************************/
26 /* this structure represents a mailbox */
27      typedef struct s_msg_mailbox {
28        char *alias;             /* the key of the mailbox in the global dictionary */
29        smx_cond_t cond;         /* the condition on the mailbox */
30        smx_rdv_t rdv;           /* SIMIX rendez-vous point */
31      } s_msg_mailbox_t;
32
33      typedef struct simdata_host {
34        smx_host_t smx_host;     /* SURF modeling                                                                */
35        struct s_msg_mailbox **mailboxes;        /* mailboxes to store msg tasks of of the host  */
36        smx_mutex_t mutex;       /* mutex to access the host                                     */
37      } s_simdata_host_t;
38
39 /********************************* Task **************************************/
40
41      typedef struct simdata_task {
42        smx_action_t compute;    /* SURF modeling of computation  */
43        smx_comm_t comm;         /* SIMIX communication  */
44        double message_size;     /* Data size  */
45        double computation_amount;       /* Computation size  */
46        smx_cond_t cond;
47        smx_mutex_t mutex;       /* Task mutex */
48        m_process_t sender;
49        m_process_t receiver;
50        m_host_t source;
51        double priority;
52        double rate;
53        int refcount;
54   /*******  Parallel Tasks Only !!!! *******/
55        int host_nb;
56        smx_host_t *host_list;
57        double *comp_amount;
58        double *comm_amount;
59      } s_simdata_task_t;
60
61 /******************************* Process *************************************/
62
63      typedef struct simdata_process {
64        m_host_t m_host;         /* the host on which the process is running */
65        smx_process_t s_process;
66        int PID;                 /* used for debugging purposes */
67        int PPID;                /* The parent PID */
68        m_host_t put_host;       /* used for debugging purposes */
69        m_channel_t put_channel; /* used for debugging purposes */
70        smx_action_t waiting_action;
71        m_task_t waiting_task;
72        int argc;                /* arguments number if any */
73        char **argv;             /* arguments table if any */
74        MSG_error_t last_errno;  /* the last value returned by a MSG_function */
75      } s_simdata_process_t;
76
77      typedef struct process_arg {
78        const char *name;
79        xbt_main_func_t code;
80        void *data;
81        m_host_t m_host;
82        int argc;
83        char **argv;
84        double kill_time;
85      } s_process_arg_t, *process_arg_t;
86
87 /************************** Global variables ********************************/
88      typedef struct MSG_Global {
89        xbt_fifo_t host;
90        xbt_fifo_t process_list;
91        int max_channel;
92        int PID;
93        int session;
94        unsigned long int sent_msg;      /* Total amount of messages sent during the simulation */
95      } s_MSG_Global_t, *MSG_Global_t;
96
97 /*extern MSG_Global_t msg_global;*/
98 XBT_PUBLIC_DATA(MSG_Global_t) msg_global;
99
100
101 /*************************************************************/
102
103 #define PROCESS_SET_ERRNO(val) (MSG_process_self()->simdata->last_errno=val)
104 #define PROCESS_GET_ERRNO() (MSG_process_self()->simdata->last_errno)
105 #define MSG_RETURN(val) do {PROCESS_SET_ERRNO(val);return(val);} while(0)
106 /* #define CHECK_ERRNO()  ASSERT((PROCESS_GET_ERRNO()!=MSG_HOST_FAILURE),"Host failed, you cannot call this function.") */
107
108 #define CHECK_HOST()  xbt_assert1(SIMIX_host_get_state(SIMIX_host_self())==1,\
109                                   "Host failed, you cannot call this function. (state=%d)",SIMIX_host_get_state(SIMIX_host_self()))
110
111      m_host_t __MSG_host_create(smx_host_t workstation, void *data);
112
113      void __MSG_host_destroy(m_host_t host);
114
115      void __MSG_display_process_status(void);
116
117      void __MSG_process_cleanup(void *arg);
118      void *_MSG_process_create_from_SIMIX(const char *name,
119                                           xbt_main_func_t code, void *data,
120                                           char *hostname, int argc,
121                                           char **argv, xbt_dict_t properties);
122      void _MSG_process_kill_from_SIMIX(void *p);
123
124      void _MSG_action_init(void);
125      void _MSG_action_exit(void);
126
127 SG_END_DECL()
128 #endif