Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
869111f62dfe1e072f1df2acb4e764131a6d7763
[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 "Virtu/virtu_sg.h"
12
13 GRAS_LOG_EXTERNAL_CATEGORY(process);
14
15 gras_error_t
16 gras_process_init() {
17   gras_error_t errcode;
18   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
19   gras_procdata_t *pd;
20   gras_sg_portrec_t prraw,pr;
21   int i;
22   
23   if (!(pd=(gras_procdata_t *)malloc(sizeof(gras_procdata_t)))) 
24     RAISE_MALLOC;
25
26   if (MSG_process_set_data(MSG_process_self(),(void*)pd) != MSG_OK) {
27     return unknown_error;
28   }
29   TRY(gras_procdata_init());
30
31   if (!hd) {
32     if (!(hd=(gras_hostdata_t *)malloc(sizeof(gras_hostdata_t)))) 
33       RAISE_MALLOC;
34
35     TRY(gras_dynar_new(&(hd->ports),sizeof(gras_sg_portrec_t),NULL));
36
37     memset(hd->proc, 0, sizeof(hd->proc[0]) * GRAS_MAX_CHANNEL); 
38
39     if (MSG_host_set_data(MSG_host_self(),(void*)hd) != MSG_OK) {
40       return unknown_error;
41     }
42   }
43   
44   /* take a free channel for this process */
45   for (i=0; i<GRAS_MAX_CHANNEL && hd->proc[i]; i++);
46   if (i == GRAS_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()),GRAS_MAX_CHANNEL);
50
51   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   TRY(gras_dynar_push(hd->ports,&pr));
59
60   /* take a free RAW channel for this process */
61   for (i=0; i<GRAS_MAX_CHANNEL && hd->proc[i]; i++);
62   if (i == GRAS_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()),GRAS_MAX_CHANNEL);
66   }
67   pd->rawChan = i;
68
69   hd->proc[ i ] = MSG_process_self_PID();
70
71   /* regiter it to the ports structure */
72   prraw.port = -1;
73   prraw.tochan = i;
74   prraw.raw = 1;
75   TRY(gras_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 gras_error_t
84 gras_process_exit() {
85   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
86   gras_procdata_t *pd=gras_procdata_get();
87   int myPID=MSG_process_self_PID();
88   int cpt;
89   gras_sg_portrec_t pr;
90
91   gras_assert0(hd && pd,"Run gras_process_init!!");
92
93   INFO2("GRAS: Finalizing process '%s' (%d)",
94         MSG_process_get_name(MSG_process_self()),MSG_process_self_PID());
95
96   if (gras_dynar_length(pd->msg_queue))
97     WARN1("process %d terminated, but some messages are still queued",
98           MSG_process_self_PID());
99
100   for (cpt=0; cpt< GRAS_MAX_CHANNEL; cpt++)
101     if (myPID == hd->proc[cpt])
102       hd->proc[cpt] = 0;
103
104   gras_dynar_foreach(hd->ports, cpt, pr) {
105     if (pr.port == pd->chan || pr.port == pd->rawChan) {
106       gras_dynar_cursor_rm(hd->ports, &cpt);
107     }
108   }
109
110   return no_error;
111 }
112
113 /* **************************************************************************
114  * Process data
115  * **************************************************************************/
116
117 gras_procdata_t *gras_procdata_get(void) {
118   gras_procdata_t *pd=
119     (gras_procdata_t *)MSG_process_get_data(MSG_process_self());
120
121   gras_assert0(pd,"Run gras_process_init!");
122
123   return pd;
124 }
125