210 lines
5.8 KiB
Go
210 lines
5.8 KiB
Go
package watcher
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"github.com/tockins/realize/style"
|
|
cli "gopkg.in/urfave/cli.v2"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
"path/filepath"
|
|
)
|
|
|
|
// Run launches the toolchain for each project
|
|
func (h *Blueprint) Run(p *cli.Context) error {
|
|
err := h.check()
|
|
if err == nil {
|
|
// loop projects
|
|
if p.String("name") != "" {
|
|
wg.Add(1)
|
|
} else {
|
|
wg.Add(len(h.Projects))
|
|
}
|
|
for k, element := range h.Projects {
|
|
if p.String("name") != "" && h.Projects[k].Name != p.String("name") {
|
|
continue
|
|
}
|
|
if element.Cmds.Fmt {
|
|
h.Projects[k].tools.Fmt = tool{
|
|
status: &h.Projects[k].Cmds.Fmt,
|
|
cmd: "go",
|
|
options: []string{"fmt"},
|
|
name: "Go Fmt",
|
|
}
|
|
}
|
|
if element.Cmds.Generate {
|
|
h.Projects[k].tools.Generate = tool{
|
|
status: &h.Projects[k].Cmds.Generate,
|
|
cmd: "go",
|
|
options: []string{"generate"},
|
|
name: "Go Generate",
|
|
}
|
|
}
|
|
if element.Cmds.Test {
|
|
h.Projects[k].tools.Test = tool{
|
|
status: &h.Projects[k].Cmds.Test,
|
|
cmd: "go",
|
|
options: []string{"test"},
|
|
name: "Go Test",
|
|
}
|
|
}
|
|
if element.Cmds.Vet {
|
|
h.Projects[k].tools.Vet = tool{
|
|
status: &h.Projects[k].Cmds.Vet,
|
|
cmd: "go",
|
|
options: []string{"vet"},
|
|
name: "Go Vet",
|
|
}
|
|
}
|
|
h.Projects[k].parent = h
|
|
h.Projects[k].path = h.Projects[k].Path
|
|
|
|
// env variables
|
|
for key, item := range h.Projects[k].Environment {
|
|
if err := os.Setenv(key, item); err != nil {
|
|
h.Projects[k].Buffer.StdErr = append(h.Projects[k].Buffer.StdErr, BufferOut{Time: time.Now(), Text: err.Error(), Type: "Env error", Stream: ""})
|
|
}
|
|
}
|
|
|
|
// base path
|
|
wd, err := os.Getwd()
|
|
if err != nil{
|
|
return err
|
|
}
|
|
if element.path == "." || element.path == "/" {
|
|
h.Projects[k].base = wd
|
|
h.Projects[k].path = element.Wdir()
|
|
} else if filepath.IsAbs(element.path) {
|
|
h.Projects[k].base = element.path
|
|
} else {
|
|
h.Projects[k].base = filepath.Join(wd, element.path)
|
|
}
|
|
|
|
println(h.Projects[k].base)
|
|
// watch
|
|
if h.Legacy.Status {
|
|
go h.Projects[k].watchByPolling()
|
|
} else {
|
|
go h.Projects[k].watchByNotify()
|
|
}
|
|
}
|
|
wg.Wait()
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Add a new project
|
|
func (h *Blueprint) Add(p *cli.Context) error {
|
|
project := Project{
|
|
Name: h.Name(p.String("name"), p.String("path")),
|
|
Path: h.Path(p.String("path")),
|
|
Cmds: Cmds{
|
|
Vet: p.Bool("vet"),
|
|
Fmt: !p.Bool("no-fmt"),
|
|
Test: p.Bool("test"),
|
|
Generate: p.Bool("generate"),
|
|
Build: Cmd{
|
|
Status: p.Bool("build"),
|
|
},
|
|
Bin: Cmd{
|
|
Status: !p.Bool("no-bin"),
|
|
},
|
|
Run: !p.Bool("no-run"),
|
|
},
|
|
Args: argsParam(p),
|
|
Watcher: Watcher{
|
|
Paths: []string{"/"},
|
|
Ignore: []string{"vendor"},
|
|
Exts: []string{".go"},
|
|
Preview: p.Bool("preview"),
|
|
},
|
|
}
|
|
if _, err := duplicates(project, h.Projects); err != nil {
|
|
return err
|
|
}
|
|
h.Projects = append(h.Projects, project)
|
|
return nil
|
|
}
|
|
|
|
// Clean duplicate projects
|
|
func (h *Blueprint) Clean() {
|
|
arr := h.Projects
|
|
for key, val := range arr {
|
|
if _, err := duplicates(val, arr[key+1:]); err != nil {
|
|
h.Projects = append(arr[:key], arr[key+1:]...)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// Remove a project
|
|
func (h *Blueprint) Remove(p *cli.Context) error {
|
|
for key, val := range h.Projects {
|
|
if p.String("name") == val.Name {
|
|
h.Projects = append(h.Projects[:key], h.Projects[key+1:]...)
|
|
return nil
|
|
}
|
|
}
|
|
return errors.New("No project found.")
|
|
}
|
|
|
|
// List of all the projects
|
|
func (h *Blueprint) List() error {
|
|
err := h.check()
|
|
if err == nil {
|
|
for _, val := range h.Projects {
|
|
fmt.Println(style.Blue.Bold("[") + strings.ToUpper(val.Name) + style.Blue.Bold("]"))
|
|
name := style.Magenta.Bold("[") + strings.ToUpper(val.Name) + style.Magenta.Bold("]")
|
|
|
|
fmt.Println(name, style.Yellow.Regular("Base Path"), ":", style.Magenta.Regular(val.Path))
|
|
fmt.Println(name, style.Yellow.Regular("Fmt"), ":", style.Magenta.Regular(val.Cmds.Fmt))
|
|
fmt.Println(name, style.Yellow.Regular("Generate"), ":", style.Magenta.Regular(val.Cmds.Generate))
|
|
fmt.Println(name, style.Yellow.Regular("Test"), ":", style.Magenta.Regular(val.Cmds.Test))
|
|
fmt.Println(name, style.Yellow.Regular("Install"), ":", style.Magenta.Regular(val.Cmds.Bin))
|
|
fmt.Println(name, style.Yellow.Regular("Build"), ":", style.Magenta.Regular(val.Cmds.Build))
|
|
fmt.Println(name, style.Yellow.Regular("Run"), ":", style.Magenta.Regular(val.Cmds.Run))
|
|
if len(val.Args) > 0 {
|
|
fmt.Println(name, style.Yellow.Regular("Params"), ":", style.Magenta.Regular(val.Args))
|
|
}
|
|
fmt.Println(name, style.Yellow.Regular("Watcher"), ":")
|
|
fmt.Println(name, "\t", style.Yellow.Regular("Preview"), ":", style.Magenta.Regular(val.Watcher.Preview))
|
|
if len(val.Watcher.Exts) > 0 {
|
|
fmt.Println(name, "\t", style.Yellow.Regular("Extensions"), ":", style.Magenta.Regular(val.Watcher.Exts))
|
|
}
|
|
if len(val.Watcher.Paths) > 0 {
|
|
fmt.Println(name, "\t", style.Yellow.Regular("Paths"), ":", style.Magenta.Regular(val.Watcher.Paths))
|
|
}
|
|
if len(val.Watcher.Ignore) > 0 {
|
|
fmt.Println(name, "\t", style.Yellow.Regular("Ignored paths"), ":", style.Magenta.Regular(val.Watcher.Ignore))
|
|
}
|
|
if len(val.Watcher.Scripts) > 0 {
|
|
fmt.Println(name, "\t", style.Yellow.Regular("Scripts"), ":")
|
|
for _, v := range val.Watcher.Scripts {
|
|
if v.Command != "" {
|
|
fmt.Println(name, "\t\t", style.Magenta.Regular("-"), style.Yellow.Regular("Command"), ":", style.Magenta.Regular(v.Command))
|
|
if v.Path != "" {
|
|
fmt.Println(name, "\t\t", style.Yellow.Regular("Path"), ":", style.Magenta.Regular(v.Path))
|
|
}
|
|
if v.Type != "" {
|
|
fmt.Println(name, "\t\t", style.Yellow.Regular("Type"), ":", style.Magenta.Regular(v.Type))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Check whether there is a project
|
|
func (h *Blueprint) check() error {
|
|
if len(h.Projects) > 0 {
|
|
h.Clean()
|
|
return nil
|
|
}
|
|
return errors.New("There are no projects.")
|
|
}
|