-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathkodi_jsonrpc.go
392 lines (340 loc) · 9.42 KB
/
kodi_jsonrpc.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
// Package kodi_jsonrpc provides an interface for communicating with a Kodi/XBMC
// server via the raw JSON-RPC socket
//
// Extracted from the kodi-callback-daemon.
//
// Released under the terms of the MIT License (see LICENSE).
package kodi_jsonrpc
import (
"encoding/json"
"errors"
"fmt"
"io"
"net"
"sync"
"time"
log "github.com/Sirupsen/logrus"
)
// Main type for interacting with Kodi
type Connection struct {
conn net.Conn
write chan interface{}
Notifications chan Notification
enc *json.Encoder
dec *json.Decoder
responseLock sync.Mutex
connectedLock sync.Mutex
connectLock sync.Mutex
writeWait sync.WaitGroup
notificationWait sync.WaitGroup
requestId uint32
responses map[uint32]*chan *rpcResponse
Connected bool
Closed bool
address string
timeout time.Duration
}
// RPC Request type
type Request struct {
Id *uint32 `json:"id,omitempty"`
Method string `json:"method"`
Params *map[string]interface{} `json:"params,omitempty"`
JsonRPC string `json:"jsonrpc"`
}
// RPC response error type
type rpcError struct {
Code float64 `json:"code"`
Message string `json:"message"`
Data *map[string]interface{} `json:"data"`
}
// RPC Response provides a reader for returning responses
type Response struct {
channel *chan *rpcResponse
Pending bool // If Pending is false, Response is unwanted, or been consumed
readLock sync.Mutex
}
// RPC response type
type rpcResponse struct {
Id *float64 `json:"id"`
JsonRPC string `json:"jsonrpc"`
Method *string `json:"method"`
Params *map[string]interface{} `json:"params"`
Result json.RawMessage `json:"result"`
Error *rpcError `json:"error"`
}
// Notification stores Kodi server->client notifications.
type Notification struct {
Method string `json:"method"`
Params json.RawMessage `json:"params"`
}
const (
VERSION = `1.0.3`
// Minimum Kodi/XBMC API version
KODI_MIN_VERSION = 6
LogDebugLevel = log.DebugLevel
LogInfoLevel = log.InfoLevel
LogWarnLevel = log.WarnLevel
LogErrorLevel = log.ErrorLevel
LogFatalLevel = log.FatalLevel
LogPanicLevel = log.PanicLevel
)
func init() {
// Initialize logger, default to level Info
log.SetLevel(LogInfoLevel)
}
// New returns a Connection to the specified address.
// If timeout (seconds) is greater than zero, connection will fail if initial
// connection is not established within this time.
//
// User must ensure Close() is called on returned Connection when finished with
// it, to avoid leaks.
func New(address string, timeout time.Duration) (conn Connection, err error) {
conn = Connection{}
err = conn.init(address, timeout)
return conn, err
}
// SetLogLevel adjusts the level of logger output, level must be one of:
//
// LogDebugLevel
// LogInfoLevel
// LogWarnLevel
// LogErrorLevel
// LogFatalLevel
// LogPanicLevel
func SetLogLevel(level log.Level) {
log.SetLevel(level)
}
// Return the result and any errors from the response channel
// If timeout (seconds) is greater than zero, read will fail if not returned
// within this time.
func (rchan *Response) Read(result interface{}, timeout time.Duration) error {
rchan.readLock.Lock()
defer close(*rchan.channel)
defer func() {
rchan.Pending = false
}()
defer rchan.readLock.Unlock()
if rchan.Pending != true {
return errors.New(`No pending responses!`)
}
if rchan.channel == nil {
return errors.New(`Expected response channel, but got nil!`)
}
res := new(rpcResponse)
if timeout > 0 {
select {
case res = <-*rchan.channel:
case <-time.After(timeout * time.Second):
return errors.New(`Timeout waiting on response channel`)
}
} else {
res = <-*rchan.channel
}
if res == nil {
return errors.New(`Empty result received`)
}
err := res.unpack(&result)
return err
}
// Unpack the result and any errors from the Response
func (res *rpcResponse) unpack(result interface{}) (err error) {
if res.Error != nil {
err = errors.New(fmt.Sprintf(
`Kodi error (%v): %v`, res.Error.Code, res.Error.Message,
))
} else if res.Result != nil {
err = json.Unmarshal([]byte(res.Result), result)
} else {
log.WithField(`response`, res).Debug(`Received unknown response type from Kodi`)
}
return err
}
func (n *Notification) Read(result interface{}) error {
return json.Unmarshal([]byte(n.Params), result)
}
// init brings up an instance of the Kodi Connection
func (c *Connection) init(address string, timeout time.Duration) (err error) {
if c.address == `` {
c.address = address
}
if c.timeout == 0 && timeout != 0 {
c.timeout = timeout
}
if err = c.connect(); err != nil {
return err
}
c.write = make(chan interface{}, 16)
c.Notifications = make(chan Notification, 16)
c.responses = make(map[uint32]*chan *rpcResponse)
go c.reader()
go c.writer()
rchan := c.Send(Request{Method: `JSONRPC.Version`}, true)
var res map[string]interface{}
err = rchan.Read(&res, c.timeout)
if err != nil {
log.WithField(`error`, err).Error(`Kodi responded`)
return err
}
if version := res[`version`].(map[string]interface{}); version != nil {
if version[`major`].(float64) < KODI_MIN_VERSION {
return errors.New(`Kodi version too low, upgrade to Frodo or later`)
}
}
return
}
// Send an RPC Send to the Kodi server.
// Returns a Response, but does not attach a channel for it if want_response is
// false (for fire-and-forget commands that don't return any useful response).
func (c *Connection) Send(req Request, want_response bool) Response {
req.JsonRPC = `2.0`
res := Response{}
c.writeWait.Add(1)
if want_response == true {
c.responseLock.Lock()
id := c.requestId
ch := make(chan *rpcResponse)
c.responses[id] = &ch
c.requestId++
c.responseLock.Unlock()
req.Id = &id
log.WithField(`request`, req).Debug(`Sending Kodi Request (response desired)`)
c.write <- req
res.channel = &ch
res.Pending = true
} else {
log.WithField(`request`, req).Debug(`Sending Kodi Request (response undesired)`)
c.write <- req
res.Pending = false
}
c.writeWait.Done()
return res
}
// set whether we're connected or not
func (c *Connection) connected(status bool) {
c.connectedLock.Lock()
defer c.connectedLock.Unlock()
c.Connected = status
}
// connect establishes a TCP connection
func (c *Connection) connect() (err error) {
c.connected(false)
c.connectLock.Lock()
defer c.connectLock.Unlock()
// If we blocked on the lock, and another routine connected in the mean
// time, return early
if c.Connected {
return
}
if c.conn != nil {
_ = c.conn.Close()
}
c.conn, err = net.Dial(`tcp`, c.address)
if err != nil {
success := make(chan bool, 1)
done := make(chan bool, 1)
go func() {
for err != nil {
log.WithField(`error`, err).Error(`Connecting to Kodi`)
log.Info(`Attempting reconnect...`)
time.Sleep(time.Second)
c.conn, err = net.Dial(`tcp`, c.address)
select {
case <-done:
break
default:
}
}
success <- true
}()
if c.timeout > 0 {
select {
case <-success:
case <-time.After(c.timeout * time.Second):
done <- true
log.Error(`Timeout connecting to Kodi`)
return err
}
} else {
<-success
}
}
c.enc = json.NewEncoder(c.conn)
c.dec = json.NewDecoder(c.conn)
log.Info(`Connected to Kodi`)
c.connected(true)
return
}
// writer loop processes outbound requests
func (c *Connection) writer() {
for {
var req interface{}
req = <-c.write
for err := c.enc.Encode(req); err != nil; {
log.WithField(`error`, err).Warn(`Failed encoding request for Kodi`)
c.connect()
err = c.enc.Encode(req)
}
}
}
// reader loop processes inbound responses and notifications
func (c *Connection) reader() {
for {
res := new(rpcResponse)
err := c.dec.Decode(res)
if _, ok := err.(net.Error); err == io.EOF || ok {
log.WithField(`error`, err).Error(`Reading from Kodi`)
log.Error(`If this error persists, make sure you are using the JSON-RPC port, not the HTTP port!`)
for err != nil {
err = c.connect()
}
} else if err != nil {
log.WithField(`error`, err).Error(`Decoding response from Kodi`)
continue
}
if res.Id == nil && res.Method != nil {
c.notificationWait.Add(1)
log.WithField(`response.Method`, *res.Method).Debug(`Received notification from Kodi`)
n := Notification{}
n.Method = *res.Method
js, _ := json.Marshal(*res.Params)
n.Params = json.RawMessage(js)
c.Notifications <- n
c.notificationWait.Done()
} else if res.Id != nil {
if ch := c.responses[uint32(*res.Id)]; ch != nil {
if res.Result != nil {
log.WithField(`response.Result`, res.Result).Debug(`Received response from Kodi`)
}
*ch <- res
} else {
log.WithField(`response.Id`, *res.Id).Warn(`Received Kodi response for unknown request`)
log.WithField(`connection.responses`, c.responses).Debug(`Current response channels`)
}
} else {
if res.Error != nil {
log.WithField(`response.Error`, *res.Error).Warn(`Received unparseable Kodi response`)
} else {
log.WithField(`response`, res).Warn(`Received unparseable Kodi response`)
}
}
}
}
// Close Kodi connection
func (c *Connection) Close() {
if c.Closed {
return
}
c.Closed = true
if c.write != nil {
c.writeWait.Wait()
close(c.write)
}
if c.Notifications != nil {
c.notificationWait.Wait()
close(c.Notifications)
}
if c.conn != nil {
_ = c.conn.Close()
}
log.Info(`Disconnected from Kodi`)
}