Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoradio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ale
autoradio
Commits
7e4eac4d
Commit
7e4eac4d
authored
11 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
add the command-line launchers for the node and the http redirector
parent
1f9d0355
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cmd/radiod/radiod.go
+34
-0
34 additions, 0 deletions
cmd/radiod/radiod.go
cmd/redirectord/redirectord.go
+32
-0
32 additions, 0 deletions
cmd/redirectord/redirectord.go
http.go
+16
-2
16 additions, 2 deletions
http.go
with
82 additions
and
2 deletions
cmd/radiod/radiod.go
0 → 100644
+
34
−
0
View file @
7e4eac4d
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
This diff is collapsed.
Click to expand it.
cmd/redirectord/redirectord.go
0 → 100644
+
32
−
0
View file @
7e4eac4d
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
This diff is collapsed.
Click to expand it.
http.go
+
16
−
2
View file @
7e4eac4d
...
...
@@ -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
)
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment