forked from vuejs/vue-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescriptorCache.ts
35 lines (30 loc) · 1.04 KB
/
descriptorCache.ts
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
import * as fs from 'fs'
import type { SFCDescriptor } from 'vue/compiler-sfc'
import { compiler } from './compiler'
const { parse } = compiler
const cache = new Map<string, SFCDescriptor>()
export function setDescriptor(filename: string, entry: SFCDescriptor) {
cache.set(cleanQuery(filename), entry)
}
export function getDescriptor(filename: string): SFCDescriptor {
filename = cleanQuery(filename)
if (cache.has(filename)) {
return cache.get(filename)!
}
// This function should only be called after the descriptor has been
// cached by the main loader.
// If this is somehow called without a cache hit, it's probably due to sub
// loaders being run in separate threads. The only way to deal with this is to
// read from disk directly...
const source = fs.readFileSync(filename, 'utf-8')
const { descriptor } = parse(source, {
filename,
sourceMap: true,
})
cache.set(filename, descriptor)
return descriptor
}
function cleanQuery(str: string) {
const i = str.indexOf('?')
return i > 0 ? str.slice(0, i) : str
}