Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Second try to let the darwin linker find the environment variables
[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 extern char **environ;
32
33 void gras_process_init() {
34   char **env_iter;
35   _gras_procdata=xbt_new0(gras_procdata_t,1);
36   gras_procdata_init();
37    
38   /* initialize the host & process properties */
39   _host_properties = xbt_dict_new();
40   _process_properties = xbt_dict_new();
41   env_iter = environ;
42   while (*env_iter) {
43      char *equal, *buf = xbt_strdup(*env_iter);
44      equal = strchr(buf, '=');
45      if (!equal) {
46         WARN1("The environment contains an entry without '=' char: %s (ignore it)",*env_iter);
47         continue;
48      }
49      *equal = '\0';
50      xbt_dict_set(_process_properties,buf,xbt_strdup(equal + 1),xbt_free_f);
51      free(buf);
52      env_iter++;
53   }   
54 }
55 void gras_process_exit() {
56   gras_procdata_exit();
57   free(_gras_procdata);
58   xbt_dict_free(&_process_properties);
59 }
60
61 const char *xbt_procname(void) {
62   if(_gras_procname) return _gras_procname;
63   else return "";
64 }
65
66 int gras_os_getpid(void) {
67 #ifdef _WIN32
68    return (long int) GetCurrentProcessId();
69 #else
70    return (long int) getpid();
71 #endif
72 }
73
74 /* **************************************************************************
75  * Process data
76  * **************************************************************************/
77
78 gras_procdata_t *gras_procdata_get(void) {
79   xbt_assert0(_gras_procdata,"Run gras_process_init (ie, gras_init)!");
80
81   return _gras_procdata;
82 }
83
84 void gras_agent_spawn(const char *name, void *data, 
85                       xbt_main_func_t code, int argc, char *argv[], xbt_dict_t properties) {
86    THROW_UNIMPLEMENTED;
87 }
88
89 /* **************************************************************************
90  * Properties
91  * **************************************************************************/
92
93 const char* gras_process_property_value(const char* name) {
94    return xbt_dict_get_or_null(_process_properties,name);
95 }
96 xbt_dict_t gras_process_properties(void) {
97    return _process_properties;
98 }
99
100 const char* gras_os_host_property_value(const char* name) {
101    return xbt_dict_get_or_null(_host_properties,name);
102 }
103 xbt_dict_t gras_os_host_properties(void) {
104    return _host_properties;
105 }