-
Notifications
You must be signed in to change notification settings - Fork 6
/
lircrouter.go
70 lines (56 loc) · 1.2 KB
/
lircrouter.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
package lirc
import (
"log"
"path/filepath"
)
type remoteButton struct {
remote string
button string
}
// Handle is a function that can be registered to handle an lirc Event
type Handle func(Event)
// Handle registers a new event handler for a defined key
func (l *Router) Handle(remote string, button string, handle Handle) {
var rb remoteButton
if remote == "" {
rb.remote = "*"
} else {
rb.remote = remote
}
if button == "" {
rb.button = "*"
} else {
rb.button = button
}
if l.handlers == nil {
l.handlers = make(map[remoteButton]Handle)
}
l.handlers[rb] = handle
}
// Run this in a go routine to listen for IR Key Press Events
func (l *Router) Run() {
var rb remoteButton
for {
event := <-l.receive
match := 0
// Check for exact match
rb.remote = event.Remote
rb.button = event.Button
if h, ok := l.handlers[rb]; ok {
h(event)
continue
}
// Check for pattern matches
for k, h := range l.handlers {
remoteMatched, _ := filepath.Match(k.remote, event.Remote)
buttonMatched, _ := filepath.Match(k.button, event.Button)
if remoteMatched && buttonMatched {
h(event)
match = 1
}
}
if match == 0 {
log.Println("No match for ", event)
}
}
}