Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fixed licence and copyright. No more reference to da GRAS possee or the
[simgrid.git] / src / gras / Virtu / sg_process.c
1 /* $Id$ */
2
3 /* process_sg - GRAS process handling on simulator                          */
4
5 /* Copyright (c) 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/Virtu/virtu_sg.h"
11
12 XBT_LOG_EXTERNAL_CATEGORY(process);
13 XBT_LOG_DEFAULT_CATEGORY(process);
14
15 xbt_error_t
16 gras_process_init() {
17   xbt_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   pd=xbt_new(gras_procdata_t,1);
24
25   if (MSG_process_set_data(MSG_process_self(),(void*)pd) != MSG_OK)
26     return unknown_error;
27   gras_procdata_init();
28
29   if (!hd) {
30     hd=xbt_new(gras_hostdata_t,1);
31     hd->ports = xbt_dynar_new(sizeof(gras_sg_portrec_t),NULL);
32
33     memset(hd->proc, 0, sizeof(hd->proc[0]) * XBT_MAX_CHANNEL); 
34
35     if (MSG_host_set_data(MSG_host_self(),(void*)hd) != MSG_OK)
36       return unknown_error;
37   }
38   
39   /* take a free channel for this process */
40   for (i=0; i<XBT_MAX_CHANNEL && hd->proc[i]; i++);
41   if (i == XBT_MAX_CHANNEL) 
42     RAISE2(system_error,
43            "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.",
44             MSG_host_get_name(MSG_host_self()),XBT_MAX_CHANNEL);
45
46   pd->chan = i;
47   hd->proc[ i ] = MSG_process_self_PID();
48
49   /* regiter it to the ports structure */
50   pr.port = -1;
51   pr.tochan = i;
52   pr.raw = 0;
53   xbt_dynar_push(hd->ports,&pr);
54
55   /* take a free RAW channel for this process */
56   for (i=0; i<XBT_MAX_CHANNEL && hd->proc[i]; i++);
57   if (i == XBT_MAX_CHANNEL) {
58     RAISE2(system_error,
59            "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.",
60             MSG_host_get_name(MSG_host_self()),XBT_MAX_CHANNEL);
61   }
62   pd->rawChan = i;
63
64   hd->proc[ i ] = MSG_process_self_PID();
65
66   /* regiter it to the ports structure */
67   prraw.port = -1;
68   prraw.tochan = i;
69   prraw.raw = 1;
70   xbt_dynar_push(hd->ports,&prraw);
71
72   VERB2("Creating process '%s' (%d)",
73            MSG_process_get_name(MSG_process_self()),
74            MSG_process_self_PID());
75   return no_error;
76 }
77
78 xbt_error_t
79 gras_process_exit() {
80   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
81   gras_procdata_t *pd=gras_procdata_get();
82   int myPID=MSG_process_self_PID();
83   int cpt;
84   gras_sg_portrec_t pr;
85
86   xbt_assert0(hd && pd,"Run gras_process_init!!");
87
88   INFO2("GRAS: Finalizing process '%s' (%d)",
89         MSG_process_get_name(MSG_process_self()),MSG_process_self_PID());
90
91   if (xbt_dynar_length(pd->msg_queue))
92     WARN1("process %d terminated, but some messages are still queued",
93           MSG_process_self_PID());
94
95   for (cpt=0; cpt< XBT_MAX_CHANNEL; cpt++)
96     if (myPID == hd->proc[cpt])
97       hd->proc[cpt] = 0;
98
99   xbt_dynar_foreach(hd->ports, cpt, pr) {
100     if (pr.port == pd->chan || pr.port == pd->rawChan) {
101       xbt_dynar_cursor_rm(hd->ports, &cpt);
102     }
103   }
104
105   return no_error;
106 }
107
108 /* **************************************************************************
109  * Process data
110  * **************************************************************************/
111
112 gras_procdata_t *gras_procdata_get(void) {
113   gras_procdata_t *pd=
114     (gras_procdata_t *)MSG_process_get_data(MSG_process_self());
115
116   xbt_assert0(pd,"Run gras_process_init!");
117
118   return pd;
119 }
120