-
Notifications
You must be signed in to change notification settings - Fork 444
/
functions.go
106 lines (105 loc) · 2.55 KB
/
functions.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
package services
//import (
// "errors"
// "os"
// "os/exec"
// "path/filepath"
//
// "github.com/solo-io/gloo/test/helpers"
//
// "github.com/onsi/ginkgo"
//)
//
//type FunctionDiscoveryFactory struct {
// srcpath string
// funcDiscoveryPath string
// wasbuilt bool
//}
//
//type FunctionDiscoveryInstance struct {
// funcDiscoveryPath string
// srcpath string
// cmd *exec.Cmd
//}
//
//func NewFunctionDiscoveryFactory() (*FunctionDiscoveryFactory, error) {
// funcDiscoveryPath := os.Getenv("FUNC_DISCOVERY_BINARY")
//
// if funcDiscoveryPath != "" {
// return &FunctionDiscoveryFactory{
// funcDiscoveryPath: funcDiscoveryPath,
// }, nil
// }
// srcpath := filepath.Join(helpers.GlooSoloDirectory(), "cmd", "function-discovery")
// funcDiscoveryPath = filepath.Join(srcpath, "gloo-function-discovery")
// gf := &FunctionDiscoveryFactory{
// srcpath: srcpath,
// funcDiscoveryPath: funcDiscoveryPath,
// }
// gf.build()
// return gf, nil
//}
//
//func (fdf *FunctionDiscoveryFactory) build() error {
// if fdf.srcpath == "" {
// if fdf.funcDiscoveryPath == "" {
// return errors.New("can't build funcDiscovery and none provided")
// }
// return nil
// }
// fdf.wasbuilt = true
//
// cmd := exec.Command("go", "build", "-v", "-i", "-gcflags", "-N -l", "-o", "gloo-function-discovery", "main.go")
// cmd.Dir = fdf.srcpath
// cmd.Stdout = ginkgo.GinkgoWriter
// cmd.Stderr = ginkgo.GinkgoWriter
// if err := cmd.Run(); err != nil {
// return err
// }
// return nil
//}
//
//func (fdf *FunctionDiscoveryFactory) NewFunctionDiscoveryInstance() (*FunctionDiscoveryInstance, error) {
//
// fdi := &FunctionDiscoveryInstance{
// funcDiscoveryPath: fdf.funcDiscoveryPath,
// srcpath: fdf.srcpath,
// }
//
// return fdi, nil
//}
//
//func (fdf *FunctionDiscoveryFactory) Clean() error {
// return nil
//}
//
//func (fdi *FunctionDiscoveryInstance) Run(datadir string) error {
//
// cmd := exec.Command(fdi.funcDiscoveryPath,
// "--storage.type=file",
// "--storage.refreshrate=1s",
// "--secrets.type=file",
// "--secrets.refreshrate=1s",
// "--files.type=file",
// "--files.refreshrate=1s",
// )
//
// cmd.Dir = datadir
// cmd.Stdout = ginkgo.GinkgoWriter
// cmd.Stderr = ginkgo.GinkgoWriter
// runner := Runner{Sourcepath: fdi.srcpath, ComponentName: "FUNCTION_DISCOVERY"}
// cmd, err := runner.run(cmd)
// if err != nil {
// return err
// }
// fdi.cmd = cmd
// return nil
//}
//
//func (fdi *FunctionDiscoveryInstance) Clean() error {
// if fdi.cmd != nil {
// fdi.cmd.Process.Kill()
// fdi.cmd.Wait()
// }
// return nil
//}