gecko-dev/gfx/layers/wr/WebRenderScrollData.h

148 строки
5.1 KiB
C
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef GFX_WEBRENDERSCROLLDATA_H
#define GFX_WEBRENDERSCROLLDATA_H
#include <map>
#include "chrome/common/ipc_message_utils.h"
#include "FrameMetrics.h"
#include "mozilla/Maybe.h"
#include "nsTArrayForwardDeclare.h"
namespace mozilla {
namespace layers {
class Layer;
class WebRenderScrollData;
// Data needed by APZ, per layer. One instance of this class is created for
// each layer in the layer tree and sent over PWebRenderBridge to the APZ code.
// Each WebRenderLayerScrollData is conceptually associated with an "owning"
// WebRenderScrollData.
class WebRenderLayerScrollData
{
public:
WebRenderLayerScrollData(); // needed for IPC purposes
~WebRenderLayerScrollData();
// Actually initialize the object. This is not done during the constructor
// for optimization purposes (the call site is hard to write efficiently
// if we do this in the constructor).
void Initialize(WebRenderScrollData& aOwner,
Layer* aLayer,
int32_t aDescendantCount);
friend struct IPC::ParamTraits<WebRenderLayerScrollData>;
private:
// The number of descendants this layer has (not including the layer itself).
// This is needed to reconstruct the depth-first layer tree traversal
// efficiently. Leaf layers should always have 0 descendants.
int32_t mDescendantCount;
// Handles to the ScrollMetadata objects that were on this layer. The values
// stored in this array are indices into the owning WebRenderScrollData's
// mScrollMetadatas array. This indirection is used to deduplicate the
// ScrollMetadata objects, since there is usually heavy duplication of them
// within a layer tree.
nsTArray<size_t> mScrollIds;
};
// Data needed by APZ, for the whole layer tree. One instance of this class
// is created for each transaction sent over PWebRenderBridge. It is populated
// with information from the WebRender layer tree on the client side and the
// information is used by APZ on the parent side.
class WebRenderScrollData
{
public:
WebRenderScrollData();
~WebRenderScrollData();
// Add the given ScrollMetadata if it doesn't already exist. Return an index
// that can be used to look up the metadata later.
size_t AddMetadata(const ScrollMetadata& aMetadata);
// Add a new empty WebRenderLayerScrollData and return the index that can be
// used to look it up via GetLayerData.
size_t AddNewLayerData();
// Return a pointer to the scroll data at the given index. Use with caution,
// as the pointer may be invalidated if this WebRenderScrollData is mutated.
WebRenderLayerScrollData* GetLayerDataMutable(size_t aIndex);
friend struct IPC::ParamTraits<WebRenderScrollData>;
private:
// Internal data structure used to maintain uniqueness of mScrollMetadatas.
// This is not serialized/deserialized over IPC because there's no need for it,
// as the parent side doesn't need this at all. Also because we don't have any
// IPC-friendly hashtable implementation lying around.
// The key into this map is the scrollId of a ScrollMetadata, and the value is
// an index into the mScrollMetadatas array.
std::map<FrameMetrics::ViewID, size_t> mScrollIdMap;
// A list of all the unique ScrollMetadata objects from the layer tree. Each
// ScrollMetadata in this list must have a unique scroll id.
nsTArray<ScrollMetadata> mScrollMetadatas;
// A list of per-layer scroll data objects, generated via a depth-first,
// pre-order, last-to-first traversal of the layer tree (i.e. a recursive
// traversal where a node N first pushes itself, followed by its children in
// last-to-first order). Each layer's scroll data object knows how many
// descendants that layer had, which allows reconstructing the traversal on the
// other side.
nsTArray<WebRenderLayerScrollData> mLayerScrollData;
};
} // namespace layers
} // namespace mozilla
namespace IPC {
template<>
struct ParamTraits<mozilla::layers::WebRenderLayerScrollData>
{
typedef mozilla::layers::WebRenderLayerScrollData paramType;
static void
Write(Message* aMsg, const paramType& aParam)
{
WriteParam(aMsg, aParam.mDescendantCount);
WriteParam(aMsg, aParam.mScrollIds);
}
static bool
Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
{
return ReadParam(aMsg, aIter, &aResult->mDescendantCount)
&& ReadParam(aMsg, aIter, &aResult->mScrollIds);
}
};
template<>
struct ParamTraits<mozilla::layers::WebRenderScrollData>
{
typedef mozilla::layers::WebRenderScrollData paramType;
static void
Write(Message* aMsg, const paramType& aParam)
{
WriteParam(aMsg, aParam.mScrollMetadatas);
WriteParam(aMsg, aParam.mLayerScrollData);
}
static bool
Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
{
return ReadParam(aMsg, aIter, &aResult->mScrollMetadatas)
&& ReadParam(aMsg, aIter, &aResult->mLayerScrollData);
}
};
} // namespace IPC
#endif /* GFX_WEBRENDERSCROLLDATA_H */