2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-25 16:30:31 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2015-12-29 10:29:48 +08:00
|
|
|
#include <string>
|
|
|
|
|
2016-04-26 16:10:27 +09:00
|
|
|
#include "atom/common/api/remote_callback_freer.h"
|
|
|
|
#include "atom/common/api/remote_object_freer.h"
|
|
|
|
#include "atom/common/native_mate_converters/content_converter.h"
|
2015-09-07 16:29:54 +08:00
|
|
|
#include "atom/common/node_includes.h"
|
2014-04-16 15:31:59 +08:00
|
|
|
#include "native_mate/dictionary.h"
|
2013-08-27 17:47:44 +08:00
|
|
|
#include "v8/include/v8-profiler.h"
|
2013-12-11 15:48:19 +08:00
|
|
|
|
2013-04-25 16:30:31 +08:00
|
|
|
namespace {
|
|
|
|
|
2016-03-24 01:24:01 +05:30
|
|
|
v8::Local<v8::Value> GetHiddenValue(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> object,
|
2015-12-28 22:51:01 +08:00
|
|
|
v8::Local<v8::String> key) {
|
2016-03-24 01:24:01 +05:30
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
|
|
v8::Local<v8::Private> privateKey = v8::Private::ForApi(isolate, key);
|
|
|
|
v8::Local<v8::Value> value;
|
|
|
|
v8::Maybe<bool> result = object->HasPrivate(context, privateKey);
|
|
|
|
if (!(result.IsJust() && result.FromJust()))
|
|
|
|
return v8::Local<v8::Value>();
|
|
|
|
if (object->GetPrivate(context, privateKey).ToLocal(&value))
|
|
|
|
return value;
|
|
|
|
return v8::Local<v8::Value>();
|
2013-04-25 16:30:31 +08:00
|
|
|
}
|
|
|
|
|
2016-03-24 01:24:01 +05:30
|
|
|
void SetHiddenValue(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> object,
|
2015-05-22 19:11:22 +08:00
|
|
|
v8::Local<v8::String> key,
|
|
|
|
v8::Local<v8::Value> value) {
|
2016-03-24 01:24:01 +05:30
|
|
|
if (value.IsEmpty())
|
|
|
|
return;
|
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
|
|
v8::Local<v8::Private> privateKey = v8::Private::ForApi(isolate, key);
|
|
|
|
object->SetPrivate(context, privateKey, value);
|
2013-04-25 16:30:31 +08:00
|
|
|
}
|
|
|
|
|
2016-03-24 01:24:01 +05:30
|
|
|
void DeleteHiddenValue(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> object,
|
2015-08-27 19:01:34 +08:00
|
|
|
v8::Local<v8::String> key) {
|
2016-03-24 01:24:01 +05:30
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
|
|
v8::Local<v8::Private> privateKey = v8::Private::ForApi(isolate, key);
|
|
|
|
// Actually deleting the value would make force the object into
|
|
|
|
// dictionary mode which is unnecessarily slow. Instead, we replace
|
|
|
|
// the hidden value with "undefined".
|
|
|
|
object->SetPrivate(context, privateKey, v8::Undefined(isolate));
|
2015-08-27 19:01:34 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 19:11:22 +08:00
|
|
|
int32_t GetObjectHash(v8::Local<v8::Object> object) {
|
2014-04-16 15:31:59 +08:00
|
|
|
return object->GetIdentityHash();
|
2013-04-25 16:30:31 +08:00
|
|
|
}
|
|
|
|
|
2014-06-28 22:33:00 +08:00
|
|
|
void TakeHeapSnapshot(v8::Isolate* isolate) {
|
2015-05-22 15:24:34 +08:00
|
|
|
isolate->GetHeapProfiler()->TakeHeapSnapshot();
|
2013-08-27 17:47:44 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 19:11:22 +08:00
|
|
|
void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context, void* priv) {
|
2014-06-29 20:48:44 +08:00
|
|
|
mate::Dictionary dict(context->GetIsolate(), exports);
|
2014-04-16 15:31:59 +08:00
|
|
|
dict.SetMethod("getHiddenValue", &GetHiddenValue);
|
|
|
|
dict.SetMethod("setHiddenValue", &SetHiddenValue);
|
2015-08-27 19:01:34 +08:00
|
|
|
dict.SetMethod("deleteHiddenValue", &DeleteHiddenValue);
|
2014-04-16 15:31:59 +08:00
|
|
|
dict.SetMethod("getObjectHash", &GetObjectHash);
|
|
|
|
dict.SetMethod("takeHeapSnapshot", &TakeHeapSnapshot);
|
2016-04-26 16:10:27 +09:00
|
|
|
dict.SetMethod("setRemoteCallbackFreer", &atom::RemoteCallbackFreer::BindTo);
|
|
|
|
dict.SetMethod("setRemoteObjectFreer", &atom::RemoteObjectFreer::BindTo);
|
2013-04-25 16:30:31 +08:00
|
|
|
}
|
|
|
|
|
2014-04-16 15:31:59 +08:00
|
|
|
} // namespace
|
2013-04-25 16:30:31 +08:00
|
|
|
|
2014-06-29 20:48:44 +08:00
|
|
|
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_common_v8_util, Initialize)
|