|
package main; import ( "fmt" ; "html" ; |
|
"net/http";"strconv";"strings";"time" ); |
|
type msg struct{Tgt string;Cnt int};func |
|
main() {ctrlCh := make(chan msg);cmpCh:= |
|
make(chan bool); pCh := make ( chan chan |
|
bool);wkr := false;go admin(ctrlCh, pCh) |
|
; for {select { case respChan := <- pCh: |
|
respChan <- wkr; case msg := <- ctrlCh: |
|
wkr = true; go doStuff(msg, cmpCh); case |
|
state:=<-cmpCh:wkr=state;}}};func admin( |
|
cc chan msg,pCh chan chan bool ) { http. |
|
HandleFunc("/administrator",func(w http. |
|
ResponseWriter,r *http.Request){strings. |
|
Split(r.Host,"."); r.ParseForm(); count, |
|
err := strconv.ParseInt ( r.FormValue ( |
|
"count"),10,32); if err!=nil{http.Error( |
|
w, err.Error(), http.StatusBadRequest ); |
|
return; }; msg:= msg { Tgt:r.FormValue ( |
|
"target"),Cnt:int(count)};cc <- msg;fmt. |
|
Fprintf (w, `Control message issued for |
|
Target:%s, Cnt:%d`, html.EscapeString(r. |
|
FormValue( "target" ) ), int(count));}); |
|
http.HandleFunc("/_status", func(w http. |
|
ResponseWriter,r*http.Request){reqCh := |
|
make(chan bool); pCh<-reqCh;tout:= time. |
|
NewTicker(1 * time.Second); select {case |
|
result := <-reqCh:if result {fmt.Fprint( |
|
w,"ACTIVE")} else { fmt.Fprint(w,"DEAD") |
|
};case <-tout.C:fmt.Fprint(w, "TIMEOUT") |
|
}});http.ListenAndServe(":8080", nil) }; |
|
func doStuff(msg msg, cmpCh chan bool) { |
|
time.Sleep(time.Duration(msg.Cnt)* time. |
|
Second); cmpCh <- false} // PEACE FOR ALL |