replace zxq.co/ripple/hanayo
This commit is contained in:
71
vendor/zxq.co/ripple/rippleapi/startuato_linux.go
vendored
Normal file
71
vendor/zxq.co/ripple/rippleapi/startuato_linux.go
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
// +build !windows
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/rcrowley/goagain"
|
||||
"github.com/valyala/fasthttp"
|
||||
"zxq.co/ripple/rippleapi/common"
|
||||
"zxq.co/ripple/schiavolib"
|
||||
)
|
||||
|
||||
func startuato(hn fasthttp.RequestHandler) {
|
||||
conf, _ := common.Load()
|
||||
// Inherit a net.Listener from our parent process or listen anew.
|
||||
l, err := goagain.Listener()
|
||||
if nil != err {
|
||||
|
||||
// Listen on a TCP or a UNIX domain socket (TCP here).
|
||||
if conf.Unix {
|
||||
l, err = net.Listen("unix", conf.ListenTo)
|
||||
} else {
|
||||
l, err = net.Listen("tcp", conf.ListenTo)
|
||||
}
|
||||
if nil != err {
|
||||
schiavo.Bunker.Send(err.Error())
|
||||
log.Fatalln(err)
|
||||
}
|
||||
|
||||
schiavo.Bunker.Send(fmt.Sprint("LISTENINGU STARTUATO ON ", l.Addr()))
|
||||
|
||||
// Accept connections in a new goroutine.
|
||||
go fasthttp.Serve(l, hn)
|
||||
} else {
|
||||
|
||||
// Resume accepting connections in a new goroutine.
|
||||
schiavo.Bunker.Send(fmt.Sprint("LISTENINGU RESUMINGU ON ", l.Addr()))
|
||||
go fasthttp.Serve(l, hn)
|
||||
|
||||
// Kill the parent, now that the child has started successfully.
|
||||
if err := goagain.Kill(); nil != err {
|
||||
schiavo.Bunker.Send(err.Error())
|
||||
log.Fatalln(err)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Block the main goroutine awaiting signals.
|
||||
if _, err := goagain.Wait(l); nil != err {
|
||||
schiavo.Bunker.Send(err.Error())
|
||||
log.Fatalln(err)
|
||||
}
|
||||
|
||||
// Do whatever's necessary to ensure a graceful exit like waiting for
|
||||
// goroutines to terminate or a channel to become closed.
|
||||
//
|
||||
// In this case, we'll simply stop listening and wait one second.
|
||||
if err := l.Close(); nil != err {
|
||||
schiavo.Bunker.Send(err.Error())
|
||||
log.Fatalln(err)
|
||||
}
|
||||
if err := db.Close(); err != nil {
|
||||
schiavo.Bunker.Send(err.Error())
|
||||
log.Fatalln(err)
|
||||
}
|
||||
time.Sleep(time.Second * 1)
|
||||
}
|
Reference in New Issue
Block a user