2017-10-27 17:33:53 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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/. */
|
2010-03-15 01:51:44 +00:00
|
|
|
|
2017-05-27 11:36:00 +00:00
|
|
|
#ifndef FRAMEPROPERTIES_H_
|
|
|
|
#define FRAMEPROPERTIES_H_
|
2010-03-15 01:51:44 +00:00
|
|
|
|
2017-05-31 18:52:56 +00:00
|
|
|
#include "mozilla/DebugOnly.h"
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2016-08-23 04:09:32 +00:00
|
|
|
#include "mozilla/Unused.h"
|
2013-03-17 07:55:16 +00:00
|
|
|
#include "nsTArray.h"
|
2017-05-31 18:52:56 +00:00
|
|
|
#include "nsThreadUtils.h"
|
2010-03-15 01:51:44 +00:00
|
|
|
|
|
|
|
class nsIFrame;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2016-01-28 03:23:59 +00:00
|
|
|
struct FramePropertyDescriptorUntyped {
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
2010-07-15 21:07:45 +00:00
|
|
|
* mDestructor will be called if it's non-null.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
typedef void UntypedDestructor(void* aPropertyValue);
|
|
|
|
UntypedDestructor* mDestructor;
|
2010-07-15 21:07:45 +00:00
|
|
|
/**
|
|
|
|
* mDestructorWithFrame will be called if it's non-null and mDestructor
|
|
|
|
* is null. WARNING: The frame passed to mDestructorWithFrame may
|
|
|
|
* be a dangling frame pointer, if this is being called during
|
|
|
|
* presshell teardown. Do not use it except to compare against
|
|
|
|
* other frame pointers. No frame will have been allocated with
|
|
|
|
* the same address yet.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
typedef void UntypedDestructorWithFrame(const nsIFrame* aFrame,
|
|
|
|
void* aPropertyValue);
|
|
|
|
UntypedDestructorWithFrame* mDestructorWithFrame;
|
2010-07-15 21:07:45 +00:00
|
|
|
/**
|
|
|
|
* mDestructor and mDestructorWithFrame may both be null, in which case
|
|
|
|
* no value destruction is a no-op.
|
2010-03-15 01:51:44 +00:00
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* At most one destructor should be passed in. In general, you should
|
|
|
|
* just use the static function FramePropertyDescriptor::New* below
|
|
|
|
* instead of using this constructor directly.
|
|
|
|
*/
|
2016-07-08 21:39:53 +00:00
|
|
|
constexpr FramePropertyDescriptorUntyped(
|
2016-01-28 03:23:59 +00:00
|
|
|
UntypedDestructor* aDtor, UntypedDestructorWithFrame* aDtorWithFrame)
|
|
|
|
: mDestructor(aDtor), mDestructorWithFrame(aDtorWithFrame) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A pointer to a FramePropertyDescriptor serves as a unique property ID.
|
|
|
|
* The FramePropertyDescriptor stores metadata about the property.
|
|
|
|
* Currently the only metadata is a destructor function. The destructor
|
|
|
|
* function is called on property values when they are overwritten or
|
|
|
|
* deleted.
|
|
|
|
*
|
|
|
|
* To use this class, declare a global (i.e., file, class or function-scope
|
|
|
|
* static member) FramePropertyDescriptor and pass its address as
|
2017-06-18 22:07:36 +00:00
|
|
|
* aProperty in the FrameProperties methods.
|
2016-01-28 03:23:59 +00:00
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template <typename T>
|
2016-01-28 03:23:59 +00:00
|
|
|
struct FramePropertyDescriptor : public FramePropertyDescriptorUntyped {
|
|
|
|
typedef void Destructor(T* aPropertyValue);
|
2021-09-20 19:52:46 +00:00
|
|
|
typedef void DestructorWithFrame(const nsIFrame* aFrame, T* aPropertyValue);
|
2016-01-28 03:23:59 +00:00
|
|
|
|
|
|
|
template <Destructor Dtor>
|
2016-07-08 21:39:53 +00:00
|
|
|
static constexpr const FramePropertyDescriptor<T> NewWithDestructor() {
|
2016-01-28 03:23:59 +00:00
|
|
|
return {Destruct<Dtor>, nullptr};
|
|
|
|
}
|
|
|
|
|
|
|
|
template <DestructorWithFrame Dtor>
|
|
|
|
static constexpr const FramePropertyDescriptor<T>
|
|
|
|
NewWithDestructorWithFrame() {
|
|
|
|
return {nullptr, DestructWithFrame<Dtor>};
|
|
|
|
}
|
|
|
|
|
2016-07-08 21:39:53 +00:00
|
|
|
static constexpr const FramePropertyDescriptor<T> NewWithoutDestructor() {
|
2016-01-28 03:23:59 +00:00
|
|
|
return {nullptr, nullptr};
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-07-08 21:39:53 +00:00
|
|
|
constexpr FramePropertyDescriptor(UntypedDestructor* aDtor,
|
2016-01-28 03:23:59 +00:00
|
|
|
UntypedDestructorWithFrame* aDtorWithFrame)
|
|
|
|
: FramePropertyDescriptorUntyped(aDtor, aDtorWithFrame) {}
|
|
|
|
|
|
|
|
template <Destructor Dtor>
|
|
|
|
static void Destruct(void* aPropertyValue) {
|
|
|
|
Dtor(static_cast<T*>(aPropertyValue));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <DestructorWithFrame Dtor>
|
|
|
|
static void DestructWithFrame(const nsIFrame* aFrame, void* aPropertyValue) {
|
|
|
|
Dtor(aFrame, static_cast<T*>(aPropertyValue));
|
|
|
|
}
|
2010-03-15 01:51:44 +00:00
|
|
|
};
|
|
|
|
|
2016-01-28 03:23:59 +00:00
|
|
|
// SmallValueHolder<T> is a placeholder intended to be used as template
|
2021-09-20 19:52:46 +00:00
|
|
|
// argument of FramePropertyDescriptor for types which can fit directly into our
|
|
|
|
// internal value slot (i.e. types that can fit in 64 bits). This class should
|
|
|
|
// never be defined, so that we won't use it for unexpected purpose by mistake.
|
2016-01-28 03:23:59 +00:00
|
|
|
template <typename T>
|
|
|
|
class SmallValueHolder;
|
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
struct FramePropertyTypeHelper {
|
|
|
|
typedef T* Type;
|
|
|
|
};
|
|
|
|
template <typename T>
|
|
|
|
struct FramePropertyTypeHelper<SmallValueHolder<T>> {
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
2017-05-27 11:36:00 +00:00
|
|
|
* The FrameProperties class is optimized for storing 0 or 1 properties on
|
2010-03-15 01:51:44 +00:00
|
|
|
* a given frame. Storing very large numbers of properties on a single
|
|
|
|
* frame will not be efficient.
|
|
|
|
*/
|
2017-05-27 11:36:00 +00:00
|
|
|
class FrameProperties {
|
2010-03-15 01:51:44 +00:00
|
|
|
public:
|
2016-01-28 03:23:59 +00:00
|
|
|
template <typename T>
|
|
|
|
using Descriptor = const FramePropertyDescriptor<T>*;
|
|
|
|
using UntypedDescriptor = const FramePropertyDescriptorUntyped*;
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
using PropertyType = typename detail::FramePropertyTypeHelper<T>::Type;
|
|
|
|
|
2020-03-17 09:38:32 +00:00
|
|
|
explicit FrameProperties() = default;
|
2017-05-27 11:36:00 +00:00
|
|
|
|
|
|
|
~FrameProperties() {
|
|
|
|
MOZ_ASSERT(mProperties.Length() == 0, "forgot to delete properties");
|
2010-03-15 01:51:44 +00:00
|
|
|
}
|
|
|
|
|
2017-06-03 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* Return true if we have no properties, otherwise return false.
|
|
|
|
*/
|
|
|
|
bool IsEmpty() const { return mProperties.IsEmpty(); }
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
2017-05-27 11:36:00 +00:00
|
|
|
* Set a property value. This requires a linear search through
|
|
|
|
* the properties of the frame. Any existing value for the property
|
2010-03-15 01:51:44 +00:00
|
|
|
* is destroyed.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template <typename T>
|
2017-05-27 11:36:00 +00:00
|
|
|
void Set(Descriptor<T> aProperty, PropertyType<T> aValue,
|
|
|
|
const nsIFrame* aFrame) {
|
2021-09-20 19:52:46 +00:00
|
|
|
uint64_t v = ReinterpretHelper<T>::ToInternalValue(aValue);
|
|
|
|
SetInternal(aProperty, v, aFrame);
|
2016-01-28 03:23:59 +00:00
|
|
|
}
|
2016-03-24 23:02:58 +00:00
|
|
|
|
2017-05-28 12:16:55 +00:00
|
|
|
/**
|
|
|
|
* Add a property value; the descriptor MUST NOT already be present.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
void Add(Descriptor<T> aProperty, PropertyType<T> aValue) {
|
|
|
|
MOZ_ASSERT(!Has(aProperty), "duplicate frame property");
|
2021-09-20 19:52:46 +00:00
|
|
|
uint64_t v = ReinterpretHelper<T>::ToInternalValue(aValue);
|
|
|
|
AddInternal(aProperty, v);
|
2017-05-28 12:16:55 +00:00
|
|
|
}
|
|
|
|
|
2016-03-24 23:02:58 +00:00
|
|
|
/**
|
2017-05-27 11:36:00 +00:00
|
|
|
* @return true if @aProperty is set. This requires a linear search through
|
|
|
|
* the properties of the frame.
|
2016-03-24 23:02:58 +00:00
|
|
|
*
|
|
|
|
* In most cases, this shouldn't be used outside of assertions, because if
|
|
|
|
* you're doing a lookup anyway it would be far more efficient to call Get()
|
2020-02-06 00:13:38 +00:00
|
|
|
* or Take() and check the aFoundResult outparam to find out whether the
|
2016-03-24 23:02:58 +00:00
|
|
|
* property is set. Legitimate non-assertion uses include:
|
|
|
|
*
|
|
|
|
* - Checking if a frame property is set in cases where that's all we want
|
|
|
|
* to know (i.e., we don't intend to read the actual value or remove the
|
|
|
|
* property).
|
|
|
|
*
|
2016-03-25 21:49:42 +00:00
|
|
|
* - Calling Has() before Set() in cases where we don't want to overwrite
|
2016-03-24 23:02:58 +00:00
|
|
|
* an existing value for the frame property.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
2017-05-27 11:36:00 +00:00
|
|
|
bool Has(Descriptor<T> aProperty) const {
|
Bug 1479996 - Combine nsTArray::IndexOf and element access into lambda-friendly functions - r=froydnj
In many places, nsTArray::IndexOf is followed by accessing that element
(hopefully with `Elements() + index`, which skips unnecessary bounds checks.)
But this pattern introduces operations that could be avoided:
- IndexOf converts the address of the found element into an index,
- The caller must test for a special `NoIndex` value,
- On success, accesses convert that index back into the original address.
This patch introduces new 'ApplyIf...' functions that combine all these
operations in a more efficient ensemble: If the sought element is found, it is
passed by reference to a given callable object (usually a lambda); if not
found, another callable is invoked.
Depending on what they need, the first callable may take one of these parameter
lists: (), (size_t), (maybe-const elem_type&), (size_t, maybe-const elem_type&).
On top of removing the pointer->index->pointer operations in most cases,
invoking callables directly from ApplyIf is safer, as the array is guaranteed to
be untouched at this time.
Also, being templates taking function objects, in most cases the compiler should
be able to inline and optimize the search and its callables' code.
This patch gives example uses in nsTArray::Contains, and in
FrameProperties::GetInternal, SetInternal.
And FrameProperties::Has now calls Contains, which is more efficient because
the former code would compute an index (or NoIndex), and then convert that index
to a bool; whereas the new code directly produces a bool from within the search
algorithm.
Differential Revision: https://phabricator.services.mozilla.com/D2758
--HG--
extra : moz-landing-system : lando
2018-08-28 22:04:09 +00:00
|
|
|
return mProperties.Contains(aProperty, PropertyComparator());
|
2016-03-24 23:02:58 +00:00
|
|
|
}
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
2017-05-27 11:36:00 +00:00
|
|
|
* Get a property value. This requires a linear search through
|
|
|
|
* the properties of the frame. If the frame has no such property,
|
2016-01-28 03:23:59 +00:00
|
|
|
* returns zero-filled result, which means null for pointers and
|
|
|
|
* zero for integers and floating point types.
|
2010-03-15 01:51:44 +00:00
|
|
|
* @param aFoundResult if non-null, receives a value 'true' iff
|
|
|
|
* the frame has a value for the property. This lets callers
|
|
|
|
* disambiguate a null result, which can mean 'no such property' or
|
|
|
|
* 'property value is null'.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template <typename T>
|
2017-05-27 11:36:00 +00:00
|
|
|
PropertyType<T> Get(Descriptor<T> aProperty,
|
|
|
|
bool* aFoundResult = nullptr) const {
|
2021-09-20 19:52:46 +00:00
|
|
|
uint64_t v = GetInternal(aProperty, aFoundResult);
|
|
|
|
return ReinterpretHelper<T>::FromInternalValue(v);
|
2016-01-28 03:23:59 +00:00
|
|
|
}
|
2017-05-27 11:36:00 +00:00
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
2020-02-06 00:13:38 +00:00
|
|
|
* Remove a property value, and return it without destroying it.
|
|
|
|
*
|
|
|
|
* This requires a linear search through the properties of the frame.
|
|
|
|
* If the frame has no such property, returns zero-filled result, which means
|
|
|
|
* null for pointers and zero for integers and floating point types.
|
2010-03-15 01:51:44 +00:00
|
|
|
* @param aFoundResult if non-null, receives a value 'true' iff
|
|
|
|
* the frame had a value for the property. This lets callers
|
|
|
|
* disambiguate a null result, which can mean 'no such property' or
|
|
|
|
* 'property value is null'.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template <typename T>
|
2020-02-06 00:13:38 +00:00
|
|
|
PropertyType<T> Take(Descriptor<T> aProperty, bool* aFoundResult = nullptr) {
|
2021-09-20 19:52:46 +00:00
|
|
|
uint64_t v = TakeInternal(aProperty, aFoundResult);
|
|
|
|
return ReinterpretHelper<T>::FromInternalValue(v);
|
2016-01-28 03:23:59 +00:00
|
|
|
}
|
2017-05-27 11:36:00 +00:00
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
2020-02-06 16:06:49 +00:00
|
|
|
* Remove and destroy a property value. This requires a linear search through
|
|
|
|
* the properties of the frame. If the frame has no such property, nothing
|
|
|
|
* happens.
|
2010-03-15 01:51:44 +00:00
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template <typename T>
|
2020-02-06 16:06:49 +00:00
|
|
|
void Remove(Descriptor<T> aProperty, const nsIFrame* aFrame) {
|
|
|
|
RemoveInternal(aProperty, aFrame);
|
2017-04-05 03:59:21 +00:00
|
|
|
}
|
|
|
|
|
2017-06-03 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* Call @aFunction for each property or until @aFunction returns false.
|
|
|
|
*/
|
|
|
|
template <class F>
|
|
|
|
void ForEach(F aFunction) const {
|
|
|
|
#ifdef DEBUG
|
|
|
|
size_t len = mProperties.Length();
|
|
|
|
#endif
|
|
|
|
for (const auto& prop : mProperties) {
|
|
|
|
bool shouldContinue = aFunction(prop.mProperty, prop.mValue);
|
|
|
|
MOZ_ASSERT(len == mProperties.Length(),
|
|
|
|
"frame property list was modified by ForEach callback!");
|
|
|
|
if (!shouldContinue) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
2017-05-27 11:36:00 +00:00
|
|
|
* Remove and destroy all property values for the frame.
|
2010-03-15 01:51:44 +00:00
|
|
|
*/
|
2020-02-06 16:06:49 +00:00
|
|
|
void RemoveAll(const nsIFrame* aFrame) {
|
2020-08-04 11:27:07 +00:00
|
|
|
nsTArray<PropertyValue> toDelete = std::move(mProperties);
|
2017-10-24 23:10:53 +00:00
|
|
|
for (auto& prop : toDelete) {
|
2017-05-31 18:52:56 +00:00
|
|
|
prop.DestroyValueFor(aFrame);
|
|
|
|
}
|
2017-10-24 23:10:53 +00:00
|
|
|
MOZ_ASSERT(mProperties.IsEmpty(), "a property dtor added new properties");
|
2017-05-31 18:52:56 +00:00
|
|
|
}
|
2010-03-15 01:51:44 +00:00
|
|
|
|
2017-05-31 18:52:56 +00:00
|
|
|
size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const {
|
|
|
|
// We currently report only the shallow size of the mProperties array.
|
|
|
|
// As for the PropertyValue entries: we don't need to measure the mProperty
|
|
|
|
// field of because it always points to static memory, and we can't measure
|
|
|
|
// mValue because the type is opaque.
|
|
|
|
// XXX Can we do better, e.g. with a method on the descriptor?
|
|
|
|
return mProperties.ShallowSizeOfExcludingThis(aMallocSizeOf);
|
2017-05-31 18:52:47 +00:00
|
|
|
}
|
2012-02-21 05:02:24 +00:00
|
|
|
|
2017-05-27 11:36:00 +00:00
|
|
|
private:
|
|
|
|
// Prevent copying of FrameProperties; we should always return/pass around
|
|
|
|
// references to it, not copies!
|
|
|
|
FrameProperties(const FrameProperties&) = delete;
|
|
|
|
FrameProperties& operator=(const FrameProperties&) = delete;
|
2016-01-28 03:23:59 +00:00
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
inline void SetInternal(UntypedDescriptor aProperty, uint64_t aValue,
|
2017-05-31 18:52:56 +00:00
|
|
|
const nsIFrame* aFrame);
|
2016-01-28 03:23:59 +00:00
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
inline void AddInternal(UntypedDescriptor aProperty, uint64_t aValue);
|
2017-05-28 12:16:55 +00:00
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
inline uint64_t GetInternal(UntypedDescriptor aProperty,
|
|
|
|
bool* aFoundResult) const;
|
2016-01-28 03:23:59 +00:00
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
inline uint64_t TakeInternal(UntypedDescriptor aProperty, bool* aFoundResult);
|
2017-05-27 11:36:00 +00:00
|
|
|
|
2020-02-06 16:06:49 +00:00
|
|
|
inline void RemoveInternal(UntypedDescriptor aProperty,
|
2017-05-31 18:52:56 +00:00
|
|
|
const nsIFrame* aFrame);
|
2016-01-28 03:23:59 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2016-05-29 23:19:25 +00:00
|
|
|
struct ReinterpretHelper {
|
2021-09-20 19:52:46 +00:00
|
|
|
static_assert(sizeof(PropertyType<T>) <= sizeof(uint64_t),
|
|
|
|
"size of the value must never be larger than 64 bits");
|
2016-05-29 23:19:25 +00:00
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
static uint64_t ToInternalValue(PropertyType<T> aValue) {
|
|
|
|
uint64_t v = 0;
|
|
|
|
memcpy(&v, &aValue, sizeof(aValue));
|
|
|
|
return v;
|
2016-05-29 23:19:25 +00:00
|
|
|
}
|
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
static PropertyType<T> FromInternalValue(uint64_t aInternalValue) {
|
2016-05-29 23:19:25 +00:00
|
|
|
PropertyType<T> value;
|
2021-09-20 19:52:46 +00:00
|
|
|
memcpy(&value, &aInternalValue, sizeof(value));
|
2016-05-29 23:19:25 +00:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
2017-05-27 11:36:00 +00:00
|
|
|
* Stores a property descriptor/value pair.
|
2010-03-15 01:51:44 +00:00
|
|
|
*/
|
|
|
|
struct PropertyValue {
|
2021-09-20 19:52:46 +00:00
|
|
|
PropertyValue() : mProperty(nullptr), mValue(0) {}
|
|
|
|
PropertyValue(UntypedDescriptor aProperty, uint64_t aValue)
|
2010-03-15 01:51:44 +00:00
|
|
|
: mProperty(aProperty), mValue(aValue) {}
|
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
// NOTE: This function converts our internal 64-bit-integer representation
|
|
|
|
// to a pointer-type representation. This is lossy on 32-bit systems, but it
|
|
|
|
// should be fine, as long as we *only* do this in cases where we're sure
|
|
|
|
// that the stored property-value is in fact a pointer. And we should have
|
|
|
|
// that assurance, since only pointer-typed frame properties are expected to
|
|
|
|
// have a destructor
|
2016-01-28 03:23:59 +00:00
|
|
|
void DestroyValueFor(const nsIFrame* aFrame) {
|
2010-03-15 01:51:44 +00:00
|
|
|
if (mProperty->mDestructor) {
|
2021-09-20 19:52:46 +00:00
|
|
|
mProperty->mDestructor(
|
|
|
|
ReinterpretHelper<void*>::FromInternalValue(mValue));
|
2010-07-15 21:07:45 +00:00
|
|
|
} else if (mProperty->mDestructorWithFrame) {
|
2021-09-20 19:52:46 +00:00
|
|
|
mProperty->mDestructorWithFrame(
|
|
|
|
aFrame, ReinterpretHelper<void*>::FromInternalValue(mValue));
|
2010-03-15 01:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-28 03:23:59 +00:00
|
|
|
UntypedDescriptor mProperty;
|
2021-09-20 19:52:46 +00:00
|
|
|
uint64_t mValue;
|
2010-03-15 01:51:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used with an array of PropertyValues to allow lookups that compare
|
|
|
|
* only on the FramePropertyDescriptor.
|
|
|
|
*/
|
|
|
|
class PropertyComparator {
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool Equals(const PropertyValue& a, const PropertyValue& b) const {
|
2010-03-15 01:51:44 +00:00
|
|
|
return a.mProperty == b.mProperty;
|
|
|
|
}
|
2016-01-28 03:23:59 +00:00
|
|
|
bool Equals(UntypedDescriptor a, const PropertyValue& b) const {
|
2010-03-15 01:51:44 +00:00
|
|
|
return a == b.mProperty;
|
|
|
|
}
|
2016-01-28 03:23:59 +00:00
|
|
|
bool Equals(const PropertyValue& a, UntypedDescriptor b) const {
|
2010-03-15 01:51:44 +00:00
|
|
|
return a.mProperty == b;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-05-31 18:52:53 +00:00
|
|
|
nsTArray<PropertyValue> mProperties;
|
2010-03-15 01:51:44 +00:00
|
|
|
};
|
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
inline uint64_t FrameProperties::GetInternal(UntypedDescriptor aProperty,
|
|
|
|
bool* aFoundResult) const {
|
2017-05-27 11:36:00 +00:00
|
|
|
MOZ_ASSERT(aProperty, "Null property?");
|
2017-04-05 03:59:21 +00:00
|
|
|
|
Bug 1479996 - Combine nsTArray::IndexOf and element access into lambda-friendly functions - r=froydnj
In many places, nsTArray::IndexOf is followed by accessing that element
(hopefully with `Elements() + index`, which skips unnecessary bounds checks.)
But this pattern introduces operations that could be avoided:
- IndexOf converts the address of the found element into an index,
- The caller must test for a special `NoIndex` value,
- On success, accesses convert that index back into the original address.
This patch introduces new 'ApplyIf...' functions that combine all these
operations in a more efficient ensemble: If the sought element is found, it is
passed by reference to a given callable object (usually a lambda); if not
found, another callable is invoked.
Depending on what they need, the first callable may take one of these parameter
lists: (), (size_t), (maybe-const elem_type&), (size_t, maybe-const elem_type&).
On top of removing the pointer->index->pointer operations in most cases,
invoking callables directly from ApplyIf is safer, as the array is guaranteed to
be untouched at this time.
Also, being templates taking function objects, in most cases the compiler should
be able to inline and optimize the search and its callables' code.
This patch gives example uses in nsTArray::Contains, and in
FrameProperties::GetInternal, SetInternal.
And FrameProperties::Has now calls Contains, which is more efficient because
the former code would compute an index (or NoIndex), and then convert that index
to a bool; whereas the new code directly produces a bool from within the search
algorithm.
Differential Revision: https://phabricator.services.mozilla.com/D2758
--HG--
extra : moz-landing-system : lando
2018-08-28 22:04:09 +00:00
|
|
|
return mProperties.ApplyIf(
|
|
|
|
aProperty, 0, PropertyComparator(),
|
2021-09-20 19:52:46 +00:00
|
|
|
[&aFoundResult](const PropertyValue& aPV) -> uint64_t {
|
Bug 1479996 - Combine nsTArray::IndexOf and element access into lambda-friendly functions - r=froydnj
In many places, nsTArray::IndexOf is followed by accessing that element
(hopefully with `Elements() + index`, which skips unnecessary bounds checks.)
But this pattern introduces operations that could be avoided:
- IndexOf converts the address of the found element into an index,
- The caller must test for a special `NoIndex` value,
- On success, accesses convert that index back into the original address.
This patch introduces new 'ApplyIf...' functions that combine all these
operations in a more efficient ensemble: If the sought element is found, it is
passed by reference to a given callable object (usually a lambda); if not
found, another callable is invoked.
Depending on what they need, the first callable may take one of these parameter
lists: (), (size_t), (maybe-const elem_type&), (size_t, maybe-const elem_type&).
On top of removing the pointer->index->pointer operations in most cases,
invoking callables directly from ApplyIf is safer, as the array is guaranteed to
be untouched at this time.
Also, being templates taking function objects, in most cases the compiler should
be able to inline and optimize the search and its callables' code.
This patch gives example uses in nsTArray::Contains, and in
FrameProperties::GetInternal, SetInternal.
And FrameProperties::Has now calls Contains, which is more efficient because
the former code would compute an index (or NoIndex), and then convert that index
to a bool; whereas the new code directly produces a bool from within the search
algorithm.
Differential Revision: https://phabricator.services.mozilla.com/D2758
--HG--
extra : moz-landing-system : lando
2018-08-28 22:04:09 +00:00
|
|
|
if (aFoundResult) {
|
|
|
|
*aFoundResult = true;
|
|
|
|
}
|
|
|
|
return aPV.mValue;
|
|
|
|
},
|
2021-09-20 19:52:46 +00:00
|
|
|
[&aFoundResult]() -> uint64_t {
|
Bug 1479996 - Combine nsTArray::IndexOf and element access into lambda-friendly functions - r=froydnj
In many places, nsTArray::IndexOf is followed by accessing that element
(hopefully with `Elements() + index`, which skips unnecessary bounds checks.)
But this pattern introduces operations that could be avoided:
- IndexOf converts the address of the found element into an index,
- The caller must test for a special `NoIndex` value,
- On success, accesses convert that index back into the original address.
This patch introduces new 'ApplyIf...' functions that combine all these
operations in a more efficient ensemble: If the sought element is found, it is
passed by reference to a given callable object (usually a lambda); if not
found, another callable is invoked.
Depending on what they need, the first callable may take one of these parameter
lists: (), (size_t), (maybe-const elem_type&), (size_t, maybe-const elem_type&).
On top of removing the pointer->index->pointer operations in most cases,
invoking callables directly from ApplyIf is safer, as the array is guaranteed to
be untouched at this time.
Also, being templates taking function objects, in most cases the compiler should
be able to inline and optimize the search and its callables' code.
This patch gives example uses in nsTArray::Contains, and in
FrameProperties::GetInternal, SetInternal.
And FrameProperties::Has now calls Contains, which is more efficient because
the former code would compute an index (or NoIndex), and then convert that index
to a bool; whereas the new code directly produces a bool from within the search
algorithm.
Differential Revision: https://phabricator.services.mozilla.com/D2758
--HG--
extra : moz-landing-system : lando
2018-08-28 22:04:09 +00:00
|
|
|
if (aFoundResult) {
|
|
|
|
*aFoundResult = false;
|
|
|
|
}
|
2021-09-20 19:52:46 +00:00
|
|
|
return 0;
|
Bug 1479996 - Combine nsTArray::IndexOf and element access into lambda-friendly functions - r=froydnj
In many places, nsTArray::IndexOf is followed by accessing that element
(hopefully with `Elements() + index`, which skips unnecessary bounds checks.)
But this pattern introduces operations that could be avoided:
- IndexOf converts the address of the found element into an index,
- The caller must test for a special `NoIndex` value,
- On success, accesses convert that index back into the original address.
This patch introduces new 'ApplyIf...' functions that combine all these
operations in a more efficient ensemble: If the sought element is found, it is
passed by reference to a given callable object (usually a lambda); if not
found, another callable is invoked.
Depending on what they need, the first callable may take one of these parameter
lists: (), (size_t), (maybe-const elem_type&), (size_t, maybe-const elem_type&).
On top of removing the pointer->index->pointer operations in most cases,
invoking callables directly from ApplyIf is safer, as the array is guaranteed to
be untouched at this time.
Also, being templates taking function objects, in most cases the compiler should
be able to inline and optimize the search and its callables' code.
This patch gives example uses in nsTArray::Contains, and in
FrameProperties::GetInternal, SetInternal.
And FrameProperties::Has now calls Contains, which is more efficient because
the former code would compute an index (or NoIndex), and then convert that index
to a bool; whereas the new code directly produces a bool from within the search
algorithm.
Differential Revision: https://phabricator.services.mozilla.com/D2758
--HG--
extra : moz-landing-system : lando
2018-08-28 22:04:09 +00:00
|
|
|
});
|
2017-05-27 11:36:00 +00:00
|
|
|
}
|
2010-03-15 01:51:44 +00:00
|
|
|
|
2017-05-31 18:52:56 +00:00
|
|
|
inline void FrameProperties::SetInternal(UntypedDescriptor aProperty,
|
2021-09-20 19:52:46 +00:00
|
|
|
uint64_t aValue,
|
|
|
|
const nsIFrame* aFrame) {
|
2017-05-31 18:52:56 +00:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aProperty, "Null property?");
|
|
|
|
|
Bug 1479996 - Combine nsTArray::IndexOf and element access into lambda-friendly functions - r=froydnj
In many places, nsTArray::IndexOf is followed by accessing that element
(hopefully with `Elements() + index`, which skips unnecessary bounds checks.)
But this pattern introduces operations that could be avoided:
- IndexOf converts the address of the found element into an index,
- The caller must test for a special `NoIndex` value,
- On success, accesses convert that index back into the original address.
This patch introduces new 'ApplyIf...' functions that combine all these
operations in a more efficient ensemble: If the sought element is found, it is
passed by reference to a given callable object (usually a lambda); if not
found, another callable is invoked.
Depending on what they need, the first callable may take one of these parameter
lists: (), (size_t), (maybe-const elem_type&), (size_t, maybe-const elem_type&).
On top of removing the pointer->index->pointer operations in most cases,
invoking callables directly from ApplyIf is safer, as the array is guaranteed to
be untouched at this time.
Also, being templates taking function objects, in most cases the compiler should
be able to inline and optimize the search and its callables' code.
This patch gives example uses in nsTArray::Contains, and in
FrameProperties::GetInternal, SetInternal.
And FrameProperties::Has now calls Contains, which is more efficient because
the former code would compute an index (or NoIndex), and then convert that index
to a bool; whereas the new code directly produces a bool from within the search
algorithm.
Differential Revision: https://phabricator.services.mozilla.com/D2758
--HG--
extra : moz-landing-system : lando
2018-08-28 22:04:09 +00:00
|
|
|
mProperties.ApplyIf(
|
|
|
|
aProperty, 0, PropertyComparator(),
|
|
|
|
[&](PropertyValue& aPV) {
|
|
|
|
aPV.DestroyValueFor(aFrame);
|
|
|
|
aPV.mValue = aValue;
|
|
|
|
},
|
|
|
|
[&]() { mProperties.AppendElement(PropertyValue(aProperty, aValue)); });
|
2017-05-31 18:52:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void FrameProperties::AddInternal(UntypedDescriptor aProperty,
|
2021-09-20 19:52:46 +00:00
|
|
|
uint64_t aValue) {
|
2017-05-31 18:52:56 +00:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aProperty, "Null property?");
|
|
|
|
|
|
|
|
mProperties.AppendElement(PropertyValue(aProperty, aValue));
|
|
|
|
}
|
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
inline uint64_t FrameProperties::TakeInternal(UntypedDescriptor aProperty,
|
|
|
|
bool* aFoundResult) {
|
2017-05-31 18:52:56 +00:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aProperty, "Null property?");
|
|
|
|
|
|
|
|
auto index = mProperties.IndexOf(aProperty, 0, PropertyComparator());
|
|
|
|
if (index == nsTArray<PropertyValue>::NoIndex) {
|
|
|
|
if (aFoundResult) {
|
|
|
|
*aFoundResult = false;
|
|
|
|
}
|
2021-09-20 19:52:46 +00:00
|
|
|
return 0;
|
2017-05-31 18:52:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aFoundResult) {
|
|
|
|
*aFoundResult = true;
|
|
|
|
}
|
|
|
|
|
2021-09-20 19:52:46 +00:00
|
|
|
uint64_t result = mProperties.Elements()[index].mValue;
|
2023-08-15 14:24:19 +00:00
|
|
|
mProperties.RemoveElementAtUnsafe(index);
|
2017-05-31 18:52:56 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-02-06 16:06:49 +00:00
|
|
|
inline void FrameProperties::RemoveInternal(UntypedDescriptor aProperty,
|
2017-05-31 18:52:56 +00:00
|
|
|
const nsIFrame* aFrame) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aProperty, "Null property?");
|
|
|
|
|
|
|
|
auto index = mProperties.IndexOf(aProperty, 0, PropertyComparator());
|
|
|
|
if (index != nsTArray<PropertyValue>::NoIndex) {
|
2018-07-24 23:25:28 +00:00
|
|
|
mProperties.Elements()[index].DestroyValueFor(aFrame);
|
2023-08-15 14:24:19 +00:00
|
|
|
mProperties.RemoveElementAtUnsafe(index);
|
2017-05-31 18:52:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace mozilla
|
2010-03-15 01:51:44 +00:00
|
|
|
|
2017-05-27 11:36:00 +00:00
|
|
|
#endif /* FRAMEPROPERTIES_H_ */
|