forked from ethereum/solc-bin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update
executable file
·418 lines (361 loc) · 13.2 KB
/
update
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#!/usr/bin/env node
'use strict'
const fs = require('fs')
const util = require('util')
const path = require('path')
const semver = require('semver')
const ethUtil = require('ethereumjs-util')
const ipfsImporter = require('ipfs-unixfs-importer')
const IPLD = require('ipld')
const inMemory = require('ipld-in-memory')
const swarmhash = require('swarmhash')
// This script updates the index files list.js and list.txt in the directories containing binaries,
// as well as the 'latest' and 'nightly' symlinks/files.
const ipfsHash = async (content) => {
const iterator = ipfsImporter.importer([{ content }], await inMemory(IPLD), { onlyHash: true })
const { value, done } = await iterator.next()
if (done) {
throw new Error('Failed to calculate an IPFS hash.')
}
await iterator.return()
return value.cid.toString()
}
function generateLegacyListJS (builds, releases) {
return `
var soljsonSources = ${JSON.stringify(builds, null, 2)};
var soljsonReleases = ${JSON.stringify(releases, null, 2)};
if (typeof(module) !== 'undefined')
module.exports = {
'allVersions': soljsonSources,
'releases': soljsonReleases
};
`
}
function updateSymlinkSync (linkPathRelativeToRoot, targetRelativeToLink) {
const absoluteLinkPath = path.join(__dirname, linkPathRelativeToRoot)
let linkString
try {
linkString = fs.readlinkSync(absoluteLinkPath)
if (targetRelativeToLink !== linkString) {
fs.unlinkSync(absoluteLinkPath)
console.log('Removed link ' + linkPathRelativeToRoot + ' -> ' + linkString)
}
} catch (err) {
if (err.code !== 'ENOENT') {
throw err
}
}
if (targetRelativeToLink !== linkString) {
fs.symlinkSync(targetRelativeToLink, absoluteLinkPath, 'file')
console.log('Created link ' + linkPathRelativeToRoot + ' -> ' + targetRelativeToLink)
}
}
function updateCopy (srcRelativeToRoot, destRelativeToRoot) {
fs.readFile(path.join(__dirname, srcRelativeToRoot), function (err, data) {
if (err) {
throw err
}
const absoluteDest = path.join(__dirname, destRelativeToRoot)
fs.stat(absoluteDest, function (err, stats) {
if (err && err.code !== 'ENOENT') {
throw err
}
// If the target is a symlink, we want to replace it with a copy rather than overwrite the file it links to
if (!err && stats.isSymbolicLink()) {
fs.unlinkSync(absoluteDest)
}
fs.writeFile(absoluteDest, data, function (err) {
if (err) {
throw err
}
console.log('Updated ' + destRelativeToRoot)
})
})
})
}
function deleteIfExists (filePathRelativeToRoot) {
const absoluteFilePath = path.join(__dirname, filePathRelativeToRoot)
fs.lstat(absoluteFilePath, function (err, stats) {
if (err && err.code !== 'ENOENT') {
throw err
}
if (!err) {
console.log('Deleted ' + filePathRelativeToRoot)
fs.unlinkSync(absoluteFilePath)
}
})
}
function buildVersion (build) {
let version = build.version
if (build.prerelease && build.prerelease.length > 0) {
version += '-' + build.prerelease
}
if (build.build && build.build.length > 0) {
version += '+' + build.build
}
return version
}
async function makeEntry (dir, parsedFileName, oldList) {
const pathRelativeToRoot = path.join(dir, parsedFileName[0])
const absolutePath = path.join(__dirname, pathRelativeToRoot)
const build = {
path: parsedFileName[0],
version: parsedFileName[1],
prerelease: parsedFileName[3],
build: parsedFileName[5]
}
build.longVersion = buildVersion(build)
if (oldList) {
const entries = oldList.builds.filter(entry => (entry.path === parsedFileName[0]))
if (entries) {
if (entries.length >= 2) {
throw Error("Found multiple list.json entries for binary '" + pathRelativeToRoot + "'")
} else if (entries.length === 1) {
build.keccak256 = entries[0].keccak256
build.sha256 = entries[0].sha256
build.urls = entries[0].urls
}
}
}
if (!build.sha256 || !build.keccak256 || !build.urls || build.urls.length !== 2) {
const readFile = util.promisify(fs.readFile)
const fileContent = await readFile(absolutePath)
build.keccak256 = '0x' + ethUtil.keccak(fileContent).toString('hex')
console.log("Computing hashes of '" + pathRelativeToRoot + "'")
build.sha256 = '0x' + ethUtil.sha256(fileContent).toString('hex')
build.urls = [
'bzzr://' + swarmhash(fileContent).toString('hex'),
'dweb:/ipfs/' + await ipfsHash(fileContent)
]
}
return build
}
async function batchedAsyncMap (values, batchSize, asyncMapFunction) {
if (batchSize === null) {
batchSize = values.length
}
let results = []
for (let i = 0; i < values.length; i += batchSize) {
results = results.concat(await Promise.all(values.slice(i, i + batchSize).map(asyncMapFunction)))
}
return results
}
function processDir (dir, options, listCallback) {
fs.readdir(path.join(__dirname, dir), { withFileTypes: true }, async function (err, files) {
if (err) {
throw err
}
let oldList
if (options.reuseHashes) {
try {
oldList = JSON.parse(fs.readFileSync(path.join(__dirname, dir, '/list.json')))
} catch (err) {
// Not being able to read the existing list is not a critical error.
// We'll just recreate it from scratch.
}
}
const binaryPrefix = (dir === '/bin' || dir === '/wasm' ? 'soljson' : 'solc-' + dir.slice(1))
const binaryExtensions = {
'/bin': ['.js'],
'/wasm': ['.js'],
'/emscripten-asmjs': ['.js'],
'/emscripten-wasm32': ['.js'],
'/windows-amd64': ['.zip', '.exe'],
'/linux-amd64': [''],
'/macosx-amd64': ['']
}[dir] || ''
// ascending list (oldest version first)
const parsedFileNames = files
.filter(function (file) {
// Skip symbolic links with less then 8 characters in the commit hash.
// They exist only for backwards-compatibilty and should not be on the list.
return dir !== '/bin' ||
!file.isSymbolicLink() ||
file.name.match(/^.+\+commit\.[0-9a-f]{8,}\.js$/)
})
.map(function (file) { return file.name })
.map(function (binaryName) {
const escapedExtensions = binaryExtensions.map(function (binaryExtension) {
return binaryExtension.replace('.', '\\.')
})
return binaryName.match(new RegExp('^' + binaryPrefix + '-v([0-9.]*)(-([^+]*))?(\\+(.*))?(' + escapedExtensions.join('|') + ')$'))
})
.filter(function (matchResult) { return matchResult !== null })
const parsedList = (await batchedAsyncMap(parsedFileNames, options.maxFilesPerBatch, async function (matchResult) {
return await makeEntry(dir, matchResult, oldList)
}))
.sort(function (a, b) {
if (a.longVersion === b.longVersion) {
return 0
}
// NOTE: a vs. b (the order is important), because we want oldest first on parsedList.
// NOTE: If semver considers two versions equal we don't have enough info to say which came earlier
// so we don't care about their relative order as long as it's deterministic.
return semver.compare(a.longVersion, b.longVersion) || (a.longVersion > b.longVersion ? -1 : 1)
})
// When the list is ready, let the callback process it
if (listCallback !== undefined) {
listCallback(parsedList)
}
// descending list
const releases = parsedList
.slice()
.reverse()
.reduce(function (prev, next) {
if (next.prerelease === undefined) {
prev[next.version] = next.path
}
return prev
}, {})
// descending list
const buildNames = parsedList
.slice()
.reverse()
.map(function (listEntry) { return listEntry.path })
const latestRelease = parsedList
.slice()
.reverse()
.filter(function (listEntry) {
if (listEntry.prerelease === undefined) {
return listEntry
}
return undefined
})
.map(function (listEntry) {
return listEntry.version
})[0]
// latest build (nightly)
const latestBuildFile = buildNames[0]
// latest release
const latestReleaseFile = releases[latestRelease]
// Write list.txt
// A descending list of file names.
fs.writeFile(path.join(__dirname, dir, '/list.txt'), buildNames.join('\n'), function (err) {
if (err) {
throw err
}
console.log('Updated ' + dir + '/list.txt')
})
// Write bin/list.json
// Ascending list of builds and descending map of releases.
fs.writeFile(path.join(__dirname, dir, '/list.json'), JSON.stringify({ builds: parsedList, releases: releases, latestRelease: latestRelease }, null, 2), function (err) {
if (err) {
throw err
}
console.log('Updated ' + dir + '/list.json')
})
// Write bin/list.js
// Descending list of build filenames and descending map of releases.
fs.writeFile(path.join(__dirname, dir, '/list.js'), generateLegacyListJS(buildNames, releases), function (err) {
if (err) {
throw err
}
console.log('Updated ' + dir + '/list.js')
})
// Update 'latest' symlink (except for wasm/ where the link is hard-coded to point at the one in bin/).
// bin/ is a special case because we need to keep a copy rather than a symlink. The reason is that
// some tools (in particular solc-js) have hard-coded github download URLs to it and can't handle symlinks.
if (dir !== '/wasm') {
const releaseExtension = binaryExtensions.find(function (extension) { return latestReleaseFile.endsWith(extension) })
binaryExtensions.forEach(function (extension) {
if (extension !== releaseExtension) {
deleteIfExists(path.join(dir, binaryPrefix + '-latest' + extension))
}
})
if (dir === '/bin') {
updateCopy(path.join(dir, latestReleaseFile), path.join(dir, binaryPrefix + '-latest' + releaseExtension))
} else {
updateSymlinkSync(path.join(dir, binaryPrefix + '-latest' + releaseExtension), latestReleaseFile)
}
}
// Update 'nightly' symlink in bin/ (we don't have nightlies for other platforms)
if (dir === '/bin') {
const nightlyExtension = binaryExtensions.find(function (extension) { return latestBuildFile.endsWith(extension) })
binaryExtensions.forEach(function (extension) {
if (extension !== nightlyExtension) {
deleteIfExists(path.join(dir, binaryPrefix + '-latest' + extension))
}
})
updateSymlinkSync(path.join(dir, binaryPrefix + '-nightly' + nightlyExtension), latestBuildFile)
}
})
}
function parseCommandLine () {
let reuseHashes
let maxFilesPerBatch
for (let i = 2; i < process.argv.length; ++i) {
if (process.argv[i] === '--reuse-hashes') {
reuseHashes = true
} else if (process.argv[i] === '--max-files-per-batch') {
if (i + 1 >= process.argv.length) {
console.error('Expected an integer argument after --max-files-per-batch.')
process.exit(1)
}
maxFilesPerBatch = parseInt(process.argv[i + 1], 10)
if (isNaN(maxFilesPerBatch) || maxFilesPerBatch <= 0) {
console.error("Expected the argument of --max-files-per-batch to be a positive integer, got '" + process.argv[i + 1] + "'.")
process.exit(1)
}
++i
} else {
console.error("Invalid option: '" + process.argv[i] + "'.")
process.exit(1)
}
}
// Defaults
if (reuseHashes === undefined) {
reuseHashes = false
}
if (maxFilesPerBatch === undefined) {
maxFilesPerBatch = null // no limit
}
return {
reuseHashes: reuseHashes,
maxFilesPerBatch: maxFilesPerBatch
}
}
const DIRS = [
'/bin',
'/linux-amd64',
'/macosx-amd64',
'/windows-amd64'
]
const options = parseCommandLine()
DIRS.forEach(function (dir) {
if (dir !== '/bin') {
processDir(dir, options)
} else {
processDir(dir, options, function (parsedList) {
// Any new releases added to bin/ need to be linked in other directories before we can start processing them.
parsedList.forEach(function (release) {
if (release.prerelease === undefined) {
// Starting with 0.6.2 we no longer build asm.js releases and the new builds added to bin/ are all wasm.
if (semver.gt(release.version, '0.6.1')) {
updateSymlinkSync(
path.join('/wasm', release.path),
path.join('..', 'bin', release.path)
)
} else {
updateSymlinkSync(
path.join('/emscripten-asmjs', 'solc-emscripten-asmjs-v' + release.longVersion + '.js'),
path.join('..', 'bin', release.path)
)
}
}
})
processDir('/emscripten-asmjs', options)
processDir('/wasm', options, function (parsedList) {
// Any new releases added to wasm/ need to be linked in emscripten-wasm32/ first.
parsedList.forEach(function (release) {
if (release.prerelease === undefined) {
updateSymlinkSync(
path.join('/emscripten-wasm32', 'solc-emscripten-wasm32-v' + release.longVersion + '.js'),
path.join('..', 'wasm', release.path)
)
}
})
processDir('/emscripten-wasm32', options)
})
})
}
})