src: add multi-context support
authorBen Noordhuis <info@bnoordhuis.nl>
Sat, 10 Aug 2013 22:26:11 +0000 (00:26 +0200)
committerBen Noordhuis <info@bnoordhuis.nl>
Fri, 6 Sep 2013 03:51:42 +0000 (05:51 +0200)
commit756b6222956b5d25b2e7db81f4e79033a3a4d20e
treeeb03b6f0bf33c36e011858c4a31b10a6eaadfc19
parent81655a224a36948291e1f21f03273b5b604b7e6a
src: add multi-context support

This commit makes it possible to use multiple V8 execution contexts
within a single event loop.  Put another way, handle and request wrap
objects now "remember" the context they belong to and switch back to
that context when the time comes to call into JS land.

This could have been done in a quick and hacky way by calling
v8::Object::GetCreationContext() on the wrap object right before
making a callback but that leaves a fairly wide margin for bugs.

Instead, we make the context explicit through a new Environment class
that encapsulates everything (or almost everything) that belongs to
the context.  Variables that used to be a static or a global are now
members of the aforementioned class.  An additional benefit is that
this approach should make it relatively straightforward to add full
isolate support in due course.

There is no JavaScript API yet but that will be added in the near
future.

This work was graciously sponsored by GitHub, Inc.
45 files changed:
node.gyp
src/cares_wrap.cc
src/env-inl.h [new file with mode: 0644]
src/env.h [new file with mode: 0644]
src/fs_event_wrap.cc
src/handle_wrap.cc
src/handle_wrap.h
src/node.cc
src/node.h
src/node.js
src/node_buffer.cc
src/node_buffer.h
src/node_contextify.cc
src/node_crypto.cc
src/node_crypto.h
src/node_file.cc
src/node_file.h
src/node_http_parser.cc
src/node_internals.h
src/node_os.cc
src/node_stat_watcher.cc
src/node_stat_watcher.h
src/node_version.h
src/node_wrap.h
src/node_zlib.cc
src/pipe_wrap.cc
src/pipe_wrap.h
src/process_wrap.cc
src/req_wrap.h
src/signal_wrap.cc
src/smalloc.cc
src/stream_wrap.cc
src/stream_wrap.h
src/tcp_wrap.cc
src/tcp_wrap.h
src/timer_wrap.cc
src/tls_wrap.cc
src/tls_wrap.h
src/tty_wrap.cc
src/tty_wrap.h
src/udp_wrap.cc
src/udp_wrap.h
src/util-inl.h [new file with mode: 0644]
src/util.h [new file with mode: 0644]
src/uv.cc