Skip to content
Snippets Groups Projects
Commit 7e4eac4d authored by ale's avatar ale
Browse files

add the command-line launchers for the node and the http redirector

parent 1f9d0355
No related branches found
No related tags found
No related merge requests found
package main
import (
"flag"
"log"
"os"
"os/signal"
"syscall"
"git.autistici.org/ale/radioai"
)
var (
publicIp = flag.String("ip", "127.0.0.1", "Public IP for this machine")
)
func main() {
flag.Parse()
client := radioai.NewEtcdClient()
node := radioai.NewRadioNode(*publicIp, client)
// Set up a clean shutdown function on SIGTERM.
stopch := make(chan os.Signal)
go func() {
<- stopch
log.Printf("terminating...")
node.Stop()
}()
signal.Notify(stopch, syscall.SIGTERM, syscall.SIGINT)
node.Run()
}
\ No newline at end of file
package main
import (
"flag"
"fmt"
"log"
"net/http"
"time"
"git.autistici.org/ale/radioai"
)
var (
httpPort = flag.Int("port", 80, "TCP port to bind to")
)
func main() {
flag.Parse()
client := radioai.NewEtcdClient()
api := radioai.NewRadioAPI(client)
red := radioai.NewHttpRedirector(api)
server := &http.Server{
Addr: fmt.Sprintf(":%d", *httpPort),
Handler: red,
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
}
log.Fatal(server.ListenAndServe())
}
\ No newline at end of file
......@@ -22,6 +22,13 @@ type activeNodesCache struct {
var activeNodesTtl = 500 * time.Millisecond
func newActiveNodesCache(client *RadioAPI) *activeNodesCache {
return &activeNodesCache{
client: client,
nodes: []string{},
}
}
func (anc *activeNodesCache) GetNodes() []string {
anc.lock.Lock()
defer anc.lock.Unlock()
......@@ -50,6 +57,13 @@ type HttpRedirector struct {
nodeCache *activeNodesCache
}
func NewHttpRedirector(client *RadioAPI) *HttpRedirector {
return &HttpRedirector{
client: client,
nodeCache: newActiveNodesCache(client),
}
}
// Return an active node, chosen randomly.
func (h *HttpRedirector) pickActiveNode() string {
nodes := h.nodeCache.GetNodes()
......@@ -117,8 +131,8 @@ func (h *HttpRedirector) serveSource(w http.ResponseWriter, r *http.Request) {
func (h *HttpRedirector) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if r.Method == "SOURCE" {
serveSource(w, r)
h.serveSource(w, r)
} else {
serveRelay(w, r)
h.serveRelay(w, r)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment