Basic inline codegen

This commit is contained in:
Łukasz Magiera 2021-10-11 22:25:41 +02:00
parent 67bdc266af
commit ddef708178
3 changed files with 110 additions and 0 deletions

View File

@ -28,8 +28,16 @@ const UnixfsLinksPerLevel = 1024
const AllowableClockDriftSecs = uint64(1) const AllowableClockDriftSecs = uint64(1)
// TODO: This is still terrible...What's the impact of updating this before mainnet actually upgrades // TODO: This is still terrible...What's the impact of updating this before mainnet actually upgrades
/* inline-gen template
const NewestNetworkVersion = network.Version{{.latestNetworkVersion}}
inline-gen start */
const NewestNetworkVersion = network.Version14 const NewestNetworkVersion = network.Version14
//inline-gen end
// Epochs // Epochs
const ForkLengthThreshold = Finality const ForkLengthThreshold = Finality

95
gen/inline-gen/main.go Normal file
View File

@ -0,0 +1,95 @@
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/fs"
"io/ioutil"
"os"
"path/filepath"
"strings"
"text/template"
)
const (
stateGlobal = iota
stateTemplate
stateGen
)
func main() {
db, err := ioutil.ReadFile(os.Args[2])
if err != nil {
panic(err)
}
var data map[string]interface{}
if err := json.Unmarshal(db, &data); err != nil {
panic(err)
}
err = filepath.WalkDir(os.Args[1], func(path string, d fs.DirEntry, err error) error {
if d.IsDir() {
return nil
}
if filepath.Ext(path) != ".go" {
return nil
}
fb, err := ioutil.ReadFile(path)
if err != nil {
return err
}
lines := strings.Split(string(fb), "\n")
outLines := make([]string, 0, len(lines))
var templateLines []string
state := stateGlobal
for i, line := range lines {
ln := i+1
switch state {
case stateGlobal:
outLines = append(outLines, line)
if line == `/* inline-gen template` {
state = stateTemplate
fmt.Printf("template section start %s:%d\n", path, ln)
}
case stateTemplate:
outLines = append(outLines, line) // output all template lines
if line == `inline-gen start */` {
state = stateGen
fmt.Printf("generated section start %s:%d\n", path, ln)
continue
}
templateLines = append(templateLines, line)
case stateGen:
if line != `//inline-gen end` {
continue
}
state = stateGlobal
fmt.Printf("inline gen:\n")
fmt.Println(strings.Join(templateLines, "\n"))
tpl, err := template.New("").Parse(strings.Join(templateLines, "\n"))
if err != nil {
fmt.Printf("%s:%d: parsing template: %s\n", path, ln, err)
os.Exit(1)
}
var b bytes.Buffer
err = tpl.Execute(&b, data)
outLines = append(outLines, strings.Split(b.String(), "\n")...)
fmt.Println("inline gen-ed:\n", b.String())
outLines = append(outLines, line)
}
}
return nil
})
if err != nil {
panic(err)
}
}

7
gen/inlinegen-data.json Normal file
View File

@ -0,0 +1,7 @@
{
"actorVersions": [0, 2, 3, 4, 5, 6],
"latestActorsVersion": 6,
"networkVersions": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
"latestNetworkVersion": 14
}