forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 2
/
RawProps.cpp
104 lines (90 loc) · 2.6 KB
/
RawProps.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "RawProps.h"
#include <react/debug/react_native_assert.h>
#include <react/renderer/core/RawPropsKey.h>
#include <react/renderer/core/RawPropsParser.h>
namespace facebook {
namespace react {
RawProps::RawProps() {
mode_ = Mode::Empty;
}
/*
* Creates an object with given `runtime` and `value`.
*/
RawProps::RawProps(jsi::Runtime &runtime, jsi::Value const &value) noexcept {
if (value.isNull()) {
mode_ = Mode::Empty;
return;
}
mode_ = mode_ = Mode::JSI;
runtime_ = &runtime;
value_ = jsi::Value(runtime, value);
}
/*
* Creates an object with given `folly::dynamic` object.
* Deprecated. Do not use.
* We need this temporary, only because we have a callsite that does not have
* a `jsi::Runtime` behind the data.
*/
RawProps::RawProps(folly::dynamic const &dynamic) noexcept {
if (dynamic.isNull()) {
mode_ = Mode::Empty;
return;
}
mode_ = Mode::Dynamic;
dynamic_ = dynamic;
}
void RawProps::parse(RawPropsParser const &parser, const PropsParserContext &)
const noexcept {
react_native_assert(parser_ == nullptr && "A parser was already assigned.");
parser_ = &parser;
parser.preparse(*this);
}
/*
* Deprecated. Do not use.
* The support for explicit conversion to `folly::dynamic` is deprecated and
* will be removed as soon Android implementation does not need it.
*/
RawProps::operator folly::dynamic() const noexcept {
switch (mode_) {
case Mode::Empty:
return folly::dynamic::object();
case Mode::JSI:
return jsi::dynamicFromValue(*runtime_, value_);
case Mode::Dynamic:
return dynamic_;
}
}
/*
* Returns `true` if the object is empty.
* Empty `RawProps` does not have any stored data.
*/
bool RawProps::isEmpty() const noexcept {
return mode_ == Mode::Empty;
}
/*
* Returns a const unowning pointer to `RawValue` of a prop with a given name.
* Returns `nullptr` if a prop with the given name does not exist.
*/
const RawValue *RawProps::at(
char const *name,
char const *prefix,
char const *suffix) const noexcept {
react_native_assert(
parser_ &&
"The object is not parsed. `parse` must be called before `at`.");
return parser_->at(*this, RawPropsKey{prefix, name, suffix});
}
void RawProps::iterateOverValues(
std::function<
void(RawPropsPropNameHash, const char *, RawValue const &)> const &fn)
const {
return parser_->iterateOverValues(*this, fn);
}
} // namespace react
} // namespace facebook