forked from vuejs/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinline-enums.js
287 lines (266 loc) · 9.09 KB
/
inline-enums.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
// @ts-check
/**
* We used const enums before, but it caused some issues: #1228, so we
* switched to regular enums. But we still want to keep the zero-cost benefit
* of const enums, and minimize the impact on bundle size as much as possible.
*
* Here we pre-process all the enums in the project and turn them into
* global replacements, and rewrite the original declarations as object literals.
*
* This file is expected to be executed with project root as cwd.
*/
import * as assert from 'node:assert'
import {
existsSync,
mkdirSync,
readFileSync,
rmSync,
writeFileSync,
} from 'node:fs'
import * as path from 'node:path'
import { parse } from '@babel/parser'
import { spawnSync } from 'node:child_process'
import MagicString from 'magic-string'
/**
* @typedef {{ readonly name: string, readonly value: string | number }} EnumMember
* @typedef {{ readonly id: string, readonly range: readonly [start: number, end: number], readonly members: ReadonlyArray<EnumMember>}} EnumDeclaration
* @typedef {{ readonly declarations: { readonly [file: string] : ReadonlyArray<EnumDeclaration>}, readonly defines: { readonly [ id_key: `${string}.${string}`]: string } }} EnumData
*/
const ENUM_CACHE_PATH = 'temp/enum.json'
/**
* @param {string} exp
* @returns {string | number}
*/
function evaluate(exp) {
return new Function(`return ${exp}`)()
}
// this is called in the build script entry once
// so the data can be shared across concurrent Rollup processes
export function scanEnums() {
/** @type {{ [file: string]: EnumDeclaration[] }} */
const declarations = Object.create(null)
/** @type {{ [id_key: `${string}.${string}`]: string; }} */
const defines = Object.create(null)
// 1. grep for files with exported enum
const { stdout } = spawnSync('git', ['grep', `export enum`])
const files = [
...new Set(
stdout
.toString()
.trim()
.split('\n')
.map(line => line.split(':')[0]),
),
]
// 2. parse matched files to collect enum info
for (const relativeFile of files) {
const file = path.resolve(process.cwd(), relativeFile)
const content = readFileSync(file, 'utf-8')
const ast = parse(content, {
plugins: ['typescript'],
sourceType: 'module',
})
/** @type {Set<string>} */
const enumIds = new Set()
for (const node of ast.program.body) {
if (
node.type === 'ExportNamedDeclaration' &&
node.declaration &&
node.declaration.type === 'TSEnumDeclaration'
) {
const decl = node.declaration
const id = decl.id.name
if (enumIds.has(id)) {
throw new Error(
`not support declaration merging for enum ${id} in ${file}`,
)
}
enumIds.add(id)
/** @type {string | number | undefined} */
let lastInitialized
/** @type {Array<EnumMember>} */
const members = []
for (let i = 0; i < decl.members.length; i++) {
const e = decl.members[i]
const key = e.id.type === 'Identifier' ? e.id.name : e.id.value
const fullKey = /** @type {const} */ (`${id}.${key}`)
const saveValue = (/** @type {string | number} */ value) => {
// We need allow same name enum in different file.
// For example: enum ErrorCodes exist in both @vue/compiler-core and @vue/runtime-core
// But not allow `ErrorCodes.__EXTEND_POINT__` appear in two same name enum
if (fullKey in defines) {
throw new Error(`name conflict for enum ${id} in ${file}`)
}
members.push({
name: key,
value,
})
defines[fullKey] = JSON.stringify(value)
}
const init = e.initializer
if (init) {
/** @type {string | number} */
let value
if (
init.type === 'StringLiteral' ||
init.type === 'NumericLiteral'
) {
value = init.value
}
// e.g. 1 << 2
else if (init.type === 'BinaryExpression') {
const resolveValue = (
/** @type {import('@babel/types').Expression | import('@babel/types').PrivateName} */ node,
) => {
assert.ok(typeof node.start === 'number')
assert.ok(typeof node.end === 'number')
if (
node.type === 'NumericLiteral' ||
node.type === 'StringLiteral'
) {
return node.value
} else if (node.type === 'MemberExpression') {
const exp = /** @type {`${string}.${string}`} */ (
content.slice(node.start, node.end)
)
if (!(exp in defines)) {
throw new Error(
`unhandled enum initialization expression ${exp} in ${file}`,
)
}
return defines[exp]
} else {
throw new Error(
`unhandled BinaryExpression operand type ${node.type} in ${file}`,
)
}
}
const exp = `${resolveValue(init.left)}${
init.operator
}${resolveValue(init.right)}`
value = evaluate(exp)
} else if (init.type === 'UnaryExpression') {
if (
init.argument.type === 'StringLiteral' ||
init.argument.type === 'NumericLiteral'
) {
const exp = `${init.operator}${init.argument.value}`
value = evaluate(exp)
} else {
throw new Error(
`unhandled UnaryExpression argument type ${init.argument.type} in ${file}`,
)
}
} else {
throw new Error(
`unhandled initializer type ${init.type} for ${fullKey} in ${file}`,
)
}
lastInitialized = value
saveValue(lastInitialized)
} else {
if (lastInitialized === undefined) {
// first initialized
lastInitialized = 0
saveValue(lastInitialized)
} else if (typeof lastInitialized === 'number') {
lastInitialized++
saveValue(lastInitialized)
} else {
// should not happen
throw new Error(`wrong enum initialization sequence in ${file}`)
}
}
}
if (!(file in declarations)) {
declarations[file] = []
}
assert.ok(typeof node.start === 'number')
assert.ok(typeof node.end === 'number')
declarations[file].push({
id,
range: [node.start, node.end],
members,
})
}
}
}
// 3. save cache
if (!existsSync('temp')) mkdirSync('temp')
/** @type {EnumData} */
const enumData = {
declarations,
defines,
}
writeFileSync(ENUM_CACHE_PATH, JSON.stringify(enumData))
return () => {
rmSync(ENUM_CACHE_PATH, { force: true })
}
}
/**
* @returns {[import('rollup').Plugin, Record<string, string>]}
*/
export function inlineEnums() {
if (!existsSync(ENUM_CACHE_PATH)) {
throw new Error('enum cache needs to be initialized before creating plugin')
}
/**
* @type {EnumData}
*/
const enumData = JSON.parse(readFileSync(ENUM_CACHE_PATH, 'utf-8'))
// 3. during transform:
// 3.1 files w/ enum declaration: rewrite declaration as object literal
// 3.2 files using enum: inject into esbuild define
/**
* @type {import('rollup').Plugin}
*/
const plugin = {
name: 'inline-enum',
transform(code, id) {
/**
* @type {MagicString | undefined}
*/
let s
if (id in enumData.declarations) {
s = s || new MagicString(code)
for (const declaration of enumData.declarations[id]) {
const {
range: [start, end],
id,
members,
} = declaration
s.update(
start,
end,
`export const ${id} = {${members
.flatMap(({ name, value }) => {
const forwardMapping =
JSON.stringify(name) + ': ' + JSON.stringify(value)
const reverseMapping =
JSON.stringify(value.toString()) + ': ' + JSON.stringify(name)
// see https://www.typescriptlang.org/docs/handbook/enums.html#reverse-mappings
return typeof value === 'string'
? [
forwardMapping,
// string enum members do not get a reverse mapping generated at all
]
: [
forwardMapping,
// other enum members should support enum reverse mapping
reverseMapping,
]
})
.join(',\n')}}`,
)
}
}
if (s) {
return {
code: s.toString(),
map: s.generateMap(),
}
}
},
}
return [plugin, enumData.defines]
}