Add access to user environment via ENV

This commit is contained in:
Ryan
2009-09-10 14:07:35 +02:00
parent 68dda0a7d8
commit dc39e82024
2 changed files with 16 additions and 1 deletions

View File

@@ -88,6 +88,8 @@ Returns the current working directory of the process.
+ARGV+ ::
An array containing the command line arguments.
+ENV+ ::
An object containing the user environment. See environ(7).
+__filename+ ::
The filename of the script being executed.

View File

@@ -378,13 +378,26 @@ Load (int argc, char *argv[])
node_obj->Set(String::NewSymbol("version"), String::New(NODE_VERSION));
int i,j;
Local<Array> arguments = Array::New(argc);
for (int i = 0; i < argc; i++) {
for (i = 0; i < argc; i++) {
Local<String> arg = String::New(argv[i]);
arguments->Set(Integer::New(i), arg);
}
global_obj->Set(String::NewSymbol("ARGV"), arguments);
Local<Object> env = Object::New();
for (i = 0; environ[i]; i++) {
for (j = 0; environ[i][j] && environ[i][j] != '='; j++) { ; }
Local<String> field = String::New(environ[i], j);
Local<String> value = Local<String>();
if (environ[i][j] == '=') {
value = String::New(environ[i]+j+1);
}
env->Set(field, value);
}
global_obj->Set(String::NewSymbol("ENV"), env);
NODE_SET_METHOD(node_obj, "compile", compile);
NODE_SET_METHOD(node_obj, "reallyExit", node_exit);
NODE_SET_METHOD(node_obj, "cwd", Cwd);