Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ea7627c7ab3a2898c6d0827015cf5d25560078dc
[simgrid.git] / src / gras / Virtu / sg_process.c
1 /* $Id$ */
2
3 /* process_sg - GRAS process handling on simulator                          */
4
5 /* Authors: Martin Quinson                                                  */
6 /* Copyright (C) 2003,2004 da GRAS posse.                                   */
7
8 /* This program is free software; you can redistribute it and/or modify it
9    under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #include "gras/Virtu/virtu_sg.h"
12
13 GRAS_LOG_EXTERNAL_CATEGORY(process);
14 GRAS_LOG_DEFAULT_CATEGORY(process);
15
16 gras_error_t
17 gras_process_init() {
18   gras_error_t errcode;
19   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
20   gras_procdata_t *pd;
21   gras_sg_portrec_t prraw,pr;
22   int i;
23   
24   pd=gras_new(gras_procdata_t,1);
25
26   if (MSG_process_set_data(MSG_process_self(),(void*)pd) != MSG_OK)
27     return unknown_error;
28   gras_procdata_init();
29
30   if (!hd) {
31     hd=gras_new(gras_hostdata_t,1);
32     gras_dynar_new(&(hd->ports),sizeof(gras_sg_portrec_t),NULL);
33
34     memset(hd->proc, 0, sizeof(hd->proc[0]) * GRAS_MAX_CHANNEL); 
35
36     if (MSG_host_set_data(MSG_host_self(),(void*)hd) != MSG_OK)
37       return unknown_error;
38   }
39   
40   /* take a free channel for this process */
41   for (i=0; i<GRAS_MAX_CHANNEL && hd->proc[i]; i++);
42   if (i == GRAS_MAX_CHANNEL) 
43     RAISE2(system_error,
44            "GRAS: Can't add a new process on %s, because all channel are already in use. Please increase MAX CHANNEL (which is %d for now) and recompile GRAS\n.",
45             MSG_host_get_name(MSG_host_self()),GRAS_MAX_CHANNEL);
46
47   pd->chan = i;
48   hd->proc[ i ] = MSG_process_self_PID();
49
50   /* regiter it to the ports structure */
51   pr.port = -1;
52   pr.tochan = i;
53   pr.raw = 0;
54   gras_dynar_push(hd->ports,&pr);
55
56   /* take a free RAW channel for this process */
57   for (i=0; i<GRAS_MAX_CHANNEL && hd->proc[i]; i++);
58   if (i == GRAS_MAX_CHANNEL) {
59     RAISE2(system_error,
60            "GRAS: Can't add a new process on %s, because all channel are already in use. Please increase MAX CHANNEL (which is %d for now) and recompile GRAS\n.",
61             MSG_host_get_name(MSG_host_self()),GRAS_MAX_CHANNEL);
62   }
63   pd->rawChan = i;
64
65   hd->proc[ i ] = MSG_process_self_PID();
66
67   /* regiter it to the ports structure */
68   prraw.port = -1;
69   prraw.tochan = i;
70   prraw.raw = 1;
71   gras_dynar_push(hd->ports,&prraw);
72
73   VERB2("Creating process '%s' (%d)",
74            MSG_process_get_name(MSG_process_self()),
75            MSG_process_self_PID());
76   return no_error;
77 }
78
79 gras_error_t
80 gras_process_exit() {
81   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
82   gras_procdata_t *pd=gras_procdata_get();
83   int myPID=MSG_process_self_PID();
84   int cpt;
85   gras_sg_portrec_t pr;
86
87   gras_assert0(hd && pd,"Run gras_process_init!!");
88
89   INFO2("GRAS: Finalizing process '%s' (%d)",
90         MSG_process_get_name(MSG_process_self()),MSG_process_self_PID());
91
92   if (gras_dynar_length(pd->msg_queue))
93     WARN1("process %d terminated, but some messages are still queued",
94           MSG_process_self_PID());
95
96   for (cpt=0; cpt< GRAS_MAX_CHANNEL; cpt++)
97     if (myPID == hd->proc[cpt])
98       hd->proc[cpt] = 0;
99
100   gras_dynar_foreach(hd->ports, cpt, pr) {
101     if (pr.port == pd->chan || pr.port == pd->rawChan) {
102       gras_dynar_cursor_rm(hd->ports, &cpt);
103     }
104   }
105
106   return no_error;
107 }
108
109 /* **************************************************************************
110  * Process data
111  * **************************************************************************/
112
113 gras_procdata_t *gras_procdata_get(void) {
114   gras_procdata_t *pd=
115     (gras_procdata_t *)MSG_process_get_data(MSG_process_self());
116
117   gras_assert0(pd,"Run gras_process_init!");
118
119   return pd;
120 }
121