forked from lmittmann/go-solc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparams_gen.go
More file actions
160 lines (135 loc) · 3.25 KB
/
Copy pathparams_gen.go
File metadata and controls
160 lines (135 loc) · 3.25 KB
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
//go:build ignore
package main
import (
"encoding/hex"
"encoding/json"
"fmt"
"net/http"
"os"
"slices"
"strings"
"text/template"
"github.com/lmittmann/go-solc/internal/version"
)
var (
solcBaseURL = "https://binaries.soliditylang.org/"
tmpl = template.Must(template.New("").Funcs(template.FuncMap{
"replaceAll": strings.ReplaceAll,
"last": func(s []*build) int { return len(s) - 1 },
}).Parse(tmplStr))
)
func main() {
targets := []*target{
{
BaseURL: solcBaseURL + "linux-amd64/",
Fn: "params_linux_amd64.go",
MinVersion: "0.4.10",
},
{
BaseURL: solcBaseURL + "macosx-amd64/",
Fn: "params_darwin_amd64.go",
MinVersion: "0.4.10",
},
{
BaseURL: solcBaseURL + "macosx-amd64/",
Fn: "params_darwin_arm64.go",
MinVersion: "0.4.10",
},
}
errCh := make(chan error)
for _, target := range targets {
target := target
go func() { errCh <- gen(target) }()
}
for i := 0; i < len(targets); i++ {
if err := <-errCh; err != nil {
fmt.Println(err)
}
}
}
func gen(target *target) error {
// fetch and decode list.json
resp, err := http.Get(target.BaseURL + "list.json")
if err != nil {
return err
}
defer resp.Body.Close()
var list struct {
Builds []*build `json:"builds"`
}
if err := json.NewDecoder(resp.Body).Decode(&list); err != nil {
return err
}
// open file
f, err := os.Create(target.Fn)
if err != nil {
return err
}
defer f.Close()
// execute template
model := &model{
Target: target,
Builds: slices.DeleteFunc(list.Builds, func(build *build) bool {
fmt.Println(build.Version, target.MinVersion)
return version.Compare(build.Version, target.MinVersion) < 0 || strings.Contains(build.LongVersion, "-pre")
}),
}
if err := tmpl.Execute(f, model); err != nil {
return err
}
return nil
}
type target struct {
BaseURL string
Fn string
MinVersion string
}
type build struct {
Path string `json:"path"`
Version string `json:"version"`
LongVersion string `json:"longVersion"`
Sha256 bytes32 `json:"sha256"`
}
// bytes32 is a byte array that is unmarshaled from a hexstring.
type bytes32 [32]byte
func (b *bytes32) UnmarshalText(text []byte) error {
if len(text) != 66 {
return fmt.Errorf("invalid hex string")
}
_, err := hex.Decode(b[:], text[2:])
return err
}
type model struct {
Target *target `json:"target"`
Builds []*build `json:"builds"`
}
const tmplStr = `// Code generated by "go generate"; DO NOT EDIT.
package solc
func init() {
solcBaseURL = "{{ .Target.BaseURL }}"
solcVersions = map[Version]solcVersion{
{{- range .Builds }}
{{ $version := (printf "Version%s:" (replaceAll .Version "." "_")) -}}
{{ printf "%-14s" $version }} {Sha256: [32]byte{
{{- range $i, $elem := .Sha256 -}}
{{- if $i }}, {{ end -}}
{{- printf "%#02v" $elem -}}
{{- end -}}
}, Path: "{{ .Path }}"},
{{- end }}
}
Versions = []Version{
{{- range .Builds }}
{{ printf "Version%s," (replaceAll .Version "." "_") }}
{{- end }}
}
}
const (
{{- range .Builds }}
{{ $version := (printf "%s" .Version) -}}
{{ printf "Version%-6s Version = %q" (replaceAll .Version "." "_") .Version }}
{{- end }}
// Latest version of solc.
VersionLatest = Version{{ replaceAll (index .Builds (last .Builds)).Version "." "_" }}
)
`