From 0a620169350c4b5a3c78e15ed75ca2b4c8b2100a Mon Sep 17 00:00:00 2001 From: Aniket-Engg Date: Wed, 28 Sep 2022 15:08:09 +0530 Subject: [PATCH] remove previous build file --- .../src/lib/compiler-metadata.ts | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/libs/remix-core-plugin/src/lib/compiler-metadata.ts b/libs/remix-core-plugin/src/lib/compiler-metadata.ts index 403c22b90b..d47fd62ab8 100644 --- a/libs/remix-core-plugin/src/lib/compiler-metadata.ts +++ b/libs/remix-core-plugin/src/lib/compiler-metadata.ts @@ -13,10 +13,12 @@ const profile = { export class CompilerMetadata extends Plugin { networks: string[] innerPath: string + buildInfoNames: Record constructor () { super(profile) this.networks = ['VM:-', 'main:1', 'ropsten:3', 'rinkeby:4', 'kovan:42', 'goerli:5', 'Custom'] this.innerPath = 'artifacts' + this.buildInfoNames = {} } _JSONFileName (path, contractName) { @@ -33,7 +35,7 @@ export class CompilerMetadata extends Plugin { if (!await this.call('settings', 'get', 'settings/generate-contract-metadata')) return const compiler = new CompilerAbstract(languageVersion, data, source, input) const path = self._extractPathOf(source.target) - await this.setBuildInfo(version, input, data, path) + await this.setBuildInfo(version, input, data, path, file) compiler.visitContracts((contract) => { if (contract.file !== source.target) return (async () => { @@ -45,7 +47,7 @@ export class CompilerMetadata extends Plugin { }) } - async setBuildInfo (version, input, output, path) { + async setBuildInfo (version, input, output, path, filePath) { input = JSON.parse(input) const solcLongVersion = version.replace('.Emscripten.clang', '') const solcVersion = solcLongVersion.substring(0, solcLongVersion.indexOf('+commit')) @@ -58,8 +60,16 @@ export class CompilerMetadata extends Plugin { }) const id = createHash('md5').update(Buffer.from(json)).digest().toString('hex') const buildFilename = this.joinPath(path, this.innerPath, 'build-info/' + id + '.json') - const buildData = {id, _format: format, solcVersion, solcLongVersion, input, output} - await this.call('fileManager', 'writeFile', buildFilename, JSON.stringify(buildData, null, '\t')) + if (!this.buildInfoNames[filePath]) { + this.buildInfoNames[filePath] = buildFilename + const buildData = {id, _format: format, solcVersion, solcLongVersion, input, output} + await this.call('fileManager', 'writeFile', buildFilename, JSON.stringify(buildData, null, '\t')) + } else if (this.buildInfoNames[filePath] && this.buildInfoNames[filePath] !== buildFilename) { + await this.call('fileManager', 'remove', this.buildInfoNames[filePath]) + this.buildInfoNames[filePath] = buildFilename + const buildData = {id, _format: format, solcVersion, solcLongVersion, input, output} + await this.call('fileManager', 'writeFile', buildFilename, JSON.stringify(buildData, null, '\t')) + } } _extractPathOf (file) {