refactoring
This commit is contained in:
parent
f14d47f34a
commit
f4bd361e8e
33
server/engine/engine.go
Normal file
33
server/engine/engine.go
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
package engine
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/imkira/go-observer"
|
||||||
|
"sirlab.de/go/knyc/handler"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Engine struct {
|
||||||
|
obs observer.Property
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewEngine() *Engine {
|
||||||
|
engine := Engine{
|
||||||
|
obs: observer.NewProperty(handler.Value{}),
|
||||||
|
}
|
||||||
|
return &engine
|
||||||
|
}
|
||||||
|
|
||||||
|
func (engine *Engine) Run() {
|
||||||
|
for {
|
||||||
|
value := engine.obs.Value().(handler.Value)
|
||||||
|
fmt.Printf("sleep: %d\n", value.Value)
|
||||||
|
time.Sleep(1 * time.Second)
|
||||||
|
value.Value++
|
||||||
|
engine.obs.Update(value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (engine *Engine) GetHttpHandler() handler.HandlerFunc {
|
||||||
|
return handler.SyncFactory(engine.obs)
|
||||||
|
}
|
@ -4,13 +4,15 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type HandlerFunc func(http.ResponseWriter, *http.Request)
|
||||||
|
|
||||||
type AuthMux struct {
|
type AuthMux struct {
|
||||||
mux *http.ServeMux
|
mux *http.ServeMux
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewAuthMux() *AuthMux {
|
func NewAuthMux() *AuthMux {
|
||||||
return &(AuthMux{
|
return &(AuthMux{
|
||||||
mux: http.NewServeMux(),
|
mux: http.NewServeMux(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -18,7 +20,7 @@ func (authMux *AuthMux) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|||||||
authMux.mux.ServeHTTP(w, r)
|
authMux.mux.ServeHTTP(w, r)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (authMux *AuthMux) PublicHandleFunc(pattern string, handlerFunc func(http.ResponseWriter, *http.Request)) {
|
func (authMux *AuthMux) PublicHandleFunc(pattern string, handlerFunc HandlerFunc) {
|
||||||
authMux.mux.HandleFunc(pattern, handlerFunc)
|
authMux.mux.HandleFunc(pattern, handlerFunc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,13 +7,11 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type HttpHandler func(http.ResponseWriter, *http.Request)
|
|
||||||
|
|
||||||
func Exit(_ http.ResponseWriter, _ *http.Request) {
|
func Exit(_ http.ResponseWriter, _ *http.Request) {
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
func CreateVersionHandler() HttpHandler {
|
func CreateVersionHandler() HandlerFunc {
|
||||||
startTime := time.Now().Unix()
|
startTime := time.Now().Unix()
|
||||||
return func(w http.ResponseWriter, r *http.Request) {
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
fmt.Fprintf(w, "%d\n", startTime)
|
fmt.Fprintf(w, "%d\n", startTime)
|
||||||
|
@ -11,7 +11,7 @@ type Value struct {
|
|||||||
Value int
|
Value int
|
||||||
}
|
}
|
||||||
|
|
||||||
func SyncFactory(obs observer.Property) HttpHandler {
|
func SyncFactory(obs observer.Property) HandlerFunc {
|
||||||
return func(w http.ResponseWriter, r *http.Request) {
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
refId, err := strconv.Atoi(r.URL.Query().Get("ref"))
|
refId, err := strconv.Atoi(r.URL.Query().Get("ref"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -2,45 +2,24 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/imkira/go-observer"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"sirlab.de/go/knyc/engine"
|
||||||
"sirlab.de/go/knyc/handler"
|
"sirlab.de/go/knyc/handler"
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Engine struct {
|
|
||||||
obs observer.Property
|
|
||||||
}
|
|
||||||
|
|
||||||
var engine Engine
|
|
||||||
|
|
||||||
func (engine Engine) runEngine() {
|
|
||||||
for {
|
|
||||||
value := engine.obs.Value().(handler.Value)
|
|
||||||
fmt.Printf("sleep: %d\n", value.Value)
|
|
||||||
time.Sleep(1 * time.Second)
|
|
||||||
value.Value++
|
|
||||||
engine.obs.Update(value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
app := handler.NewAuthMux()
|
app := handler.NewAuthMux()
|
||||||
http.Handle("/", app)
|
http.Handle("/", app)
|
||||||
|
|
||||||
app.PublicHandleFunc("/__intern__/exit", handler.Exit)
|
app.PublicHandleFunc("/__intern__/exit", handler.Exit)
|
||||||
|
|
||||||
obs := observer.NewProperty(handler.Value{Value: 19})
|
|
||||||
app.PublicHandleFunc("/sync", handler.SyncFactory(obs))
|
|
||||||
|
|
||||||
// hanlde login page
|
|
||||||
fsHandler := http.FileServer(http.Dir("../client/dist/"))
|
|
||||||
|
|
||||||
// default handler
|
// default handler
|
||||||
|
fsHandler := http.FileServer(http.Dir("../client/dist/"))
|
||||||
app.PublicHandle("/", fsHandler)
|
app.PublicHandle("/", fsHandler)
|
||||||
|
|
||||||
engine.obs = obs
|
eng := engine.NewEngine()
|
||||||
go engine.runEngine()
|
app.PublicHandleFunc("/sync", eng.GetHttpHandler())
|
||||||
|
go eng.Run()
|
||||||
|
|
||||||
// start listening
|
// start listening
|
||||||
fmt.Println("http://localhost:32039")
|
fmt.Println("http://localhost:32039")
|
||||||
|
Loading…
Reference in New Issue
Block a user