-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Expand file tree
/
Copy pathMethodCall.cpp
More file actions
91 lines (72 loc) · 2.44 KB
/
Copy pathMethodCall.cpp
File metadata and controls
91 lines (72 loc) · 2.44 KB
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
/*
* 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 "MethodCall.h"
#ifndef RCT_REMOVE_LEGACY_ARCH
#include <folly/json.h>
#include <stdexcept>
namespace facebook::react {
#define REQUEST_MODULE_IDS 0
#define REQUEST_METHOD_IDS 1
#define REQUEST_PARAMS 2
#define REQUEST_CALLID 3
static const char* errorPrefix = "Malformed calls from JS: ";
std::vector<MethodCall> parseMethodCalls(folly::dynamic&& jsonData) {
if (jsonData.isNull()) {
return {};
}
if (!jsonData.isArray()) {
throw std::invalid_argument(
std::string(errorPrefix) + " input isn't array but " +
jsonData.typeName());
}
if (jsonData.size() < REQUEST_PARAMS + 1) {
throw std::invalid_argument(
std::string(errorPrefix) +
"size == " + std::to_string(jsonData.size()));
}
auto& moduleIds = jsonData[REQUEST_MODULE_IDS];
auto& methodIds = jsonData[REQUEST_METHOD_IDS];
auto& params = jsonData[REQUEST_PARAMS];
int callId = -1;
if (!moduleIds.isArray() || !methodIds.isArray() || !params.isArray()) {
throw std::invalid_argument(
std::string(errorPrefix) + "not all fields are arrays.\n\n" +
folly::toJson(jsonData));
}
if (moduleIds.size() != methodIds.size() ||
moduleIds.size() != params.size()) {
throw std::invalid_argument(
std::string(errorPrefix) + "field sizes are different.\n\n" +
folly::toJson(jsonData));
}
if (jsonData.size() > REQUEST_CALLID) {
if (!jsonData[REQUEST_CALLID].isNumber()) {
throw std::invalid_argument(
std::string(errorPrefix) + "invalid callId" +
jsonData[REQUEST_CALLID].typeName());
}
callId = (int)jsonData[REQUEST_CALLID].asInt();
}
std::vector<MethodCall> methodCalls;
for (size_t i = 0; i < moduleIds.size(); i++) {
if (!params[i].isArray()) {
throw std::invalid_argument(
std::string(errorPrefix) + "method arguments isn't array but " +
params[i].typeName());
}
methodCalls.emplace_back(
static_cast<int>(moduleIds[i].asInt()),
static_cast<int>(methodIds[i].asInt()),
std::move(params[i]),
callId);
// only increment callid if contains valid callid as callid is optional
callId += (callId != -1) ? 1 : 0;
}
return methodCalls;
}
} // namespace facebook::react
#endif // RCT_REMOVE_LEGACY_ARCH