blob: 0a81b748825321cc5162ba6a248fb21fd3dcd559 [file] [log] [blame]
/*
* Copyright (C) 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.
*/
#include "config.h"
#if ENABLE(UI_SIDE_COMPOSITING)
#include "VisibleContentRectUpdateInfo.h"
#include "WebCoreArgumentCoders.h"
#include <WebCore/LengthBox.h>
#include <wtf/text/TextStream.h>
namespace WebKit {
using namespace WebCore;
void VisibleContentRectUpdateInfo::encode(IPC::Encoder& encoder) const
{
encoder << m_exposedContentRect;
encoder << m_unobscuredContentRect;
encoder << m_contentInsets;
encoder << m_unobscuredContentRectRespectingInputViewBounds;
encoder << m_unobscuredRectInScrollViewCoordinates;
encoder << m_layoutViewportRect;
encoder << m_obscuredInsets;
encoder << m_unobscuredSafeAreaInsets;
encoder << m_scrollVelocity;
encoder << m_lastLayerTreeTransactionID;
encoder << m_scale;
encoder << m_viewStability;
encoder << m_isFirstUpdateForNewViewSize;
encoder << m_allowShrinkToFit;
encoder << m_enclosedInScrollableAncestorView;
}
bool VisibleContentRectUpdateInfo::decode(IPC::Decoder& decoder, VisibleContentRectUpdateInfo& result)
{
if (!decoder.decode(result.m_exposedContentRect))
return false;
if (!decoder.decode(result.m_unobscuredContentRect))
return false;
if (!decoder.decode(result.m_contentInsets))
return false;
if (!decoder.decode(result.m_unobscuredContentRectRespectingInputViewBounds))
return false;
if (!decoder.decode(result.m_unobscuredRectInScrollViewCoordinates))
return false;
if (!decoder.decode(result.m_layoutViewportRect))
return false;
if (!decoder.decode(result.m_obscuredInsets))
return false;
if (!decoder.decode(result.m_unobscuredSafeAreaInsets))
return false;
if (!decoder.decode(result.m_scrollVelocity))
return false;
if (!decoder.decode(result.m_lastLayerTreeTransactionID))
return false;
if (!decoder.decode(result.m_scale))
return false;
if (!decoder.decode(result.m_viewStability))
return false;
if (!decoder.decode(result.m_isFirstUpdateForNewViewSize))
return false;
if (!decoder.decode(result.m_allowShrinkToFit))
return false;
if (!decoder.decode(result.m_enclosedInScrollableAncestorView))
return false;
return true;
}
String VisibleContentRectUpdateInfo::dump() const
{
TextStream stream;
stream << *this;
return stream.release();
}
TextStream& operator<<(TextStream& ts, ViewStabilityFlag stabilityFlag)
{
switch (stabilityFlag) {
case ViewStabilityFlag::ScrollViewInteracting: ts << "scroll view interacting"; break;
case ViewStabilityFlag::ScrollViewAnimatedScrollOrZoom: ts << "scroll view animated scroll or zoom"; break;
case ViewStabilityFlag::ScrollViewRubberBanding: ts << "scroll view rubberbanding"; break;
case ViewStabilityFlag::ChangingObscuredInsetsInteractively: ts << "changing obscured insets interactively"; break;
case ViewStabilityFlag::UnstableForTesting: ts << "unstable for testing"; break;
}
return ts;
}
TextStream& operator<<(TextStream& ts, const VisibleContentRectUpdateInfo& info)
{
TextStream::GroupScope scope(ts);
ts << "VisibleContentRectUpdateInfo";
ts.dumpProperty("lastLayerTreeTransactionID", info.lastLayerTreeTransactionID());
ts.dumpProperty("exposedContentRect", info.exposedContentRect());
ts.dumpProperty("unobscuredContentRect", info.unobscuredContentRect());
ts.dumpProperty("contentInsets", info.contentInsets());
ts.dumpProperty("unobscuredContentRectRespectingInputViewBounds", info.unobscuredContentRectRespectingInputViewBounds());
ts.dumpProperty("unobscuredRectInScrollViewCoordinates", info.unobscuredRectInScrollViewCoordinates());
ts.dumpProperty("layoutViewportRect", info.layoutViewportRect());
ts.dumpProperty("obscuredInsets", info.obscuredInsets());
ts.dumpProperty("unobscuredSafeAreaInsets", info.unobscuredSafeAreaInsets());
ts.dumpProperty("scale", info.scale());
ts.dumpProperty("viewStability", info.viewStability());
ts.dumpProperty("isFirstUpdateForNewViewSize", info.isFirstUpdateForNewViewSize());
if (info.enclosedInScrollableAncestorView())
ts.dumpProperty("enclosedInScrollableAncestorView", info.enclosedInScrollableAncestorView());
ts.dumpProperty("allowShrinkToFit", info.allowShrinkToFit());
ts.dumpProperty("scrollVelocity", info.scrollVelocity());
return ts;
}
} // namespace WebKit
#endif // ENABLE(UI_SIDE_COMPOSITING)