Skip to content

Commit

Permalink
Refactor event pipeline to accept typed event payloads (facebook#38276)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebook#38276

Changelog: [Internal] Refactor Fabric event pipeline to accept typed event payloads

As a first step towards my project of managing the Pointer Capture API by intercepting events in UIManagerBinding I need infrastructure to be able to safely & efficently read the properties of the event payload which is what this diff lays the ground work of addressing.

Currently the events are passed from the EventEmitter all the way to UIManagerBinding with only a ValueFactory (std::function lambda) which is called to produce the jsi::Value. My diff introduces a new virtual base class, EventPayload, which provides the same functionality but in a member function, asJSIValue. To ease the transition to this new paradigm I also introduce the first concrete subclass of EventPayload: ValueFactoryEventPayload — which simply stores and calls a ValueFactory so that we can incrementally migrate to typed events (or frankly, continue to be used for events that we don't *need* to be typed, as the only real use-case in the beginning will be for Pointer Events).

This diff notably does not change any behavior and should behave the exact same way it did before — it is in later diffs where I will begin applying this to the pointer events.

Differential Revision: D47299631

fbshipit-source-id: 91c1fbf8af18bf217754f6560a00764712c1d5b6
  • Loading branch information
vincentriemer committed Jul 10, 2023
1 parent 3ff0160 commit e4ab223
Show file tree
Hide file tree
Showing 13 changed files with 105 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void EventEmitter::dispatchEvent(
eventDispatcher->dispatchEvent(
RawEvent(
normalizeEventType(std::move(type)),
payloadFactory,
std::make_shared<ValueFactoryEventPayload>(payloadFactory),
eventTarget_,
category),
priority);
Expand All @@ -102,7 +102,7 @@ void EventEmitter::dispatchUniqueEvent(

eventDispatcher->dispatchUniqueEvent(RawEvent(
normalizeEventType(std::move(type)),
payloadFactory,
std::make_shared<ValueFactoryEventPayload>(payloadFactory),
eventTarget_,
RawEvent::Category::Continuous));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@

#include <folly/dynamic.h>
#include <react/renderer/core/EventDispatcher.h>
#include <react/renderer/core/EventPayload.h>
#include <react/renderer/core/EventPriority.h>
#include <react/renderer/core/EventTarget.h>
#include <react/renderer/core/ReactPrimitives.h>
#include <react/renderer/core/ValueFactoryEventPayload.h>

namespace facebook::react {

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

#pragma once

#include <jsi/jsi.h>

namespace facebook::react {

/**
* Abstract base class for all event payload types.
*/
struct EventPayload {
virtual ~EventPayload() = default;

EventPayload() = default;
EventPayload(const EventPayload &) = default;
EventPayload &operator=(const EventPayload &) = default;
EventPayload(EventPayload &&) = default;
EventPayload &operator=(EventPayload &&) = default;

virtual jsi::Value asJSIValue(jsi::Runtime &runtime) const = 0;
};

} // namespace facebook::react
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <string>

#include <jsi/jsi.h>
#include <react/renderer/core/EventPayload.h>
#include <react/renderer/core/EventTarget.h>
#include <react/renderer/core/ReactEventPriority.h>
#include <react/renderer/core/ValueFactory.h>
Expand All @@ -22,6 +23,6 @@ using EventPipe = std::function<void(
const EventTarget *eventTarget,
const std::string &type,
ReactEventPriority priority,
const ValueFactory &payloadFactory)>;
const EventPayload &payload)>;

} // namespace facebook::react
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*/

#include <cxxreact/JSExecutor.h>
#include <logger/react_native_log.h>
#include "EventEmitter.h"
#include "EventLogger.h"
#include "EventQueue.h"
Expand Down Expand Up @@ -53,12 +54,18 @@ void EventQueueProcessor::flushEvents(
eventLogger->onEventDispatch(event.loggingTag);
}

if (event.eventPayload == nullptr) {
react_native_log_error(
"EventQueueProcessor: Unexpected null event payload");
continue;
}

eventPipe_(
runtime,
event.eventTarget.get(),
event.type,
reactPriority,
event.payloadFactory);
*event.eventPayload);

if (eventLogger != nullptr) {
eventLogger->onEventEnd(event.loggingTag);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ namespace facebook::react {

RawEvent::RawEvent(
std::string type,
ValueFactory payloadFactory,
std::shared_ptr<EventPayload> eventPayload,
SharedEventTarget eventTarget,
Category category)
: type(std::move(type)),
payloadFactory(std::move(payloadFactory)),
eventPayload(std::move(eventPayload)),
eventTarget(std::move(eventTarget)),
category(category) {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include <string>

#include <react/renderer/core/EventLogger.h>
#include <react/renderer/core/EventPayload.h>
#include <react/renderer/core/EventTarget.h>
#include <react/renderer/core/ValueFactory.h>

namespace facebook::react {

Expand Down Expand Up @@ -60,12 +60,12 @@ struct RawEvent {

RawEvent(
std::string type,
ValueFactory payloadFactory,
std::shared_ptr<EventPayload> eventPayload,
SharedEventTarget eventTarget,
Category category = Category::Unspecified);

std::string type;
ValueFactory payloadFactory;
std::shared_ptr<EventPayload> eventPayload;
SharedEventTarget eventTarget;
Category category;
EventTag loggingTag{0};
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

#include "ValueFactoryEventPayload.h"

namespace facebook::react {

ValueFactoryEventPayload::ValueFactoryEventPayload(ValueFactory factory)
: valueFactory_(std::move(factory)) {}

jsi::Value ValueFactoryEventPayload::asJSIValue(jsi::Runtime &runtime) const {
return valueFactory_(runtime);
}

} // namespace facebook::react
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

#pragma once

#include <react/renderer/core/EventPayload.h>
#include <react/renderer/core/ValueFactory.h>

namespace facebook::react {

class ValueFactoryEventPayload : public EventPayload {
public:
explicit ValueFactoryEventPayload(ValueFactory factory);
jsi::Value asJSIValue(jsi::Runtime &runtime) const override;

private:
ValueFactory valueFactory_;
};

} // namespace facebook::react
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <react/renderer/core/EventPipe.h>
#include <react/renderer/core/EventQueueProcessor.h>
#include <react/renderer/core/StatePipe.h>
#include <react/renderer/core/ValueFactoryEventPayload.h>

#include <memory>

Expand All @@ -26,7 +27,7 @@ class EventQueueProcessorTest : public testing::Test {
const EventTarget * /*eventTarget*/,
const std::string &type,
ReactEventPriority priority,
const ValueFactory & /*payloadFactory*/) {
const EventPayload & /*payload*/) {
eventTypes_.push_back(type);
eventPriorities_.push_back(priority);
};
Expand All @@ -49,7 +50,7 @@ TEST_F(EventQueueProcessorTest, singleUnspecifiedEvent) {
*runtime_,
{RawEvent(
"my type",
dummyValueFactory_,
std::make_shared<ValueFactoryEventPayload>(dummyValueFactory_),
nullptr,
RawEvent::Category::Unspecified)});

Expand All @@ -63,22 +64,22 @@ TEST_F(EventQueueProcessorTest, continuousEvent) {
*runtime_,
{RawEvent(
"touchStart",
dummyValueFactory_,
std::make_shared<ValueFactoryEventPayload>(dummyValueFactory_),
nullptr,
RawEvent::Category::ContinuousStart),
RawEvent(
"touchMove",
dummyValueFactory_,
std::make_shared<ValueFactoryEventPayload>(dummyValueFactory_),
nullptr,
RawEvent::Category::Unspecified),
RawEvent(
"touchEnd",
dummyValueFactory_,
std::make_shared<ValueFactoryEventPayload>(dummyValueFactory_),
nullptr,
RawEvent::Category::ContinuousEnd),
RawEvent(
"custom event",
dummyValueFactory_,
std::make_shared<ValueFactoryEventPayload>(dummyValueFactory_),
nullptr,
RawEvent::Category::Unspecified)});

Expand All @@ -103,7 +104,7 @@ TEST_F(EventQueueProcessorTest, alwaysContinuousEvent) {
{
RawEvent(
"onScroll",
dummyValueFactory_,
std::make_shared<ValueFactoryEventPayload>(dummyValueFactory_),
nullptr,
RawEvent::Category::Continuous),
});
Expand All @@ -120,7 +121,7 @@ TEST_F(EventQueueProcessorTest, alwaysDiscreteEvent) {
{
RawEvent(
"onChange",
dummyValueFactory_,
std::make_shared<ValueFactoryEventPayload>(dummyValueFactory_),
nullptr,
RawEvent::Category::Discrete),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ Scheduler::Scheduler(
const EventTarget *eventTarget,
const std::string &type,
ReactEventPriority priority,
const ValueFactory &payloadFactory) {
const EventPayload &payload) {
uiManager->visitBinding(
[&](UIManagerBinding const &uiManagerBinding) {
uiManagerBinding.dispatchEvent(
runtime, eventTarget, type, priority, payloadFactory);
runtime, eventTarget, type, priority, payload);
},
runtime);
if (runtimeScheduler != nullptr) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ void UIManagerBinding::dispatchEvent(
EventTarget const *eventTarget,
std::string const &type,
ReactEventPriority priority,
ValueFactory const &payloadFactory) const {
const EventPayload &eventPayload) const {
SystraceSection s("UIManagerBinding::dispatchEvent", "type", type);

auto payload = payloadFactory(runtime);
auto payload = eventPayload.asJSIValue(runtime);

// If a payload is null, the factory has decided to cancel the event
if (payload.isNull()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class UIManagerBinding : public jsi::HostObject {
EventTarget const *eventTarget,
std::string const &type,
ReactEventPriority priority,
ValueFactory const &payloadFactory) const;
const EventPayload &payload) const;

/*
* Invalidates the binding and underlying UIManager.
Expand Down

0 comments on commit e4ab223

Please sign in to comment.