-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
224 lines (177 loc) · 5.71 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
218
219
220
221
222
223
224
import { webcrypto } from 'node:crypto'
import { access, readFile, writeFile } from 'node:fs/promises'
import { relative as relativePath, resolve as resolvePath } from 'node:path'
// Check if path exists
export const pathExists = async (path = '') => {
try {
await access(path)
return true
} catch {
return false
}
}
// Sort keys by alphabetical order
const sortKeys = obj =>
Object.keys(obj)
.sort()
.reduce((acc, key) => {
acc[key] = obj[key]
return acc
}, {})
export default class FileHashCache {
constructor(defaultKey = 'file', cacheFile = '.hash-cache.json', cacheRoot = process.cwd(), projectRoot = process.cwd(), enableBypass = false) {
this.defaultKey = defaultKey
this.defaultEncoding = 'utf-8'
this.projectRoot = projectRoot
this.cacheRoot = cacheRoot
this.cacheFile = cacheFile
this.cachePath = resolvePath(process.cwd(), this.cacheRoot, this.cacheFile)
this.enabled = !enableBypass
this.encoder = new TextEncoder()
this.hashCache = {}
}
// Load the cache from disk
async load(key = null, prune = false) {
if (!this.enabled) {
return
}
if (!this.hashCache.length && (await pathExists(this.cachePath))) {
const contents = await readFile(this.cachePath, { encoding: 'utf8' })
// Wrap JSON.parse in try/catch because it will throw an error if the file is empty or malformed
try {
this.hashCache = JSON.parse(contents)
} catch {
this.hashCache = {}
}
if (prune) {
await this.pruneEntries()
}
}
// Create an empty entry for the key, if it doesn't exist
if (key && !this.hashCache[key]) {
this.hashCache[key] = {}
}
this.#sortEntries()
}
// Save the cache to disk
async save(prune = false) {
if (!this.enabled) {
return
}
if (prune) {
await this.pruneEntries()
}
this.#sortEntries()
await writeFile(this.cachePath, JSON.stringify(this.hashCache, null, 2) + '\n', { encoding: 'utf8' })
}
// Get the SHA-1 hash of a file and update the cache
async updateEntry(filepath = '', key = this.defaultKey, encoding = this.defaultEncoding) {
if (!this.enabled) {
return true
}
if (!filepath || !(await pathExists(filepath))) {
return false
}
const fileKey = relativePath(this.projectRoot, filepath)
const fileHash = await this.#getFileHash(filepath, encoding)
if (!this.hashCache[key]) {
await this.load(key)
}
this.hashCache[key][fileKey] = fileHash
return true
}
// Check if a file has changed since the last SHA-1 hash was calculated
async fileHasChanged(filepath = '', key = this.defaultKey, encoding = this.defaultEncoding) {
if (!this.enabled) {
return true
}
const fileKey = relativePath(this.projectRoot, filepath)
const fileHash = await this.#getFileHash(filepath, encoding)
if (!this.hashCache[key]) {
await this.load(key)
}
const cachedHash = this.hashCache[key][fileKey] || ''
const fileHasChanged = (fileHash !== cachedHash)
if (fileHasChanged) {
this.hashCache[key][fileKey] = fileHash
}
return fileHasChanged
}
// Compare two files by their SHA-1 hash
async compareFiles(firstFilepath = '', secondFilepath = '', encoding = this.defaultEncoding) {
if (!this.enabled) {
return false
}
if (!firstFilepath || !secondFilepath || !(await pathExists(firstFilepath)) || !(await pathExists(secondFilepath))) {
return false
}
const firstFileContents = await readFile(firstFilepath, { encoding })
const secondFileContents = await readFile(secondFilepath, { encoding })
const firstFileHash = await this.#getContentHash(firstFileContents || '', encoding)
const secondFileHash = await this.#getContentHash(secondFileContents || '', encoding)
const filesAreIdentical = firstFileHash === secondFileHash
return filesAreIdentical
}
// Prune stale entries from the cache
async pruneEntries() {
if (!this.enabled) {
return
}
for (const key of Object.keys(this.hashCache)) {
for (const fileKey of Object.keys(this.hashCache[key])) {
if (!(await pathExists(resolvePath(process.cwd(), this.projectRoot, fileKey)))) {
delete this.hashCache[key][fileKey]
}
}
}
}
// Sort cache entries alphabetically
#sortEntries() {
if (!this.enabled) {
return
}
for (const key of Object.keys(this.hashCache)) {
this.hashCache[key] = sortKeys(this.hashCache[key])
}
this.hashCache = sortKeys(this.hashCache)
}
// Get the SHA-1 hash of a string
async #getContentHash(contents = '', encoding = this.defaultEncoding) {
if (!this.enabled) {
return ''
}
if (!contents || !contents.length) {
return ''
}
const data = encoding ? this.encoder.encode(contents.toString(encoding)) : contents
const arrayBuffer = await webcrypto.subtle.digest('SHA-1', data)
const hash = Buffer.from(arrayBuffer).toString('base64')
return hash
}
// Get the SHA-1 hash of a file
async #getFileHash(filepath = '', encoding = this.defaultEncoding) {
if (!this.enabled) {
return ''
}
if (!filepath || !(await pathExists(filepath))) {
return ''
}
const fileContents = await readFile(filepath, { encoding })
if (!fileContents || !fileContents.length) {
return ''
}
const contentHash = await this.#getContentHash(fileContents, encoding)
return contentHash
}
// Remove entries from the cache by key
async removeEntriesByKeys(...keys) {
if (!this.enabled) {
return
}
for (const key of Object.keys(this.hashCache)) {
if (keys.includes(key)) {
delete this.hashCache[key]
}
}
}
}