Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
A lot of changes made. Testing phase
[simgrid.git] / src / gras_simix / Virtu / gras_simix_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_simix/Virtu/gras_simix_virtu_sg.h"
13 #include "gras_simix/Msg/gras_simix_msg_interface.h" /* For some checks at simulation end */
14 #include "gras_simix/Transport/gras_simix_transport_interface.h" /* For some checks at simulation end */
15
16 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(gras_virtu_process);
17
18 static long int PID = 1;
19
20 void
21 gras_process_init() {
22         int i;
23   gras_hostdata_t *hd=(gras_hostdata_t *)SIMIX_host_get_data(SIMIX_host_self());
24   gras_procdata_t *pd=xbt_new0(gras_procdata_t,1);
25   gras_trp_procdata_t trp_pd;
26   //gras_sg_portrec_t prmeas,pr;
27   //int i;
28   
29   SIMIX_process_set_data(SIMIX_process_self(),(void*)pd);
30
31
32
33   gras_procdata_init();
34
35   if (!hd) {
36     /* First process on this host */
37     hd=xbt_new(gras_hostdata_t,1);
38     hd->refcount = 1;
39     hd->ports = xbt_dynar_new(sizeof(gras_sg_portrec_t),NULL);
40
41   //  memset(hd->proc, 0, sizeof(hd->proc[0]) * XBT_MAX_CHANNEL); 
42         
43                 for (i=0;i<65536;i++) {
44                         hd->cond_port[i] =NULL;
45                         hd->mutex_port[i] =NULL;
46                 }
47                 SIMIX_host_set_data(SIMIX_host_self(),(void*)hd);
48   } else {
49     hd->refcount++;
50   }
51
52         trp_pd = (gras_trp_procdata_t)gras_libdata_by_name("gras_trp");
53         trp_pd->pid = PID++;
54         if (SIMIX_process_self() != NULL ) {
55                 trp_pd->ppid = gras_os_getpid();
56         }
57         else trp_pd->ppid = -1; 
58         trp_pd->mutex = SIMIX_mutex_init();
59         trp_pd->cond = SIMIX_cond_init();
60         trp_pd->active_socket = NULL;
61   /* take a free channel for this process */
62   /*
63         trp_pd = (gras_trp_procdata_t)gras_libdata_by_name("gras_trp");
64   for (i=0; i<XBT_MAX_CHANNEL && hd->proc[i]; i++);
65   if (i == XBT_MAX_CHANNEL) 
66     THROW2(system_error,0,
67            "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.",
68             MSG_host_get_name(MSG_host_self()),XBT_MAX_CHANNEL);
69
70   trp_pd->chan = i;
71   hd->proc[ i ] = MSG_process_self_PID();
72 */
73   /* regiter it to the ports structure */
74  // pr.port = -1;
75   //pr.tochan = i;
76   //pr.meas = 0;
77   //xbt_dynar_push(hd->ports,&pr);
78
79   /* take a free meas channel for this process */
80   /*
81         for (i=0; i<XBT_MAX_CHANNEL && hd->proc[i]; i++);
82   if (i == XBT_MAX_CHANNEL) {
83     THROW2(system_error,0,
84            "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.",
85             MSG_host_get_name(MSG_host_self()),XBT_MAX_CHANNEL);
86   }
87   trp_pd->measChan = i;
88
89   hd->proc[ i ] = MSG_process_self_PID();
90 */
91   /* register it to the ports structure */
92   //prmeas.port = -1;
93   //prmeas.tochan = i;
94   //prmeas.meas = 1;
95   //xbt_dynar_push(hd->ports,&prmeas);
96
97   VERB2("Creating process '%s' (%ld)",
98            SIMIX_process_get_name(SIMIX_process_self()),
99            gras_os_getpid());
100 }
101
102 void
103 gras_process_exit() {
104   gras_hostdata_t *hd=(gras_hostdata_t *)SIMIX_host_get_data(SIMIX_host_self());
105   gras_procdata_t *pd=(gras_procdata_t*)SIMIX_process_get_data(SIMIX_process_self());
106
107   gras_msg_procdata_t msg_pd=(gras_msg_procdata_t)gras_libdata_by_name("gras_msg");
108   //gras_trp_procdata_t trp_pd=(gras_trp_procdata_t)gras_libdata_by_name("gras_trp");
109   //int myPID=gras_os_getpid();
110   //int cpt;
111   //gras_sg_portrec_t pr;
112
113   xbt_assert0(hd,"Run gras_process_init (ie, gras_init)!!");
114
115   VERB2("GRAS: Finalizing process '%s' (%ld)",
116         SIMIX_process_get_name(SIMIX_process_self()),gras_os_getpid());
117
118   if (xbt_dynar_length(msg_pd->msg_queue))
119     WARN1("process %ld terminated, but some messages are still queued",
120           gras_os_getpid());
121
122 /*
123   for (cpt=0; cpt< XBT_MAX_CHANNEL; cpt++)
124     if (myPID == hd->proc[cpt])
125       hd->proc[cpt] = 0;
126 */
127
128 /* remove ports from host, maybe i can do it on the socket destroy function */
129   /*
130         xbt_dynar_foreach(hd->ports, cpt, pr) {
131     if (pr.port == trp_pd->chan || pr.port == trp_pd->measChan) {
132       xbt_dynar_cursor_rm(hd->ports, &cpt);
133     }
134   }*/
135
136   if ( ! --(hd->refcount)) {
137     xbt_dynar_free(&hd->ports);
138     free(hd);
139   }
140   gras_procdata_exit();
141   free(pd);
142 }
143
144 /* **************************************************************************
145  * Process data
146  * **************************************************************************/
147
148 gras_procdata_t *gras_procdata_get(void) {
149   gras_procdata_t *pd=
150     (gras_procdata_t *)SIMIX_process_get_data(SIMIX_process_self());
151
152   xbt_assert0(pd,"Run gras_process_init! (ie, gras_init)");
153
154   return pd;
155 }
156 void *
157 gras_libdata_by_name_from_remote(const char *name, smx_process_t p) {
158   gras_procdata_t *pd=
159     (gras_procdata_t *)SIMIX_process_get_data(p);
160
161   xbt_assert2(pd,"process '%s' on '%s' didn't run gras_process_init! (ie, gras_init)", 
162               SIMIX_process_get_name(p),SIMIX_host_get_name(SIMIX_process_get_host(p)));
163    
164   return gras_libdata_by_name_from_procdata(name, pd);
165 }   
166   
167 const char* xbt_procname(void) {
168   const char *res = NULL;
169   smx_process_t process = SIMIX_process_self();
170   if ((process != NULL) && (process->simdata))
171     res = SIMIX_process_get_name(process);
172   if (res) 
173     return res;
174   else
175     return "";
176 }
177
178 long int gras_os_getpid(void) {
179
180   smx_process_t process = SIMIX_process_self();
181   if ((process != NULL) && (process->data))
182     return ((gras_procdata_t*)process->data)->pid;
183   else
184     return 0;
185 }