Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Skeleton of virtualization functions
[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_NEW_DEFAULT_SUBCATEGORY(process,GRAS);
14
15 gras_error_t
16 gras_process_init() {
17   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
18   gras_process_data_t *pd;
19   int i;
20   
21   if (!(pd=(gras_process_data_t *)malloc(sizeof(gras_process_data_t)))) 
22     RAISE_MALLOC;
23
24   WARNING0("Implement msg queue");
25   /*
26   pd->grasMsgQueueLen=0;
27   pd->grasMsgQueue = NULL;
28
29   pd->grasCblListLen = 0;
30   pd->grasCblList = NULL;
31   */
32
33   if (MSG_process_set_data(MSG_process_self(),(void*)pd) != MSG_OK) {
34     return unknown_error;
35   }
36
37   if (!hd) {
38     if (!(hd=(gras_hostdata_t *)malloc(sizeof(gras_hostdata_t)))) 
39       RAISE_MALLOC;
40
41     hd->portLen = 0;
42     hd->port=NULL;
43     hd->port2chan=NULL;
44     for (i=0; i<GRAS_MAX_CHANNEL; i++) {
45       hd->proc[i]=0;
46     }
47
48     if (MSG_host_set_data(MSG_host_self(),(void*)hd) != MSG_OK) {
49       return unknown_error;
50     }
51   }
52   
53   /* take a free channel for this process */
54   for (i=0; i<GRAS_MAX_CHANNEL && hd->proc[i]; i++);
55   if (i == GRAS_MAX_CHANNEL) 
56     RAISE2(system_error,
57            "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.",
58             MSG_host_get_name(MSG_host_self()),GRAS_MAX_CHANNEL);
59
60   pd->chan = i;
61   hd->proc[ i ] = MSG_process_self_PID();
62
63   /* take a free RAW channel for this process */
64   for (i=0; i<GRAS_MAX_CHANNEL && hd->proc[i]; i++);
65   if (i == GRAS_MAX_CHANNEL) {
66     RAISE2(system_error,
67            "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.",
68             MSG_host_get_name(MSG_host_self()),GRAS_MAX_CHANNEL);
69   }
70   pd->rawChan = i;
71   hd->proc[ i ] = MSG_process_self_PID();
72
73   VERB2("Creating process '%s' (%d)",
74            MSG_process_get_name(MSG_process_self()),
75            MSG_process_self_PID());
76   return no_error;
77 }
78
79 gras_error_t
80 gras_process_exit() {
81   gras_hostdata_t *hd=(gras_hostdata_t *)MSG_host_get_data(MSG_host_self());
82   gras_process_data_t *pd=(gras_process_data_t *)MSG_process_get_data(MSG_process_self());
83   int myPID=MSG_process_self_PID();
84   int i;
85
86   gras_assert0(hd && pd,"Run gras_process_init!!\n");
87
88   INFO2("GRAS: Finalizing process '%s' (%d)",
89         MSG_process_get_name(MSG_process_self()),MSG_process_self_PID());
90
91   WARNING0("Implement msg queue");
92   /*
93   if (pd->grasMsgQueueLen) {
94     fprintf(stderr,"GRAS: Warning: process %d terminated, but some queued messages where not handled\n",MSG_process_self_PID());
95   }
96   */
97
98   for (i=0; i< GRAS_MAX_CHANNEL; i++)
99     if (myPID == hd->proc[i])
100       hd->proc[i] = 0;
101
102   for (i=0; i<hd->portLen; i++) {
103     if (hd->port2chan[ i ] == pd->chan) {
104       memmove(&(hd->port[i]),      &(hd->port[i+1]),      (hd->portLen -i -1) * sizeof(int));
105       memmove(&(hd->port2chan[i]), &(hd->port2chan[i+1]), (hd->portLen -i -1) * sizeof(int));
106       hd->portLen--;
107       i--; /* counter the effect of the i++ at the end of the iteration */
108     }
109   }
110
111   return no_error;
112 }
113
114 /* **************************************************************************
115  * Process data
116  * **************************************************************************/
117
118 void *gras_userdata_get(void) {
119   gras_process_data_t *pd=(gras_process_data_t *)MSG_process_get_data(MSG_process_self());
120
121   gras_assert0(pd,"Run gras_process_init!");
122
123   return pd->userdata;
124 }
125
126 void *gras_userdata_set(void *ud) {
127   gras_process_data_t *pd=(gras_process_data_t *)MSG_process_get_data(MSG_process_self());
128
129   gras_assert0(pd,"Run gras_process_init!");
130
131   pd->userdata = ud;
132
133   return pd->userdata;
134 }