bee/watch.go

279 lines
6.3 KiB
Go
Raw Normal View History

2013-09-03 17:23:58 +00:00
// Copyright 2013 bee authors
//
// Licensed under the Apache License, Version 2.0 (the "License"): you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
2012-12-15 16:56:28 +00:00
package main
import (
2013-12-15 23:08:51 +00:00
"bytes"
2012-12-15 16:56:28 +00:00
"os"
"os/exec"
"regexp"
"runtime"
2013-07-24 06:58:13 +00:00
"strings"
2013-07-06 07:30:57 +00:00
"sync"
"time"
2016-12-08 17:31:24 +00:00
"github.com/fsnotify/fsnotify"
2012-12-15 16:56:28 +00:00
)
var (
cmd *exec.Cmd
state sync.Mutex
eventTime = make(map[string]int64)
scheduleTime time.Time
2012-12-15 16:56:28 +00:00
)
// NewWatcher starts an fsnotify Watcher on the specified paths
func NewWatcher(paths []string, files []string, isgenerate bool) {
2012-12-15 16:56:28 +00:00
watcher, err := fsnotify.NewWatcher()
if err != nil {
logger.Fatalf("Failed to create watcher: %s", err)
2012-12-15 16:56:28 +00:00
}
go func() {
for {
select {
2016-12-08 17:31:24 +00:00
case e := <-watcher.Events:
2013-07-06 07:30:57 +00:00
isbuild := true
2013-07-24 06:58:13 +00:00
// Skip ignored files
if shouldIgnoreFile(e.Name) {
2013-07-24 06:58:13 +00:00
continue
}
if !checkIfWatchExt(e.Name) {
2013-07-30 07:23:14 +00:00
continue
}
2013-07-24 06:58:13 +00:00
mt := getFileModTime(e.Name)
if t := eventTime[e.Name]; mt == t {
logger.Infof(bold("Skipping: ")+"%s", e.String())
isbuild = false
2013-07-06 07:30:57 +00:00
}
eventTime[e.Name] = mt
2013-07-06 07:30:57 +00:00
if isbuild {
logger.Infof("Event fired: %s", e)
go func() {
// Wait 1s before autobuild util there is no file change.
scheduleTime = time.Now().Add(1 * time.Second)
for {
time.Sleep(scheduleTime.Sub(time.Now()))
if time.Now().After(scheduleTime) {
break
}
return
}
AutoBuild(files, isgenerate)
}()
2013-07-06 07:30:57 +00:00
}
2016-12-08 17:31:24 +00:00
case err := <-watcher.Errors:
logger.Warnf("Watcher error: %s", err.Error()) // No need to exit here
2012-12-15 16:56:28 +00:00
}
}
}()
logger.Info("Initializing watcher...")
2012-12-15 16:56:28 +00:00
for _, path := range paths {
logger.Infof(bold("Watching: ")+"%s", path)
2016-12-08 17:31:24 +00:00
err = watcher.Add(path)
2012-12-15 16:56:28 +00:00
if err != nil {
logger.Fatalf("Failed to watch directory: %s", err)
2012-12-15 16:56:28 +00:00
}
}
}
2016-11-23 14:58:38 +00:00
// getFileModTime returns unix timestamp of `os.File.ModTime` for the given path.
func getFileModTime(path string) int64 {
2013-08-23 20:39:10 +00:00
path = strings.Replace(path, "\\", "/", -1)
f, err := os.Open(path)
if err != nil {
logger.Errorf("Failed to open file on '%s': %s", path, err)
return time.Now().Unix()
}
defer f.Close()
fi, err := f.Stat()
if err != nil {
logger.Errorf("Failed to get file stats: %s", err)
return time.Now().Unix()
}
return fi.ModTime().Unix()
}
// AutoBuild builds the specified set of files
func AutoBuild(files []string, isgenerate bool) {
2013-07-06 08:13:30 +00:00
state.Lock()
defer state.Unlock()
2012-12-15 16:56:28 +00:00
os.Chdir(currpath)
2013-07-25 08:26:54 +00:00
2013-11-04 03:16:15 +00:00
cmdName := "go"
if conf.Gopm.Enable {
cmdName = "gopm"
}
var (
err error
stderr bytes.Buffer
stdout bytes.Buffer
)
2013-07-25 08:26:54 +00:00
// For applications use full import path like "github.com/.../.."
// are able to use "go install" to reduce build time.
if conf.GoInstall {
icmd := exec.Command(cmdName, "install", "-v")
icmd.Stdout = os.Stdout
icmd.Stderr = os.Stderr
icmd.Env = append(os.Environ(), "GOGC=off")
icmd.Run()
}
if conf.Gopm.Install {
2013-12-15 23:08:51 +00:00
icmd := exec.Command("go", "list", "./...")
icmd.Stdout = &stdout
icmd.Env = append(os.Environ(), "GOGC=off")
2013-07-25 08:26:54 +00:00
err = icmd.Run()
2013-12-15 23:08:51 +00:00
if err == nil {
list := strings.Split(stdout.String(), "\n")[1:]
2013-12-15 23:08:51 +00:00
for _, pkg := range list {
if len(pkg) == 0 {
continue
}
icmd = exec.Command(cmdName, "install", pkg)
2013-12-15 23:28:17 +00:00
icmd.Stdout = os.Stdout
icmd.Stderr = os.Stderr
icmd.Env = append(os.Environ(), "GOGC=off")
2013-12-15 23:08:51 +00:00
err = icmd.Run()
if err != nil {
break
}
}
}
2013-07-25 08:26:54 +00:00
}
if isgenerate {
logger.Info("Generating the docs...")
icmd := exec.Command("bee", "generate", "docs")
icmd.Env = append(os.Environ(), "GOGC=off")
err = icmd.Run()
if err != nil {
logger.Errorf("Failed to generate the docs.")
return
}
logger.Success("Docs generated!")
}
2013-07-25 08:26:54 +00:00
if err == nil {
appName := appname
if runtime.GOOS == "windows" {
appName += ".exe"
}
2013-12-15 23:08:51 +00:00
2014-02-21 17:51:18 +00:00
args := []string{"build"}
args = append(args, "-o", appName)
2016-02-10 19:39:02 +00:00
if buildTags != "" {
args = append(args, "-tags", buildTags)
}
2014-02-21 17:51:18 +00:00
args = append(args, files...)
bcmd := exec.Command(cmdName, args...)
bcmd.Env = append(os.Environ(), "GOGC=off")
bcmd.Stderr = &stderr
2013-12-15 23:08:51 +00:00
err = bcmd.Run()
if err != nil {
logger.Errorf("Failed to build the application: %s", stderr.String())
return
}
2013-07-25 08:26:54 +00:00
}
2013-07-06 08:13:30 +00:00
logger.Success("Built Successfully!")
2013-07-06 07:30:57 +00:00
Restart(appname)
2012-12-15 16:56:28 +00:00
}
// Kill kills the running command process
2012-12-15 16:56:28 +00:00
func Kill() {
2013-07-06 08:13:30 +00:00
defer func() {
if e := recover(); e != nil {
logger.Infof("Kill recover: %s", e)
2013-07-06 08:13:30 +00:00
}
}()
if cmd != nil && cmd.Process != nil {
2013-12-15 23:08:51 +00:00
err := cmd.Process.Kill()
if err != nil {
logger.Errorf("Error while killing cmd process: %s", err)
2013-12-15 23:08:51 +00:00
}
2012-12-15 16:56:28 +00:00
}
}
// Restart kills the running command process and starts it again
2013-07-06 07:30:57 +00:00
func Restart(appname string) {
logger.Debugf("Kill running process", __FILE__(), __LINE__())
2013-07-06 07:30:57 +00:00
Kill()
2013-07-06 08:13:30 +00:00
go Start(appname)
2013-07-06 07:30:57 +00:00
}
2013-07-06 08:13:30 +00:00
// Start starts the command process
2012-12-15 16:56:28 +00:00
func Start(appname string) {
logger.Infof("Restarting '%s'...", appname)
if strings.Index(appname, "./") == -1 {
appname = "./" + appname
}
2013-07-06 07:30:57 +00:00
2012-12-15 16:56:28 +00:00
cmd = exec.Command(appname)
2013-07-06 07:30:57 +00:00
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
2013-11-27 05:15:00 +00:00
cmd.Args = append([]string{appname}, conf.CmdArgs...)
cmd.Env = append(os.Environ(), conf.Envs...)
2013-07-06 07:30:57 +00:00
2013-07-06 08:13:30 +00:00
go cmd.Run()
logger.Successf("'%s' is running...", appname)
2013-08-24 11:00:08 +00:00
started <- true
2012-12-15 16:56:28 +00:00
}
2013-07-24 06:58:13 +00:00
// shouldIgnoreFile ignores filenames generated by Emacs, Vim or SublimeText.
// It returns true if the file should be ignored, false otherwise.
func shouldIgnoreFile(filename string) bool {
for _, regex := range ignoredFilesRegExps {
r, err := regexp.Compile(regex)
if err != nil {
logger.Fatalf("Could not compile regular expression: %s", err)
}
if r.MatchString(filename) {
return true
}
continue
2013-07-24 06:58:13 +00:00
}
return false
}
2013-07-30 07:23:14 +00:00
2013-09-04 15:23:51 +00:00
var watchExts = []string{".go"}
var ignoredFilesRegExps = []string{
`.#(\w+).go`,
`.(\w+).go.swp`,
`(\w+).go~`,
`(\w+).tmp`,
}
2013-09-04 15:23:51 +00:00
// checkIfWatchExt returns true if the name HasSuffix <watch_ext>.
func checkIfWatchExt(name string) bool {
2013-09-04 15:23:51 +00:00
for _, s := range watchExts {
if strings.HasSuffix(name, s) {
return true
}
2013-07-30 07:23:14 +00:00
}
return false
}