realize/watcher/watcher.go

345 lines
9.7 KiB
Go
Raw Normal View History

2016-09-01 22:17:19 +00:00
package cli
2016-07-29 23:02:11 +00:00
import (
2016-08-30 17:27:47 +00:00
"errors"
2016-07-31 21:39:56 +00:00
"fmt"
2016-08-17 23:35:37 +00:00
"github.com/fsnotify/fsnotify"
2016-08-21 13:38:00 +00:00
"log"
"math/big"
2016-07-29 23:02:11 +00:00
"os"
2016-09-05 15:53:37 +00:00
"os/signal"
2016-08-17 23:35:37 +00:00
"path/filepath"
2016-07-31 21:39:56 +00:00
"strings"
2016-08-16 10:20:55 +00:00
"sync"
2016-09-05 15:53:37 +00:00
"syscall"
2016-08-17 23:35:37 +00:00
"time"
2016-07-29 23:02:11 +00:00
)
2016-08-18 07:27:08 +00:00
// Watching method is the main core. It manages the livereload and the watching
2016-08-23 00:07:07 +00:00
func (p *Project) watching() {
2016-08-16 10:20:55 +00:00
var wr sync.WaitGroup
2016-07-31 23:52:11 +00:00
var watcher *fsnotify.Watcher
2016-11-11 16:24:01 +00:00
channel, exit := make(chan bool, 1), make(chan bool, 1)
p.path = p.Path
2016-08-17 14:56:06 +00:00
watcher, err := fsnotify.NewWatcher()
2016-11-11 16:24:01 +00:00
defer func() {
2016-08-17 14:56:06 +00:00
wg.Done()
2016-11-11 16:24:01 +00:00
}()
2016-11-21 21:57:14 +00:00
if err != nil {
log.Fatalln(p.pname(p.Name, 2), ":", p.Red.Bold(err.Error()))
return
}
2016-09-17 19:07:22 +00:00
p.cmd(exit)
2016-11-11 16:24:01 +00:00
if p.walks(watcher) != nil {
2016-11-21 21:57:14 +00:00
log.Fatalln(p.pname(p.Name, 2), ":", p.Red.Bold(err.Error()))
2016-08-30 17:27:47 +00:00
return
}
2016-08-31 12:08:15 +00:00
go p.routines(channel, &wr)
2016-09-22 22:41:42 +00:00
p.LastChangedOn = time.Now().Truncate(time.Second)
2016-08-24 12:03:12 +00:00
// waiting for an event
2016-08-01 17:08:37 +00:00
for {
select {
2016-08-04 22:59:41 +00:00
case event := <-watcher.Events:
2016-09-22 22:41:42 +00:00
if time.Now().Truncate(time.Second).After(p.LastChangedOn) {
2016-08-17 23:35:37 +00:00
if event.Op&fsnotify.Chmod == fsnotify.Chmod {
2016-08-04 22:59:41 +00:00
continue
2016-08-01 17:08:37 +00:00
}
2016-08-04 22:59:41 +00:00
if _, err := os.Stat(event.Name); err == nil {
2016-08-23 12:07:01 +00:00
var ext string
if index := strings.Index(filepath.Ext(event.Name), "_"); index == -1 {
ext = filepath.Ext(event.Name)
} else {
2016-11-11 16:24:01 +00:00
ext = filepath.Ext(event.Name)[0:index]
2016-08-23 12:07:01 +00:00
}
2016-08-04 22:59:41 +00:00
i := strings.Index(event.Name, filepath.Ext(event.Name))
2016-11-11 16:24:01 +00:00
file := event.Name[:i] + ext
path := filepath.Dir(event.Name[:i])
2016-08-24 13:06:23 +00:00
if event.Name[:i] != "" && inArray(ext, p.Watcher.Exts) {
2016-11-11 16:24:01 +00:00
p.Buffer.StdLog = append(p.Buffer.StdLog, BufferOut{Time: time.Now(), Text: strings.ToUpper(ext[1:]) + " changed " + file})
go func() {
p.parent.Sync <- "sync"
}()
2016-11-17 00:02:25 +00:00
log.Println(p.pname(p.Name, 4), ":", p.Magenta.Bold(strings.ToUpper(ext[1:])+" changed"), p.Magenta.Bold(file))
2016-08-20 10:47:32 +00:00
// stop and run again
2016-08-23 08:52:00 +00:00
if p.Run {
close(channel)
2016-08-23 14:32:25 +00:00
channel = make(chan bool)
2016-08-23 08:52:00 +00:00
}
2016-11-11 16:24:01 +00:00
// handle multiple errors, need a better way
p.fmt(file)
p.test(path)
p.generate(path)
go p.routines(channel, &wr)
p.LastChangedOn = time.Now().Truncate(time.Second)
2016-08-20 10:47:32 +00:00
}
2016-08-04 22:59:41 +00:00
}
}
case err := <-watcher.Errors:
2016-11-01 09:56:12 +00:00
log.Println(p.Red.Bold(err.Error()))
2016-09-17 19:07:22 +00:00
case <-exit:
return
}
}
}
2016-08-03 16:49:37 +00:00
2016-08-24 13:32:57 +00:00
// Install calls an implementation of the "go install"
2016-12-16 22:54:07 +00:00
func (p *Project) install() {
if p.Bin {
2016-08-20 14:14:11 +00:00
start := time.Now()
2016-12-16 22:54:07 +00:00
log.Println(p.pname(p.Name, 1), ":", "Installing..")
2016-11-15 19:44:28 +00:00
if stream, err := p.goInstall(); err != nil {
2016-11-17 00:02:25 +00:00
msg := fmt.Sprintln(p.pname(p.Name, 2), ":", p.Red.Bold("Go Install"), p.Red.Regular(err.Error()))
out := BufferOut{Time: time.Now(), Text: err.Error(), Type: "Go Install", Stream: stream}
p.print("error", out, msg, stream)
2016-08-04 22:59:41 +00:00
} else {
2016-11-17 00:02:25 +00:00
msg := fmt.Sprintln(p.pname(p.Name, 5), ":", p.Green.Regular("Installed")+" after", p.Magenta.Regular(big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3), " s"))
out := BufferOut{Time: time.Now(), Text: "Installed"}
p.print("log", out, msg, stream)
2016-12-16 22:54:07 +00:00
}
p.sync()
}
return
}
2016-11-17 00:02:25 +00:00
2016-12-16 22:54:07 +00:00
func (p *Project) run(channel chan bool, wr *sync.WaitGroup) {
if p.Run {
start := time.Now()
runner := make(chan bool, 1)
log.Println(p.pname(p.Name, 1), ":", "Running..")
go p.goRun(channel, runner, wr)
for {
select {
case <-runner:
msg := fmt.Sprintln(p.pname(p.Name, 5), ":", p.Green.Regular("Has been run")+" after", p.Magenta.Regular(big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3), " s"))
out := BufferOut{Time: time.Now(), Text: "Has been run"}
p.print("log", out, msg, "")
return
2016-08-19 20:52:53 +00:00
}
2016-07-31 21:39:56 +00:00
}
2016-07-31 23:52:11 +00:00
}
2016-08-01 17:08:37 +00:00
}
2016-07-31 21:39:56 +00:00
2016-08-24 13:32:57 +00:00
// Build calls an implementation of the "go build"
2016-08-04 22:59:41 +00:00
func (p *Project) build() {
if p.Build {
2016-08-20 14:14:11 +00:00
start := time.Now()
2016-12-16 22:54:07 +00:00
log.Println(p.pname(p.Name, 1), ":", "Building..")
2016-11-15 19:44:28 +00:00
if stream, err := p.goBuild(); err != nil {
2016-11-17 00:02:25 +00:00
msg := fmt.Sprintln(p.pname(p.Name, 2), ":", p.Red.Bold("Go Build"), p.Red.Regular(err.Error()))
out := BufferOut{Time: time.Now(), Text: err.Error(), Type: "Go Build", Stream: stream}
p.print("error", out, msg, stream)
2016-08-04 22:59:41 +00:00
} else {
2016-11-17 00:02:25 +00:00
msg := fmt.Sprintln(p.pname(p.Name, 5), ":", p.Green.Regular("Builded")+" after", p.Magenta.Regular(big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3), " s"))
out := BufferOut{Time: time.Now(), Text: "Builded"}
p.print("log", out, msg, stream)
2016-07-29 23:02:11 +00:00
}
2016-12-16 22:54:07 +00:00
p.sync()
2016-07-29 23:02:11 +00:00
}
return
}
2016-11-11 16:24:01 +00:00
// Fmt calls an implementation of the "go fmt"
func (p *Project) fmt(path string) error {
2016-11-15 19:44:28 +00:00
defer func() {
p.sync()
}()
2016-08-21 15:12:11 +00:00
if p.Fmt {
2016-11-14 07:59:47 +00:00
if stream, err := p.goFmt(path); err != nil {
2016-11-17 00:02:25 +00:00
msg := fmt.Sprintln(p.pname(p.Name, 2), ":", p.Red.Bold("Go Fmt"), p.Red.Regular("there are some errors in"), ":", p.Magenta.Bold(path))
out := BufferOut{Time: time.Now(), Text: "there are some errors in", Path: path, Type: "Go Fmt", Stream: stream}
p.print("error", out, msg, stream)
2016-11-11 16:24:01 +00:00
return err
}
}
return nil
}
// Generate calls an implementation of the "go generate"
func (p *Project) generate(path string) error {
2016-11-15 19:44:28 +00:00
defer func() {
p.sync()
}()
2016-11-11 16:24:01 +00:00
if p.Generate {
2016-11-14 07:59:47 +00:00
if stream, err := p.goGenerate(path); err != nil {
2016-11-17 00:02:25 +00:00
msg := fmt.Sprintln(p.pname(p.Name, 2), ":", p.Red.Bold("Go Generate"), p.Red.Regular("there are some errors in"), ":", p.Magenta.Bold(path))
out := BufferOut{Time: time.Now(), Text: "there are some errors in", Path: path, Type: "Go Generate", Stream: stream}
p.print("error", out, msg, stream)
2016-11-11 16:24:01 +00:00
return err
2016-08-21 15:12:11 +00:00
}
}
return nil
}
2016-09-05 15:53:37 +00:00
// Cmd calls an wrapper for execute the commands after/before
2016-09-17 19:07:22 +00:00
func (p *Project) cmd(exit chan bool) {
2016-09-05 15:53:37 +00:00
c := make(chan os.Signal, 2)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
cast := func(commands []string) {
2016-11-14 07:59:47 +00:00
if errs := p.cmds(commands); errs != nil {
2016-09-05 15:53:37 +00:00
for _, err := range errs {
2016-11-17 00:02:25 +00:00
msg := fmt.Sprintln(p.pname(p.Name, 2), ":", p.Red.Bold(err))
out := BufferOut{Time: time.Now(), Text: err, Type: "After/Before"}
p.print("error", out, msg, "")
2016-09-05 15:53:37 +00:00
}
}
}
if len(p.Watcher.Before) > 0 {
cast(p.Watcher.Before)
}
go func() {
for {
select {
case <-c:
if len(p.Watcher.After) > 0 {
cast(p.Watcher.After)
}
2016-09-17 19:07:22 +00:00
close(exit)
2016-09-05 15:53:37 +00:00
}
}
}()
}
// Test calls an implementation of the "go test"
2016-08-27 21:57:26 +00:00
func (p *Project) test(path string) error {
2016-11-15 19:44:28 +00:00
defer func() {
p.sync()
}()
2016-08-27 21:57:26 +00:00
if p.Test {
2016-11-14 07:59:47 +00:00
if stream, err := p.goTest(path); err != nil {
2016-11-17 00:02:25 +00:00
msg := fmt.Sprintln(p.pname(p.Name, 2), ":", p.Red.Bold("Go Test"), p.Red.Regular("there are some errors in "), ":", p.Magenta.Bold(path))
out := BufferOut{Time: time.Now(), Text: "there are some errors in", Path: path, Type: "Go Test", Stream: stream}
p.print("error", out, msg, stream)
2016-11-11 16:24:01 +00:00
return err
2016-08-27 21:57:26 +00:00
}
}
return nil
}
2016-08-24 12:03:12 +00:00
// Walks the file tree of a project
2016-08-30 17:27:47 +00:00
func (p *Project) walks(watcher *fsnotify.Watcher) error {
2016-08-24 12:03:12 +00:00
var files, folders int64
wd, _ := os.Getwd()
walk := func(path string, info os.FileInfo, err error) error {
2016-08-24 12:17:42 +00:00
if !p.ignore(path) {
if (info.IsDir() && len(filepath.Ext(path)) == 0 && !strings.HasPrefix(path, ".")) && !strings.Contains(path, "/.") || (inArray(filepath.Ext(path), p.Watcher.Exts)) {
if p.Watcher.Preview {
2016-11-17 00:02:25 +00:00
log.Println(p.pname(p.Name, 1), ":", path)
2016-08-24 12:17:42 +00:00
}
if err = watcher.Add(path); err != nil {
return filepath.SkipDir
}
if inArray(filepath.Ext(path), p.Watcher.Exts) {
files++
2016-11-11 16:24:01 +00:00
p.fmt(path)
2016-08-24 12:17:42 +00:00
} else {
folders++
2016-11-11 16:24:01 +00:00
p.generate(path)
p.test(path)
2016-08-24 12:17:42 +00:00
}
2016-08-24 12:03:12 +00:00
}
}
return nil
}
2016-11-14 07:59:47 +00:00
2016-11-01 09:56:12 +00:00
if p.path == "." || p.path == "/" {
2016-08-24 12:03:12 +00:00
p.base = wd
2016-11-01 09:56:12 +00:00
p.path = p.Wdir()
} else if filepath.IsAbs(p.path) {
p.base = p.path
2016-08-24 12:03:12 +00:00
} else {
2016-11-01 09:56:12 +00:00
p.base = filepath.Join(wd, p.path)
2016-08-24 12:03:12 +00:00
}
for _, dir := range p.Watcher.Paths {
base := filepath.Join(p.base, dir)
if _, err := os.Stat(base); err == nil {
2016-08-24 12:21:46 +00:00
if err := filepath.Walk(base, walk); err != nil {
2016-11-01 09:56:12 +00:00
log.Println(p.Red.Bold(err.Error()))
2016-08-24 12:03:12 +00:00
}
} else {
2016-08-30 17:27:47 +00:00
return errors.New(base + " path doesn't exist")
2016-08-24 12:03:12 +00:00
}
}
2016-11-17 00:02:25 +00:00
log.Println(p.pname(p.Name, 1), ":", p.Blue.Bold("Watching"), p.Magenta.Bold(files), "file/s", p.Magenta.Bold(folders), "folder/s")
2016-08-30 17:27:47 +00:00
return nil
2016-08-24 12:03:12 +00:00
}
2016-08-18 07:27:08 +00:00
// Ignore validates a path
2016-08-17 14:56:06 +00:00
func (p *Project) ignore(str string) bool {
for _, v := range p.Watcher.Ignore {
2016-08-23 00:07:07 +00:00
if strings.Contains(str, filepath.Join(p.base, v)) {
2016-08-03 08:30:45 +00:00
return true
}
}
return false
}
2016-11-11 16:24:01 +00:00
// Routines launches the following methods: run, build, install
2016-08-31 12:08:15 +00:00
func (p *Project) routines(channel chan bool, wr *sync.WaitGroup) {
2016-12-16 22:54:07 +00:00
p.install()
p.build()
2016-08-23 20:21:15 +00:00
wr.Add(1)
2016-12-16 22:54:07 +00:00
go p.run(channel, wr)
2016-08-23 20:21:15 +00:00
wr.Wait()
2016-08-23 00:23:17 +00:00
}
2016-11-01 09:56:12 +00:00
// Defines the colors scheme for the project name
func (p *Project) pname(name string, color int) string {
switch color {
case 1:
name = p.Yellow.Regular("[") + strings.ToUpper(name) + p.Yellow.Regular("]")
break
case 2:
name = p.Yellow.Regular("[") + p.Red.Bold(strings.ToUpper(name)) + p.Yellow.Regular("]")
break
case 3:
name = p.Yellow.Regular("[") + p.Blue.Bold(strings.ToUpper(name)) + p.Yellow.Regular("]")
break
case 4:
name = p.Yellow.Regular("[") + p.Magenta.Bold(strings.ToUpper(name)) + p.Yellow.Regular("]")
break
case 5:
name = p.Yellow.Regular("[") + p.Green.Bold(strings.ToUpper(name)) + p.Yellow.Regular("]")
break
}
return name
}
2016-11-17 00:02:25 +00:00
func (p *Project) print(t string, o BufferOut, msg string, stream string) {
switch t {
case "out":
p.Buffer.StdOut = append(p.Buffer.StdOut, o)
if p.File.Streams {
f := p.Create(p.base, p.parent.Resources.Output)
2016-11-17 00:02:25 +00:00
t := time.Now()
if _, err := f.WriteString(t.Format("2006-01-02 15:04:05") + " : " + o.Text + "\r\n"); err != nil {
2016-12-16 22:54:07 +00:00
p.Fatal(err, "")
2016-11-17 00:02:25 +00:00
}
}
case "log":
p.Buffer.StdLog = append(p.Buffer.StdLog, o)
if p.File.Logs {
f := p.Create(p.base, p.parent.Resources.Log)
2016-11-17 00:02:25 +00:00
t := time.Now()
if _, err := f.WriteString(t.Format("2006-01-02 15:04:05") + " : " + o.Text + "\r\n"); err != nil {
2016-12-16 22:54:07 +00:00
p.Fatal(err, "")
2016-11-17 00:02:25 +00:00
}
}
case "error":
p.Buffer.StdErr = append(p.Buffer.StdErr, o)
if p.File.Errors {
f := p.Create(p.base, p.parent.Resources.Log)
2016-11-17 00:02:25 +00:00
t := time.Now()
if _, err := f.WriteString(t.Format("2006-01-02 15:04:05") + " : " + o.Text + "\r\n"); err != nil {
2016-12-16 22:54:07 +00:00
p.Fatal(err, "")
2016-11-17 00:02:25 +00:00
}
}
}
log.Print(msg)
if stream != "" {
fmt.Println(stream)
}
}