Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ea013670d40e3c6be2b02edabd56b4dcb5207918
[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 "gras_modinter.h" /* module initialization interface */
12 #include "gras/Virtu/virtu_sg.h"
13 #include "gras/Msg/msg_interface.h" /* For some checks at simulation end */
14 #include "gras/Transport/transport_interface.h" /* For some checks at simulation end */
15
16 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(gras_virtu_process);
17
18
19
20 void
21 gras_process_init() {
22   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
23   gras_procdata_t *pd=xbt_new0(gras_procdata_t,1);
24   gras_trp_procdata_t trp_pd;
25   gras_sg_portrec_t prmeas,pr;
26   int i;
27   
28   if (MSG_process_set_data(MSG_process_self(),(void*)pd) != MSG_OK)
29     THROW0(system_error,0,"Error in MSG_process_set_data()");
30    
31   gras_procdata_init();
32
33   if (!hd) {
34     /* First process on this host */
35     hd=xbt_new(gras_hostdata_t,1);
36     hd->refcount = 1;
37     hd->ports = xbt_dynar_new(sizeof(gras_sg_portrec_t),NULL);
38
39     memset(hd->proc, 0, sizeof(hd->proc[0]) * XBT_MAX_CHANNEL); 
40
41     if (MSG_host_set_data(MSG_host_self(),(void*)hd) != MSG_OK)
42       THROW0(system_error,0,"Error in MSG_host_set_data()");
43   } else {
44     hd->refcount++;
45   }
46   
47   /* take a free channel for this process */
48   trp_pd = (gras_trp_procdata_t)gras_libdata_by_name("gras_trp");
49   for (i=0; i<XBT_MAX_CHANNEL && hd->proc[i]; i++);
50   if (i == XBT_MAX_CHANNEL) 
51     THROW2(system_error,0,
52            "Can't add a new process on %s, because all channels are already in use. Please increase MAX CHANNEL (which is %d for now) and recompile GRAS.",
53             MSG_host_get_name(MSG_host_self()),XBT_MAX_CHANNEL);
54
55   trp_pd->chan = i;
56   hd->proc[ i ] = MSG_process_self_PID();
57
58   /* regiter it to the ports structure */
59   pr.port = -1;
60   pr.tochan = i;
61   pr.meas = 0;
62   xbt_dynar_push(hd->ports,&pr);
63
64   /* take a free meas channel for this process */
65   for (i=0; i<XBT_MAX_CHANNEL && hd->proc[i]; i++);
66   if (i == XBT_MAX_CHANNEL) {
67     THROW2(system_error,0,
68            "Can't add a new process on %s, because all channels are already in use. Please increase MAX CHANNEL (which is %d for now) and recompile GRAS.",
69             MSG_host_get_name(MSG_host_self()),XBT_MAX_CHANNEL);
70   }
71   trp_pd->measChan = i;
72
73   hd->proc[ i ] = MSG_process_self_PID();
74
75   /* register it to the ports structure */
76   prmeas.port = -1;
77   prmeas.tochan = i;
78   prmeas.meas = 1;
79   xbt_dynar_push(hd->ports,&prmeas);
80
81   VERB2("Creating process '%s' (%d)",
82            MSG_process_get_name(MSG_process_self()),
83            MSG_process_self_PID());
84 }
85
86 void
87 gras_process_exit() {
88   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
89   gras_procdata_t *pd=(gras_procdata_t*)MSG_process_get_data(MSG_process_self());
90
91   gras_msg_procdata_t msg_pd=(gras_msg_procdata_t)gras_libdata_by_name("gras_msg");
92   gras_trp_procdata_t trp_pd=(gras_trp_procdata_t)gras_libdata_by_name("gras_trp");
93   int myPID=MSG_process_self_PID();
94   int cpt;
95   gras_sg_portrec_t pr;
96
97   xbt_assert0(hd,"Run gras_process_init (ie, gras_init)!!");
98
99   VERB2("GRAS: Finalizing process '%s' (%d)",
100         MSG_process_get_name(MSG_process_self()),MSG_process_self_PID());
101
102   if (xbt_dynar_length(msg_pd->msg_queue))
103     WARN1("process %d terminated, but some messages are still queued",
104           MSG_process_self_PID());
105
106   for (cpt=0; cpt< XBT_MAX_CHANNEL; cpt++)
107     if (myPID == hd->proc[cpt])
108       hd->proc[cpt] = 0;
109
110   xbt_dynar_foreach(hd->ports, cpt, pr) {
111     if (pr.port == trp_pd->chan || pr.port == trp_pd->measChan) {
112       xbt_dynar_cursor_rm(hd->ports, &cpt);
113     }
114   }
115
116   if ( ! --(hd->refcount)) {
117     xbt_dynar_free(&hd->ports);
118     free(hd);
119   }
120   gras_procdata_exit();
121   free(pd);
122 }
123
124 /* **************************************************************************
125  * Process data
126  * **************************************************************************/
127
128 gras_procdata_t *gras_procdata_get(void) {
129   gras_procdata_t *pd=
130     (gras_procdata_t *)MSG_process_get_data(MSG_process_self());
131
132   xbt_assert0(pd,"Run gras_process_init! (ie, gras_init)");
133
134   return pd;
135 }
136 void *
137 gras_libdata_by_name_from_remote(const char *name, m_process_t p) {
138   gras_procdata_t *pd=
139     (gras_procdata_t *)MSG_process_get_data(p);
140
141   xbt_assert2(pd,"process '%s' on '%s' didn't run gras_process_init! (ie, gras_init)", 
142               MSG_process_get_name(p),MSG_host_get_name(MSG_process_get_host(p)));
143    
144   return gras_libdata_by_name_from_procdata(name, pd);
145 }   
146   
147 const char* xbt_procname(void) {
148   const char *res = NULL;
149   m_process_t process = MSG_process_self();
150   if ((process != NULL) && (process->simdata))
151     res = MSG_process_get_name(process);
152   if (res) 
153     return res;
154   else
155     return "";
156 }
157
158 long int gras_os_getpid(void) {
159   m_process_t process = MSG_process_self();
160   if ((process != NULL) && (process->simdata))
161     return (long int)MSG_process_get_PID(MSG_process_self());
162   else
163     return (long int)0;
164 }