hatmill/internal/codegen/codegen.go

192 lines
4.2 KiB
Go
Raw Normal View History

2019-03-24 19:28:36 +00:00
package main
import (
"bytes"
2019-04-09 04:10:02 +00:00
"encoding/json"
"flag"
2019-03-24 19:28:36 +00:00
"fmt"
"go/format"
"io/ioutil"
"log"
"strings"
)
const headerFmt = `// GENERATED BY gitlab.codemonkeysoftware.net/b/hatmill/internal/codegen
// DO NOT EDIT!
2019-03-24 19:28:36 +00:00
package %s
import "gitlab.codemonkeysoftware.net/b/hatmill"
`
2019-03-24 19:28:36 +00:00
func identifier(s string) string {
words := strings.Split(s, "-")
for i, word := range words {
words[i] = strings.Title(word)
}
return strings.Join(words, "")
}
func fileHeader(packageName string) string {
2019-04-09 04:10:02 +00:00
return fmt.Sprintf(headerFmt, packageName)
}
2019-03-24 19:28:36 +00:00
type AttribType int
const (
2019-04-09 04:10:02 +00:00
String AttribType = iota
Bool
)
func (t *AttribType) UnmarshalJSON(data []byte) error {
2019-04-09 04:10:02 +00:00
if string(data) == "null" {
return nil
}
var typeName string
err := json.Unmarshal(data, &typeName)
if err != nil {
return fmt.Errorf("type property must be a string")
}
switch typeName {
case "bool":
*t = Bool
case "string":
*t = String
default:
return fmt.Errorf("unrecognized attribute type %s", typeName)
}
return nil
2019-03-24 19:28:36 +00:00
}
type AttribDef struct {
2019-04-09 04:10:02 +00:00
Name string `json:"name"`
Type AttribType `json:"type"`
}
2019-03-24 19:28:36 +00:00
func (def AttribDef) Generate() string {
2019-04-09 04:10:02 +00:00
const (
2019-03-24 19:28:36 +00:00
boolType = "bool"
stringType = "string"
2019-03-25 02:35:40 +00:00
stringTemplate = `// %[1]s creates a "%[2]s" attribute
func %[1]s(value string) hatmill.Attrib {
return hatmill.Attrib{
Key: "%[2]s",
2019-03-24 19:28:36 +00:00
Value: value,
}
}
`
2019-03-25 02:35:40 +00:00
boolTemplate = `// %[1]s creates a "%[2]s" attribute
func %[1]s() hatmill.Attrib {
return hatmill.Attrib{
Key: "%[2]s",
2019-03-24 19:28:36 +00:00
}
}
`
)
2019-04-09 04:10:02 +00:00
var template string
switch def.Type {
case Bool:
template = boolTemplate
case String:
template = stringTemplate
default:
panic(fmt.Errorf("unknown attribute type: %v", def.Type))
}
return fmt.Sprintf(template, identifier(def.Name), def.Name)
}
type ElemDef struct {
2019-04-09 04:10:02 +00:00
Name string `json:"name"`
Void bool `json:"void"`
}
func (def ElemDef) Generate() string {
2019-04-09 04:10:02 +00:00
const (
parentTemplate = `// %[1]s creates a <%[2]s> element.
func %[1]s(attribs ...hatmill.Attrib) func(children ...hatmill.Term) hatmill.ParentElement {
return func(children ...hatmill.Term) hatmill.ParentElement {
return hatmill.ParentElement{
VoidElement: hatmill.VoidElement{
TagName: "%[2]s",
Attribs: attribs,
},
Children: children,
}
}
}
`
2019-04-09 04:10:02 +00:00
voidTemplate = `// %[1]s creates a <%[2]s> element.
func %[1]s(attribs ...hatmill.Attrib) hatmill.VoidElement {
return hatmill.VoidElement{
TagName: "%[2]s",
Attribs: attribs,
}
}
`
2019-04-09 04:10:02 +00:00
)
2019-04-09 04:10:02 +00:00
template := parentTemplate
if def.Void {
template = voidTemplate
}
return fmt.Sprintf(template, identifier(def.Name), def.Name)
}
type Defs struct {
2019-04-09 04:10:02 +00:00
Attributes []AttribDef `json:"attributes"`
Elements []ElemDef `json:"elements"`
2019-03-24 19:28:36 +00:00
}
2019-04-03 03:42:16 +00:00
func writeFormatted(fileName, packageName string, writeDefs func(*bytes.Buffer)) error {
src := new(bytes.Buffer)
src.WriteString(fileHeader(packageName))
writeDefs(src)
formatted, err := format.Source(src.Bytes())
if err != nil {
return err
}
return ioutil.WriteFile(fileName, formatted, 0644)
}
2019-03-24 19:28:36 +00:00
func main() {
2019-04-09 04:10:02 +00:00
inputPath := flag.String("input", "", "JSON input file")
2019-04-03 03:42:16 +00:00
elemPath := flag.String("elemfile", "", "generated element .go file")
elemPkg := flag.String("elempkg", "", "generated element package name")
attribPath := flag.String("attribfile", "", "generated attribute .go file")
attribPkg := flag.String("attribpkg", "", "generated attribute package name")
2019-04-09 04:10:02 +00:00
flag.Parse()
2019-04-09 04:10:02 +00:00
input, err := ioutil.ReadFile(*inputPath)
if err != nil {
log.Fatal(err)
}
2019-04-09 04:10:02 +00:00
var defs Defs
err = json.Unmarshal(input, &defs)
if err != nil {
log.Fatal(err)
}
2019-04-03 03:42:16 +00:00
err = writeFormatted(*attribPath, *attribPkg, func(buf *bytes.Buffer) {
for _, attribDef := range defs.Attributes {
2019-04-09 04:10:02 +00:00
buf.WriteString(attribDef.Generate())
}
2019-04-03 03:42:16 +00:00
})
if err != nil {
log.Fatal(err)
}
err = writeFormatted(*elemPath, *elemPkg, func(buf *bytes.Buffer) {
for _, elemDef := range defs.Elements {
2019-04-09 04:10:02 +00:00
buf.WriteString(elemDef.Generate())
}
2019-04-03 03:42:16 +00:00
})
if err != nil {
log.Fatal(err)
}
2019-03-24 19:28:36 +00:00
}