Able to customize watch file exts

This commit is contained in:
Unknown 2013-09-04 11:23:51 -04:00
parent 540122fdf1
commit 111bc16e19
3 changed files with 15 additions and 7 deletions

View File

@ -1,5 +1,6 @@
{
"go_install": false,
"watch_ext": [],
"dir_structure":{
"controllers": "",
"models": "",

5
run.go
View File

@ -68,7 +68,7 @@ var appname string
var conf struct {
// Indicates whether execute "go install" before "go build".
GoInstall bool `json:"go_install"`
WatchExt []string `json:"watch_ext"`
DirStruct struct {
Controllers string
Models string
@ -141,5 +141,8 @@ func loadConfig() error {
if len(conf.DirStruct.Models) == 0 {
conf.DirStruct.Models = "models"
}
// Append watch exts.
watchExts = append(watchExts, conf.WatchExt...)
return nil
}

View File

@ -50,7 +50,7 @@ func NewWatcher(paths []string) {
if checkTMPFile(e.Name) {
continue
}
if !checkIsGoFile(e.Name) {
if !chekcIfWatchExt(e.Name) {
continue
}
@ -178,10 +178,14 @@ func checkTMPFile(name string) bool {
return false
}
// checkIsGoFile returns true if the name HasSuffix ".go".
func checkIsGoFile(name string) bool {
if strings.HasSuffix(name, ".go") {
var watchExts = []string{".go"}
// chekcIfWatchExt returns true if the name HasSuffix <watch_ext>.
func chekcIfWatchExt(name string) bool {
for _, s := range watchExts {
if strings.HasSuffix(name, s) {
return true
}
}
return false
}