blob: d5868615ecb796de813f66d5740340cd2358dfb7 [file] [log] [blame]
/*
* Copyright (C) 2013, 2014 Apple 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 INC. AND ITS CONTRIBUTORS ``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 INC. OR ITS 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 ViewGestureController_h
#define ViewGestureController_h
#include "MessageReceiver.h"
#include "SameDocumentNavigationType.h"
#include "WeakObjCPtr.h"
#include <WebCore/Color.h>
#include <WebCore/FloatRect.h>
#include <chrono>
#include <wtf/RetainPtr.h>
#include <wtf/RunLoop.h>
// FIXME: Move this file out of the mac/ subdirectory.
OBJC_CLASS CALayer;
#if PLATFORM(IOS)
OBJC_CLASS UIView;
OBJC_CLASS WKSwipeTransitionController;
OBJC_CLASS WKWebView;
OBJC_CLASS _UINavigationInteractiveTransitionBase;
OBJC_CLASS _UIViewControllerOneToOneTransitionContext;
OBJC_CLASS _UIViewControllerTransitionContext;
#else
OBJC_CLASS CAGradientLayer;
OBJC_CLASS NSEvent;
OBJC_CLASS NSView;
OBJC_CLASS WKSwipeCancellationTracker;
#endif
namespace WebCore {
class IOSurface;
}
namespace WebKit {
class ViewSnapshot;
class WebBackForwardListItem;
class WebPageProxy;
class ViewGestureController : private IPC::MessageReceiver {
WTF_MAKE_NONCOPYABLE(ViewGestureController);
public:
ViewGestureController(WebPageProxy&);
~ViewGestureController();
void platformTeardown();
enum class ViewGestureType {
None,
#if PLATFORM(MAC)
Magnification,
SmartMagnification,
#endif
Swipe
};
enum class SwipeDirection {
Back,
Forward
};
#if PLATFORM(MAC)
double magnification() const;
void handleMagnificationGestureEvent(NSEvent *, WebCore::FloatPoint origin);
bool hasActiveMagnificationGesture() const { return m_activeGestureType == ViewGestureType::Magnification; }
void handleSmartMagnificationGesture(WebCore::FloatPoint origin);
bool handleScrollWheelEvent(NSEvent *);
void wheelEventWasNotHandledByWebCore(NSEvent *event) { m_pendingSwipeTracker.eventWasNotHandledByWebCore(event); }
void gestureEventWasNotHandledByWebCore(NSEvent *, WebCore::FloatPoint origin);
void setCustomSwipeViews(Vector<RetainPtr<NSView>> views) { m_customSwipeViews = WTFMove(views); }
void setCustomSwipeViewsTopContentInset(float topContentInset) { m_customSwipeViewsTopContentInset = topContentInset; }
WebCore::FloatRect windowRelativeBoundsForCustomSwipeViews() const;
void setDidMoveSwipeSnapshotCallback(void(^)(CGRect));
bool shouldIgnorePinnedState() { return m_pendingSwipeTracker.shouldIgnorePinnedState(); }
void setShouldIgnorePinnedState(bool ignore) { m_pendingSwipeTracker.setShouldIgnorePinnedState(ignore); }
bool isPhysicallySwipingLeft(SwipeDirection) const;
#else
void installSwipeHandler(UIView *gestureRecognizerView, UIView *swipingView);
void setAlternateBackForwardListSourceView(WKWebView *);
bool canSwipeInDirection(SwipeDirection);
void beginSwipeGesture(_UINavigationInteractiveTransitionBase *, SwipeDirection);
void endSwipeGesture(WebBackForwardListItem* targetItem, _UIViewControllerTransitionContext *, bool cancelled);
void willCommitPostSwipeTransitionLayerTree(bool);
void setRenderTreeSize(uint64_t);
#endif
WebCore::Color backgroundColorForCurrentSnapshot() const { return m_backgroundColorForCurrentSnapshot; }
void didFinishLoadForMainFrame() { didReachMainFrameLoadTerminalState(); }
void didFailLoadForMainFrame() { didReachMainFrameLoadTerminalState(); }
void didFirstVisuallyNonEmptyLayoutForMainFrame();
void didRepaintAfterNavigation();
void didHitRenderTreeSizeThreshold();
void didRestoreScrollPosition();
void didReachMainFrameLoadTerminalState();
void didSameDocumentNavigationForMainFrame(SameDocumentNavigationType);
void checkForActiveLoads();
void removeSwipeSnapshot();
private:
// IPC::MessageReceiver.
void didReceiveMessage(IPC::Connection&, IPC::Decoder&) override;
static ViewGestureController* gestureControllerForPage(uint64_t);
class SnapshotRemovalTracker {
public:
enum Event : uint8_t {
VisuallyNonEmptyLayout = 1 << 0,
RenderTreeSizeThreshold = 1 << 1,
RepaintAfterNavigation = 1 << 2,
MainFrameLoad = 1 << 3,
SubresourceLoads = 1 << 4,
ScrollPositionRestoration = 1 << 5
};
typedef uint8_t Events;
SnapshotRemovalTracker();
void start(Events, std::function<void()>);
void reset();
bool eventOccurred(Events);
bool cancelOutstandingEvent(Events);
void startWatchdog(std::chrono::seconds);
private:
static String eventsDescription(Events);
void log(const String&) const;
void fireRemovalCallbackImmediately();
void fireRemovalCallbackIfPossible();
void watchdogTimerFired();
bool stopWaitingForEvent(Events, const String& logReason);
Events m_outstandingEvents { 0 };
std::function<void()> m_removalCallback;
std::chrono::steady_clock::time_point m_startTime;
RunLoop::Timer<SnapshotRemovalTracker> m_watchdogTimer;
};
#if PLATFORM(MAC)
// Message handlers.
void didCollectGeometryForMagnificationGesture(WebCore::FloatRect visibleContentBounds, bool frameHandlesMagnificationGesture);
void didCollectGeometryForSmartMagnificationGesture(WebCore::FloatPoint origin, WebCore::FloatRect renderRect, WebCore::FloatRect visibleContentBounds, bool isReplacedElement, double viewportMinimumScale, double viewportMaximumScale);
void endMagnificationGesture();
WebCore::FloatPoint scaledMagnificationOrigin(WebCore::FloatPoint origin, double scale);
void trackSwipeGesture(NSEvent *, SwipeDirection);
void beginSwipeGesture(WebBackForwardListItem* targetItem, SwipeDirection);
void handleSwipeGesture(WebBackForwardListItem* targetItem, double progress, SwipeDirection);
void willEndSwipeGesture(WebBackForwardListItem& targetItem, bool cancelled);
void endSwipeGesture(WebBackForwardListItem* targetItem, bool cancelled);
bool shouldUseSnapshotForSize(ViewSnapshot&, WebCore::FloatSize swipeLayerSize, float topContentInset);
CALayer *determineSnapshotLayerParent() const;
CALayer *determineLayerAdjacentToSnapshotForParent(SwipeDirection, CALayer *snapshotLayerParent) const;
void applyDebuggingPropertiesToSwipeViews();
void didMoveSwipeSnapshotLayer();
void forceRepaintIfNeeded();
class PendingSwipeTracker {
public:
PendingSwipeTracker(WebPageProxy&, std::function<void(NSEvent *, SwipeDirection)> trackSwipeCallback);
bool handleEvent(NSEvent *);
void eventWasNotHandledByWebCore(NSEvent *);
void reset(const char* resetReasonForLogging);
bool shouldIgnorePinnedState() { return m_shouldIgnorePinnedState; }
void setShouldIgnorePinnedState(bool ignore) { m_shouldIgnorePinnedState = ignore; }
private:
bool tryToStartSwipe(NSEvent *);
bool scrollEventCanBecomeSwipe(NSEvent *, SwipeDirection&);
enum class State {
None,
WaitingForWebCore,
InsufficientMagnitude
};
State m_state { State::None };
SwipeDirection m_direction;
WebCore::FloatSize m_cumulativeDelta;
bool m_shouldIgnorePinnedState { false };
std::function<void(NSEvent *, SwipeDirection)> m_trackSwipeCallback;
WebPageProxy& m_webPageProxy;
};
#endif
WebPageProxy& m_webPageProxy;
ViewGestureType m_activeGestureType { ViewGestureType::None };
RunLoop::Timer<ViewGestureController> m_swipeActiveLoadMonitoringTimer;
WebCore::Color m_backgroundColorForCurrentSnapshot;
#if PLATFORM(MAC)
RefPtr<ViewSnapshot> m_currentSwipeSnapshot;
double m_magnification;
WebCore::FloatPoint m_magnificationOrigin;
WebCore::FloatRect m_lastSmartMagnificationUnscaledTargetRect;
bool m_lastMagnificationGestureWasSmartMagnification { false };
WebCore::FloatPoint m_lastSmartMagnificationOrigin;
WebCore::FloatRect m_visibleContentRect;
bool m_visibleContentRectIsValid { false };
bool m_frameHandlesMagnificationGesture { false };
RetainPtr<WKSwipeCancellationTracker> m_swipeCancellationTracker;
RetainPtr<CALayer> m_swipeLayer;
RetainPtr<CALayer> m_swipeSnapshotLayer;
RetainPtr<CAGradientLayer> m_swipeShadowLayer;
RetainPtr<CALayer> m_swipeDimmingLayer;
Vector<RetainPtr<CALayer>> m_currentSwipeLiveLayers;
Vector<RetainPtr<NSView>> m_customSwipeViews;
float m_customSwipeViewsTopContentInset { 0 };
WebCore::FloatRect m_currentSwipeCustomViewBounds;
PendingSwipeTracker m_pendingSwipeTracker;
void (^m_didMoveSwipeSnapshotCallback)(CGRect) { nullptr };
bool m_hasOutstandingRepaintRequest { false };
#else
UIView *m_liveSwipeView { nullptr };
RetainPtr<UIView> m_liveSwipeViewClippingView;
RetainPtr<UIView> m_snapshotView;
RetainPtr<UIView> m_transitionContainerView;
RetainPtr<WKSwipeTransitionController> m_swipeInteractiveTransitionDelegate;
RetainPtr<_UIViewControllerOneToOneTransitionContext> m_swipeTransitionContext;
uint64_t m_snapshotRemovalTargetRenderTreeSize { 0 };
WeakObjCPtr<WKWebView> m_alternateBackForwardListSourceView;
RefPtr<WebPageProxy> m_webPageProxyForBackForwardListForCurrentSwipe;
uint64_t m_gesturePendingSnapshotRemoval { 0 };
#endif
SnapshotRemovalTracker m_snapshotRemovalTracker;
};
} // namespace WebKit
#endif // ViewGestureController_h