2015-06-23 11:46:37 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2015-08-07 11:34:00 +00:00
|
|
|
#ifndef ATOM_COMMON_API_EVENT_EMITTER_CALLER_H_
|
|
|
|
#define ATOM_COMMON_API_EVENT_EMITTER_CALLER_H_
|
2015-06-23 11:46:37 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2017-12-30 16:25:09 +00:00
|
|
|
#include "atom/common/native_mate_converters/string16_converter.h"
|
2015-06-23 11:46:37 +00:00
|
|
|
#include "native_mate/converter.h"
|
|
|
|
|
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
using ValueVector = std::vector<v8::Local<v8::Value>>;
|
|
|
|
|
2016-10-26 09:10:15 +00:00
|
|
|
v8::Local<v8::Value> CallMethodWithArgs(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> obj,
|
|
|
|
const char* method,
|
|
|
|
ValueVector* args);
|
2015-06-23 11:46:37 +00:00
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
|
2015-06-23 12:14:03 +00:00
|
|
|
// obj.emit.apply(obj, name, args...);
|
|
|
|
// The caller is responsible of allocating a HandleScope.
|
2016-10-26 09:10:15 +00:00
|
|
|
template <typename StringType>
|
2015-06-23 12:14:03 +00:00
|
|
|
v8::Local<v8::Value> EmitEvent(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> obj,
|
|
|
|
const StringType& name,
|
|
|
|
const internal::ValueVector& args) {
|
2016-10-26 09:10:15 +00:00
|
|
|
internal::ValueVector concatenated_args = {StringToV8(isolate, name)};
|
2015-06-23 12:14:03 +00:00
|
|
|
concatenated_args.reserve(1 + args.size());
|
|
|
|
concatenated_args.insert(concatenated_args.end(), args.begin(), args.end());
|
2016-10-26 09:10:15 +00:00
|
|
|
return internal::CallMethodWithArgs(isolate, obj, "emit", &concatenated_args);
|
2015-06-23 12:14:03 +00:00
|
|
|
}
|
|
|
|
|
2015-06-23 11:46:37 +00:00
|
|
|
// obj.emit(name, args...);
|
|
|
|
// The caller is responsible of allocating a HandleScope.
|
2016-10-26 09:10:15 +00:00
|
|
|
template <typename StringType, typename... Args>
|
2015-06-23 11:46:37 +00:00
|
|
|
v8::Local<v8::Value> EmitEvent(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> obj,
|
2015-06-23 12:14:03 +00:00
|
|
|
const StringType& name,
|
2015-06-23 11:46:37 +00:00
|
|
|
const Args&... args) {
|
|
|
|
internal::ValueVector converted_args = {
|
2018-04-18 01:44:10 +00:00
|
|
|
StringToV8(isolate, name),
|
|
|
|
ConvertToV8(isolate, args)...,
|
2016-10-26 09:10:15 +00:00
|
|
|
};
|
|
|
|
return internal::CallMethodWithArgs(isolate, obj, "emit", &converted_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
// obj.custom_emit(args...)
|
|
|
|
template <typename... Args>
|
|
|
|
v8::Local<v8::Value> CustomEmit(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> object,
|
|
|
|
const char* custom_emit,
|
|
|
|
const Args&... args) {
|
|
|
|
internal::ValueVector converted_args = {
|
2015-06-23 11:46:37 +00:00
|
|
|
ConvertToV8(isolate, args)...,
|
|
|
|
};
|
2016-10-26 09:10:15 +00:00
|
|
|
return internal::CallMethodWithArgs(isolate, object, custom_emit,
|
|
|
|
&converted_args);
|
2015-06-23 11:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mate
|
|
|
|
|
2015-08-07 11:34:00 +00:00
|
|
|
#endif // ATOM_COMMON_API_EVENT_EMITTER_CALLER_H_
|