-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathshim.go
311 lines (238 loc) · 6.41 KB
/
shim.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
package api
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"path"
"path/filepath"
"regexp"
"strings"
"github.com/project-flogo/cli/common"
"github.com/project-flogo/cli/util"
)
const (
fileShimSupportGo string = "shim_support.go"
fileShimGo string = "shim.go"
fileBuildGo string = "build.go"
fileMakefile string = "Makefile"
dirShim string = "shim"
)
var fileSampleShimSupport = filepath.Join("examples", "engine", "shim", fileShimSupportGo)
var flogoImportPattern = regexp.MustCompile(`^(([^ ]*)[ ]+)?([^@:]*)@?([^:]*)?:?(.*)?$`)
type ShimBuilder struct {
appBuilder common.Builder
shim string
}
func (sb *ShimBuilder) Build(project common.AppProject) error {
err := backupMain(project)
if err != nil {
return err
}
defer shimCleanup(project)
err = createShimSupportGoFile(project)
if err != nil {
return err
}
if Verbose() {
fmt.Println("Preparing shim...")
}
built, err := prepareShim(project, sb.shim)
if err != nil {
return err
}
if !built {
fmt.Println("Using go build to build shim...")
err := simpleGoBuild(project)
if err != nil {
return err
}
}
return nil
}
func prepareShim(project common.AppProject, shim string) (bool, error) {
buf, err := ioutil.ReadFile(filepath.Join(project.Dir(), fileFlogoJson))
if err != nil {
return false, err
}
flogoJSON := string(buf)
descriptor, err := util.ParseAppDescriptor(flogoJSON)
if err != nil {
return false, err
}
err = registerImports(project, descriptor)
if err != nil {
return false, err
}
for _, trgCfg := range descriptor.Triggers {
if trgCfg.Id == shim {
ref := trgCfg.Ref
if trgCfg.Ref != "" {
found := false
ref, found = GetAliasRef("flogo:trigger", trgCfg.Ref)
if !found {
return false, fmt.Errorf("unable to determine ref for trigger: %s", trgCfg.Id)
}
}
refImport, err := util.NewFlogoImportFromPath(ref)
if err != nil {
return false, err
}
impPath, err := project.GetPath(refImport)
if err != nil {
return false, err
}
var shimFilePath string
shimFilePath = filepath.Join(impPath, dirShim, fileShimGo)
if _, err := os.Stat(shimFilePath); err == nil {
err = util.CopyFile(shimFilePath, filepath.Join(project.SrcDir(), fileShimGo))
if err != nil {
return false, err
}
// Check if this shim based trigger has a gobuild file. If the trigger has a gobuild
// execute that file, otherwise check if there is a Makefile to execute
goBuildFilePath := filepath.Join(impPath, dirShim, fileBuildGo)
makefilePath := filepath.Join(shimFilePath, dirShim, fileMakefile)
if _, err := os.Stat(goBuildFilePath); err == nil {
fmt.Println("Using build.go to build shim......")
err = util.CopyFile(goBuildFilePath, filepath.Join(project.SrcDir(), fileBuildGo))
if err != nil {
return false, err
}
// Execute go run gobuild.go
err = util.ExecCmd(exec.Command("go", "run", fileBuildGo), project.SrcDir())
if err != nil {
return false, err
}
return true, nil
} else if _, err := os.Stat(makefilePath); err == nil {
//look for Makefile and execute it
fmt.Println("Using make file to build shim...")
err = util.CopyFile(makefilePath, filepath.Join(project.SrcDir(), fileMakefile))
if err != nil {
return false, err
}
if Verbose() {
fmt.Println("Make File:", makefilePath)
}
// Execute make
cmd := exec.Command("make", "-C", project.SrcDir())
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
cmd.Env = util.ReplaceEnvValue(os.Environ(), "GOPATH", project.Dir())
err = cmd.Run()
if err != nil {
return false, err
}
return true, nil
} else {
return false, nil
}
}
break
}
}
return false, fmt.Errorf("unable to to find shim trigger: %s", shim)
}
func shimCleanup(project common.AppProject) {
if Verbose() {
fmt.Println("Cleaning up shim support files...")
}
err := util.DeleteFile(filepath.Join(project.SrcDir(), fileShimSupportGo))
if err != nil {
fmt.Printf("Unable to delete: %s", fileShimSupportGo)
}
err = util.DeleteFile(filepath.Join(project.SrcDir(), fileShimGo))
if err != nil {
fmt.Printf("Unable to delete: %s", fileShimGo)
}
err = util.DeleteFile(filepath.Join(project.SrcDir(), fileBuildGo))
if err != nil {
fmt.Printf("Unable to delete: %s", fileBuildGo)
}
}
func createShimSupportGoFile(project common.AppProject) error {
shimSrcPath := filepath.Join(project.SrcDir(), fileShimSupportGo)
if Verbose() {
fmt.Println("Creating shim support files...")
}
flogoCoreImport, err := util.NewFlogoImportFromPath(flogoCoreRepo)
if err != nil {
return err
}
corePath, err := project.GetPath(flogoCoreImport)
if err != nil {
return err
}
bytes, err := ioutil.ReadFile(filepath.Join(corePath, fileSampleShimSupport))
if err != nil {
return err
}
err = ioutil.WriteFile(shimSrcPath, bytes, 0644)
if err != nil {
return err
}
return nil
}
func registerImports(project common.AppProject, appDesc *util.FlogoAppDescriptor) error {
for _, anImport := range appDesc.Imports {
err := registerImport(project, anImport)
if err != nil {
return err
}
}
return nil
}
func registerImport(project common.AppProject, anImport string) error {
matches := flogoImportPattern.FindStringSubmatch(anImport)
parts := strings.Split(matches[3], " ")
var alias string
var ref string
numParts := len(parts)
if numParts == 1 {
ref = parts[0]
alias = path.Base(ref)
} else if numParts == 2 {
alias = parts[0]
ref = parts[1]
} else {
return fmt.Errorf("invalid import %s", anImport)
}
if alias == "" || ref == "" {
return fmt.Errorf("invalid import %s", anImport)
}
ct, err := util.GetContribType(project.DepManager(), ref)
if err != nil {
return err
}
if ct != "" {
RegisterAlias(ct, alias, ref)
}
return nil
}
var aliases = make(map[string]map[string]string)
func RegisterAlias(contribType string, alias, ref string) {
aliasToRefMap, exists := aliases[contribType]
if !exists {
aliasToRefMap = make(map[string]string)
aliases[contribType] = aliasToRefMap
}
aliasToRefMap[alias] = ref
}
func GetAliasRef(contribType string, alias string) (string, bool) {
if alias == "" {
return "", false
}
if alias[0] == '#' {
alias = alias[1:]
}
aliasToRefMap, exists := aliases[contribType]
if !exists {
return "", false
}
ref, exists := aliasToRefMap[alias]
if !exists {
return "", false
}
return ref, true
}