summaryrefslogtreecommitdiff
path: root/src/node_config.cc
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2016-04-18 21:02:18 -0700
committerJames M Snell <jasnell@gmail.com>2016-04-21 11:37:37 -0700
commit2e974cdd8ce1829d50b8e8713633e4510b2d3e76 (patch)
tree01c763d0d2d8053efc60a6f36ac71d649bca9d7d /src/node_config.cc
parent7f11634a46869fcedc0c97d9f12580e7576508db (diff)
downloadandroid-node-v8-2e974cdd8ce1829d50b8e8713633e4510b2d3e76.tar.gz
android-node-v8-2e974cdd8ce1829d50b8e8713633e4510b2d3e76.tar.bz2
android-node-v8-2e974cdd8ce1829d50b8e8713633e4510b2d3e76.zip
src: add process.binding('config')
It turns out that userland likes to override process.config with their own stuff. If we want to be able to depend on it in any way, we need our own internal mechanism. This adds a new private process.binding('config') that is intended to serve as a container for internal flags and compile time configs that need to be passed on to the JS layer. PR-URL: https://github.com/nodejs/node/pull/6266 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'src/node_config.cc')
-rw-r--r--src/node_config.cc36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/node_config.cc b/src/node_config.cc
new file mode 100644
index 0000000000..e50002bc64
--- /dev/null
+++ b/src/node_config.cc
@@ -0,0 +1,36 @@
+#include "node.h"
+#include "env.h"
+#include "env-inl.h"
+#include "util.h"
+#include "util-inl.h"
+
+
+namespace node {
+
+using v8::Context;
+using v8::Local;
+using v8::Object;
+using v8::Value;
+using v8::ReadOnly;
+
+// The config binding is used to provide an internal view of compile or runtime
+// config options that are required internally by lib/*.js code. This is an
+// alternative to dropping additional properties onto the process object as
+// has been the practice previously in node.cc.
+
+#define READONLY_BOOLEAN_PROPERTY(str) \
+ do { \
+ target->DefineOwnProperty(env->context(), \
+ OneByteString(env->isolate(), str), \
+ True(env->isolate()), ReadOnly).FromJust(); \
+ } while (0)
+
+void InitConfig(Local<Object> target,
+ Local<Value> unused,
+ Local<Context> context) {
+ // Environment* env = Environment::GetCurrent(context);
+}
+
+} // namespace node
+
+NODE_MODULE_CONTEXT_AWARE_BUILTIN(config, node::InitConfig)