代码拉取完成,页面将自动刷新
同步操作将从 PandaX物联网平台/PandaX 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package main
import (
"context"
"github.com/PandaXGO/PandaKit/logger"
"github.com/PandaXGO/PandaKit/rediscli"
"github.com/PandaXGO/PandaKit/restfulx"
"github.com/PandaXGO/PandaKit/starter"
"log"
"os"
"os/signal"
"pandax/iothub"
"pandax/pkg/cache"
"pandax/pkg/config"
"pandax/pkg/global"
"pandax/pkg/initialize"
"pandax/pkg/middleware"
"pandax/pkg/tdengine"
"syscall"
"github.com/spf13/cobra"
)
var (
configFile string
)
var rootCmd = &cobra.Command{
Use: "pandax is the main component in the panda.",
Short: `pandax is go go-restful frame`,
PreRun: func(cmd *cobra.Command, args []string) {
if configFile != "" {
global.Conf = config.InitConfig(configFile)
global.Log = logger.InitLog(global.Conf.Log.File.GetFilename(), global.Conf.Log.Level)
dbGorm := starter.DbGorm{Type: global.Conf.Server.DbType}
if global.Conf.Server.DbType == "mysql" {
dbGorm.Dsn = global.Conf.Mysql.Dsn()
dbGorm.MaxIdleConns = global.Conf.Mysql.MaxIdleConns
dbGorm.MaxOpenConns = global.Conf.Mysql.MaxOpenConns
} else {
dbGorm.Dsn = global.Conf.Postgresql.PgDsn()
dbGorm.MaxIdleConns = global.Conf.Postgresql.MaxIdleConns
dbGorm.MaxOpenConns = global.Conf.Postgresql.MaxOpenConns
}
global.Db = dbGorm.GormInit()
global.Log.Infof("%s连接成功", global.Conf.Server.DbType)
client, err := rediscli.NewRedisClient(global.Conf.Redis.Host, global.Conf.Redis.Password, global.Conf.Redis.Port, global.Conf.Redis.Db)
if err != nil {
global.Log.Panic("Redis连接错误")
} else {
global.Log.Info("Redis连接成功")
}
cache.RedisDb = client
tDengine, err := tdengine.InitTd(global.Conf.Taos.Username, global.Conf.Taos.Password, global.Conf.Taos.Host, global.Conf.Taos.Database)
if err != nil {
global.Log.Panic("Tdengine连接错误")
} else {
global.Log.Info("Tdengine连接成功")
}
global.TdDb = tDengine
initialize.InitTable()
// 初始化事件监听
go initialize.InitEvents()
} else {
global.Log.Panic("请配置config")
}
},
Run: func(cmd *cobra.Command, args []string) {
// 前置 函数
restfulx.UseBeforeHandlerInterceptor(middleware.PermissionHandler)
// 后置 函数
restfulx.UseAfterHandlerInterceptor(middleware.LogHandler)
restfulx.UseAfterHandlerInterceptor(middleware.OperationHandler)
app := initialize.InitRouter()
global.Log.Info("路由初始化完成")
app.Start(context.TODO())
//开启IOTHUB
go iothub.InitIothub()
stop := make(chan os.Signal, 1)
signal.Notify(stop, syscall.SIGTERM, os.Interrupt)
<-stop
if err := app.Stop(context.TODO()); err != nil {
log.Fatalf("fatal app stop: %s", err)
os.Exit(-3)
}
},
}
func init() {
rootCmd.Flags().StringVar(&configFile, "config", getEnvStr("PANDA_CONFIG", "./config.yml"), "panda config file path.")
}
func getEnvStr(env string, defaultValue string) string {
v := os.Getenv(env)
if v == "" {
return defaultValue
}
return v
}
func main() {
if err := rootCmd.Execute(); err != nil {
rootCmd.PrintErrf("panda root cmd execute: %s", err)
os.Exit(1)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。