This repository was archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathindex.ts
159 lines (144 loc) · 4.77 KB
/
index.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
/* eslint-env node, browser */
import path from "path";
import fs from "fs";
import semver from "semver";
import { StrategyOptions } from "./types";
import { Docker, Local, Native, VersionRange } from "./loadingStrategies";
const defaultSolcVersion = "0.5.16";
type CompilerSupplierConstructorArgs = {
events?: any;
solcConfig: {
version?: string;
docker?: boolean;
compilerRoots?: string[];
dockerTagsUrl?: string;
spawn?: any;
};
cache?: string;
};
type CompilerSupplierStrategy =
| Docker
| Native
| Local
| VersionRange
| undefined;
export class CompilerSupplier {
private version: string;
private docker?: boolean;
private strategyOptions: StrategyOptions;
constructor({ events, solcConfig, cache }: CompilerSupplierConstructorArgs) {
const { version, docker, compilerRoots, dockerTagsUrl, spawn } = solcConfig;
this.version = version ? version : defaultSolcVersion;
this.docker = docker;
this.strategyOptions = {};
if (version) this.strategyOptions.version = this.version;
if (dockerTagsUrl) this.strategyOptions.dockerTagsUrl = dockerTagsUrl;
if (compilerRoots) this.strategyOptions.compilerRoots = compilerRoots;
if (events) this.strategyOptions.events = events;
if (spawn) this.strategyOptions.spawn = spawn;
if (cache) this.strategyOptions.cache = cache;
}
getStrategy() {
const userSpecification = this.version;
let strategy: CompilerSupplierStrategy;
const useDocker = this.docker;
const useNative = userSpecification === "native";
let useSpecifiedLocal: boolean | string | undefined;
// don't attempt file system access in browser environment
if (typeof window === "undefined") {
useSpecifiedLocal =
userSpecification &&
(fs.existsSync(userSpecification) ||
path.isAbsolute(userSpecification));
}
const isValidVersionRange = semver.validRange(userSpecification);
if (useDocker) {
strategy = new Docker(this.strategyOptions);
} else if (useNative) {
strategy = new Native();
} else if (useSpecifiedLocal) {
strategy = new Local();
} else if (isValidVersionRange) {
strategy = new VersionRange(this.strategyOptions);
}
return {
strategy,
userSpecification
};
}
async loadSoljson() {
const { strategy, userSpecification } = this.getStrategy();
if (strategy) {
const soljson = await strategy.loadSoljson(userSpecification);
return { soljson };
} else {
throw new BadInputError(userSpecification);
}
}
async load() {
const { strategy, userSpecification } = this.getStrategy();
if (strategy) {
const solc = await strategy.load(userSpecification);
return { solc };
} else {
throw new BadInputError(userSpecification);
}
}
/**
* This function lists known solc versions, possibly asynchronously to
* account for APIs with paginated data (namely, Docker Hub)
*
* @return Promise<{
* prereleases: AsyncIterable<string>;
* releases: AsyncIterable<string>;
* latestRelease: string;
* }>
*/
async list() {
const userSpecification = this.version;
let strategy: Docker | Native | Local | VersionRange | undefined;
const useDocker = this.docker;
const useNative = userSpecification === "native";
const useSpecifiedLocal =
userSpecification &&
(fs.existsSync(userSpecification) || path.isAbsolute(userSpecification));
const isValidVersionRange =
semver.validRange(userSpecification) || userSpecification === "pragma";
if (useDocker) {
strategy = new Docker(this.strategyOptions);
} else if (useNative) {
strategy = new Native();
} else if (useSpecifiedLocal) {
strategy = new Local();
} else if (isValidVersionRange) {
strategy = new VersionRange(this.strategyOptions);
}
if (!strategy) {
throw new BadInputError(userSpecification);
}
if ("list" in strategy) {
return await strategy.list();
}
throw new StrategyCannotListVersionsError(strategy.constructor.name);
}
static getDefaultVersion() {
return defaultSolcVersion;
}
}
export class BadInputError extends Error {
constructor(input: string) {
const message =
`Could not find a compiler version matching ${input}. ` +
`compilers.solc.version option must be a string specifying:\n` +
` - a path to a locally installed solcjs\n` +
` - a solc version or range (ex: '0.4.22' or '^0.5.0')\n` +
` - a docker image name (ex: 'stable')\n` +
` - 'native' to use natively installed solc\n`;
super(message);
}
}
export class StrategyCannotListVersionsError extends Error {
constructor(strategyName: string) {
super(`Cannot list versions for strategy ${strategyName}`);
}
}