Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4f78a4932dd655574b78118d1c144c230c46954c
[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 "gras_modinter.h" /* module initialization interface */
11 #include "gras/Virtu/virtu_sg.h"
12 #include "gras/Msg/msg_interface.h" /* For some checks at simulation end */
13 #include "gras/Transport/transport_interface.h" /* For some checks at simulation end */
14
15 XBT_LOG_EXTERNAL_CATEGORY(process);
16 XBT_LOG_DEFAULT_CATEGORY(process);
17
18 xbt_error_t
19 gras_process_init() {
20   xbt_error_t errcode;
21   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
22   gras_procdata_t *pd=xbt_new(gras_procdata_t,1);
23   gras_trp_procdata_t trp_pd;
24   gras_sg_portrec_t prraw,pr;
25   int i;
26   
27   if (MSG_process_set_data(MSG_process_self(),(void*)pd) != MSG_OK)
28     return unknown_error;
29    
30   gras_procdata_init();
31
32   if (!hd) {
33     /* First process on this host */
34     hd=xbt_new(gras_hostdata_t,1);
35     hd->ports = xbt_dynar_new(sizeof(gras_sg_portrec_t),NULL);
36
37     memset(hd->proc, 0, sizeof(hd->proc[0]) * XBT_MAX_CHANNEL); 
38
39     if (MSG_host_set_data(MSG_host_self(),(void*)hd) != MSG_OK)
40       return unknown_error;
41   }
42   
43   /* take a free channel for this process */
44   trp_pd = (gras_trp_procdata_t)gras_libdata_get("gras_trp");
45   for (i=0; i<XBT_MAX_CHANNEL && hd->proc[i]; i++);
46   if (i == XBT_MAX_CHANNEL) 
47     RAISE2(system_error,
48            "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.",
49             MSG_host_get_name(MSG_host_self()),XBT_MAX_CHANNEL);
50
51   trp_pd->chan = i;
52   hd->proc[ i ] = MSG_process_self_PID();
53
54   /* regiter it to the ports structure */
55   pr.port = -1;
56   pr.tochan = i;
57   pr.raw = 0;
58   xbt_dynar_push(hd->ports,&pr);
59
60   /* take a free RAW channel for this process */
61   for (i=0; i<XBT_MAX_CHANNEL && hd->proc[i]; i++);
62   if (i == XBT_MAX_CHANNEL) {
63     RAISE2(system_error,
64            "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.",
65             MSG_host_get_name(MSG_host_self()),XBT_MAX_CHANNEL);
66   }
67   trp_pd->rawChan = i;
68
69   hd->proc[ i ] = MSG_process_self_PID();
70
71   /* register it to the ports structure */
72   prraw.port = -1;
73   prraw.tochan = i;
74   prraw.raw = 1;
75   xbt_dynar_push(hd->ports,&prraw);
76
77   VERB2("Creating process '%s' (%d)",
78            MSG_process_get_name(MSG_process_self()),
79            MSG_process_self_PID());
80   return no_error;
81 }
82
83 xbt_error_t
84 gras_process_exit() {
85   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
86   gras_msg_procdata_t msg_pd=(gras_msg_procdata_t)gras_libdata_get("gras_msg");
87   gras_trp_procdata_t trp_pd=(gras_trp_procdata_t)gras_libdata_get("gras_trp");
88   int myPID=MSG_process_self_PID();
89   int cpt;
90   gras_sg_portrec_t pr;
91
92   xbt_assert0(hd,"Run gras_process_init (ie, gras_init)!!");
93
94   INFO2("GRAS: Finalizing process '%s' (%d)",
95         MSG_process_get_name(MSG_process_self()),MSG_process_self_PID());
96
97   if (xbt_dynar_length(msg_pd->msg_queue))
98     WARN1("process %d terminated, but some messages are still queued",
99           MSG_process_self_PID());
100
101   for (cpt=0; cpt< XBT_MAX_CHANNEL; cpt++)
102     if (myPID == hd->proc[cpt])
103       hd->proc[cpt] = 0;
104
105   xbt_dynar_foreach(hd->ports, cpt, pr) {
106     if (pr.port == trp_pd->chan || pr.port == trp_pd->rawChan) {
107       xbt_dynar_cursor_rm(hd->ports, &cpt);
108     }
109   }
110
111   return no_error;
112 }
113
114 /* **************************************************************************
115  * Process data
116  * **************************************************************************/
117
118 gras_procdata_t *gras_procdata_get(void) {
119   gras_procdata_t *pd=
120     (gras_procdata_t *)MSG_process_get_data(MSG_process_self());
121
122   xbt_assert0(pd,"Run gras_process_init! (ie, gras_init)");
123
124   return pd;
125 }
126
127 const char* xbt_procname(void) {
128   const char *res = NULL;
129   m_process_t process = MSG_process_self();
130   if ((process != NULL) && (process->simdata))
131     res = MSG_process_get_name(process);
132   if (res) 
133     return res;
134   else
135     return "";
136 }
137
138 int gras_process_getpid(void) {
139   m_process_t process = MSG_process_self();
140   if ((process != NULL) && (process->simdata))
141     return MSG_process_get_PID(MSG_process_self());
142   else
143     return 0;
144 }