2019-09-06 14:52:54 +09:00
|
|
|
// Copyright (c) 2019 GitHub, Inc.
|
2015-06-23 19:46:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_GIN_HELPER_EVENT_EMITTER_CALLER_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_GIN_HELPER_EVENT_EMITTER_CALLER_H_
|
2015-06-23 19:46:37 +08:00
|
|
|
|
2024-09-18 09:40:14 -05:00
|
|
|
#include <array>
|
2019-04-26 21:42:56 -07:00
|
|
|
#include <utility>
|
2015-06-23 19:46:37 +08:00
|
|
|
|
2024-09-18 09:40:14 -05:00
|
|
|
#include "base/containers/span.h"
|
2019-09-06 14:52:54 +09:00
|
|
|
#include "gin/converter.h"
|
2020-03-19 11:35:11 -07:00
|
|
|
#include "gin/wrappable.h"
|
2015-06-23 19:46:37 +08:00
|
|
|
|
2019-09-06 14:52:54 +09:00
|
|
|
namespace gin_helper {
|
2015-06-23 19:46:37 +08:00
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
|
2016-10-26 11:10:15 +02:00
|
|
|
v8::Local<v8::Value> CallMethodWithArgs(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> obj,
|
|
|
|
const char* method,
|
2024-09-18 09:40:14 -05:00
|
|
|
base::span<v8::Local<v8::Value>> args);
|
2015-06-23 19:46:37 +08:00
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
|
|
|
|
// obj.emit(name, args...);
|
|
|
|
// The caller is responsible of allocating a HandleScope.
|
2016-10-26 11:10:15 +02:00
|
|
|
template <typename StringType, typename... Args>
|
2015-06-23 19:46:37 +08:00
|
|
|
v8::Local<v8::Value> EmitEvent(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> obj,
|
2015-06-23 20:14:03 +08:00
|
|
|
const StringType& name,
|
2019-04-26 21:42:56 -07:00
|
|
|
Args&&... args) {
|
2024-09-17 09:00:52 -05:00
|
|
|
v8::EscapableHandleScope scope{isolate};
|
2024-09-18 09:40:14 -05:00
|
|
|
std::array<v8::Local<v8::Value>, 1U + sizeof...(args)> converted_args = {
|
2019-09-06 14:52:54 +09:00
|
|
|
gin::StringToV8(isolate, name),
|
|
|
|
gin::ConvertToV8(isolate, std::forward<Args>(args))...,
|
2016-10-26 11:10:15 +02:00
|
|
|
};
|
2024-09-17 09:00:52 -05:00
|
|
|
return scope.Escape(
|
2024-09-18 09:40:14 -05:00
|
|
|
internal::CallMethodWithArgs(isolate, obj, "emit", converted_args));
|
2016-10-26 11:10:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// obj.custom_emit(args...)
|
|
|
|
template <typename... Args>
|
|
|
|
v8::Local<v8::Value> CustomEmit(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> object,
|
|
|
|
const char* custom_emit,
|
2019-04-26 21:42:56 -07:00
|
|
|
Args&&... args) {
|
2024-09-17 09:00:52 -05:00
|
|
|
v8::EscapableHandleScope scope{isolate};
|
2024-09-18 09:40:14 -05:00
|
|
|
std::array<v8::Local<v8::Value>, sizeof...(args)> converted_args = {
|
2019-09-06 14:52:54 +09:00
|
|
|
gin::ConvertToV8(isolate, std::forward<Args>(args))...,
|
2015-06-23 19:46:37 +08:00
|
|
|
};
|
2024-09-17 09:00:52 -05:00
|
|
|
return scope.Escape(internal::CallMethodWithArgs(isolate, object, custom_emit,
|
2024-09-18 09:40:14 -05:00
|
|
|
converted_args));
|
2015-06-23 19:46:37 +08:00
|
|
|
}
|
|
|
|
|
2020-03-19 11:35:11 -07:00
|
|
|
template <typename T, typename... Args>
|
|
|
|
v8::Local<v8::Value> CallMethod(v8::Isolate* isolate,
|
|
|
|
gin::Wrappable<T>* object,
|
|
|
|
const char* method_name,
|
|
|
|
Args&&... args) {
|
2020-04-02 16:07:56 -07:00
|
|
|
v8::EscapableHandleScope scope(isolate);
|
2020-03-19 11:35:11 -07:00
|
|
|
v8::Local<v8::Object> v8_object;
|
|
|
|
if (object->GetWrapper(isolate).ToLocal(&v8_object))
|
2020-04-02 16:07:56 -07:00
|
|
|
return scope.Escape(CustomEmit(isolate, v8_object, method_name,
|
|
|
|
std::forward<Args>(args)...));
|
2020-03-19 11:35:11 -07:00
|
|
|
else
|
|
|
|
return v8::Local<v8::Value>();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename... Args>
|
|
|
|
v8::Local<v8::Value> CallMethod(gin::Wrappable<T>* object,
|
|
|
|
const char* method_name,
|
|
|
|
Args&&... args) {
|
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
|
|
return CallMethod(isolate, object, method_name, std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
|
2019-09-06 14:52:54 +09:00
|
|
|
} // namespace gin_helper
|
2015-06-23 19:46:37 +08:00
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_GIN_HELPER_EVENT_EMITTER_CALLER_H_
|