summaryrefslogtreecommitdiff
path: root/pkg/mixer/mixer.go
blob: 96fbf8da78de1e99a799468dad86697ad0a6ba50 (plain) (blame)
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
//
//  dolmetschctl
//
//
//  Copyright (C) 2019 Christian Pointner <equinox@spreadspace.org>
//
//  This file is part of dolmetschctl.
//
//  dolmetschctl is free software: you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation, either version 3 of the License, or
//  any later version.
//
//  dolmetschctl is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with dolmetschctl. If not, see <http://www.gnu.org/licenses/>.
//

package mixer

import (
	"container/list"
	"errors"
	"fmt"
	"log"
	"strings"
	"sync"

	"github.com/scgolang/midi"
)

// TODO: make this configurable
const (
	CC_MUTE  = byte(0xB1)
	CC_FADER = byte(0xB0)
)

type Channel uint8
type EventType int

const (
	EventFaderChange EventType = iota
	EventMute
)

func (et EventType) String() string {
	switch et {
	case EventFaderChange:
		return "fader-change"
	case EventMute:
		return "mute"
	default:
		return "unknown"
	}
}

type FaderLevel uint8

// TODO: make the values configurable
const (
	FaderLevelUnknown = FaderLevel(0xFF)
	FaderLevelMax     = FaderLevel(0x7F)
	FaderLevel0db     = FaderLevel(0x60)
	FaderLevelOff     = FaderLevel(0x00)
)

func (fl FaderLevel) String() string {
	if fl > FaderLevelMax {
		return "unknown"
	}
	val := fmt.Sprintf("%3d", fl)
	switch fl {
	case FaderLevelMax:
		return val + " (max)"
	case FaderLevel0db:
		return val + " (0db)"
	case FaderLevelOff:
		return val + " (off)"
	default:
		return val
	}
}

type Mute int8

const (
	MuteUnknown = Mute(-1)
	MuteUnmuted = Mute(0)
	MuteMuted   = Mute(1)
)

func (m Mute) String() string {
	switch m {
	case MuteUnmuted:
		return "unmuted"
	case MuteMuted:
		return "muted"
	default:
		return "unknown"
	}
}

type Event struct {
	Channel Channel
	Type    EventType
	Level   FaderLevel
	Mute    Mute
}

func (e Event) String() string {
	return fmt.Sprintf("Event(%s) for channel %d: level=%s, muted=%s", e.Type, e.Channel, e.Level, e.Mute)
}

type subscriber struct {
	publish     chan<- Event
	unsubscribe <-chan struct{}
}

type Mixer struct {
	DevIn           *midi.Device
	DevOut          *midi.Device
	subscribersLock sync.Mutex
	subscribers     map[Channel]*list.List
}

func openDevice(devices []*midi.Device, prefix string) (d *midi.Device, err error) {
	for _, device := range devices {
		if strings.HasPrefix(device.Name, prefix) {
			d = device
		}
	}
	if d == nil {
		return nil, errors.New("could not find device with prefix: " + prefix)
	}
	return d, d.Open()
}

func NewMixer(c Config) (*Mixer, error) {
	devices, err := midi.Devices()
	if err != nil {
		return nil, err
	}

	// TODO: add support for DevIn == DevOut
	m := &Mixer{}
	if m.DevIn, err = openDevice(devices, c.DevIn); err != nil {
		return nil, err
	}
	m.DevIn.QueueSize = 100
	if m.DevOut, err = openDevice(devices, c.DevOut); err != nil {
		return nil, err
	}

	m.subscribers = make(map[Channel]*list.List)
	return m, nil
}

func (m *Mixer) publishEvent(ev Event) {
	m.subscribersLock.Lock()
	defer m.subscribersLock.Unlock()

	subs, exists := m.subscribers[ev.Channel]
	if exists && subs != nil {
		var next *list.Element
		for entry := subs.Front(); entry != nil; entry = next {
			next = entry.Next()

			sub, ok := (entry.Value).(subscriber)
			if !ok {
				panic(fmt.Sprintf("mixer: subscriber list element value has wrong type: %T", entry.Value))
			}

			select {
			case <-sub.unsubscribe:
				log.Printf("mixer: removing subscriber '%v', because it has unsubscribed", sub.publish)
				close(sub.publish)
				subs.Remove(entry)
			default:
				select {
				case sub.publish <- ev:
				default:
					// subscriber is not responding...
					log.Printf("mixer: removing subscriber '%v', because it is not responding", sub.publish)
					close(sub.publish)
					subs.Remove(entry)
				}
			}
		}
	}
}

func (m *Mixer) handleMidiPacket(p midi.Packet) {
	ev := Event{Level: FaderLevelUnknown, Mute: MuteUnknown}
	ev.Channel = Channel(p.Data[1])
	switch p.Data[0] {
	case CC_FADER:
		ev.Type = EventFaderChange
		ev.Level = FaderLevel(p.Data[2])
	case CC_MUTE:
		ev.Type = EventMute
		ev.Mute = MuteUnmuted
		if p.Data[2] > 0 {
			ev.Mute = MuteMuted
		}
	default:
		return
	}
	m.publishEvent(ev)
}

func (m *Mixer) Init() error {
	ch, err := m.DevIn.Packets()
	if err != nil {
		return err
	}

	go func() {
		for {
			// TODO: handle Errors (reopen the device!)
			m.handleMidiPacket(<-ch)
		}
	}()
	return nil
}

func (m *Mixer) Shutdown() error {
	if m.DevIn != nil {
		m.DevIn.Close()
	}
	if m.DevOut != nil {
		m.DevOut.Close()
	}
	// TODO: also close all subscribed channels
	//       terminate go-routine started by Init()
	return nil
}

func (m *Mixer) sendMute(channel byte, value byte) error {
	n, err := m.DevOut.Write([]byte{CC_MUTE, channel, value})
	if err != nil {
		// reopen device?
		return err
	}
	if n != 3 {
		return errors.New("sending mute command failed.")
	}
	return nil
}

func (m *Mixer) Mute(ch Channel) error {
	return m.sendMute(byte(ch), 0x7F)
}

func (m *Mixer) Unmute(ch Channel) error {
	return m.sendMute(byte(ch), 0x00)
}

func (m *Mixer) SetLevel(ch Channel, level FaderLevel) error {
	if level > FaderLevelMax {
		level = FaderLevelMax
	}
	n, err := m.DevOut.Write([]byte{CC_FADER, byte(ch), byte(level)})
	if err != nil {
		// reopen device?
		return err
	}
	if n != 3 {
		return errors.New("setting fader level failed.")
	}
	return nil
}

func (m *Mixer) Subscribe(ch Channel, out chan<- Event) chan<- struct{} {
	m.subscribersLock.Lock()
	defer m.subscribersLock.Unlock()

	subs, exists := m.subscribers[ch]
	if !exists {
		subs = list.New()
		m.subscribers[ch] = subs
	}

	log.Printf("mixer: subscribing '%v' to events for channel: %v", out, ch)
	unsubscribe := make(chan struct{})
	subs.PushBack(subscriber{publish: out, unsubscribe: unsubscribe})
	return unsubscribe
}