mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
df229590b2
Summary: This part of the codebase is very perf sensitive and designed to work without exceptions enabled. Most of the method was `noexcept` all the time, but some of those missing that by mistake. Reviewed By: sammy-SC Differential Revision: D17629426 fbshipit-source-id: b311e4b7eff8e2b7cf29518288480d3a812dda44
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <better/small_vector.h>
|
|
|
|
#include <react/core/RawPropsKey.h>
|
|
#include <react/core/RawPropsPrimitives.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* A map especially optimized to hold `{name: index}` relations.
|
|
* The implementation is conceptually similar to a classic hash map with a hash
|
|
* function that returns the length of the string.
|
|
* The map is optimized for reads only (the map must be reindexed before a bunch
|
|
* of reads).
|
|
*/
|
|
class RawPropsKeyMap final {
|
|
public:
|
|
/*
|
|
* Stores `value` with by given `key`.
|
|
*/
|
|
void insert(RawPropsKey const &key, RawPropsValueIndex value) noexcept;
|
|
|
|
/*
|
|
* Reindexes the stored data.
|
|
* Must be called before `at` (after calling a bunch of `add`s).
|
|
*/
|
|
void reindex() noexcept;
|
|
|
|
/*
|
|
* Finds and returns the `value` (some index) by given `key`.
|
|
* Returns `kRawPropsValueIndexEmpty` if the value wan't found.
|
|
*/
|
|
RawPropsValueIndex at(
|
|
char const *name,
|
|
RawPropsPropNameLength length) noexcept;
|
|
|
|
private:
|
|
static int comparator(void const *lhs, void const *rhs) noexcept;
|
|
|
|
struct Item {
|
|
RawPropsValueIndex value;
|
|
RawPropsPropNameLength length;
|
|
char name[kPropNameLengthHardCap];
|
|
};
|
|
|
|
better::small_vector<Item, kNumberOfExplicitlySpecifedPropsSoftCap> items_{};
|
|
better::small_vector<RawPropsPropNameLength, kPropNameLengthHardCap>
|
|
buckets_{};
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|