Source file llama_midi.ml
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
exception Parse_exception = Byte_array_parser.Parse_exception
let sprintf = Printf.sprintf
module Output = struct
let int16_be out n =
output_byte out (n lsr 8);
output_byte out (n land 0xff)
let rec variable_length_quantity' n : bytes =
let open Bytes in
if n < 128 then Bytes.make 1 (Char.chr n)
else
let s = variable_length_quantity' (n lsr 7) in
let rem = Char.chr (n land 0x7f) in
let s = extend s 0 1 in
set s (length s - 2)
@@ Char.chr (Char.code (get s (length s - 2)) lor 0x80);
set s (length s - 1) rem;
s
let variable_length_quantity n = Bytes.to_string (variable_length_quantity' n)
end
module Unknown = struct
type t = Unknown of string
end
open Unknown
module Chunk_type = struct
type t = | Track
let of_string_opt = function
| "MThd" -> Some Header
| "MTrk" -> Some Track
| _ -> None
let parse_result : (t, Unknown.t) result Byte_array_parser.t =
let open Byte_array_parser in
let+ name = string4 in
match of_string_opt name with
| Some t -> Ok t
| None -> Error (Unknown name)
end
module Format = struct
type t =
| Single_track
| Simultaneous_tracks of int
| Sequential_tracks of int
let to_string = function
| Single_track -> "Single_track"
| Simultaneous_tracks n -> sprintf "(Simultaneous_tracks %d)" n
| Sequential_tracks n -> sprintf "(Sequential_tracks %d)" n
let num_tracks = function
| Single_track -> 1
| Simultaneous_tracks n | Sequential_tracks n -> n
let write out t =
output_byte out 0;
match t with
| Single_track -> output_byte out 0
| Simultaneous_tracks n ->
output_byte out 1;
Output.int16_be out n
| Sequential_tracks n ->
output_byte out 2;
Output.int16_be out n
end
module Division = struct
type time_code = { smpte_format : int; ticks_per_frame : int }
type t = Ticks_per_quarter_note of int | Time_code of time_code
let to_string = function
| Ticks_per_quarter_note n -> sprintf "(Ticks_per_quarter_note %d)" n
| Time_code { smpte_format; ticks_per_frame } ->
sprintf "(Time_code ((smpte_format %d) (ticks_per_frame %d)))"
smpte_format ticks_per_frame
let of_raw_int16 i =
let payload = i land lnot (1 lsl 15) in
if i land (1 lsl 15) == 0 then Ticks_per_quarter_note payload
else
let negative_smpte_format = payload lsr 8 in
let ticks_per_frame = payload land 255 in
let smpte_format = -negative_smpte_format + 1 in
Time_code { smpte_format; ticks_per_frame }
let write out = function
| Ticks_per_quarter_note n ->
assert (0 <= n && n <= 0x7fff);
Output.int16_be out n
| Time_code { smpte_format; ticks_per_frame } ->
let negative_smpte_format = 128 - smpte_format in
output_byte out (0x8 lor negative_smpte_format);
output_byte out ticks_per_frame
end
module Channel_voice_message = struct
type note_event = { note : int; velocity : int }
type polyphonic_key_pressure = { note : int; pressure : int }
type control_change = { controller : int; value : int }
type program_change = { program : int }
type channel_pressure = { pressure : int }
type pitch_wheel_change = { signed_value : int }
type message =
| Note_off of note_event
| Note_on of note_event
| Polyphonic_key_pressure of polyphonic_key_pressure
| Control_change of control_change
| Program_change of program_change
| Channel_pressure of channel_pressure
| Pitch_wheel_change of pitch_wheel_change
type t = { channel : int; message : message }
let note_event_to_string { note; velocity } =
sprintf "((note %d) (velocity %d))" note velocity
let polyphonic_key_pressure_to_string { note; pressure } =
sprintf "((note %d) (pressure %d))" note pressure
let control_change_to_string { controller; value } =
sprintf "((controller %d) (value %d))" controller value
let program_change_to_string { program } = sprintf "((program %d))" program
let channel_pressure_to_string { pressure } =
sprintf "((pressure %d))" pressure
let pitch_wheel_change_to_string { signed_value } =
sprintf "((signed_value %d))" signed_value
let message_to_string = function
| Note_off note_event ->
sprintf "(Note_off %s)" (note_event_to_string note_event)
| Note_on note_event ->
sprintf "(Note_on %s)" (note_event_to_string note_event)
| Polyphonic_key_pressure polyphonic_key_pressure ->
sprintf "(Polyphonic_key_pressure %s)"
(polyphonic_key_pressure_to_string polyphonic_key_pressure)
| Control_change control_change ->
sprintf "(Control_change %s)" (control_change_to_string control_change)
| Program_change program_change ->
sprintf "(Program_change %s)" (program_change_to_string program_change)
| Channel_pressure channel_pressure ->
sprintf "(Channel_pressure %s)"
(channel_pressure_to_string channel_pressure)
| Pitch_wheel_change pitch_wheel_change ->
sprintf "(Pitch_wheel_change %s)"
(pitch_wheel_change_to_string pitch_wheel_change)
let to_string { channel; message } =
sprintf "((channel %d) (message %s))" channel (message_to_string message)
let parse status =
if status < 0 || status > 255 then raise (Parse_exception "Expected byte");
if status < 128 then
raise (Parse_exception "Expected most significant bit to be 1");
let open Byte_array_parser in
let message_type_identifier = (status lsr 4) land 0x7 in
let channel = status land 0xF in
let+ message =
match message_type_identifier with
| 0 ->
let+ note = byte_msb0 and+ velocity = byte_msb0 in
Note_off { note; velocity }
| 1 ->
let+ note = byte_msb0 and+ velocity = byte_msb0 in
Note_on { note; velocity }
| 2 ->
let+ note = byte_msb0 and+ pressure = byte_msb0 in
Polyphonic_key_pressure { note; pressure }
| 3 ->
let+ controller = byte_msb0 and+ value = byte_msb0 in
Control_change { controller; value }
| 4 ->
let+ program = byte_msb0 in
Program_change { program }
| 5 ->
let+ pressure = byte_msb0 in
Channel_pressure { pressure }
| 6 ->
let+ low_bits = byte_msb0 and+ high_bits = byte_msb0 in
let value_14_bits = low_bits lor (high_bits lsl 7) in
let signed_value = value_14_bits - 0x2000 in
Pitch_wheel_change { signed_value }
| other ->
raise
(Parse_exception
(sprintf "Unexpected message type identifier: %d" other))
in
{ channel; message }
let encode ~running_status { channel; message } =
let byte_msb0 b =
assert (0 <= b && b <= 0x7f);
Char.chr (b land 0x7f)
in
let status_byte channel type_ =
assert (0 <= channel && channel <= 15);
assert (0 <= type_ && type_ <= 7);
Char.chr (((type_ lor 0x8) lsl 4) lor (channel land 0xf))
in
let channel_voice_message ~running_status channel type_ bytes =
let status_byte = status_byte channel type_ in
let s, ofs =
match running_status with
| `Status s when s = status_byte -> (Bytes.create (List.length bytes), 0)
| `Status _ | `NoRunning ->
let s = Bytes.create (1 + List.length bytes) in
Bytes.set s 0 status_byte;
(s, 1)
in
List.iteri (fun i b -> Bytes.set s (i + ofs) (byte_msb0 b)) bytes;
(Bytes.to_string s, `Status status_byte)
in
match message with
| Note_off { note; velocity } ->
channel_voice_message ~running_status channel 0 [ note; velocity ]
| Note_on { note; velocity } ->
channel_voice_message ~running_status channel 1 [ note; velocity ]
| Polyphonic_key_pressure { note; pressure } ->
channel_voice_message ~running_status channel 2 [ note; pressure ]
| Control_change { controller; value } ->
channel_voice_message ~running_status channel 3 [ controller; value ]
| Program_change { program } ->
channel_voice_message ~running_status channel 4 [ program ]
| Channel_pressure { pressure } ->
channel_voice_message ~running_status channel 5 [ pressure ]
| Pitch_wheel_change { signed_value } ->
let value_14_bits = signed_value + 0x2000 in
assert (0 <= value_14_bits && value_14_bits <= 0x3fff);
let low_bits = signed_value land 0x7f in
let high_bits = signed_value lsr 7 in
channel_voice_message ~running_status channel 6 [ low_bits; high_bits ]
end
module System_message = struct
type system_exclusive = { manufacturer_id : int; payload : int list }
let system_exclusive_to_string { manufacturer_id; payload } =
sprintf "((manufacturer_id %d) (payload (%s)))" manufacturer_id
(String.concat " " (List.map string_of_int payload))
let system_exclusive_end = 0b11110111
let system_exclusive_parse =
let open Byte_array_parser in
let rec loop acc =
let* byte = byte in
if byte == system_exclusive_end then return acc
else if byte land (1 lsl 7) <> 0 then
raise
(Parse_exception
"Most significant bit is 1 but byte does not encode 'System \
Exclusive End'")
else loop (byte :: acc)
in
let+ manufacturer_id = byte_msb0 and+ payload = loop [] >>| List.rev in
{ manufacturer_id; payload }
type t =
| System_exclusive of system_exclusive
| Song_position_pointer of int
| Song_select of int
| Tune_request
| Timing_clock
| Start
| Continue
| Stop
| Active_sensing
| Reset
| Undefined of int
let to_string = function
| System_exclusive system_exclusive ->
sprintf "(System_exclusive %s)"
(system_exclusive_to_string system_exclusive)
| Song_position_pointer song_position_pointer ->
sprintf "(Song_position_pointer %d)" song_position_pointer
| Song_select song_select -> sprintf "(Song_select %d)" song_select
| Tune_request -> "Tune_request"
| Timing_clock -> "Timing_clock"
| Start -> "Start"
| Continue -> "Continue"
| Stop -> "Stop"
| Active_sensing -> "Active_sensing"
| Reset -> "Reset"
| Undefined undefined -> sprintf "(Undefined %d)" undefined
let parse status =
if status < 0 || status > 255 then raise (Parse_exception "Expected byte");
if status lsr 4 <> 0xF then
raise (Parse_exception "Expected top 4 bits to be 0xF");
let message_type_identifier = status land 0xF in
let open Byte_array_parser in
match message_type_identifier with
| 1 | 4 | 5 | 9 | 13 -> return (Undefined message_type_identifier)
| 0 ->
let+ system_exclusive = system_exclusive_parse in
System_exclusive system_exclusive
| 2 ->
let+ low = byte_msb0 and+ high = byte_msb0 in
let value_14_bits = low lor (high lsl 7) in
Song_position_pointer value_14_bits
| 3 ->
let+ song_select = byte_msb0 in
Song_select song_select
| 6 -> return Tune_request
| 7 ->
raise
(Parse_exception
"Encountered 'System Exclusive End' without corresponding 'System \
Exclusive'")
| 8 -> return Timing_clock
| 10 -> return Start
| 11 -> return Continue
| 12 -> return Stop
| 14 -> return Active_sensing
| 15 -> return Reset
| other ->
raise
(Parse_exception
(sprintf "Unexpected message type identifier: %d" other))
let encode = function
| System_exclusive { manufacturer_id; payload } ->
assert (0 <= manufacturer_id && manufacturer_id < 127);
let bytes =
Bytes.make (List.length payload + 1) (Char.chr system_exclusive_end)
in
List.iteri
(fun i x ->
assert (x land (1 lsl 7) = 0);
Bytes.set bytes i (Char.chr x))
payload;
String.make 1 '\xf0'
^ String.make 1 (Char.chr manufacturer_id)
^ Bytes.to_string bytes
| Song_position_pointer value ->
assert (value < 1 lsl 15);
String.make 1 '\xf2'
^ String.make 1 (Char.chr (value land 0x7f))
^ String.make 1 (Char.chr (value lsr 7))
| Song_select song ->
assert (song < 128);
String.make 1 '\xf3' ^ String.make 1 (Char.chr song)
| Tune_request -> String.make 1 '\xf6'
| Timing_clock -> String.make 1 '\xf8'
| Start -> String.make 1 '\xfa'
| Continue -> String.make 1 '\xfb'
| Stop -> String.make 1 '\xfc'
| Active_sensing -> String.make 1 '\xfe'
| Reset -> String.make 1 '\xff'
| Undefined undefined ->
assert (match undefined with 1 | 4 | 5 | 9 | 13 -> true | _ -> false);
String.make 1 @@ Char.chr @@ (0xf0 lor undefined)
end
module Meta_event = struct
type other = { type_index : int; contents : char array }
type t = End_of_track | Other of other
let string_of_char_array ar =
let s = Bytes.create (Array.length ar) in
Array.iteri (fun i c -> Bytes.set s i c) ar;
Bytes.to_string s
let to_string = function
| End_of_track -> "End_of_track"
| Other { type_index; contents } ->
sprintf "(Other ((type_index %d) (contents %S)))" type_index
(string_of_char_array contents)
let parse =
let open Byte_array_parser in
let* type_index, length = both byte byte in
match type_index with
| 0x2F -> return End_of_track
| _ ->
let+ contents = n_bytes length in
Other { type_index; contents }
let encode = function
| End_of_track -> "\xff\x2f\x00"
| Other { type_index; contents } ->
let length = Array.length contents in
"\xff"
^ String.make 1 (Char.chr type_index)
^ Output.variable_length_quantity length
^ string_of_char_array contents
end
module Message = struct
type t =
| Channel_voice_message of Channel_voice_message.t
| System_message of System_message.t
| Meta_event of Meta_event.t
let to_string = function
| Channel_voice_message channel_voice_message ->
sprintf "(Channel_voice_message %s)"
(Channel_voice_message.to_string channel_voice_message)
| System_message system_message ->
sprintf "(System_message %s)" (System_message.to_string system_message)
| Meta_event meta_event ->
sprintf "(Meta_event %s)" (Meta_event.to_string meta_event)
let parse status =
let open Byte_array_parser in
if status < 0 || status > 255 then raise (Parse_exception "Expected byte");
if status < 128 then
raise (Parse_exception "Expected most significant bit to be 1");
if status == 255 then
Meta_event.parse >>| fun meta_event -> Meta_event meta_event
else
let message_type_identifier = (status lsr 4) land 0x7 in
if message_type_identifier == 7 then
let+ system_message = System_message.parse status in
System_message system_message
else
let+ channel_voice_message = Channel_voice_message.parse status in
Channel_voice_message channel_voice_message
let encode ~running_status = function
| Channel_voice_message m -> Channel_voice_message.encode ~running_status m
| Meta_event ev -> (Meta_event.encode ev, `NoRunning)
| System_message sysex -> (System_message.encode sysex, `NoRunning)
end
module Event = struct
type t = { delta_time : int; message : Message.t }
let to_string { delta_time; message } =
let message_string = Message.to_string message in
sprintf "((delta_time %d) (message %s))" delta_time message_string
let parse_running running_status =
let open Byte_array_parser in
let* delta_time = variable_length_quantity and+ next_byte = peek_byte in
let* status =
if next_byte >= 128 then
let+ () = skip 1 in
next_byte
else
match running_status with
| Some running_status -> return running_status
| None -> raise (Parse_exception "First event in track lacks status")
in
let+ message = Message.parse status in
({ delta_time; message }, `Status status)
let parse =
let open Byte_array_parser in
let+ t, _status = parse_running None in
t
let parse_multi_from_char_array =
Byte_array_parser.(run (repeat_until_end_exact parse))
let encode ~running_status { delta_time; message } =
let msg, status = Message.encode ~running_status message in
(Output.variable_length_quantity delta_time ^ msg, status)
end
module Track = struct
type t = Event.t list
let to_string t =
sprintf "(%s)" (String.concat "\n" (List.map Event.to_string t))
let parse length =
let open Byte_array_parser in
let rec loop acc rem_length running_status =
if rem_length == 0 then return acc
else if rem_length < 0 then
raise
(Parse_exception
"Last event in track extends beyond the track boundary")
else
let* event, `Status running_status =
Event.parse_running running_status
in
match event.message with
| Meta_event End_of_track -> return (event :: acc)
| _ ->
(loop [@tailcall]) (event :: acc) (rem_length - 1)
(Some running_status)
in
loop [] length None >>| List.rev
let write out trk =
output_string out "MTrk";
let _, encoded_events =
List.fold_left_map
(fun running_status ev ->
let encoded_event, status = Event.encode ~running_status ev in
(status, encoded_event))
`NoRunning trk
in
let byte_length =
List.fold_left (fun acc ev -> acc + String.length ev) 0 encoded_events
in
let encoded_length = Bytes.create 4 in
Bytes.set_int32_be encoded_length 0 (Int32.of_int byte_length);
output_bytes out encoded_length;
List.iter (output_string out) encoded_events
end
module Chunk = struct
type t = | Track of Track.t
let parse_result =
let open Byte_array_parser in
let* type_result, length = both Chunk_type.parse_result int32be in
match type_result with
| Ok Header ->
let+ = Header.parse in
Ok (Header header)
| Ok Track ->
let+ track = Track.parse length in
Ok (Track track)
| Error unknown ->
let+ () = skip length in
Error unknown
end
module Data = struct
type t = { header : Header.t; tracks : Track.t list }
let to_string { ; tracks } =
sprintf "((header %s)\n(tracks (%s)))" (Header.to_string header)
(String.concat "\n" (List.map Track.to_string tracks))
let parse =
let open Byte_array_parser in
let+ all_chunk_results = repeat_until_end_exact Chunk.parse_result in
let t =
match all_chunk_results with
| first :: rest ->
let =
match first with
| Ok (Header ) -> header
| _ -> raise (Parse_exception "First chunk was not header")
in
let tracks =
List.filter_map
(function
| Ok (Chunk.Header _) ->
Printf.eprintf "Second header found after first chunk\n";
None
| Ok (Track track) -> Some track
| Error (Unknown unknown_chunk_type) ->
Printf.eprintf "Unknown chunk type: %s\n" unknown_chunk_type;
None)
rest
in
{ header; tracks }
| _ -> raise (Parse_exception "No chunks found")
in
let = Format.num_tracks t.header.format_ in
let num_tracks_found = List.length t.tracks in
if num_tracks_according_to_header <> num_tracks_found then
Printf.eprintf
"Header implies there should be %d tracks but found %d tracks instead\n"
num_tracks_according_to_header num_tracks_found;
t
end
module File_reader = struct
type t = { path : string }
let of_path path = { path }
let read_byte_array t =
let channel = open_in_bin t.path in
let rec loop acc =
match input_char channel with
| byte -> (loop [@tailcall]) (byte :: acc)
| exception End_of_file -> List.rev acc
in
let byte_list = loop [] in
close_in channel;
Array.of_list byte_list
let read t =
let byte_array = read_byte_array t in
Byte_array_parser.run Data.parse byte_array
end
module File_writer = struct
type t = { out : out_channel }
let of_path path = { out = open_out_bin path }
let write t { ; Data.tracks } =
output_string t.out "MThd\000\000\000\006";
Header.write t.out header;
List.iter (Track.write t.out) tracks;
close_out t.out
end
module For_test = struct
module Byte_array_parser = Byte_array_parser
end