realize/watcher/cmd.go

196 lines
5.8 KiB
Go
Raw Normal View History

package watcher
2016-08-31 12:08:15 +00:00
import (
"errors"
"fmt"
"github.com/tockins/realize/style"
cli "gopkg.in/urfave/cli.v2"
2017-08-07 21:01:02 +00:00
"os"
"strings"
2017-08-07 21:25:25 +00:00
"time"
2016-08-31 12:08:15 +00:00
)
2016-12-17 10:43:27 +00:00
// Run launches the toolchain for each project
2017-06-16 09:15:56 +00:00
func (h *Blueprint) Run(p *cli.Context) error {
2016-11-01 09:56:12 +00:00
err := h.check()
2016-08-31 12:08:15 +00:00
if err == nil {
// loop projects
2017-08-25 10:52:11 +00:00
if p.String("name") != "" {
2017-08-25 10:34:10 +00:00
wg.Add(1)
2017-08-25 10:52:11 +00:00
} else {
2017-08-25 10:34:10 +00:00
wg.Add(len(h.Projects))
}
for k, element := range h.Projects {
2017-08-24 13:22:14 +00:00
if p.String("name") != "" && h.Projects[k].Name != p.String("name") {
continue
}
2017-07-27 18:48:16 +00:00
if element.Cmds.Fmt {
2017-08-27 09:23:55 +00:00
h.Projects[k].tools.Fmt = tool{
status: &h.Projects[k].Cmds.Fmt,
cmd: "gofmt",
options: []string{"-s", "-w", "-e"},
name: "Go Fmt",
}
}
2017-07-27 18:48:16 +00:00
if element.Cmds.Generate {
2017-08-27 09:23:55 +00:00
h.Projects[k].tools.Generate = tool{
status: &h.Projects[k].Cmds.Generate,
cmd: "go",
options: []string{"generate"},
name: "Go Generate",
}
}
2017-07-27 18:48:16 +00:00
if element.Cmds.Test {
2017-08-27 09:23:55 +00:00
h.Projects[k].tools.Test = tool{
status: &h.Projects[k].Cmds.Test,
cmd: "go",
options: []string{"test"},
name: "Go Test",
}
}
if element.Cmds.Vet {
2017-08-27 09:23:55 +00:00
h.Projects[k].tools.Vet = tool{
status: &h.Projects[k].Cmds.Vet,
cmd: "go",
2017-04-24 00:07:37 +00:00
options: []string{"vet"},
name: "Go Vet",
}
}
2016-10-14 08:47:43 +00:00
h.Projects[k].parent = h
2016-12-25 17:08:22 +00:00
h.Projects[k].path = h.Projects[k].Path
2017-08-07 21:01:02 +00:00
// env variables
for key, item := range h.Projects[k].Environment {
2017-08-07 21:37:45 +00:00
if err := os.Setenv(key, item); err != nil {
2017-08-07 21:25:25 +00:00
h.Projects[k].Buffer.StdErr = append(h.Projects[k].Buffer.StdErr, BufferOut{Time: time.Now(), Text: err.Error(), Type: "Env error", Stream: ""})
2017-08-07 21:01:02 +00:00
}
}
if h.Legacy.Status {
2016-12-21 23:28:08 +00:00
go h.Projects[k].watchByPolling()
} else {
2016-12-25 17:08:22 +00:00
go h.Projects[k].watchByNotify()
2016-12-21 23:28:08 +00:00
}
2016-08-31 12:08:15 +00:00
}
wg.Wait()
return nil
}
return err
}
// Add a new project
2016-11-01 09:56:12 +00:00
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),
2016-08-31 12:08:15 +00:00
Watcher: Watcher{
2016-11-20 17:38:42 +00:00
Paths: []string{"/"},
Ignore: []string{"vendor"},
Exts: []string{".go"},
Preview: p.Bool("preview"),
2016-08-31 12:08:15 +00:00
},
}
2016-11-01 09:56:12 +00:00
if _, err := duplicates(project, h.Projects); err != nil {
2016-08-31 12:08:15 +00:00
return err
}
2016-11-01 09:56:12 +00:00
h.Projects = append(h.Projects, project)
2016-08-31 12:08:15 +00:00
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
2016-11-01 09:56:12 +00:00
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
2016-08-31 12:08:15 +00:00
}
}
2017-08-27 09:23:55 +00:00
return errors.New("No project found.")
2016-08-31 12:08:15 +00:00
}
// List of all the projects
func (h *Blueprint) List() error {
2016-11-01 09:56:12 +00:00
err := h.check()
2016-08-31 12:08:15 +00:00
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("]")
2017-03-19 23:31:52 +00:00
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))
2016-11-11 16:21:54 +00:00
}
fmt.Println(name, style.Yellow.Regular("Watcher"), ":")
fmt.Println(name, "\t", style.Yellow.Regular("Preview"), ":", style.Magenta.Regular(val.Watcher.Preview))
2016-11-11 16:21:54 +00:00
if len(val.Watcher.Exts) > 0 {
fmt.Println(name, "\t", style.Yellow.Regular("Extensions"), ":", style.Magenta.Regular(val.Watcher.Exts))
2016-11-11 16:21:54 +00:00
}
if len(val.Watcher.Paths) > 0 {
fmt.Println(name, "\t", style.Yellow.Regular("Paths"), ":", style.Magenta.Regular(val.Watcher.Paths))
2016-11-11 16:21:54 +00:00
}
if len(val.Watcher.Ignore) > 0 {
fmt.Println(name, "\t", style.Yellow.Regular("Ignored paths"), ":", style.Magenta.Regular(val.Watcher.Ignore))
2016-11-11 16:21:54 +00:00
}
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))
}
}
}
}
fmt.Println(name, style.Yellow.Regular("Streams"), ":")
fmt.Println(name, "\t", style.Yellow.Regular("File Out"), ":", style.Magenta.Regular(val.Streams.FileOut))
fmt.Println(name, "\t", style.Yellow.Regular("File Log"), ":", style.Magenta.Regular(val.Streams.FileLog))
fmt.Println(name, "\t", style.Yellow.Regular("File Err"), ":", style.Magenta.Regular(val.Streams.FileErr))
2016-08-31 12:08:15 +00:00
}
2016-11-01 09:56:12 +00:00
return nil
2016-08-31 12:08:15 +00:00
}
return err
}
2016-10-21 15:30:12 +00:00
2016-11-14 07:59:47 +00:00
// Check whether there is a project
2016-11-01 09:56:12 +00:00
func (h *Blueprint) check() error {
if len(h.Projects) > 0 {
h.Clean()
return nil
}
2017-08-27 09:23:55 +00:00
return errors.New("There are no projects.")
2016-11-01 09:56:12 +00:00
}