mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL flips the switch to make Sky use Dart. TBR=eseidel@chromium.org BUG=454613 Review URL: https://codereview.chromium.org/922893002
146 lines
5.5 KiB
C++
146 lines
5.5 KiB
C++
/*
|
|
* Copyright (C) 2008 Apple Inc. All Rights Reserved.
|
|
* Copyright (C) 2012 Google Inc. All Rights Reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
#ifndef SKY_ENGINE_CORE_DOM_EXECUTIONCONTEXT_H_
|
|
#define SKY_ENGINE_CORE_DOM_EXECUTIONCONTEXT_H_
|
|
|
|
#include "sky/engine/core/dom/ActiveDOMObject.h"
|
|
#include "sky/engine/core/dom/ExecutionContextClient.h"
|
|
#include "sky/engine/core/frame/ConsoleTypes.h"
|
|
#include "sky/engine/core/frame/DOMTimer.h"
|
|
#include "sky/engine/core/inspector/ConsoleMessage.h"
|
|
#include "sky/engine/platform/LifecycleContext.h"
|
|
#include "sky/engine/platform/Supplementable.h"
|
|
#include "sky/engine/platform/heap/Handle.h"
|
|
#include "sky/engine/platform/weborigin/KURL.h"
|
|
#include "sky/engine/wtf/OwnPtr.h"
|
|
#include "sky/engine/wtf/PassOwnPtr.h"
|
|
|
|
namespace blink {
|
|
|
|
class ContextLifecycleNotifier;
|
|
class LocalDOMWindow;
|
|
class ErrorEvent;
|
|
class EventQueue;
|
|
class ScriptState;
|
|
class ScriptCallStack;
|
|
|
|
class ExecutionContext
|
|
: public LifecycleContext<ExecutionContext>
|
|
, public Supplementable<ExecutionContext> {
|
|
public:
|
|
// Delegating to ExecutionContextClient
|
|
bool isDocument() const { return m_client && m_client->isDocument(); }
|
|
const KURL& url() const;
|
|
KURL completeURL(const String& url) const;
|
|
LocalDOMWindow* executingWindow() const;
|
|
double timerAlignmentInterval() const;
|
|
|
|
virtual void reportBlockedScriptExecutionToInspector(const String& directiveText) = 0;
|
|
|
|
KURL contextURL() const { return virtualURL(); }
|
|
KURL contextCompleteURL(const String& url) const { return virtualCompleteURL(url); }
|
|
|
|
void reportException(PassRefPtr<ErrorEvent>, int scriptId, PassRefPtr<ScriptCallStack>);
|
|
|
|
void addConsoleMessage(PassRefPtr<ConsoleMessage>);
|
|
|
|
// Active objects are not garbage collected even if inaccessible, e.g. because their activity may result in callbacks being invoked.
|
|
bool hasPendingActivity();
|
|
|
|
void stopActiveDOMObjects();
|
|
unsigned activeDOMObjectCount();
|
|
|
|
bool activeDOMObjectsAreSuspended() const { return m_activeDOMObjectsAreSuspended; }
|
|
bool activeDOMObjectsAreStopped() const { return m_activeDOMObjectsAreStopped; }
|
|
bool isIteratingOverObservers() const;
|
|
|
|
// Called after the construction of an ActiveDOMObject to synchronize suspend state.
|
|
void suspendActiveDOMObjectIfNeeded(ActiveDOMObject*);
|
|
#if !ENABLE(OILPAN)
|
|
void ref() { refExecutionContext(); }
|
|
void deref() { derefExecutionContext(); }
|
|
#endif
|
|
|
|
// Gets the next id in a circular sequence from 1 to 2^31-1.
|
|
int circularSequentialID();
|
|
|
|
void didChangeTimerAlignmentInterval();
|
|
|
|
PassOwnPtr<LifecycleNotifier<ExecutionContext> > createLifecycleNotifier();
|
|
|
|
virtual EventQueue* eventQueue() const = 0;
|
|
|
|
protected:
|
|
ExecutionContext();
|
|
virtual ~ExecutionContext();
|
|
|
|
void setClient(ExecutionContextClient* client) { m_client = client; }
|
|
|
|
virtual const KURL& virtualURL() const = 0;
|
|
virtual KURL virtualCompleteURL(const String&) const = 0;
|
|
|
|
ContextLifecycleNotifier& lifecycleNotifier();
|
|
|
|
private:
|
|
friend class DOMTimer; // For installNewTimeout() and removeTimeoutByID() below.
|
|
|
|
bool dispatchErrorEvent(PassRefPtr<ErrorEvent>);
|
|
|
|
#if !ENABLE(OILPAN)
|
|
virtual void refExecutionContext() = 0;
|
|
virtual void derefExecutionContext() = 0;
|
|
#endif
|
|
// LifecycleContext implementation.
|
|
|
|
// Implementation details for DOMTimer. No other classes should call these functions.
|
|
int installNewTimeout(PassOwnPtr<ScheduledAction>, int timeout, bool singleShot);
|
|
void removeTimeoutByID(int timeoutID); // This makes underlying DOMTimer instance destructed.
|
|
|
|
ExecutionContextClient* m_client;
|
|
|
|
int m_circularSequentialID;
|
|
typedef HashMap<int, OwnPtr<DOMTimer> > TimeoutMap;
|
|
TimeoutMap m_timeouts;
|
|
|
|
bool m_inDispatchErrorEvent;
|
|
class PendingException;
|
|
OwnPtr<Vector<OwnPtr<PendingException> > > m_pendingExceptions;
|
|
|
|
bool m_activeDOMObjectsAreSuspended;
|
|
bool m_activeDOMObjectsAreStopped;
|
|
|
|
// The location of this member is important; to make sure contextDestroyed() notification on
|
|
// ExecutionContext's members (notably m_timeouts) is called before they are destructed,
|
|
// m_lifecycleNotifer should be placed *after* such members.
|
|
OwnPtr<ContextLifecycleNotifier> m_lifecycleNotifier;
|
|
};
|
|
|
|
} // namespace blink
|
|
|
|
#endif // SKY_ENGINE_CORE_DOM_EXECUTIONCONTEXT_H_
|