-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathlanguage.worker.ts
213 lines (176 loc) · 6.03 KB
/
language.worker.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
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
import type * as monaco from 'monaco-editor'
import * as Comlink from 'comlink'
import { addDays } from 'date-fns'
import { db, keyValue } from '~/services/storage'
import type { GoIndexFile, HoverQuery, LiteralQuery, PackageSymbolQuery, SuggestionQuery } from './types'
import {
completionFromPackage,
completionFromSymbol,
constructPackages,
constructSymbols,
findPackagePathFromContext,
importCompletionFromPackage,
symbolHoverDoc,
} from './utils'
import type { SymbolIndexItem } from '~/services/storage/types'
const completionVersionKey = 'completionItems.version'
const TTL_DAYS = 7
const getExpireTime = () => addDays(new Date(), TTL_DAYS)
const isPackageQuery = (q: SuggestionQuery): q is PackageSymbolQuery => 'packageName' in q
export class WorkerHandler {
private cachePopulated = false
private populatePromise?: Promise<void>
/**
* Store keeps completions in cache.
*
* Using in-memory cache doesn't make sense as Monaco mutates completions after submit.
* Completions with mutated position are no longer validated, so either each new copy should be done
* or it's much easier to just query the DB.
*/
private readonly db = db
private readonly keyValue = keyValue
/**
* Returns whether cache was previously populated.
*/
isWarmUp() {
return this.cachePopulated
}
/**
* Returns list of predefined builtins.
*
* Used to speed-up hover operations.
*/
async getBuiltinNames() {
await this.checkCacheReady()
const items = await this.db.symbolIndex.where({ packageName: 'builtin' }).toArray()
return items.map(({ label }) => label)
}
private buildHoverFilter(query: HoverQuery): Partial<SymbolIndexItem> {
const isPackageMember = 'packageName' in query
if (!isPackageMember) {
return {
key: `builtin.${query.value}`,
}
}
const pkgPath = findPackagePathFromContext(query.context, query.packageName)
if (pkgPath) {
return {
key: `${pkgPath}.${query.value}`,
}
}
return {
packageName: query.packageName,
label: query.value,
}
}
/**
* Returns hover documentation for a symbol.
*/
async getHoverValue(query: HoverQuery): Promise<monaco.languages.Hover | null> {
await this.checkCacheReady()
const filter = this.buildHoverFilter(query)
const entry = await this.db.symbolIndex.where(filter).first()
if (!entry) {
return null
}
return {
contents: symbolHoverDoc(entry),
range: query.context.range,
}
}
/**
* Returns list of known importable Go packages.
*
* Returns value from cache if available.
* @returns
*/
async getImportSuggestions() {
// TODO: provide third-party packages using go proxy index.
return await this.getStandardPackages()
}
/**
* Returns symbol or literal suggestions by prefix and package name.
*/
async getSymbolSuggestions(query: SuggestionQuery) {
await this.checkCacheReady()
if (isPackageQuery(query)) {
return await this.getMemberSuggestion(query)
}
return await this.getLiteralSuggestion(query)
}
private async getMemberSuggestion({ value, packageName, context }: PackageSymbolQuery) {
// If package with specified name is imported - filter symbols
// to avoid overlap with packages with eponymous name.
const packagePath = findPackagePathFromContext(context, packageName)
const filter: Partial<SymbolIndexItem> = packagePath
? {
packagePath,
}
: { packageName }
if (value) {
filter.prefix = value.charAt(0).toLowerCase()
}
const symbols = await this.db.symbolIndex.where(filter).toArray()
return symbols.map((symbol) => completionFromSymbol(symbol, context, !!packagePath))
}
private async getLiteralSuggestion({ value, context }: LiteralQuery) {
const packages = await this.db.packageIndex.where('prefix').equals(value).toArray()
const builtins = await this.db.symbolIndex.where('packagePath').equals('builtin').toArray()
const packageCompletions = packages.map((item) => completionFromPackage(item, context))
const symbolsCompletions = builtins.map((item) => completionFromSymbol(item, context, false))
return packageCompletions.concat(symbolsCompletions)
}
private async getStandardPackages() {
await this.checkCacheReady()
const results = await this.db.packageIndex.toArray()
return results.map(importCompletionFromPackage)
}
private async checkCacheReady() {
if (this.cachePopulated) {
return true
}
// TODO: add invalidation by Go version
const version = await this.keyValue.getItem<string>(completionVersionKey, (entry) => {
// v2.2.0 didn't write TTL by mistake
return typeof entry.expireAt !== 'undefined'
})
if (!version) {
await this.populateCache()
return true
}
const count = await this.db.packageIndex.count()
this.cachePopulated = count > 0
if (!this.cachePopulated) {
await this.populateCache()
}
return this.cachePopulated
}
private async populateCache() {
if (!this.populatePromise) {
// Cache population might be triggered by multiple actors outside.
this.populatePromise = (async () => {
const rsp = await fetch('/data/go-index.json')
if (!rsp.ok) {
throw new Error(`${rsp.status} ${rsp.statusText}`)
}
const data: GoIndexFile = await rsp.json()
if (data.version > 1) {
console.warn(`unsupported symbol index version: ${data.version}, skip update.`)
return
}
const packages = constructPackages(data.packages)
const symbols = constructSymbols(data.symbols)
await Promise.all([
this.db.packageIndex.clear(),
this.db.symbolIndex.clear(),
this.db.packageIndex.bulkAdd(packages),
this.db.symbolIndex.bulkAdd(symbols),
this.keyValue.setItem(completionVersionKey, data.go, getExpireTime()),
])
this.cachePopulated = true
})()
}
await this.populatePromise
}
}
Comlink.expose(new WorkerHandler())