mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
84 lines
1.7 KiB
Go
84 lines
1.7 KiB
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/Yuzuki616/V2bX/conf"
|
||
|
"github.com/Yuzuki616/V2bX/core"
|
||
|
"github.com/Yuzuki616/V2bX/limiter"
|
||
|
"github.com/Yuzuki616/V2bX/node"
|
||
|
"github.com/spf13/cobra"
|
||
|
"log"
|
||
|
"os"
|
||
|
"os/signal"
|
||
|
"runtime"
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
config string
|
||
|
watch bool
|
||
|
)
|
||
|
|
||
|
var serverCommand = cobra.Command{
|
||
|
Use: "server",
|
||
|
Short: "Run V2bX server",
|
||
|
Run: serverHandle,
|
||
|
Args: cobra.NoArgs,
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
serverCommand.PersistentFlags().
|
||
|
StringVarP(&config, "config", "c",
|
||
|
"/etc/V2bX/config.yml", "config file path")
|
||
|
serverCommand.PersistentFlags().
|
||
|
BoolVarP(&watch, "watch", "w",
|
||
|
true, "watch file path change")
|
||
|
command.AddCommand(&serverCommand)
|
||
|
}
|
||
|
|
||
|
func serverHandle(_ *cobra.Command, _ []string) {
|
||
|
c := conf.New()
|
||
|
err := c.LoadFromPath(config)
|
||
|
if err != nil {
|
||
|
log.Fatalf("can't unmarshal config file: %s \n", err)
|
||
|
}
|
||
|
limiter.Init()
|
||
|
log.Println("Start V2bX...")
|
||
|
x := core.New(c)
|
||
|
err = x.Start()
|
||
|
if err != nil {
|
||
|
log.Fatalf("Start xray-core error: %s", err)
|
||
|
}
|
||
|
defer x.Close()
|
||
|
nodes := node.New()
|
||
|
err = nodes.Start(c.NodesConfig, x)
|
||
|
if err != nil {
|
||
|
log.Fatalf("Run nodes error: %s", err)
|
||
|
return
|
||
|
}
|
||
|
if watch {
|
||
|
err = c.Watch(config, func() {
|
||
|
nodes.Close()
|
||
|
err = x.Restart(c)
|
||
|
if err != nil {
|
||
|
log.Fatalf("Failed to restart xray-core: %s", err)
|
||
|
}
|
||
|
err = nodes.Start(c.NodesConfig, x)
|
||
|
if err != nil {
|
||
|
log.Fatalf("run nodes error: %s", err)
|
||
|
}
|
||
|
runtime.GC()
|
||
|
})
|
||
|
if err != nil {
|
||
|
log.Fatalf("watch config file error: %s", err)
|
||
|
}
|
||
|
}
|
||
|
// clear memory
|
||
|
runtime.GC()
|
||
|
// wait exit signal
|
||
|
{
|
||
|
osSignals := make(chan os.Signal, 1)
|
||
|
signal.Notify(osSignals, syscall.SIGINT, syscall.SIGKILL, syscall.SIGTERM)
|
||
|
<-osSignals
|
||
|
}
|
||
|
}
|