Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ad664c0eb1e5c20938875d054a6b3625b8ca4102
[simgrid.git] / src / gras / Virtu / rl_process.c
1 /* $Id$ */
2
3 /* process_rl - GRAS process handling on real life                          */
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_rl.h"
12 #include "portable.h"
13
14 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(gras_virtu_process);
15
16 /* globals */
17 static gras_procdata_t *_gras_procdata = NULL;
18 XBT_EXPORT_NO_IMPORT(char const *) _gras_procname = NULL;
19 static xbt_dict_t _process_properties = NULL;
20 static xbt_dict_t _host_properties = NULL;
21
22 # ifdef __APPLE__
23 /* under darwin, the environment gets added to the process at startup time. So, it's not defined at library link time, forcing us to extra tricks */
24 # include <crt_externs.h>
25 # define environ (*_NSGetEnviron())
26 # else
27  /* the environment, as specified by the opengroup, used to initialize the process properties */
28  extern char **environ;
29 # endif 
30
31 void gras_process_init() {
32   char **env_iter;
33   _gras_procdata=xbt_new0(gras_procdata_t,1);
34   gras_procdata_init();
35    
36   /* initialize the host & process properties */
37   _host_properties = xbt_dict_new();
38   _process_properties = xbt_dict_new();
39   env_iter = environ;
40   while (*env_iter) {
41      char *equal, *buf = xbt_strdup(*env_iter);
42      equal = strchr(buf, '=');
43      if (!equal) {
44         WARN1("The environment contains an entry without '=' char: %s (ignore it)",*env_iter);
45         continue;
46      }
47      *equal = '\0';
48      xbt_dict_set(_process_properties,buf,xbt_strdup(equal + 1),xbt_free_f);
49      free(buf);
50      env_iter++;
51   }   
52 }
53 void gras_process_exit() {
54   gras_procdata_exit();
55   free(_gras_procdata);
56   xbt_dict_free(&_process_properties);
57 }
58
59 const char *xbt_procname(void) {
60   if(_gras_procname) return _gras_procname;
61   else return "";
62 }
63
64 int gras_os_getpid(void) {
65 #ifdef _WIN32
66    return (long int) GetCurrentProcessId();
67 #else
68    return (long int) getpid();
69 #endif
70 }
71
72 /* **************************************************************************
73  * Process data
74  * **************************************************************************/
75
76 gras_procdata_t *gras_procdata_get(void) {
77   xbt_assert0(_gras_procdata,"Run gras_process_init (ie, gras_init)!");
78
79   return _gras_procdata;
80 }
81
82 void gras_agent_spawn(const char *name, void *data, 
83                       xbt_main_func_t code, int argc, char *argv[], xbt_dict_t properties) {
84    THROW_UNIMPLEMENTED;
85 }
86
87 /* **************************************************************************
88  * Properties
89  * **************************************************************************/
90
91 const char* gras_process_property_value(const char* name) {
92    return xbt_dict_get_or_null(_process_properties,name);
93 }
94 xbt_dict_t gras_process_properties(void) {
95    return _process_properties;
96 }
97
98 const char* gras_os_host_property_value(const char* name) {
99    return xbt_dict_get_or_null(_host_properties,name);
100 }
101 xbt_dict_t gras_os_host_properties(void) {
102    return _host_properties;
103 }