Skip to content

Commit

Permalink
Merge pull request #227 from goccy/feature/generate-vm-source
Browse files Browse the repository at this point in the history
Generate VM source
  • Loading branch information
goccy committed May 19, 2021
2 parents 761b608 + 70b93d8 commit d3951e3
Show file tree
Hide file tree
Showing 6 changed files with 5,029 additions and 0 deletions.
32 changes: 32 additions & 0 deletions internal/cmd/generator/main.go
Expand Up @@ -4,6 +4,9 @@ import (
"bytes"
"fmt"
"go/format"
"go/parser"
"go/printer"
"go/token"
"io/ioutil"
"path/filepath"
"runtime"
Expand Down Expand Up @@ -273,6 +276,32 @@ func (t OpType) FieldToOmitEmptyField() OpType {
return ioutil.WriteFile(path, buf, 0644)
}

func generateVM() error {
file, err := ioutil.ReadFile("vm.go.tmpl")
if err != nil {
return err
}
fset := token.NewFileSet()
f, err := parser.ParseFile(fset, "", string(file), parser.ParseComments)
if err != nil {
return err
}
for _, pkg := range []string{"vm", "vm_indent", "vm_escaped", "vm_escaped_indent"} {
f.Name.Name = pkg
var buf bytes.Buffer
printer.Fprint(&buf, fset, f)
path := filepath.Join(repoRoot(), "internal", "encoder", pkg, "vm.go")
source, err := format.Source(buf.Bytes())
if err != nil {
return err
}
if err := ioutil.WriteFile(path, source, 0644); err != nil {
return err
}
}
return nil
}

func repoRoot() string {
_, file, _, _ := runtime.Caller(0)
relativePathFromRepoRoot := filepath.Join("internal", "cmd", "generator")
Expand All @@ -281,6 +310,9 @@ func repoRoot() string {

//go:generate go run main.go
func main() {
if err := generateVM(); err != nil {
panic(err)
}
if err := _main(); err != nil {
panic(err)
}
Expand Down

0 comments on commit d3951e3

Please sign in to comment.