-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
index.js
217 lines (191 loc) · 5.99 KB
/
index.js
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
const t = require("babel-types");
const objectiveCParser = require("objective-c-parser");
const generate = require("babel-generator").default;
const fs = require("fs");
const { methodNameToSnakeCase } = require("../helpers");
const {
generateTypeCheck,
generateIsOneOfCheck
} = require("babel-generate-guard-clauses");
const isNumber = generateTypeCheck("number");
const isString = generateTypeCheck("string");
const isBoolean = generateTypeCheck("boolean");
const isPoint = [
generateTypeCheck("object"),
generateTypeCheck("number", { selector: "x" }),
generateTypeCheck("number", { selector: "y" })
];
const isOneOf = generateIsOneOfCheck;
/**
* the input provided by objective-c-parser looks like this:
* {
* "name": "BasicName",
* "methods": [
* {
* "args": [],
* "comment": "This is the comment of basic method one",
* "name": "basicMethodOne",
* "returnType": "NSInteger"
* },
* {
* "args": [
* {
* "type": "NSInteger",
* "name": "argOne"
* },
* {
* "type": "NSString",
* "name": "argTwo"
* }
* ],
* "comment": "This is the comment of basic method two.\nIt has multiple lines",
* "name": "basicMethodTwoWithArgOneAndArgTwo",
* "returnType": "NSString"
* }
* ]
* }
*/
function createClass(json) {
return t.classDeclaration(
t.identifier(json.name),
null,
t.classBody(json.methods.map(createMethod.bind(null, json.name))),
[]
);
}
function createExport(json) {
return t.expressionStatement(
t.assignmentExpression(
"=",
t.memberExpression(
t.identifier("module"),
t.identifier("exports"),
false
),
t.identifier(json.name)
)
);
}
function createMethod(className, json) {
const m = t.classMethod(
"method",
t.identifier(methodNameToSnakeCase(json.name)),
json.args.map(({ name }) => t.identifier(name)),
t.blockStatement(createMethodBody(className, json)),
false,
json.static
);
if (json.comment) {
const comment = {
type: json.comment.indexOf("\n") === -1 ? "LineComment" : "BlockComment",
value: json.comment + "\n"
};
m.leadingComments = m.leadingComments || [];
m.leadingComments.push(comment);
}
return m;
}
const supportedTypesMap = {
NSUInteger: "NSInteger",
"NSString *": "NSString"
};
function sanitizeArgumentType(json) {
if (supportedTypesMap[json.type]) {
return Object.assign({}, json, {
type: supportedTypesMap[json.type]
});
}
return json;
}
function createMethodBody(className, json) {
const sanitizedJson = Object.assign({}, json, {
args: json.args.map(argJson => sanitizeArgumentType(argJson))
});
const allTypeChecks = createTypeChecks(sanitizedJson).reduce(
(carry, item) =>
item instanceof Array ? [...carry, ...item] : [...carry, item],
[]
);
const typeChecks = allTypeChecks.filter(check => typeof check === "object");
const returnStatement = createReturnStatement(className, sanitizedJson);
return [...typeChecks, returnStatement];
}
function createTypeChecks(json) {
const checks = json.args.map(createTypeCheck);
checks.filter(check => Boolean(check));
return checks;
}
const callGlobal = sanitizerName => argIdentifier =>
t.callExpression(t.identifier(sanitizerName), [t.identifier(argIdentifier)]);
const supportedContentSanitizersMap = {
GREYDirection: callGlobal("sanitize_greyDirection")
};
function addArgumentContentSanitizerCall(json) {
if (supportedContentSanitizersMap[json.type]) {
return supportedContentSanitizersMap[json.type](json.name);
}
return t.identifier(json.name);
}
function createReturnStatement(className, json) {
const args = json.args.map(arg =>
t.objectExpression([
t.objectProperty(t.identifier("type"), t.stringLiteral(arg.type)),
t.objectProperty(
t.identifier("value"),
addArgumentContentSanitizerCall(arg)
)
])
);
return t.returnStatement(
t.objectExpression([
t.objectProperty(
t.identifier("target"),
t.objectExpression([
t.objectProperty(t.identifier("type"), t.stringLiteral("Class")),
t.objectProperty(t.identifier("value"), t.stringLiteral(className))
])
),
t.objectProperty(t.identifier("method"), t.stringLiteral(json.name)),
t.objectProperty(t.identifier("args"), t.arrayExpression(args))
])
);
}
function createTypeCheck(json) {
const typeInterfaces = {
NSInteger: isNumber,
CGFloat: isNumber,
CGPoint: isPoint,
CFTimeInterval: isNumber,
double: isNumber,
float: isNumber,
NSString: isString,
BOOL: isBoolean,
"NSDate *": isNumber,
GREYDirection: isOneOf(["left", "right", "up", "down"]),
GREYContentEdge: isOneOf(["left", "right", "top", "bottom"]),
GREYPinchDirection: isOneOf(["outward", "inward"])
};
const typeCheckCreator = typeInterfaces[json.type];
const isListOfChecks = typeCheckCreator instanceof Array;
if (typeof typeCheckCreator !== "function" && !isListOfChecks) {
console.info("Could not find ", json);
return;
}
return isListOfChecks
? typeCheckCreator.map(singleCheck => singleCheck(json))
: typeCheckCreator(json);
}
module.exports = function(files) {
Object.entries(files).forEach(([inputFile, outputFile]) => {
const input = fs.readFileSync(inputFile, "utf8");
const json = objectiveCParser(input);
const ast = t.program([createClass(json), createExport(json)]);
const output = generate(ast);
const commentBefore = "/**\n\n\tThis code is generated.\n\tFor more information see generation/README.md.\n*/\n\n";
// Add global helper functions
const globalFunctionsSource = fs.readFileSync(__dirname + "/global-functions.js", "utf8");
const globalFunctions = globalFunctionsSource.substr(0, globalFunctionsSource.indexOf("module.exports"));
const code = [commentBefore, globalFunctions, output.code].join('\n');
fs.writeFileSync(outputFile, code, "utf8");
});
};