-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
117 lines (96 loc) · 2.82 KB
/
Copy pathmain.go
File metadata and controls
117 lines (96 loc) · 2.82 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
// Copyright 2023 amanofbits
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"flag"
"fmt"
"log"
"os"
"path/filepath"
"strings"
"github.com/amanofbits/simser/internal/generator"
myParser "github.com/amanofbits/simser/internal/parser"
)
type config struct {
targetFile string
rawTypes string
outputFile string
readFnName string
writeFnName string
}
func getConfig() (c config, err error) {
c.targetFile = os.Getenv("GOFILE")
c.targetFile, err = filepath.Abs(c.targetFile)
if err != nil {
return c, err
}
log.Printf("Target file: %s", c.targetFile)
fi, err := os.Stat(c.targetFile)
if err != nil {
return c, fmt.Errorf("target file error, %w", err)
}
if !fi.Mode().IsRegular() {
return c, fmt.Errorf("target file is not a regular file")
}
flag.StringVar(&c.rawTypes, "types", "", "comma-separated struct types to use")
flag.StringVar(&c.outputFile, "output", "", "name of output file")
flag.StringVar(&c.readFnName, "read-fn-name", "LoadFrom", "name of deserializing (read) function")
flag.StringVar(&c.writeFnName, "write-fn-name", "SaveTo", "name of serializing (write) function")
flag.Parse()
if c.outputFile == "" {
c.outputFile = fmt.Sprintf("%s.simser.go", strings.TrimSuffix(c.targetFile, ".go"))
}
return c, nil
}
func main() {
cfg, err := getConfig()
if err != nil {
log.Fatal(err)
}
acceptor, err := newTypeAcceptor(strings.Split(cfg.rawTypes, ","))
if err != nil {
log.Fatal(err)
}
file, err := myParser.Parse(cfg.targetFile)
if err != nil {
log.Fatal(err)
}
inputStructs, err := file.GetInputStructs(acceptor)
if err != nil {
log.Fatal(err)
}
output := generator.NewOutput(file.Pkg)
for _, s := range inputStructs {
log.Printf("Processing %s...", s.Name())
if err := generator.GenStructCode(s, output, cfg.readFnName, cfg.writeFnName); err != nil {
log.Fatal(err)
}
log.Print("Done.")
}
if err := writeOutputFile(output, cfg.outputFile); err != nil {
log.Fatal(err)
}
}
func writeOutputFile(output *generator.Output, filename string) error {
file, err := os.Create(filename)
if err != nil {
return fmt.Errorf("failed to create output file, %w", err)
}
defer file.Close()
if _, err := output.WriteTo(file); err != nil {
return fmt.Errorf("failed to write outpput file, %w", err)
}
log.Print("Target file written")
return nil
}