forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: remove dependency on node-weak
Replace node-weak with a small hand-rolled add-on. We can now drop node-weak and nan, reducing the size of the source tree by about 750 kB and the size of the tarball by about 150-300 kB. PR-URL: nodejs#11239 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Richard Lau <[email protected]>
- Loading branch information
1 parent
0cded6a
commit 969b85c
Showing
12 changed files
with
115 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1071,23 +1071,6 @@ The externally maintained libraries used by Node.js are: | |
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
""" | ||
|
||
- node-weak, located at test/gc/node_modules/weak, is licensed as follows: | ||
""" | ||
Copyright (c) 2011, Ben Noordhuis <[email protected]> | ||
|
||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted, provided that the above | ||
copyright notice and this permission notice appear in all copies. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
""" | ||
|
||
- v8_inspector, located at deps/v8_inspector/third_party/v8_inspector, is licensed as follows: | ||
""" | ||
// Copyright 2015 The Chromium Authors. All rights reserved. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#include "node.h" | ||
#include "uv.h" | ||
|
||
#include <assert.h> | ||
#include <stdlib.h> | ||
|
||
#include <vector> | ||
|
||
#ifdef NDEBUG | ||
#define CHECK(x) do { if (!(x)) abort(); } while (false) | ||
#else | ||
#define CHECK assert | ||
#endif | ||
|
||
#define CHECK_EQ(a, b) CHECK((a) == (b)) | ||
|
||
namespace { | ||
|
||
struct Callback { | ||
inline Callback(v8::Isolate* isolate, | ||
v8::Local<v8::Object> object, | ||
v8::Local<v8::Function> function) | ||
: object(isolate, object), function(isolate, function) {} | ||
|
||
v8::Persistent<v8::Object> object; | ||
v8::Persistent<v8::Function> function; | ||
}; | ||
|
||
static uv_async_t async_handle; | ||
static std::vector<Callback*> callbacks; | ||
|
||
inline void Prime() { | ||
uv_ref(reinterpret_cast<uv_handle_t*>(&async_handle)); | ||
CHECK_EQ(0, uv_async_send(&async_handle)); | ||
} | ||
|
||
inline void AsyncCallback(uv_async_t*) { | ||
auto isolate = v8::Isolate::GetCurrent(); | ||
v8::HandleScope handle_scope(isolate); | ||
auto context = isolate->GetCurrentContext(); | ||
auto global = context->Global(); | ||
while (!callbacks.empty()) { | ||
v8::HandleScope handle_scope(isolate); | ||
auto callback = callbacks.back(); | ||
callbacks.pop_back(); | ||
auto function = v8::Local<v8::Function>::New(isolate, callback->function); | ||
delete callback; | ||
if (node::MakeCallback(isolate, global, function, 0, nullptr).IsEmpty()) | ||
return Prime(); // Have exception, flush remainder on next loop tick. | ||
} | ||
uv_unref(reinterpret_cast<uv_handle_t*>(&async_handle)); | ||
} | ||
|
||
inline void OnGC(const v8::FunctionCallbackInfo<v8::Value>& info) { | ||
CHECK(info[0]->IsObject()); | ||
CHECK(info[1]->IsFunction()); | ||
auto object = info[0].As<v8::Object>(); | ||
auto function = info[1].As<v8::Function>(); | ||
auto callback = new Callback(info.GetIsolate(), object, function); | ||
auto on_callback = [] (const v8::WeakCallbackInfo<Callback>& data) { | ||
auto callback = data.GetParameter(); | ||
callbacks.push_back(callback); | ||
callback->object.Reset(); | ||
Prime(); | ||
}; | ||
callback->object.SetWeak(callback, on_callback, | ||
v8::WeakCallbackType::kParameter); | ||
} | ||
|
||
inline void Initialize(v8::Local<v8::Object> exports, | ||
v8::Local<v8::Value> module, | ||
v8::Local<v8::Context> context) { | ||
NODE_SET_METHOD(module->ToObject(context).ToLocalChecked(), "exports", OnGC); | ||
CHECK_EQ(0, uv_async_init(uv_default_loop(), &async_handle, AsyncCallback)); | ||
uv_unref(reinterpret_cast<uv_handle_t*>(&async_handle)); | ||
} | ||
|
||
} // anonymous namespace | ||
|
||
NODE_MODULE_CONTEXT_AWARE(binding, Initialize) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'binding', | ||
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ], | ||
'sources': [ 'binding.cc' ], | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters