-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
155 lines (140 loc) · 3.21 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package main
import (
"encoding/json"
"flag"
"github.com/fhs/gompd/mpd"
"github.com/gorilla/websocket"
"go/build"
"log"
"net/http"
"path/filepath"
"text/template"
"time"
)
type hub struct {
connections map[*connection]bool
inbound chan []byte
register chan *connection
unregister chan *connection
conn *mpd.Client
token int
}
func (h *hub) run() {
// Configure the connection and handler
if h.conn == nil {
conn, err := mpd.Dial("tcp", "localhost:6600")
if err != nil {
log.Fatal("mpd.Dial:", err)
}
h.conn = conn
}
for {
select {
case c := <-h.register:
h.connections[c] = true
c.token = h.createConnectionToken()
jsonReturn, _ := json.Marshal(cmdInput{"register", "", c.token})
c.send <- jsonReturn
case c := <-h.unregister:
if _, ok := h.connections[c]; ok {
delete(h.connections, c)
close(c.send)
}
case msg := <-h.inbound:
jsonReturn, err, broadcast := h.handleMessage(msg)
if err != nil {
jsonReturn, _ = json.Marshal(err)
}
for c := range h.connections {
if broadcast == c.token || broadcast == 0 {
select {
case c.send <- jsonReturn:
default:
delete(h.connections, c)
close(c.send)
}
}
}
case <-time.After(time.Second * 1):
h.conn.Ping()
}
}
}
func (h *hub) handleMessage(m []byte) ([]byte, error, int) {
return mpdMessageHandle(h.conn, m)
}
func (h *hub) createConnectionToken() int {
h.token = h.token + 1
return h.token
}
var h = hub{
inbound: make(chan []byte),
register: make(chan *connection),
unregister: make(chan *connection),
connections: make(map[*connection]bool),
conn: nil,
token: 1,
}
type connection struct {
ws *websocket.Conn
send chan []byte
token int
}
func (c *connection) reader() {
for {
_, message, err := c.ws.ReadMessage()
if err != nil {
break
}
h.inbound <- message
}
c.ws.Close()
}
func (c *connection) writer() {
for message := range c.send {
err := c.ws.WriteMessage(websocket.TextMessage, message)
log.Print(string(message))
if err != nil {
break
}
}
c.ws.Close()
}
var upgrader = &websocket.Upgrader{ReadBufferSize: 1024, WriteBufferSize: 1024}
var (
addr = flag.String("addr", ":8080", "http service address")
assets = flag.String("assets", defaultAssetPath(), "path to assets")
homeTempl *template.Template
)
func defaultAssetPath() string {
p, err := build.Default.Import("github.com/Blackth0rn/go-mpd-web/public", "", build.FindOnly)
if err != nil {
return "."
}
return p.Dir
}
func homeHandler(c http.ResponseWriter, req *http.Request) {
http.ServeFile(c, req, filepath.Join(*assets, "index.html"))
}
func wsHandler(w http.ResponseWriter, r *http.Request) {
ws, err := upgrader.Upgrade(w, r, nil)
if err != nil {
return
}
c := &connection{send: make(chan []byte, 256), ws: ws}
h.register <- c
defer func() { h.unregister <- c }()
go c.writer()
c.reader()
}
func main() {
flag.Parse()
go h.run()
fs := http.FileServer(http.Dir(defaultAssetPath()))
http.Handle("/public/", http.StripPrefix("/public/", fs))
http.HandleFunc("/", homeHandler)
http.HandleFunc("/ws", wsHandler)
if err := http.ListenAndServe(*addr, nil); err != nil {
log.Fatal("ListenAndServe:", err)
}
}