2015-01-18 16:31:22 -05:00
|
|
|
package httpserver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2015-01-20 19:08:14 -05:00
|
|
|
func Start(handler http.Handler, address string) (chan<- string, <-chan error) {
|
2015-01-18 16:31:22 -05:00
|
|
|
ctrlChannel := make(chan string)
|
|
|
|
errorChannel := make(chan error)
|
2015-01-20 19:08:14 -05:00
|
|
|
go start(ctrlChannel, errorChannel, handler, address)
|
2015-01-18 16:31:22 -05:00
|
|
|
return ctrlChannel, errorChannel
|
|
|
|
}
|
|
|
|
|
2015-01-20 19:08:14 -05:00
|
|
|
func start(ctrlChannel <-chan string, errorChannel chan<- error, router http.Handler, address string) {
|
|
|
|
log.Println("Starting HTTP Server on " + address)
|
|
|
|
err := http.ListenAndServe(address, router)
|
2015-01-18 16:31:22 -05:00
|
|
|
errorChannel <- err
|
2015-01-18 19:59:23 -05:00
|
|
|
close(errorChannel)
|
2015-01-18 16:31:22 -05:00
|
|
|
}
|