mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This caused us to lose our gn check certification. :( Turns out gn check was just ignoring all the header paths it didn't understand and so gn check passing for sky wasn't meaning much. I tried to straighten out some of the mess in this CL, but its going to take several more rounds of massaging before gn check passes again. On the bright side (almost) all of our headers are absolute now. Turns out my script (attached to the bug) didn't notice ../ includes but I'll fix that in the next patch. R=abarth@chromium.org BUG=435361 Review URL: https://codereview.chromium.org/746023002
88 lines
2.3 KiB
C++
88 lines
2.3 KiB
C++
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "sky/engine/config.h"
|
|
#include "sky/engine/core/frame/PlatformEventDispatcher.h"
|
|
|
|
#include "sky/engine/core/frame/PlatformEventController.h"
|
|
#include "sky/engine/wtf/TemporaryChange.h"
|
|
|
|
namespace blink {
|
|
|
|
PlatformEventDispatcher::PlatformEventDispatcher()
|
|
: m_needsPurge(false)
|
|
, m_isDispatching(false)
|
|
{
|
|
}
|
|
|
|
PlatformEventDispatcher::~PlatformEventDispatcher()
|
|
{
|
|
}
|
|
|
|
void PlatformEventDispatcher::addController(PlatformEventController* controller)
|
|
{
|
|
bool wasEmpty = m_controllers.isEmpty();
|
|
if (!m_controllers.contains(controller))
|
|
m_controllers.append(controller);
|
|
if (wasEmpty)
|
|
startListening();
|
|
}
|
|
|
|
void PlatformEventDispatcher::removeController(PlatformEventController* controller)
|
|
{
|
|
// Do not actually remove the controller from the vector, instead zero them out.
|
|
// The zeros are removed in these two cases:
|
|
// 1. either immediately if we are not dispatching any events,
|
|
// 2. or after events to all controllers have dispatched (see notifyControllers()).
|
|
// This is to correctly handle the re-entrancy case when a controller is destroyed
|
|
// while the events are still being dispatched.
|
|
size_t index = m_controllers.find(controller);
|
|
if (index == kNotFound)
|
|
return;
|
|
|
|
m_controllers[index] = 0;
|
|
m_needsPurge = true;
|
|
|
|
if (!m_isDispatching)
|
|
purgeControllers();
|
|
}
|
|
|
|
void PlatformEventDispatcher::purgeControllers()
|
|
{
|
|
ASSERT(m_needsPurge);
|
|
|
|
size_t i = 0;
|
|
while (i < m_controllers.size()) {
|
|
if (!m_controllers[i]) {
|
|
m_controllers[i] = m_controllers.last();
|
|
m_controllers.removeLast();
|
|
} else {
|
|
++i;
|
|
}
|
|
}
|
|
|
|
m_needsPurge = false;
|
|
|
|
if (m_controllers.isEmpty())
|
|
stopListening();
|
|
}
|
|
|
|
void PlatformEventDispatcher::notifyControllers()
|
|
{
|
|
{
|
|
TemporaryChange<bool> changeIsDispatching(m_isDispatching, true);
|
|
// Don't notify controllers removed or added during event dispatch.
|
|
size_t size = m_controllers.size();
|
|
for (size_t i = 0; i < size; ++i) {
|
|
if (m_controllers[i])
|
|
m_controllers[i]->didUpdateData();
|
|
}
|
|
}
|
|
|
|
if (m_needsPurge)
|
|
purgeControllers();
|
|
}
|
|
|
|
} // namespace blink
|