bee/run.go

94 lines
2.1 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.
2013-07-24 12:01:14 +00:00
package main
import (
"os"
path "path/filepath"
"runtime"
2013-09-11 23:06:04 +00:00
"strings"
2013-07-24 12:01:14 +00:00
)
var cmdRun = &Command{
UsageLine: "run [appname]",
Short: "run the app which can hot compile",
Long: `
start the appname throw exec.Command
then start a inotify watch for current dir
when the file has changed bee will auto go build and restart the app
file changed
|
check if it's go file
|
yes no
| |
go build do nothing
|
restart app
`,
}
func init() {
cmdRun.Run = runApp
}
var appname string
func runApp(cmd *Command, args []string) {
2013-08-09 09:49:14 +00:00
exit := make(chan bool)
2013-09-11 22:35:24 +00:00
crupath, _ := os.Getwd()
2013-07-24 12:01:14 +00:00
if len(args) != 1 {
2013-09-11 22:35:24 +00:00
appname = path.Base(crupath)
2013-10-30 23:39:44 +00:00
ColorLog("[INFO] Uses '%s' as 'appname'\n", appname)
2013-09-11 22:35:24 +00:00
} else {
appname = args[0]
2013-07-24 12:01:14 +00:00
}
Debugf("current path:%s\n", crupath)
err := loadConfig()
if err != nil {
2013-10-30 23:39:44 +00:00
ColorLog("[ERRO] Fail to parse bee.json[ %s ]\n", err)
2013-07-24 12:01:14 +00:00
}
2013-11-04 03:16:15 +00:00
2013-07-24 12:01:14 +00:00
var paths []string
paths = append(paths,
path.Join(crupath, conf.DirStruct.Controllers),
2013-07-27 01:44:44 +00:00
path.Join(crupath, conf.DirStruct.Models),
path.Join(crupath, "./")) // Current path.
// Because monitor files has some issues, we watch current directory
// and ignore non-go files.
2013-10-30 23:39:44 +00:00
gps := GetGOPATHs()
2013-09-11 23:06:04 +00:00
if len(gps) == 0 {
2013-10-30 23:39:44 +00:00
ColorLog("[ERRO] Fail to start[ %s ]\n", "$GOPATH is not set or empty")
2013-09-11 23:06:04 +00:00
os.Exit(2)
}
gopath := gps[0]
for _, p := range conf.DirStruct.Others {
paths = append(paths, strings.Replace(p, "$GOPATH", gopath, -1))
}
2013-07-24 12:01:14 +00:00
NewWatcher(paths)
Autobuild()
for {
2013-08-09 09:49:14 +00:00
select {
case <-exit:
runtime.Goexit()
}
2013-07-24 12:01:14 +00:00
}
}