clean up the websocket Dial code to correctly restart
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
c926d8b441
commit
8807c8fc9b
68
gorilla.go
68
gorilla.go
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import "flag"
|
// import "flag"
|
||||||
import "log"
|
import "log"
|
||||||
import "net/url"
|
import "net/url"
|
||||||
import "os"
|
import "os"
|
||||||
|
@ -18,8 +18,7 @@ import pb "git.wit.com/wit/witProtobuf"
|
||||||
|
|
||||||
var gorillaConn *websocket.Conn
|
var gorillaConn *websocket.Conn
|
||||||
|
|
||||||
func readGorillaConn(done chan struct{}, conn *websocket.Conn) {
|
func readGorillaConn(conn *websocket.Conn) {
|
||||||
defer close(done)
|
|
||||||
for {
|
for {
|
||||||
mytype, message, err := conn.ReadMessage()
|
mytype, message, err := conn.ReadMessage()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -46,7 +45,6 @@ func gorillaSendProtobuf() {
|
||||||
if (gorillaConn == nil) {
|
if (gorillaConn == nil) {
|
||||||
log.Println("gorillaSendProtobuf() gorillaConn == nil")
|
log.Println("gorillaSendProtobuf() gorillaConn == nil")
|
||||||
log.Println("Need to re-open connection here")
|
log.Println("Need to re-open connection here")
|
||||||
// go gorillaDial()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
msg := pb.CreateSampleEvent()
|
msg := pb.CreateSampleEvent()
|
||||||
|
@ -60,30 +58,62 @@ func gorillaSendProtobuf() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func gorillaDial() {
|
func closeGorillaConn() {
|
||||||
var addr = flag.String("addr", "v000185.testing.com.customers.wprod.wit.com:9000", "http service address")
|
if gorillaConn == nil {
|
||||||
|
log.Println("gorillaConn already was nil")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
interrupt := make(chan os.Signal, 1)
|
// Cleanly close the connection by sending a close message and then
|
||||||
signal.Notify(interrupt, os.Interrupt)
|
// waiting (with timeout) for the server to close the connection.
|
||||||
|
err := gorillaConn.WriteMessage(websocket.CloseMessage, websocket.FormatCloseMessage(websocket.CloseNormalClosure, ""))
|
||||||
|
if err != nil {
|
||||||
|
log.Println("write close:", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
u := url.URL{Scheme: "ws", Host: *addr, Path: "/event"}
|
// this must be called or set to be called with defer
|
||||||
|
gorillaConn.Close()
|
||||||
|
gorillaConn = nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func gorillaDial(hostname string) {
|
||||||
|
// var addr = flag.String("addr", "v000185.testing.com.customers.wprod.wit.com:9000", "http service address")
|
||||||
|
|
||||||
|
for {
|
||||||
|
// u := url.URL{Scheme: "ws", Host: *addr, Path: "/event"}
|
||||||
|
u := url.URL{Scheme: "ws", Host: hostname, Path: "/event"}
|
||||||
log.Printf("connecting to %s", u.String())
|
log.Printf("connecting to %s", u.String())
|
||||||
|
|
||||||
conn, _, err := websocket.DefaultDialer.Dial(u.String(), nil)
|
conn, _, err := websocket.DefaultDialer.Dial(u.String(), nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println("gorilla Dial failed", err)
|
log.Println("gorilla Dial failed", err)
|
||||||
return
|
} else {
|
||||||
}
|
|
||||||
defer conn.Close()
|
|
||||||
gorillaConn = conn
|
gorillaConn = conn
|
||||||
|
|
||||||
|
// handle inbound messages on the channel
|
||||||
|
readGorillaConn(conn)
|
||||||
|
closeGorillaConn()
|
||||||
|
}
|
||||||
|
|
||||||
|
time.Sleep(time.Second * 5) // try every 5 seconds
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// this is a facinating code snippet that I wanted to leave here because it is
|
||||||
|
// so interesting. Complements to the gorilla websocket example developers
|
||||||
|
//
|
||||||
|
func beautifulAndFacinatingChannel() {
|
||||||
done := make(chan struct{})
|
done := make(chan struct{})
|
||||||
|
|
||||||
// handle inbound messages on the channel
|
interrupt := make(chan os.Signal, 1)
|
||||||
go readGorillaConn(done, conn)
|
signal.Notify(interrupt, os.Interrupt)
|
||||||
|
|
||||||
ticker := time.NewTicker(time.Second * 1)
|
ticker := time.NewTicker(time.Second * 1)
|
||||||
|
|
||||||
defer ticker.Stop()
|
defer ticker.Stop()
|
||||||
|
defer close(done)
|
||||||
|
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
|
@ -94,13 +124,9 @@ func gorillaDial() {
|
||||||
case <-interrupt:
|
case <-interrupt:
|
||||||
log.Println("interrupt")
|
log.Println("interrupt")
|
||||||
|
|
||||||
// Cleanly close the connection by sending a close message and then
|
gorillaSendProtobuf()
|
||||||
// waiting (with timeout) for the server to close the connection.
|
|
||||||
err := conn.WriteMessage(websocket.CloseMessage, websocket.FormatCloseMessage(websocket.CloseNormalClosure, ""))
|
// not sure what this does. nothing right?
|
||||||
if err != nil {
|
|
||||||
log.Println("write close:", err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
select {
|
select {
|
||||||
case <-done:
|
case <-done:
|
||||||
case <-time.After(time.Second):
|
case <-time.After(time.Second):
|
||||||
|
|
6
main.go
6
main.go
|
@ -27,6 +27,9 @@ import _ "github.com/andlabs/ui/winmanifest"
|
||||||
// always sorted slice (new project)
|
// always sorted slice (new project)
|
||||||
// https://github.com/yaa110/sslice
|
// https://github.com/yaa110/sslice
|
||||||
|
|
||||||
|
// several smart slice functions (new project. April 2019)
|
||||||
|
// https://github.com/elliotchance/pie
|
||||||
|
|
||||||
// Exit and write out the config
|
// Exit and write out the config
|
||||||
// (in yaml and json I guess.)
|
// (in yaml and json I guess.)
|
||||||
// switch to json once it can be made human readable
|
// switch to json once it can be made human readable
|
||||||
|
@ -62,8 +65,7 @@ func main() {
|
||||||
// setups up a dnssecsocket()
|
// setups up a dnssecsocket()
|
||||||
go retrySocket()
|
go retrySocket()
|
||||||
|
|
||||||
time.Sleep(3 * 1000 * 1000 * 1000)
|
go gorillaDial("v000185.testing.com.customers.wprod.wit.com:9000")
|
||||||
go gorillaDial()
|
|
||||||
|
|
||||||
// make this the main loop in an attempt to figure out the crashes
|
// make this the main loop in an attempt to figure out the crashes
|
||||||
// do not change this until the GUI is stable
|
// do not change this until the GUI is stable
|
||||||
|
|
Loading…
Reference in New Issue