提交代码
This commit is contained in:
parent
cc711d9f7a
commit
ec23a6a72a
|
@ -1,5 +1,7 @@
|
||||||
url: http://127.0.0.1:8066
|
url: http://127.0.0.1:8066
|
||||||
|
|
||||||
|
name: hade
|
||||||
|
|
||||||
swagger_open: true
|
swagger_open: true
|
||||||
|
|
||||||
dev_fresh: 1
|
dev_fresh: 1
|
||||||
|
|
|
@ -3,6 +3,7 @@ package command
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/Superdanda/hade/framework/cobra"
|
"github.com/Superdanda/hade/framework/cobra"
|
||||||
|
"github.com/Superdanda/hade/framework/contract"
|
||||||
"log"
|
"log"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
@ -20,13 +21,16 @@ var buildSelfCommand = &cobra.Command{
|
||||||
Use: "self",
|
Use: "self",
|
||||||
Short: "编译hade命令",
|
Short: "编译hade命令",
|
||||||
RunE: func(c *cobra.Command, args []string) error {
|
RunE: func(c *cobra.Command, args []string) error {
|
||||||
|
container := c.GetContainer()
|
||||||
|
config := container.MustMake(contract.ConfigKey).(contract.Config)
|
||||||
|
|
||||||
path, err := exec.LookPath("go")
|
path, err := exec.LookPath("go")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalln("hade go: 请在Path路径中先安装go")
|
log.Fatalln("hade go: 请在Path路径中先安装go")
|
||||||
}
|
}
|
||||||
|
|
||||||
// 根据系统设置输出文件名
|
// 根据系统设置输出文件名
|
||||||
output := "hade"
|
output := config.GetAppName()
|
||||||
env := []string{}
|
env := []string{}
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
output += ".exe"
|
output += ".exe"
|
||||||
|
@ -46,7 +50,7 @@ var buildSelfCommand = &cobra.Command{
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
fmt.Println(string(out))
|
fmt.Println(string(out))
|
||||||
fmt.Println("编译hade成功")
|
fmt.Println("编译" + output + "项目成功")
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -141,7 +141,7 @@ func deployBuildBackend(c *cobra.Command, deployFolder string) error {
|
||||||
|
|
||||||
env := envService.AppEnv()
|
env := envService.AppEnv()
|
||||||
|
|
||||||
binFile := "hade"
|
binFile := configService.GetAppName()
|
||||||
|
|
||||||
// 编译前端
|
// 编译前端
|
||||||
path, err := exec.LookPath("go")
|
path, err := exec.LookPath("go")
|
||||||
|
|
|
@ -80,6 +80,7 @@ type Proxy struct {
|
||||||
proxyServer *http.Server // proxy的服务
|
proxyServer *http.Server // proxy的服务
|
||||||
backendPid int // 当前的backend服务的pid
|
backendPid int // 当前的backend服务的pid
|
||||||
frontendPid int // 当前的frontend服务的pid
|
frontendPid int // 当前的frontend服务的pid
|
||||||
|
container framework.Container
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewProxy 初始化一个Proxy
|
// NewProxy 初始化一个Proxy
|
||||||
|
@ -87,6 +88,7 @@ func NewProxy(c framework.Container) *Proxy {
|
||||||
devConfig := initDevConfig(c)
|
devConfig := initDevConfig(c)
|
||||||
return &Proxy{
|
return &Proxy{
|
||||||
devConfig: devConfig,
|
devConfig: devConfig,
|
||||||
|
container: c,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -142,7 +144,8 @@ func (p *Proxy) newProxyReverseProxy(frontend, backend *url.URL) *httputil.Rever
|
||||||
func (p *Proxy) rebuildBackend() error {
|
func (p *Proxy) rebuildBackend() error {
|
||||||
// 重新编译hade
|
// 重新编译hade
|
||||||
fmt.Println("重新编译后端服务")
|
fmt.Println("重新编译后端服务")
|
||||||
cmdBuild := exec.Command("./hade", "build", "backend")
|
config := p.container.MustMake(contract.ConfigKey).(contract.Config)
|
||||||
|
cmdBuild := exec.Command("./"+config.GetAppName(), "build", "backend")
|
||||||
cmdBuild.Stdout = os.Stdout
|
cmdBuild.Stdout = os.Stdout
|
||||||
cmdBuild.Stderr = os.Stderr
|
cmdBuild.Stderr = os.Stderr
|
||||||
if err := cmdBuild.Start(); err == nil {
|
if err := cmdBuild.Start(); err == nil {
|
||||||
|
@ -179,7 +182,8 @@ func (p *Proxy) restartBackend() error {
|
||||||
// 使用命令行启动后端进程
|
// 使用命令行启动后端进程
|
||||||
|
|
||||||
// 根据系统设置输出文件名
|
// 根据系统设置输出文件名
|
||||||
execName := "./hade"
|
config := p.container.MustMake(contract.ConfigKey).(contract.Config)
|
||||||
|
execName := "./" + config.GetAppName()
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
execName += ".exe"
|
execName += ".exe"
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,4 +36,6 @@ type Config interface {
|
||||||
|
|
||||||
// Load 加载配置到某个对象
|
// Load 加载配置到某个对象
|
||||||
Load(key string, val interface{}) error
|
Load(key string, val interface{}) error
|
||||||
|
|
||||||
|
GetAppName() string
|
||||||
}
|
}
|
||||||
|
|
|
@ -241,6 +241,12 @@ func (conf *HadeConfig) find(key string) interface{} {
|
||||||
return searchMap(conf.confMaps, strings.Split(key, conf.keyDelim))
|
return searchMap(conf.confMaps, strings.Split(key, conf.keyDelim))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (conf *HadeConfig) GetAppName() string {
|
||||||
|
conf.lock.RLock()
|
||||||
|
defer conf.lock.RUnlock()
|
||||||
|
return conf.GetString("app.name")
|
||||||
|
}
|
||||||
|
|
||||||
func searchMap(source map[string]interface{}, path []string) interface{} {
|
func searchMap(source map[string]interface{}, path []string) interface{} {
|
||||||
if len(path) == 0 {
|
if len(path) == 0 {
|
||||||
return source
|
return source
|
||||||
|
|
Loading…
Reference in New Issue