Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "try to port the gras simulation side to the new smx_network infrastructure...
[simgrid.git] / src / gras / Virtu / sg_process.c
1 /* $Id$ */
2
3 /* process_sg - GRAS process handling on simulator                          */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. 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 #include "xbt/ex.h"
11 #include "xbt/dict.h"
12 #include "gras_modinter.h"      /* module initialization interface */
13 #include "gras/Virtu/virtu_sg.h"
14 #include "gras/Msg/msg_interface.h"     /* For some checks at simulation end */
15 #include "gras/Transport/transport_interface.h" /* For some checks at simulation end */
16
17 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(gras_virtu_process);
18
19 static long int PID = 1;
20
21
22 void gras_agent_spawn(const char *name, void *data,
23                       xbt_main_func_t code, int argc, char *argv[],
24                       xbt_dict_t properties)
25 {
26
27   SIMIX_process_create(name, code,
28                        data, gras_os_myname(), argc, argv, properties);
29 }
30
31 /* **************************************************************************
32  * Process constructor/destructor (semi-public interface)
33  * **************************************************************************/
34
35 void gras_process_init()
36 {
37   gras_hostdata_t *hd =
38     (gras_hostdata_t *) SIMIX_host_get_data(SIMIX_host_self());
39   gras_procdata_t *pd = xbt_new0(gras_procdata_t, 1);
40   gras_trp_procdata_t trp_pd;
41
42   SIMIX_process_set_data(SIMIX_process_self(), (void *) pd);
43
44
45   gras_procdata_init();
46
47   if (!hd) {
48     /* First process on this host */
49     hd = xbt_new(gras_hostdata_t, 1);
50     hd->refcount = 1;
51     hd->ports = xbt_dynar_new(sizeof(gras_sg_portrec_t), NULL);
52     SIMIX_host_set_data(SIMIX_host_self(), (void *) hd);
53   } else {
54     hd->refcount++;
55   }
56
57   trp_pd = (gras_trp_procdata_t) gras_libdata_by_name("gras_trp");
58   pd->pid = PID++;
59
60   if (SIMIX_process_self() != NULL) {
61     pd->ppid = gras_os_getpid();
62   } else
63     pd->ppid = -1;
64
65   trp_pd->msg_selectable_sockets = xbt_queue_new(0, sizeof(gras_socket_t));
66
67   trp_pd->meas_selectable_sockets = xbt_queue_new(0, sizeof(gras_socket_t));
68
69   VERB2("Creating process '%s' (%d)",
70         SIMIX_process_get_name(SIMIX_process_self()), gras_os_getpid());
71 }
72
73 void gras_process_exit()
74 {
75   xbt_dynar_t sockets =
76     ((gras_trp_procdata_t) gras_libdata_by_name("gras_trp"))->sockets;
77   gras_socket_t sock_iter;
78   unsigned int cursor;
79   gras_hostdata_t *hd =
80     (gras_hostdata_t *) SIMIX_host_get_data(SIMIX_host_self());
81   gras_procdata_t *pd =
82     (gras_procdata_t *) SIMIX_process_get_data(SIMIX_process_self());
83
84   gras_msg_procdata_t msg_pd =
85     (gras_msg_procdata_t) gras_libdata_by_name("gras_msg");
86   gras_trp_procdata_t trp_pd =
87     (gras_trp_procdata_t) gras_libdata_by_name("gras_trp");
88
89   xbt_queue_free(&trp_pd->msg_selectable_sockets);
90
91   xbt_queue_free(&trp_pd->meas_selectable_sockets);
92
93
94   xbt_assert0(hd, "Run gras_process_init (ie, gras_init)!!");
95
96   VERB2("GRAS: Finalizing process '%s' (%d)",
97         SIMIX_process_get_name(SIMIX_process_self()), gras_os_getpid());
98
99   if (xbt_dynar_length(msg_pd->msg_queue)) {
100     unsigned int cpt;
101     s_gras_msg_t msg;
102     WARN2("process %d terminated, but %ld messages are still queued. Message list:",
103           gras_os_getpid(),xbt_dynar_length(msg_pd->msg_queue));
104     xbt_dynar_foreach(msg_pd->msg_queue,cpt, msg) {
105       WARN5("   Message %s (%s) from %s@%s:%d",msg.type->name,e_gras_msg_kind_names[msg.kind],
106           gras_socket_peer_proc(msg.expe),gras_socket_peer_name(msg.expe),gras_socket_peer_port(msg.expe));
107     }
108   }
109
110   /* if each process has its sockets list, we need to close them when the
111      process finish */
112   xbt_dynar_foreach(sockets, cursor, sock_iter) {
113     VERB1("Closing the socket %p left open on exit. Maybe a socket leak?",
114           sock_iter);
115     gras_socket_close(sock_iter);
116   }
117   if (!--(hd->refcount)) {
118     xbt_dynar_free(&hd->ports);
119     free(hd);
120   }
121   gras_procdata_exit();
122   free(pd);
123 }
124
125 /* **************************************************************************
126  * Process data (public interface)
127  * **************************************************************************/
128
129 gras_procdata_t *gras_procdata_get(void)
130 {
131   gras_procdata_t *pd =
132     (gras_procdata_t *) SIMIX_process_get_data(SIMIX_process_self());
133
134   xbt_assert0(pd, "Run gras_process_init! (ie, gras_init)");
135
136   return pd;
137 }
138
139 void *gras_libdata_by_name_from_remote(const char *name, smx_process_t p)
140 {
141   gras_procdata_t *pd = (gras_procdata_t *) SIMIX_process_get_data(p);
142
143   xbt_assert2(pd,
144               "process '%s' on '%s' didn't run gras_process_init! (ie, gras_init)",
145               SIMIX_process_get_name(p),
146               SIMIX_host_get_name(SIMIX_process_get_host(p)));
147
148   return gras_libdata_by_name_from_procdata(name, pd);
149 }
150
151 /** @brief retrieve the value of a given process property (or NULL if not defined) */
152 const char *gras_process_property_value(const char *name)
153 {
154   return
155     xbt_dict_get_or_null(SIMIX_process_get_properties(SIMIX_process_self()),
156                          name);
157 }
158
159 /** @brief retrieve the process properties dictionnary
160  *  @warning it's the original one, not a copy. Don't mess with it
161  */
162 xbt_dict_t gras_process_properties(void)
163 {
164   return SIMIX_process_get_properties(SIMIX_process_self());
165 }
166
167 /* **************************************************************************
168  * OS virtualization function
169  * **************************************************************************/
170
171 const char *xbt_procname(void)
172 {
173   smx_process_t process = SIMIX_process_self();
174   /*FIXME: maestro used not have a simix process, now it does so 
175     SIMIX_process_self will return something different to NULL. This breaks
176     the old xbt_log logic that assumed that NULL was equivalent to maestro,
177     thus when printing it searches for maestro host name (which doesn't exists)
178     and breaks the logging.
179     As a hack we check for maestro by looking to the assigned host, if it is
180     NULL then we are sure is maestro
181   */
182   if (process != NULL && SIMIX_host_self())
183     return SIMIX_process_get_name(process);
184
185   return "";
186 }
187
188 int gras_os_getpid(void)
189 {
190   gras_procdata_t *data;
191   smx_process_t process = SIMIX_process_self();
192   
193   if (process != NULL){
194     data = (gras_procdata_t *)SIMIX_process_get_data(process);
195     if(data != NULL)
196       return data->pid;
197   }
198   
199   return 0;
200 }
201
202 /** @brief retrieve the value of a given host property (or NULL if not defined) */
203 const char *gras_os_host_property_value(const char *name)
204 {
205   return
206     xbt_dict_get_or_null(SIMIX_host_get_properties
207                          (SIMIX_process_get_host(SIMIX_process_self())),
208                          name);
209 }
210
211 /** @brief retrieve the host properties dictionnary
212  *  @warning it's the original one, not a copy. Don't mess with it
213  */
214 xbt_dict_t gras_os_host_properties(void)
215 {
216   return
217     SIMIX_host_get_properties(SIMIX_process_get_host(SIMIX_process_self()));
218 }
219
220 /* **************************************************************************
221  * Interface with SIMIX
222  * (these functions are called by the stuff generated by gras_stub_generator)
223  * **************************************************************************/
224
225 XBT_LOG_EXTERNAL_CATEGORY(gras_trp);
226 XBT_LOG_EXTERNAL_CATEGORY(gras_trp_sg);
227
228 void gras_global_init(int *argc, char **argv)
229 {
230   XBT_LOG_CONNECT(gras_trp_sg, gras_trp);
231   SIMIX_global_init(argc, argv);
232 }
233
234 void gras_create_environment(const char *file)
235 {
236   SIMIX_create_environment(file);
237 }
238
239 void gras_function_register(const char *name, xbt_main_func_t code)
240 {
241   SIMIX_function_register(name, code);
242 }
243
244 void gras_main()
245 {
246   /* Clean IO before the run */
247   fflush(stdout);
248   fflush(stderr);
249   SIMIX_init();
250
251   while (SIMIX_solve(NULL, NULL) != -1.0);
252   
253   return;
254 }
255
256 void gras_launch_application(const char *file)
257 {
258   SIMIX_launch_application(file);
259 }
260
261 void gras_clean()
262 {
263   SIMIX_clean();
264 }