mosdns/coremain/run.go
dengxiongjian ee06785e08
Some checks are pending
Test mosdns / build (push) Waiting to run
开发web管理
2025-10-15 22:20:27 +08:00

164 lines
4.0 KiB
Go

/*
* Copyright (C) 2020-2022, IrineSistiana
*
* This file is part of mosdns.
*
* mosdns is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* mosdns is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package coremain
import (
"fmt"
"os"
"os/signal"
"runtime"
"syscall"
"github.com/IrineSistiana/mosdns/v5/mlog"
"github.com/kardianos/service"
"github.com/mitchellh/mapstructure"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.uber.org/zap"
)
type serverFlags struct {
c string
dir string
cpu int
asService bool
}
var rootCmd = &cobra.Command{
Use: "mosdns",
}
func init() {
sf := new(serverFlags)
startCmd := &cobra.Command{
Use: "start [-c config_file] [-d working_dir]",
Short: "Start mosdns main program.",
RunE: func(cmd *cobra.Command, args []string) error {
if sf.asService {
svc, err := service.New(&serverService{f: sf}, svcCfg)
if err != nil {
return fmt.Errorf("failed to init service, %w", err)
}
return svc.Run()
}
m, err := NewServer(sf)
if err != nil {
return err
}
go func() {
c := make(chan os.Signal, 1)
signal.Notify(c, syscall.SIGINT, syscall.SIGTERM)
sig := <-c
m.logger.Warn("signal received", zap.Stringer("signal", sig))
m.sc.SendCloseSignal(nil)
}()
return m.GetSafeClose().WaitClosed()
},
DisableFlagsInUseLine: true,
SilenceUsage: true,
}
rootCmd.AddCommand(startCmd)
fs := startCmd.Flags()
fs.StringVarP(&sf.c, "config", "c", "", "config file")
fs.StringVarP(&sf.dir, "dir", "d", "", "working dir")
fs.IntVar(&sf.cpu, "cpu", 0, "set runtime.GOMAXPROCS")
fs.BoolVar(&sf.asService, "as-service", false, "start as a service")
_ = fs.MarkHidden("as-service")
serviceCmd := &cobra.Command{
Use: "service",
Short: "Manage mosdns as a system service.",
}
serviceCmd.PersistentPreRunE = initService
serviceCmd.AddCommand(
newSvcInstallCmd(),
newSvcUninstallCmd(),
newSvcStartCmd(),
newSvcStopCmd(),
newSvcRestartCmd(),
newSvcStatusCmd(),
)
rootCmd.AddCommand(serviceCmd)
}
func AddSubCmd(c *cobra.Command) {
rootCmd.AddCommand(c)
}
func Run() error {
return rootCmd.Execute()
}
func NewServer(sf *serverFlags) (*Mosdns, error) {
if sf.cpu > 0 {
runtime.GOMAXPROCS(sf.cpu)
}
if len(sf.dir) > 0 {
err := os.Chdir(sf.dir)
if err != nil {
return nil, fmt.Errorf("failed to change the current working directory, %w", err)
}
mlog.L().Info("working directory changed", zap.String("path", sf.dir))
}
cfg, fileUsed, err := loadConfig(sf.c)
if err != nil {
return nil, fmt.Errorf("fail to load config, %w", err)
}
mlog.L().Info("main config loaded", zap.String("file", fileUsed))
// Set current config file for API access
SetCurrentConfigFile(fileUsed)
return NewMosdns(cfg)
}
// loadConfig load a config from a file. If filePath is empty, it will
// automatically search and load a file which name start with "config".
func loadConfig(filePath string) (*Config, string, error) {
v := viper.New()
if len(filePath) > 0 {
v.SetConfigFile(filePath)
} else {
v.SetConfigName("config")
v.AddConfigPath(".")
}
if err := v.ReadInConfig(); err != nil {
return nil, "", fmt.Errorf("failed to read config: %w", err)
}
decoderOpt := func(cfg *mapstructure.DecoderConfig) {
cfg.ErrorUnused = true
cfg.TagName = "yaml"
cfg.WeaklyTypedInput = true
}
cfg := new(Config)
if err := v.Unmarshal(cfg, decoderOpt); err != nil {
return nil, "", fmt.Errorf("failed to unmarshal config: %w", err)
}
return cfg, v.ConfigFileUsed(), nil
}