我通过gin's https://github.com/fvbock/endless提供HTTP服务。我希望看到与基本HTTP服务器的区别。
我通过以下方式发送了syscall.SIGUSR1
信号:
syscall.Kill(getPid(), syscall.SIGUSR1)
该应用程序没有退出,但我无法检测到重新启动。
我要做的是在toml配置文件更改时为应用初始化新配置。
我的代码如下:
package main
import (
"os"
"fmt"
"syscall"
"github.com/gin-gonic/gin"
"github.com/fvbock/endless"
"github.com/BurntSushi/toml"
)
type Config struct {
Age int
Cats []string
}
var cfg Config
func restart(c *gin.Context) {
syscall.Kill(os.Getpid(), syscall.SIGUSR1)
}
func init() {
toml.DecodeFile("config.toml", &cfg)
fmt.Println("Testing", cfg)
}
func main() {
router := gin.New()
router.GET("/restart", restart)
if err := endless.ListenAndServe("localhost:7777", router); err != nil {
panic(err)
}
}
当我点击重新启动端点时,我希望打印出toml配置。
答案 0 :(得分:0)
根据问题的更改更新答案。默认情况下,无限库可让您处理该信号。您将需要注册一个钩子。我在下面扩展了您的示例代码:
package main
import (
"os"
"fmt"
"syscall"
"github.com/gin-gonic/gin"
"github.com/fvbock/endless"
"github.com/BurntSushi/toml"
)
type Config struct {
Age int
Cats []string
}
var cfg Config
func restart(c *gin.Context) {
syscall.Kill(os.Getpid(), syscall.SIGUSR1)
}
func readConfig() {
toml.DecodeFile("config.toml", &cfg)
fmt.Println("Testing", cfg)
}
func main() {
readConfig()
router := gin.New()
router.GET("/restart", restart)
srv := endless.NewServer("localhost:7777", router)
srv.SignalHooks[endless.PRE_SIGNAL][syscall.SIGUSR1] = append(
srv.SignalHooks[endless.PRE_SIGNAL][syscall.SIGUSR1],
readConfig)
if err := srv.ListenAndServe(); err != nil {
panic(err)
}
}
现在,当您调用重新启动终结点时,您应该在stdout中看到对配置文件的更改。但是,为了查看文件中的更改,您需要使用类似fsnotify
的东西