Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9f95cee8cebbd32daff0d978865bc4790e095ee8
[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 <stdio.h>
14 #include "msg/msg.h"
15 #include "simix/simix.h"
16 #include "surf/surf.h"
17 #include "xbt/fifo.h"
18 #include "xbt/dynar.h"
19 #include "xbt/swag.h"
20 #include "xbt/dict.h"
21 #include "xbt/context.h"
22 #include "xbt/config.h"
23
24 SG_BEGIN_DECL()
25
26 /**************** datatypes **********************************/
27
28 /* this structure represents a mailbox */
29 typedef struct s_msg_mailbox
30 {
31         char* alias;                                            /* the key of the mailbox in the global dictionary                      */
32         xbt_fifo_t tasks;                                       /* the list of the tasks in the mailbox                                         */
33         smx_cond_t cond;                                        /* the condition on the mailbox                                                         */
34         char* hostname;                                         /* the name of the host containing the mailbox                          */
35 }s_msg_mailbox_t;
36
37 typedef struct simdata_host 
38 {
39         smx_host_t smx_host;                            /* SURF modeling                                                                */
40         struct s_msg_mailbox** mailboxes;       /* mailboxes to store msg tasks of of the host  */
41         smx_mutex_t mutex;                                      /* mutex to access the host                                     */
42 }s_simdata_host_t;
43
44 /********************************* Task **************************************/
45
46 typedef struct simdata_task {
47   smx_action_t compute; /* SURF modeling of computation  */
48   smx_action_t comm;            /* SURF modeling of communication  */
49   double message_size;          /* Data size  */
50   double computation_amount;    /* Computation size  */
51         smx_cond_t cond;                                        
52         smx_mutex_t mutex;                              /* Task mutex */
53   m_process_t sender;
54   m_process_t receiver;
55   m_host_t source;
56   double priority;
57   double rate;
58   int refcount ;
59   /*******  Parallel Tasks Only !!!! *******/
60   int host_nb;
61   smx_host_t *host_list;
62   double *comp_amount;
63   double *comm_amount;
64 } s_simdata_task_t;
65
66 /******************************* Process *************************************/
67
68 typedef struct simdata_process {
69   m_host_t m_host;              /* the host on which the process is running */
70   smx_process_t s_process;
71   int PID;                      /* used for debugging purposes */
72   int PPID;                     /* The parent PID */
73   m_host_t put_host;            /* used for debugging purposes */
74   m_channel_t put_channel;      /* used for debugging purposes */
75   m_task_t waiting_task;
76   int argc;                     /* arguments number if any */
77   char **argv;                  /* arguments table if any */
78   MSG_error_t last_errno;       /* the last value returned by a MSG_function */
79 } s_simdata_process_t;
80
81 typedef struct process_arg {
82   const char *name;
83   xbt_main_func_t code;
84   void *data;
85   m_host_t m_host;
86   int argc;
87   char **argv;
88   double kill_time;
89 } s_process_arg_t, *process_arg_t;
90
91 /************************** Global variables ********************************/
92 typedef struct MSG_Global {
93   xbt_fifo_t host;
94   xbt_fifo_t process_list;
95   int max_channel;
96   int PID;
97   int session;
98 } s_MSG_Global_t, *MSG_Global_t;
99
100 /*extern MSG_Global_t msg_global;*/
101 XBT_PUBLIC_DATA(MSG_Global_t) msg_global;
102
103       
104 /*************************************************************/
105
106 #define PROCESS_SET_ERRNO(val) (MSG_process_self()->simdata->last_errno=val)
107 #define PROCESS_GET_ERRNO() (MSG_process_self()->simdata->last_errno)
108 #define MSG_RETURN(val) do {PROCESS_SET_ERRNO(val);return(val);} while(0)
109 /* #define CHECK_ERRNO()  ASSERT((PROCESS_GET_ERRNO()!=MSG_HOST_FAILURE),"Host failed, you cannot call this function.") */
110
111 #define CHECK_HOST()  xbt_assert1(SIMIX_host_get_state(SIMIX_host_self())==1,\
112                                   "Host failed, you cannot call this function. (state=%d)",SIMIX_host_get_state(SIMIX_host_self()))
113
114 m_host_t __MSG_host_create(smx_host_t workstation, void *data);
115
116 void __MSG_host_destroy(m_host_t host);
117
118 void __MSG_display_process_status(void);
119
120 void __MSG_process_cleanup(void *arg);
121 void *_MSG_process_create_from_SIMIX(const char *name,
122                                      xbt_main_func_t code, void *data,
123                                      char * hostname, int argc, char **argv, xbt_dict_t properties);
124 void _MSG_process_kill_from_SIMIX(void *p);
125
126 SG_END_DECL()
127 #endif