-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.go
49 lines (42 loc) · 895 Bytes
/
template.go
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
package main
import (
"os"
"strings"
"text/template"
)
func createTemplate(tmplStr, fileName, pkgName, funcName, inputType string) func() {
tmpl, err := template.New(``).Parse(tmplStr)
if err != nil {
panic(err)
}
inputCode, inputLen, imprts := getInputCode(inputType)
var fuzzFile *os.File
if strings.Contains(fileName, `*`) {
fuzzFile, err = os.CreateTemp(`.`, fileName)
} else {
fuzzFile, err = os.OpenFile(fileName, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0o644)
}
if err != nil {
panic(err)
}
defer fuzzFile.Close()
cleanup := func() {
if !*keepFile {
_ = os.Remove(fuzzFile.Name())
}
}
err = tmpl.Execute(fuzzFile, tmplData{
PkgName: pkgName,
Imports: imprts,
FuncName: funcName,
CorpusDir: *corpusDir,
InputType: inputType,
InputCode: inputCode,
InputLen: inputLen,
})
if err != nil {
cleanup()
panic(err)
}
return cleanup
}