]> sigrok.org Git - libsigrokdecode.git/blame - decoders/midi/pd.py
Add PD tags handling and some tags
[libsigrokdecode.git] / decoders / midi / pd.py
CommitLineData
17f5df4f
UH
1##
2## This file is part of the libsigrokdecode project.
3##
08475857 4## Copyright (C) 2013-2016 Uwe Hermann <uwe@hermann-uwe.de>
18101a31 5## Copyright (C) 2016 Chris Dreher <chrisdreher@hotmail.com>
17f5df4f
UH
6##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; either version 2 of the License, or
10## (at your option) any later version.
11##
12## This program is distributed in the hope that it will be useful,
13## but WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15## GNU General Public License for more details.
16##
17## You should have received a copy of the GNU General Public License
4539e9ca 18## along with this program; if not, see <http://www.gnu.org/licenses/>.
17f5df4f
UH
19##
20
17f5df4f
UH
21import sigrokdecode as srd
22from .lists import *
23
24RX = 0
25TX = 1
26
27class Decoder(srd.Decoder):
b197383c 28 api_version = 3
17f5df4f
UH
29 id = 'midi'
30 name = 'MIDI'
31 longname = 'Musical Instrument Digital Interface'
32 desc = 'Musical Instrument Digital Interface (MIDI) protocol.'
33 license = 'gplv2+'
34 inputs = ['uart']
35 outputs = ['midi']
4c180223 36 tags = ['Logic', 'Bus', 'Audio']
da9bcbd9
BV
37 annotations = (
38 ('text-verbose', 'Human-readable text (verbose)'),
6aa03e3a
C
39 ('text-sysreal-verbose', 'Human-readable SysReal text (verbose)'),
40 ('text-error', 'Human-readable Error text'),
41 )
42 annotation_rows = (
43 ('normal', 'Normal', (0, 2)),
44 ('sys-real', 'SysReal', (1,)),
da9bcbd9 45 )
17f5df4f 46
92b7b49f 47 def __init__(self):
10aeb8ea
GS
48 self.reset()
49
50 def reset(self):
17f5df4f 51 self.state = 'IDLE'
6aa03e3a
C
52 self.status_byte = 0
53 self.explicit_status_byte = False
54 self.cmd = []
17f5df4f
UH
55 self.ss = None
56 self.es = None
57 self.ss_block = None
58 self.es_block = None
59
8915b346 60 def start(self):
be465111 61 self.out_ann = self.register(srd.OUTPUT_ANN)
17f5df4f 62
17f5df4f
UH
63 def putx(self, data):
64 self.put(self.ss_block, self.es_block, self.out_ann, data)
65
b0fc934a
CD
66 def get_note_name(self, channel, note):
67 if channel != 10:
68 return chromatic_notes[note]
69 else:
70 return 'assuming ' + percussion_notes.get(note, 'undefined')
71
6aa03e3a 72 def check_for_garbage_flush(self, is_flushed):
740a4a52
UH
73 if is_flushed:
74 if self.explicit_status_byte:
6aa03e3a
C
75 self.cmd.insert(0, self.status_byte)
76 self.handle_garbage_msg(None)
77
78 def soft_clear_status_byte(self):
79 self.explicit_status_byte = False
80
81 def hard_clear_status_byte(self):
82 self.status_byte = 0
83 self.explicit_status_byte = False
84
85 def set_status_byte(self, newbyte):
86 self.status_byte = newbyte
87 self.explicit_status_byte = True
88
89 def handle_channel_msg_0x80(self, is_flushed):
17f5df4f
UH
90 # Note off: 8n kk vv
91 # n = channel, kk = note, vv = velocity
92 c = self.cmd
6aa03e3a
C
93 if len(c) < 2:
94 self.check_for_garbage_flush(is_flushed)
17f5df4f
UH
95 return
96 self.es_block = self.es
6aa03e3a
C
97 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
98 note, velocity = c[0], c[1]
b0fc934a
CD
99 note_name = self.get_note_name(chan, note)
100 self.putx([0, ['Channel %d: %s (note = %d \'%s\', velocity = %d)' % \
9cc1ddf9
C
101 (chan, status_bytes[msg][0], note, note_name, velocity),
102 'ch %d: %s %d, velocity = %d' % \
103 (chan, status_bytes[msg][1], note, velocity),
104 '%d: %s %d, vel %d' % \
105 (chan, status_bytes[msg][2], note, velocity)]])
17f5df4f 106 self.cmd, self.state = [], 'IDLE'
6aa03e3a 107 self.soft_clear_status_byte()
17f5df4f 108
6aa03e3a 109 def handle_channel_msg_0x90(self, is_flushed):
17f5df4f
UH
110 # Note on: 9n kk vv
111 # n = channel, kk = note, vv = velocity
112 # If velocity == 0 that actually means 'note off', though.
113 c = self.cmd
6aa03e3a
C
114 if len(c) < 2:
115 self.check_for_garbage_flush(is_flushed)
17f5df4f 116 return
ee7de90f 117 self.es_block = self.es
6aa03e3a
C
118 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
119 note, velocity = c[0], c[1]
9cc1ddf9 120 s = status_bytes[0x80] if (velocity == 0) else status_bytes[msg]
b0fc934a
CD
121 note_name = self.get_note_name(chan, note)
122 self.putx([0, ['Channel %d: %s (note = %d \'%s\', velocity = %d)' % \
9cc1ddf9
C
123 (chan, s[0], note, note_name, velocity),
124 'ch %d: %s %d, velocity = %d' % \
125 (chan, s[1], note, velocity),
126 '%d: %s %d, vel %d' % \
127 (chan, s[2], note, velocity)]])
17f5df4f 128 self.cmd, self.state = [], 'IDLE'
6aa03e3a 129 self.soft_clear_status_byte()
17f5df4f 130
6aa03e3a 131 def handle_channel_msg_0xa0(self, is_flushed):
17f5df4f
UH
132 # Polyphonic key pressure / aftertouch: An kk vv
133 # n = channel, kk = polyphonic key pressure, vv = pressure value
b0fc934a 134 c = self.cmd
6aa03e3a
C
135 if len(c) < 2:
136 self.check_for_garbage_flush(is_flushed)
b0fc934a
CD
137 return
138 self.es_block = self.es
6aa03e3a
C
139 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
140 note, pressure = c[0], c[1]
b0fc934a 141 note_name = self.get_note_name(chan, note)
9cc1ddf9
C
142 self.putx([0, ['Channel %d: %s of %d for note = %d \'%s\'' % \
143 (chan, status_bytes[msg][0], pressure, note, note_name),
144 'ch %d: %s %d for note %d' % \
145 (chan, status_bytes[msg][1], pressure, note),
146 '%d: %s %d, N %d' % \
147 (chan, status_bytes[msg][2], pressure, note)]])
b0fc934a 148 self.cmd, self.state = [], 'IDLE'
6aa03e3a 149 self.soft_clear_status_byte()
17f5df4f
UH
150
151 def handle_controller_0x44(self):
152 # Legato footswitch: Bn 44 vv
153 # n = channel, vv = value (<= 0x3f: normal, > 0x3f: legato)
9cc1ddf9 154 c = self.cmd
6aa03e3a
C
155 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
156 vv = c[1]
9cc1ddf9
C
157 t = ('normal', 'no') if vv <= 0x3f else ('legato', 'yes')
158 self.putx([0, ['Channel %d: %s \'%s\' = %s' % \
159 (chan, status_bytes[msg][0],
160 control_functions[0x44][0], t[0]),
161 'ch %d: %s \'%s\' = %s' % \
162 (chan, status_bytes[msg][1],
163 control_functions[0x44][1], t[0]),
164 '%d: %s \'%s\' = %s' % \
165 (chan, status_bytes[msg][2],
166 control_functions[0x44][2], t[1])]])
17f5df4f
UH
167
168 def handle_controller_0x54(self):
169 # Portamento control (PTC): Bn 54 kk
170 # n = channel, kk = source note for pitch reference
9cc1ddf9 171 c = self.cmd
6aa03e3a
C
172 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
173 kk = c[1]
b0fc934a 174 kk_name = self.get_note_name(chan, kk)
9cc1ddf9
C
175 self.putx([0, ['Channel %d: %s \'%s\' (source note = %d / %s)' % \
176 (chan, status_bytes[msg][0],
177 control_functions[0x54][0], kk, kk_name),
178 'ch %d: %s \'%s\' (source note = %d)' % \
179 (chan, status_bytes[msg][1],
180 control_functions[0x54][1], kk),
181 '%d: %s \'%s\' (src N %d)' % \
182 (chan, status_bytes[msg][2],
183 control_functions[0x54][2], kk)]])
17f5df4f
UH
184
185 def handle_controller_generic(self):
186 c = self.cmd
6aa03e3a
C
187 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
188 fn, param = c[0], c[1]
b0fc934a
CD
189 default_name = 'undefined'
190 ctrl_fn = control_functions.get(fn, default_name)
191 if ctrl_fn == default_name:
9cc1ddf9
C
192 ctrl_fn = ('undefined 0x%02x' % fn, 'undef 0x%02x' % fn, '0x%02x' % fn)
193 self.putx([0, ['Channel %d: %s \'%s\' (param = 0x%02x)' % \
194 (chan, status_bytes[msg][0], ctrl_fn[0], param),
195 'ch %d: %s \'%s\' (param = 0x%02x)' % \
196 (chan, status_bytes[msg][1], ctrl_fn[1], param),
197 '%d: %s \'%s\' is 0x%02x' % \
198 (chan, status_bytes[msg][2], ctrl_fn[2], param)]])
17f5df4f 199
b0fc934a
CD
200 def handle_channel_mode(self):
201 # Channel Mode: Bn mm vv
202 # n = channel, mm = mode number (120 - 127), vv = value
203 c = self.cmd
6aa03e3a
C
204 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
205 mm, vv = c[0], c[1]
9cc1ddf9 206 mode_fn = control_functions.get(mm, ('undefined', 'undef', 'undef'))
b0fc934a 207 # Decode the value based on the mode number.
9cc1ddf9 208 vv_string = ('', '')
b0fc934a
CD
209 if mm == 122: # mode = local control?
210 if vv == 0:
9cc1ddf9 211 vv_string = ('off', 'off')
b0fc934a 212 elif vv == 127: # mode = poly mode on?
9cc1ddf9 213 vv_string = ('on', 'on')
b0fc934a 214 else:
9cc1ddf9
C
215 vv_string = ('(non-standard param value of 0x%02x)' % vv,
216 '0x%02x' % vv)
b0fc934a
CD
217 elif mm == 126: # mode = mono mode on?
218 if vv != 0:
9cc1ddf9 219 vv_string = ('(%d channels)' % vv, '(%d ch)' % vv)
b0fc934a 220 else:
9cc1ddf9
C
221 vv_string = ('(channels \'basic\' through 16)',
222 '(ch \'basic\' thru 16)')
b0fc934a 223 elif vv != 0: # All other channel mode messages expect vv == 0.
9cc1ddf9
C
224 vv_string = ('(non-standard param value of 0x%02x)' % vv,
225 '0x%02x' % vv)
226 self.putx([0, ['Channel %d: %s \'%s\' %s' % \
227 (chan, status_bytes[msg][0], mode_fn[0], vv_string[0]),
228 'ch %d: %s \'%s\' %s' % \
229 (chan, status_bytes[msg][1], mode_fn[1], vv_string[1]),
230 '%d: %s \'%s\' %s' % \
231 (chan, status_bytes[msg][2], mode_fn[2], vv_string[1])]])
b0fc934a 232 self.cmd, self.state = [], 'IDLE'
6aa03e3a 233 self.soft_clear_status_byte()
b0fc934a 234
6aa03e3a 235 def handle_channel_msg_0xb0(self, is_flushed):
17f5df4f
UH
236 # Control change (or channel mode messages): Bn cc vv
237 # n = channel, cc = control number (0 - 119), vv = control value
238 c = self.cmd
6aa03e3a
C
239 if len(c) < 2:
240 self.check_for_garbage_flush(is_flushed)
17f5df4f
UH
241 return
242 self.es_block = self.es
6aa03e3a 243 if c[0] in range(0x78, 0x7f + 1):
b0fc934a
CD
244 self.handle_channel_mode()
245 return
6aa03e3a 246 handle_ctrl = getattr(self, 'handle_controller_0x%02x' % c[0],
17f5df4f
UH
247 self.handle_controller_generic)
248 handle_ctrl()
249 self.cmd, self.state = [], 'IDLE'
6aa03e3a 250 self.soft_clear_status_byte()
17f5df4f 251
6aa03e3a 252 def handle_channel_msg_0xc0(self, is_flushed):
17f5df4f
UH
253 # Program change: Cn pp
254 # n = channel, pp = program number (0 - 127)
b0fc934a 255 c = self.cmd
6aa03e3a
C
256 if len(c) < 1:
257 self.check_for_garbage_flush(is_flushed)
b0fc934a
CD
258 return
259 self.es_block = self.es
6aa03e3a
C
260 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
261 pp = self.cmd[0] + 1
b0fc934a
CD
262 change_type = 'instrument'
263 name = ''
264 if chan != 10: # channel != percussion
265 name = gm_instruments.get(pp, 'undefined')
266 else:
267 change_type = 'drum kit'
268 name = drum_kit.get(pp, 'undefined')
269 self.putx([0, ['Channel %d: %s to %s %d (assuming %s)' % \
9cc1ddf9
C
270 (chan, status_bytes[msg][0], change_type, pp, name),
271 'ch %d: %s to %s %d' % \
272 (chan, status_bytes[msg][1], change_type, pp),
273 '%d: %s %d' % \
274 (chan, status_bytes[msg][2], pp)]])
b0fc934a 275 self.cmd, self.state = [], 'IDLE'
6aa03e3a 276 self.soft_clear_status_byte()
17f5df4f 277
6aa03e3a 278 def handle_channel_msg_0xd0(self, is_flushed):
17f5df4f
UH
279 # Channel pressure / aftertouch: Dn vv
280 # n = channel, vv = pressure value
b0fc934a 281 c = self.cmd
6aa03e3a
C
282 if len(c) < 1:
283 self.check_for_garbage_flush(is_flushed)
b0fc934a
CD
284 return
285 self.es_block = self.es
6aa03e3a
C
286 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
287 vv = self.cmd[0]
9cc1ddf9
C
288 self.putx([0, ['Channel %d: %s %d' % (chan, status_bytes[msg][0], vv),
289 'ch %d: %s %d' % (chan, status_bytes[msg][1], vv),
290 '%d: %s %d' % (chan, status_bytes[msg][2], vv)]])
b0fc934a 291 self.cmd, self.state = [], 'IDLE'
6aa03e3a 292 self.soft_clear_status_byte()
17f5df4f 293
6aa03e3a 294 def handle_channel_msg_0xe0(self, is_flushed):
17f5df4f
UH
295 # Pitch bend change: En ll mm
296 # n = channel, ll = pitch bend change LSB, mm = pitch bend change MSB
b0fc934a 297 c = self.cmd
6aa03e3a
C
298 if len(c) < 2:
299 self.check_for_garbage_flush(is_flushed)
b0fc934a
CD
300 return
301 self.es_block = self.es
6aa03e3a
C
302 msg, chan = self.status_byte & 0xf0, (self.status_byte & 0x0f) + 1
303 ll, mm = self.cmd[0], self.cmd[1]
b0fc934a
CD
304 decimal = (mm << 7) + ll
305 self.putx([0, ['Channel %d: %s 0x%02x 0x%02x (%d)' % \
9cc1ddf9
C
306 (chan, status_bytes[msg][0], ll, mm, decimal),
307 'ch %d: %s 0x%02x 0x%02x (%d)' % \
308 (chan, status_bytes[msg][1], ll, mm, decimal),
309 '%d: %s (%d)' % \
310 (chan, status_bytes[msg][2], decimal)]])
b0fc934a 311 self.cmd, self.state = [], 'IDLE'
6aa03e3a 312 self.soft_clear_status_byte()
17f5df4f 313
6aa03e3a 314 def handle_channel_msg_generic(self, is_flushed):
b0fc934a
CD
315 # TODO: It should not be possible to hit this code.
316 # It currently can not be unit tested.
6aa03e3a 317 msg_type = self.status_byte & 0xf0
b0fc934a 318 self.es_block = self.es
6aa03e3a 319 self.putx([2, ['Unknown channel message type: 0x%02x' % msg_type]])
b0fc934a 320 self.cmd, self.state = [], 'IDLE'
6aa03e3a 321 self.soft_clear_status_byte()
17f5df4f
UH
322
323 def handle_channel_msg(self, newbyte):
73c8d0fb 324 if newbyte is not None:
6aa03e3a
C
325 if newbyte >= 0x80:
326 self.set_status_byte(newbyte)
327 else:
328 self.cmd.append(newbyte)
329 msg_type = self.status_byte & 0xf0
17f5df4f
UH
330 handle_msg = getattr(self, 'handle_channel_msg_0x%02x' % msg_type,
331 self.handle_channel_msg_generic)
73c8d0fb 332 handle_msg(newbyte is None)
17f5df4f
UH
333
334 def handle_sysex_msg(self, newbyte):
b0fc934a 335 # SysEx message: 1 status byte, 1-3 manuf. bytes, x data bytes, EOX byte
6aa03e3a 336 #
f8a6ae16 337 # SysEx messages are variable length, can be terminated by EOX or
6aa03e3a 338 # by any non-SysReal status byte, and it clears self.status_byte.
f8a6ae16
UH
339 #
340 # Note: All System message codes don't utilize self.status_byte.
6aa03e3a 341 self.hard_clear_status_byte()
73c8d0fb 342 if newbyte != 0xf7 and newbyte is not None: # EOX
6aa03e3a 343 self.cmd.append(newbyte)
17f5df4f
UH
344 return
345 self.es_block = self.es
b0fc934a
CD
346 # Note: Unlike other methods, this code pops bytes out of self.cmd
347 # to isolate the data.
6aa03e3a 348 msg = self.cmd.pop(0)
b0fc934a 349 if len(self.cmd) < 1:
6aa03e3a 350 self.putx([2, ['%s: truncated manufacturer code (<1 bytes)' % \
9cc1ddf9
C
351 status_bytes[msg][0],
352 '%s: truncated manufacturer (<1 bytes)' % \
353 status_bytes[msg][1],
354 '%s: trunc. manu.' % status_bytes[msg][2]]])
b0fc934a
CD
355 self.cmd, self.state = [], 'IDLE'
356 return
357 # Extract the manufacturer name (or SysEx realtime or non-realtime).
358 m1 = self.cmd.pop(0)
359 manu = (m1,)
360 if m1 == 0x00: # If byte == 0, then 2 more manufacturer bytes follow.
361 if len(self.cmd) < 2:
6aa03e3a 362 self.putx([2, ['%s: truncated manufacturer code (<3 bytes)' % \
9cc1ddf9
C
363 status_bytes[msg][0],
364 '%s: truncated manufacturer (<3 bytes)' % \
365 status_bytes[msg][1],
366 '%s: trunc. manu.' % status_bytes[msg][2]]])
b0fc934a
CD
367 self.cmd, self.state = [], 'IDLE'
368 return
369 manu = (m1, self.cmd.pop(0), self.cmd.pop(0))
370 default_name = 'undefined'
371 manu_name = sysex_manufacturer_ids.get(manu, default_name)
372 if manu_name == default_name:
373 if len(manu) == 3:
9cc1ddf9
C
374 manu_name = ('%s (0x%02x 0x%02x 0x%02x)' % \
375 (default_name, manu[0], manu[1], manu[2]),
376 default_name)
b0fc934a 377 else:
9cc1ddf9
C
378 manu_name = ('%s (0x%02x)' % (default_name, manu[0]),
379 default_name)
380 else:
381 manu_name = (manu_name, manu_name)
382 # Extract the payload, display in 1 of 2 formats
b0fc934a 383 # TODO: Write methods to decode SysEx realtime & non-realtime payloads.
9cc1ddf9
C
384 payload0 = ''
385 payload1 = ''
b0fc934a 386 while len(self.cmd) > 0:
9cc1ddf9
C
387 byte = self.cmd.pop(0)
388 payload0 += '0x%02x ' % (byte)
389 payload1 += '%02x ' % (byte)
390 if payload0 == '':
391 payload0 = '<empty>'
392 payload1 = '<>'
393 payload = (payload0, payload1)
394 self.putx([0, ['%s: for \'%s\' with payload %s' % \
395 (status_bytes[msg][0], manu_name[0], payload[0]),
396 '%s: \'%s\', payload %s' % \
397 (status_bytes[msg][1], manu_name[1], payload[1]),
398 '%s: \'%s\', payload %s' % \
399 (status_bytes[msg][2], manu_name[1], payload[1])]])
b0fc934a
CD
400 self.cmd, self.state = [], 'IDLE'
401
402 def handle_syscommon_midi_time_code_quarter_frame_msg(self, newbyte):
403 # MIDI time code quarter frame: F1 nd
404 # n = message type
405 # d = values
6aa03e3a 406 #
f8a6ae16 407 # Note: All System message codes don't utilize self.status_byte,
6aa03e3a 408 # and System Exclusive and System Common clear it.
b0fc934a
CD
409 c = self.cmd
410 if len(c) < 2:
73c8d0fb 411 if newbyte is None:
6aa03e3a 412 self.handle_garbage_msg(None)
b0fc934a 413 return
6aa03e3a
C
414 msg = c[0]
415 nn, dd = (c[1] & 0x70) >> 4, c[1] & 0x0f
9cc1ddf9 416 group = ('System Common', 'SysCom', 'SC')
b0fc934a
CD
417 self.es_block = self.es
418 if nn != 7: # If message type does not contain SMPTE type.
419 self.putx([0, ['%s: %s of %s, value 0x%01x' % \
9cc1ddf9
C
420 (group[0], status_bytes[msg][0],
421 quarter_frame_type[nn][0], dd),
422 '%s: %s of %s, value 0x%01x' % \
423 (group[1], status_bytes[msg][1],
424 quarter_frame_type[nn][1], dd),
425 '%s: %s of %s, value 0x%01x' % \
426 (group[2], status_bytes[msg][2],
427 quarter_frame_type[nn][1], dd)]])
b0fc934a
CD
428 self.cmd, self.state = [], 'IDLE'
429 return
430 tt = (dd & 0x6) >> 1
431 self.putx([0, ['%s: %s of %s, value 0x%01x for %s' % \
9cc1ddf9
C
432 (group[0], status_bytes[msg][0], \
433 quarter_frame_type[nn][0], dd, smpte_type[tt]),
434 '%s: %s of %s, value 0x%01x for %s' % \
435 (group[1], status_bytes[msg][1], \
436 quarter_frame_type[nn][1], dd, smpte_type[tt]),
437 '%s: %s of %s, value 0x%01x for %s' % \
438 (group[2], status_bytes[msg][2], \
439 quarter_frame_type[nn][1], dd, smpte_type[tt])]])
17f5df4f
UH
440 self.cmd, self.state = [], 'IDLE'
441
442 def handle_syscommon_msg(self, newbyte):
b0fc934a
CD
443 # System common messages
444 #
445 # There are 5 simple formats (which are directly handled here) and
446 # 1 complex one called MIDI time code quarter frame.
447 #
448 # Note: While the MIDI lists 0xf7 as a "system common" message, it
449 # is actually only used with SysEx messages so it is processed there.
f8a6ae16
UH
450 #
451 # Note: All System message codes don't utilize self.status_byte.
6aa03e3a 452 self.hard_clear_status_byte()
73c8d0fb 453 if newbyte is not None:
6aa03e3a 454 self.cmd.append(newbyte)
b0fc934a 455 c = self.cmd
6aa03e3a 456 msg = c[0]
9cc1ddf9 457 group = ('System Common', 'SysCom', 'SC')
b0fc934a
CD
458 if msg == 0xf1:
459 # MIDI time code quarter frame
460 self.handle_syscommon_midi_time_code_quarter_frame_msg(newbyte)
461 return
462 elif msg == 0xf2:
463 # Song position pointer: F2 ll mm
464 # ll = LSB position, mm = MSB position
465 if len(c) < 3:
73c8d0fb 466 if newbyte is None:
6aa03e3a 467 self.handle_garbage_msg(None)
b0fc934a 468 return
6aa03e3a 469 ll, mm = c[1], c[2]
b0fc934a
CD
470 decimal = (mm << 7) + ll
471 self.es_block = self.es
472 self.putx([0, ['%s: %s 0x%02x 0x%02x (%d)' % \
9cc1ddf9
C
473 (group[0], status_bytes[msg][0], ll, mm, decimal),
474 '%s: %s 0x%02x 0x%02x (%d)' % \
475 (group[1], status_bytes[msg][1], ll, mm, decimal),
476 '%s: %s (%d)' % \
477 (group[2], status_bytes[msg][2], decimal)]])
b0fc934a
CD
478 elif msg == 0xf3:
479 # Song select: F3 ss
480 # ss = song selection number
481 if len(c) < 2:
73c8d0fb 482 if newbyte is None:
6aa03e3a 483 self.handle_garbage_msg(None)
b0fc934a 484 return
6aa03e3a 485 ss = c[1]
b0fc934a 486 self.es_block = self.es
9cc1ddf9
C
487 self.putx([0, ['%s: %s number %d' % \
488 (group[0], status_bytes[msg][0], ss),
489 '%s: %s number %d' % \
490 (group[1], status_bytes[msg][1], ss),
491 '%s: %s # %d' % \
492 (group[2], status_bytes[msg][2], ss)]])
b0fc934a
CD
493 elif msg == 0xf4 or msg == 0xf5 or msg == 0xf6:
494 # Undefined 0xf4, Undefined 0xf5, and Tune Request (respectively).
495 # All are only 1 byte long with no data bytes.
496 self.es_block = self.es
9cc1ddf9
C
497 self.putx([0, ['%s: %s' % (group[0], status_bytes[msg][0]),
498 '%s: %s' % (group[1], status_bytes[msg][1]),
499 '%s: %s' % (group[2], status_bytes[msg][2])]])
b0fc934a 500 self.cmd, self.state = [], 'IDLE'
17f5df4f
UH
501
502 def handle_sysrealtime_msg(self, newbyte):
503 # System realtime message: 0b11111ttt (t = message type)
6aa03e3a 504 #
f8a6ae16 505 # Important: These messages are handled differently from all others
6aa03e3a
C
506 # because they are allowed to temporarily interrupt other messages.
507 # The interrupted messages resume after the realtime message is done.
508 # Thus, they mostly leave 'self' the way it was found.
f8a6ae16
UH
509 #
510 # Note: All System message codes don't utilize self.status_byte.
511 old_ss_block, old_es_block = self.ss_block, self.es_block
512 self.ss_block, self.es_block = self.ss, self.es
9cc1ddf9 513 group = ('System Realtime', 'SysReal', 'SR')
6aa03e3a 514 self.putx([1, ['%s: %s' % (group[0], status_bytes[newbyte][0]),
9cc1ddf9
C
515 '%s: %s' % (group[1], status_bytes[newbyte][1]),
516 '%s: %s' % (group[2], status_bytes[newbyte][2])]])
f8a6ae16
UH
517 self.ss_block, self.es_block = old_ss_block, old_es_block
518 # Deliberately not resetting self.cmd or self.state.
6aa03e3a
C
519
520 def handle_garbage_msg(self, newbyte):
f8a6ae16 521 # Handle messages that are either not handled or are corrupt.
6aa03e3a 522 self.es_block = self.es
73c8d0fb 523 if newbyte is not None:
6aa03e3a
C
524 self.cmd.append(newbyte)
525 return
526 payload = '<empty>'
f8a6ae16
UH
527 max_bytes = 16 # Put a limit on the length on the hex dump.
528 for index in range(len(self.cmd)):
6aa03e3a 529 if index == max_bytes:
f8a6ae16 530 payload += ' ...'
6aa03e3a
C
531 break
532 if index == 0:
533 payload = '0x%02x' % self.cmd[index]
534 else:
f8a6ae16 535 payload += ' 0x%02x' % self.cmd[index]
6aa03e3a 536 self.putx([2, ['UNHANDLED DATA: %s' % payload,
f8a6ae16 537 'UNHANDLED', '???', '?']])
17f5df4f 538 self.cmd, self.state = [], 'IDLE'
6aa03e3a
C
539 self.hard_clear_status_byte()
540
541 def handle_state(self, state, newbyte):
542 # 'newbyte' can either be:
f8a6ae16
UH
543 # 1. Value between 0x00-0xff, deal with the byte normally.
544 # 2. Value of 'None' which means "flush any buffered data".
6aa03e3a
C
545 if state == 'HANDLE CHANNEL MSG':
546 self.handle_channel_msg(newbyte)
547 elif state == 'HANDLE SYSEX MSG':
548 self.handle_sysex_msg(newbyte)
549 elif state == 'HANDLE SYSCOMMON MSG':
550 self.handle_syscommon_msg(newbyte)
551 elif state == 'HANDLE SYSREALTIME MSG':
552 self.handle_sysrealtime_msg(newbyte)
553 elif state == 'BUFFER GARBAGE MSG':
554 self.handle_garbage_msg(newbyte)
555
556 def get_next_state(self, newbyte):
f8a6ae16 557 # 'newbyte' must be a valid byte between 0x00 and 0xff.
6aa03e3a 558 #
f8a6ae16 559 # Try to determine the state based off of the 'newbyte' parameter.
6aa03e3a
C
560 if newbyte in range(0x80, 0xef + 1):
561 return 'HANDLE CHANNEL MSG'
562 if newbyte == 0xf0:
563 return 'HANDLE SYSEX MSG'
564 if newbyte in range(0xf1, 0xf7):
565 return'HANDLE SYSCOMMON MSG'
566 if newbyte in range(0xf8, 0xff + 1):
567 return 'HANDLE SYSREALTIME MSG'
f8a6ae16 568 # Passing 0xf7 is an error; messages don't start with 0xf7.
6aa03e3a
C
569 if newbyte == 0xf7:
570 return 'BUFFER GARBAGE MSG'
f8a6ae16 571 # Next, base the state off of self.status_byte.
6aa03e3a
C
572 if self.status_byte < 0x80:
573 return 'BUFFER GARBAGE MSG'
574 return self.get_next_state(self.status_byte)
17f5df4f
UH
575
576 def decode(self, ss, es, data):
577 ptype, rxtx, pdata = data
6aa03e3a 578 state = 'IDLE'
17f5df4f
UH
579
580 # For now, ignore all UART packets except the actual data packets.
581 if ptype != 'DATA':
582 return
583
7cf698c5
UH
584 # We're only interested in the byte value (not individual bits).
585 pdata = pdata[0]
586
17f5df4f
UH
587 # Short MIDI overview:
588 # - Status bytes are 0x80-0xff, data bytes are 0x00-0x7f.
589 # - Most messages: 1 status byte, 1-2 data bytes.
590 # - Real-time system messages: always 1 byte.
591 # - SysEx messages: 1 status byte, n data bytes, EOX byte.
f8a6ae16 592 #
6aa03e3a
C
593 # Aspects of the MIDI protocol that complicate decoding:
594 # - MIDI System Realtime messages can briefly interrupt other
f8a6ae16 595 # messages already in progress.
6aa03e3a
C
596 # - "Running Status" allows for omitting the status byte in most
597 # scenarios if sequential messages have the same status byte.
598 # - System Exclusive (SysEx) messages can be terminated by ANY
599 # status byte (not limited to EOX byte).
600
17f5df4f 601 # State machine.
6aa03e3a
C
602 if pdata >= 0x80 and pdata != 0xf7:
603 state = self.get_next_state(pdata)
604 if state != 'HANDLE SYSREALTIME MSG' and self.state != 'IDLE':
f8a6ae16 605 # Flush the previous data since a new message is starting.
6aa03e3a 606 self.handle_state(self.state, None)
f8a6ae16 607 # Cache ss and es -after- flushing previous data.
6aa03e3a 608 self.ss, self.es = ss, es
17f5df4f 609 # This is a status byte, remember the start sample.
f8a6ae16
UH
610 if state != 'HANDLE SYSREALTIME MSG':
611 self.ss_block = ss
6aa03e3a 612 elif self.state == 'IDLE' or self.state == 'BUFFER GARBAGE MSG':
f8a6ae16 613 # Deal with "running status" or that we're buffering garbage.
6aa03e3a 614 self.ss, self.es = ss, es
f8a6ae16
UH
615 if self.state == 'IDLE':
616 self.ss_block = ss
6aa03e3a
C
617 state = self.get_next_state(pdata)
618 else:
619 self.ss, self.es = ss, es
620 state = self.state
17f5df4f
UH
621
622 # Yes, this is intentionally _not_ an 'elif' here.
6aa03e3a
C
623 if state != 'HANDLE SYSREALTIME MSG':
624 self.state = state
625 if state == 'BUFFER GARBAGE MSG':
626 self.status_byte = 0
627 self.handle_state(state, pdata)