Files
cameradar/server/main.go
T
Brendan LE GLAUNEC 5d2626b639 Change license to MIT
2018-03-12 15:04:06 +01:00

51 lines
1.2 KiB
Go

package main
import (
"fmt"
"net/http"
"os"
"github.com/EtixLabs/cameradar/server/actor/server"
"github.com/EtixLabs/cameradar/server/adaptor/websocket"
"github.com/EtixLabs/cameradar/server/service"
graceful "gopkg.in/tylerb/graceful.v1"
)
func main() {
webSocketFactory := websocket.NewGorillaFactory()
fromClient := make(chan string)
toClient := make(chan string)
server := server.New(webSocketFactory, fromClient, toClient)
_, err := service.New(
"/Users/ullaakut/Work/go/src/github.com/EtixLabs/cameradar/dictionaries/routes",
"/Users/ullaakut/Work/go/src/github.com/EtixLabs/cameradar/dictionaries/credentials.json",
fromClient,
toClient,
)
if err != nil {
fmt.Printf("could not start service: %v", err)
os.Exit(1)
}
// create and setup the http server
serverMux := http.NewServeMux()
serverMux.HandleFunc("/", server.Accept)
httpServer := &graceful.Server{
NoSignalHandling: true,
Server: &http.Server{
Addr: fmt.Sprintf("%v:%v", "0.0.0.0", 7000),
Handler: serverMux,
},
}
fmt.Printf("cameradar server listening on %v\n", httpServer.Addr)
err = httpServer.ListenAndServe()
if err != nil {
fmt.Printf("could not start server: %v\n", err)
os.Exit(1)
}
}