2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2014-04-17 09:12:27 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_API_EVENT_EMITTER_H_
|
|
|
|
#define ATOM_BROWSER_API_EVENT_EMITTER_H_
|
|
|
|
|
2014-10-25 03:30:35 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2015-08-07 11:34:00 +00:00
|
|
|
#include "atom/common/api/event_emitter_caller.h"
|
2014-04-17 09:12:27 +00:00
|
|
|
#include "native_mate/wrappable.h"
|
|
|
|
|
2014-04-25 08:13:16 +00:00
|
|
|
namespace content {
|
2018-03-09 09:31:09 +00:00
|
|
|
class RenderFrameHost;
|
2014-04-25 08:13:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace IPC {
|
|
|
|
class Message;
|
|
|
|
}
|
|
|
|
|
2014-04-17 09:12:27 +00:00
|
|
|
namespace mate {
|
|
|
|
|
2016-04-25 01:17:54 +00:00
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
v8::Local<v8::Object> CreateJSEvent(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> object,
|
2018-03-09 09:31:09 +00:00
|
|
|
content::RenderFrameHost* sender,
|
2016-04-25 01:17:54 +00:00
|
|
|
IPC::Message* message);
|
2018-04-18 01:44:10 +00:00
|
|
|
v8::Local<v8::Object> CreateCustomEvent(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> object,
|
|
|
|
v8::Local<v8::Object> event);
|
2016-06-22 02:00:45 +00:00
|
|
|
v8::Local<v8::Object> CreateEventFromFlags(v8::Isolate* isolate, int flags);
|
2016-04-25 01:17:54 +00:00
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
|
2014-04-17 09:12:27 +00:00
|
|
|
// Provide helperers to emit event in JavaScript.
|
2018-04-18 01:44:10 +00:00
|
|
|
template <typename T>
|
2016-04-25 01:17:54 +00:00
|
|
|
class EventEmitter : public Wrappable<T> {
|
2014-10-25 03:30:35 +00:00
|
|
|
public:
|
2015-05-22 11:11:22 +00:00
|
|
|
typedef std::vector<v8::Local<v8::Value>> ValueArray;
|
2014-10-25 03:30:35 +00:00
|
|
|
|
2016-04-25 01:17:54 +00:00
|
|
|
// Make the convinient methods visible:
|
|
|
|
// https://isocpp.org/wiki/faq/templates#nondependent-name-lookup-members
|
|
|
|
v8::Isolate* isolate() const { return Wrappable<T>::isolate(); }
|
2018-02-20 16:11:35 +00:00
|
|
|
v8::Local<v8::Object> GetWrapper() const {
|
|
|
|
return Wrappable<T>::GetWrapper();
|
|
|
|
}
|
2016-04-25 01:17:54 +00:00
|
|
|
|
2015-07-29 06:24:45 +00:00
|
|
|
// this.emit(name, event, args...);
|
2018-04-18 01:44:10 +00:00
|
|
|
template <typename... Args>
|
2015-07-29 06:24:45 +00:00
|
|
|
bool EmitCustomEvent(const base::StringPiece& name,
|
|
|
|
v8::Local<v8::Object> event,
|
|
|
|
const Args&... args) {
|
2016-04-25 01:17:54 +00:00
|
|
|
return EmitWithEvent(
|
2018-04-18 01:44:10 +00:00
|
|
|
name, internal::CreateCustomEvent(isolate(), GetWrapper(), event),
|
|
|
|
args...);
|
2015-07-29 06:24:45 +00:00
|
|
|
}
|
|
|
|
|
2016-06-22 02:00:45 +00:00
|
|
|
// this.emit(name, new Event(flags), args...);
|
2018-04-18 01:44:10 +00:00
|
|
|
template <typename... Args>
|
2016-06-22 02:00:45 +00:00
|
|
|
bool EmitWithFlags(const base::StringPiece& name,
|
|
|
|
int flags,
|
|
|
|
const Args&... args) {
|
|
|
|
return EmitCustomEvent(
|
2018-04-18 01:44:10 +00:00
|
|
|
name, internal::CreateEventFromFlags(isolate(), flags), args...);
|
2016-06-22 02:00:45 +00:00
|
|
|
}
|
|
|
|
|
2014-04-25 08:13:16 +00:00
|
|
|
// this.emit(name, new Event(), args...);
|
2018-04-18 01:44:10 +00:00
|
|
|
template <typename... Args>
|
2015-01-15 01:51:54 +00:00
|
|
|
bool Emit(const base::StringPiece& name, const Args&... args) {
|
|
|
|
return EmitWithSender(name, nullptr, nullptr, args...);
|
|
|
|
}
|
2014-04-17 09:12:27 +00:00
|
|
|
|
2014-04-25 08:13:16 +00:00
|
|
|
// this.emit(name, new Event(sender, message), args...);
|
2018-03-09 09:31:09 +00:00
|
|
|
template <typename... Args>
|
2015-01-15 01:51:54 +00:00
|
|
|
bool EmitWithSender(const base::StringPiece& name,
|
2018-03-09 09:31:09 +00:00
|
|
|
content::RenderFrameHost* sender,
|
2015-01-15 01:51:54 +00:00
|
|
|
IPC::Message* message,
|
|
|
|
const Args&... args) {
|
2015-08-27 07:22:02 +00:00
|
|
|
v8::Locker locker(isolate());
|
|
|
|
v8::HandleScope handle_scope(isolate());
|
2017-10-24 05:38:55 +00:00
|
|
|
v8::Local<v8::Object> wrapper = GetWrapper();
|
2017-10-24 05:58:43 +00:00
|
|
|
if (wrapper.IsEmpty()) {
|
2017-10-24 05:38:55 +00:00
|
|
|
return false;
|
2017-10-24 05:58:43 +00:00
|
|
|
}
|
2018-04-18 01:44:10 +00:00
|
|
|
v8::Local<v8::Object> event =
|
|
|
|
internal::CreateJSEvent(isolate(), wrapper, sender, message);
|
2015-07-29 06:24:45 +00:00
|
|
|
return EmitWithEvent(name, event, args...);
|
2015-01-15 01:51:54 +00:00
|
|
|
}
|
2014-04-25 08:13:16 +00:00
|
|
|
|
2015-06-25 06:28:13 +00:00
|
|
|
protected:
|
2016-04-25 01:17:54 +00:00
|
|
|
EventEmitter() {}
|
2015-06-25 06:28:13 +00:00
|
|
|
|
2015-01-15 01:51:54 +00:00
|
|
|
private:
|
2015-07-29 06:24:45 +00:00
|
|
|
// this.emit(name, event, args...);
|
2018-04-18 01:44:10 +00:00
|
|
|
template <typename... Args>
|
2015-07-29 06:24:45 +00:00
|
|
|
bool EmitWithEvent(const base::StringPiece& name,
|
|
|
|
v8::Local<v8::Object> event,
|
|
|
|
const Args&... args) {
|
|
|
|
v8::Locker locker(isolate());
|
|
|
|
v8::HandleScope handle_scope(isolate());
|
2016-04-25 01:19:25 +00:00
|
|
|
EmitEvent(isolate(), GetWrapper(), name, event, args...);
|
2018-04-18 01:44:10 +00:00
|
|
|
return event->Get(StringToV8(isolate(), "defaultPrevented"))
|
|
|
|
->BooleanValue();
|
2015-07-29 06:24:45 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 09:12:27 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(EventEmitter);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mate
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_EVENT_EMITTER_H_
|