-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathtemplates.go
64 lines (55 loc) · 1.35 KB
/
templates.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"io"
"text/template"
)
type TemplateContext struct {
ProjectName string
ProjectTarget string
SDKDir string
}
type Template interface {
Name() string
TargetName() string
Render(ctx *TemplateContext, wr io.Writer) error
}
var templates = []Template{
&tpl{
name: "build.xml.tpl",
target: "build.xml",
Template: template.Must(template.New("build.xml.tpl").
Parse(string(MustAsset("templates/build.xml.tpl")))),
},
&tpl{
name: "local.properties.tpl",
target: "local.properties",
Template: template.Must(template.New("local.properties.tpl").
Parse(string(MustAsset("templates/local.properties.tpl")))),
},
&tpl{
name: "project.properties.tpl",
target: "project.properties",
Template: template.Must(template.New("project.properties.tpl").
Parse(string(MustAsset("templates/project.properties.tpl")))),
},
&tpl{
name: "proguard-project.txt.tpl",
target: "proguard-project.txt",
Template: template.Must(template.New("proguard-project.txt.tpl").
Parse(string(MustAsset("templates/proguard-project.txt.tpl")))),
},
}
type tpl struct {
*template.Template
name string
target string
}
func (t *tpl) Name() string {
return t.name
}
func (t *tpl) TargetName() string {
return t.target
}
func (t *tpl) Render(ctx *TemplateContext, wr io.Writer) error {
return t.Template.Execute(wr, ctx)
}