2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-12-20 01:55:57 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import solc from 'solc/browser-wrapper';
|
|
|
|
|
|
|
|
export default class SolidityUtils {
|
|
|
|
static compile (data, compiler) {
|
2017-02-10 18:26:52 +01:00
|
|
|
const { sourcecode, build, optimize, files, name = '' } = data;
|
2016-12-20 01:55:57 +01:00
|
|
|
|
|
|
|
const start = Date.now();
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
console.log('[solidity] compiling...');
|
|
|
|
|
|
|
|
const input = {
|
2017-02-10 18:26:52 +01:00
|
|
|
[ name ]: sourcecode
|
2016-12-20 01:55:57 +01:00
|
|
|
};
|
|
|
|
|
2016-12-20 02:37:16 +01:00
|
|
|
const findFiles = (path) => {
|
|
|
|
const file = files.find((f) => f.name === path);
|
|
|
|
|
|
|
|
if (file) {
|
|
|
|
return { contents: file.sourcecode };
|
|
|
|
} else {
|
|
|
|
return { error: 'File not found' };
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const compiled = compiler.compile({ sources: input }, optimize ? 1 : 0, findFiles);
|
2016-12-20 01:55:57 +01:00
|
|
|
|
|
|
|
const time = Math.round((Date.now() - start) / 100) / 10;
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
console.log(`[solidity] done compiling in ${time}s`);
|
|
|
|
|
|
|
|
compiled.version = build.longVersion;
|
|
|
|
compiled.sourcecode = sourcecode;
|
|
|
|
|
|
|
|
return compiled;
|
|
|
|
}
|
|
|
|
|
2017-03-11 15:25:45 +01:00
|
|
|
static getCompiler (build) {
|
2016-12-20 01:55:57 +01:00
|
|
|
const { longVersion, path } = build;
|
2017-05-05 10:00:16 +02:00
|
|
|
const URL = `https://cdn.rawgit.com/ethereum/solc-bin/gh-pages/bin/${path}`;
|
2017-03-11 15:25:45 +01:00
|
|
|
const isWorker = typeof window !== 'object';
|
2016-12-20 01:55:57 +01:00
|
|
|
|
2017-03-11 15:25:45 +01:00
|
|
|
return fetch(URL)
|
2016-12-20 01:55:57 +01:00
|
|
|
.then((r) => r.text())
|
|
|
|
.then((code) => {
|
|
|
|
// `window` for main thread, `self` for workers
|
|
|
|
const _self = isWorker ? self : window;
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
_self.Module = {};
|
|
|
|
|
|
|
|
const solcCode = code.replace('var Module;', `var Module=${isWorker ? 'self' : 'window'}.Module;`);
|
|
|
|
|
|
|
|
console.log(`[solidity] evaluating ${longVersion}`);
|
|
|
|
|
|
|
|
try {
|
|
|
|
// eslint-disable-next-line no-eval
|
|
|
|
eval(solcCode);
|
|
|
|
} catch (e) {
|
|
|
|
return Promise.reject(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`[solidity] done evaluating ${longVersion}`);
|
|
|
|
|
|
|
|
const compiler = solc(_self.Module);
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2016-12-20 01:55:57 +01:00
|
|
|
delete _self.Module;
|
|
|
|
|
|
|
|
return compiler;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|