diff options
author | Denys Zariaiev <denys.zariaiev@gmail.com> | 2014-04-25 15:06:06 +0300 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2014-04-26 00:34:55 +0400 |
commit | 681fe599d7a45fb537f948c08e64cdce06bc585d (patch) | |
tree | 1b115ad38a9f96bdc1d50b4fac28480495228e44 | |
parent | bd24ab2bd788a196adaac316db20cde2c8c8e14d (diff) | |
download | node-new-681fe599d7a45fb537f948c08e64cdce06bc585d.tar.gz |
vm: assign Environment to created context
ContextifyContext::CreateV8Context is now create context
with Environment pointer
Signed-off-by: Fedor Indutny <fedor@indutny.com>
-rw-r--r-- | src/env-inl.h | 6 | ||||
-rw-r--r-- | src/env.h | 2 | ||||
-rw-r--r-- | src/node_contextify.cc | 3 | ||||
-rw-r--r-- | test/simple/test-regress-GH-7511.js | 30 |
4 files changed, 40 insertions, 1 deletions
diff --git a/src/env-inl.h b/src/env-inl.h index 9a6199da2f..890ddd2305 100644 --- a/src/env-inl.h +++ b/src/env-inl.h @@ -190,10 +190,14 @@ inline void Environment::TickInfo::set_last_threw(bool value) { inline Environment* Environment::New(v8::Local<v8::Context> context) { Environment* env = new Environment(context); - context->SetAlignedPointerInEmbedderData(kContextEmbedderDataIndex, env); + env->AssignToContext(context); return env; } +inline void Environment::AssignToContext(v8::Local<v8::Context> context) { + context->SetAlignedPointerInEmbedderData(kContextEmbedderDataIndex, this); +} + inline Environment* Environment::GetCurrent(v8::Isolate* isolate) { return GetCurrent(isolate->GetCurrentContext()); } @@ -362,6 +362,8 @@ class Environment { void StartGarbageCollectionTracking(v8::Local<v8::Function> callback); void StopGarbageCollectionTracking(); + void AssignToContext(v8::Local<v8::Context> context); + inline v8::Isolate* isolate() const; inline uv_loop_t* event_loop() const; inline bool has_async_listener() const; diff --git a/src/node_contextify.cc b/src/node_contextify.cc index daeb7c768a..abf17f6c8d 100644 --- a/src/node_contextify.cc +++ b/src/node_contextify.cc @@ -231,6 +231,9 @@ class ContextifyContext { Local<Context> ctx = Context::New(env->isolate(), NULL, object_template); if (!ctx.IsEmpty()) ctx->SetSecurityToken(env->context()->GetSecurityToken()); + + env->AssignToContext(ctx); + return scope.Escape(ctx); } diff --git a/test/simple/test-regress-GH-7511.js b/test/simple/test-regress-GH-7511.js new file mode 100644 index 0000000000..9694f0499e --- /dev/null +++ b/test/simple/test-regress-GH-7511.js @@ -0,0 +1,30 @@ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +var common = require('../common'), + assert = require('assert'), + vm = require('vm'); + +assert.doesNotThrow(function() { + var context = vm.createContext({ process: process }); + var result = vm.runInContext('process.env["PATH"]', context); + assert.notEqual(undefined, result); +}); |