forked from Tracktion/choc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
choc_MIDIFile.h
347 lines (274 loc) · 10.7 KB
/
choc_MIDIFile.h
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
//
// ██████ ██ ██ ██████ ██████
// ██ ██ ██ ██ ██ ██ ** Classy Header-Only Classes **
// ██ ███████ ██ ██ ██
// ██ ██ ██ ██ ██ ██ https://github.com/Tracktion/choc
// ██████ ██ ██ ██████ ██████
//
// CHOC is (C)2022 Tracktion Corporation, and is offered under the terms of the ISC license:
//
// Permission to use, copy, modify, and/or distribute this software for any purpose with or
// without fee is hereby granted, provided that the above copyright notice and this permission
// notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
// WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
// CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
// WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifndef CHOC_MIDIFILE_HEADER_INCLUDED
#define CHOC_MIDIFILE_HEADER_INCLUDED
#include <stdexcept>
#include <functional>
#include "choc_MIDISequence.h"
namespace choc::midi
{
//==============================================================================
/**
A reader for MIDI (.mid) file data.
*/
struct File
{
File() = default;
~File() = default;
void clear();
/// Attempts to load the given data as a MIDI file. If errors occur,
/// a ReadError exception will be thrown
void load (const void* midiFileData, size_t dataSize);
/// Exception which is thrown by load() if errors occur
struct ReadError : public std::runtime_error
{
ReadError (const char* error) : std::runtime_error (error) {}
};
struct Event
{
LongMessage message;
uint32_t tickPosition = 0;
};
struct Track
{
std::vector<Event> events;
};
/// Iterates all the events on all tracks, returning each one with its playback time in seconds.
void iterateEvents (const std::function<void(const LongMessage&, double timeInSeconds)>&) const;
/// Merges all the events from this file into a single MIDI Sequence object.
choc::midi::Sequence toSequence() const;
//==============================================================================
std::vector<Track> tracks;
/// This is the standard MIDI file time format:
/// If positive, this is the number of ticks per quarter-note.
/// If negative, this is a SMPTE timecode type
int16_t timeFormat = 60;
};
//==============================================================================
// _ _ _ _
// __| | ___ | |_ __ _ (_)| | ___
// / _` | / _ \| __| / _` || || |/ __|
// | (_| || __/| |_ | (_| || || |\__ \ _ _ _
// \__,_| \___| \__| \__,_||_||_||___/(_)(_)(_)
//
// Code beyond this point is implementation detail...
//
//==============================================================================
namespace
{
struct Reader
{
const uint8_t* data;
size_t size;
void expectSize (size_t num)
{
if (size < num)
throw File::ReadError ("Unexpected end-of-file");
}
void skip (size_t num)
{
data += num;
size -= num;
}
template <typename Type>
Type read()
{
uint32_t n = 0;
expectSize (sizeof (Type));
for (size_t i = 0; i < sizeof (Type); ++i)
n = (n << 8) | data[i];
skip (sizeof (Type));
return static_cast<Type> (n);
}
std::string_view readString (size_t length)
{
expectSize (length);
std::string_view s (reinterpret_cast<const char*> (data), length);
skip (length);
return s;
}
uint32_t readVariableLength()
{
uint32_t n = 0, numUsed = 0;
for (;;)
{
auto byte = read<uint8_t>();
n = (n << 7) | (byte & 0x7fu);
if (byte < 0x80)
return n;
if (++numUsed == 4)
throw File::ReadError ("Error in variable-length integer");
}
}
};
//==============================================================================
struct Header
{
uint16_t fileType = 0, numTracks = 0, timeFormat = 0;
};
inline static Header readHeader (Reader& reader)
{
auto chunkName = reader.readString (4);
if (chunkName == "RIFF")
{
for (int i = 8; --i >= 0;)
{
chunkName = reader.readString (4);
if (chunkName == "MThd")
break;
}
}
if (chunkName != "MThd")
throw File::ReadError ("Unknown chunk type");
auto length = reader.read<uint32_t>();
reader.expectSize (length);
Header header;
header.fileType = reader.read<uint16_t>();
header.numTracks = reader.read<uint16_t>();
header.timeFormat = reader.read<uint16_t>();
if (header.fileType > 2)
throw File::ReadError ("Unknown file type");
if (header.fileType == 0 && header.numTracks != 1)
throw File::ReadError ("Unsupported number of tracks");
return header;
}
//==============================================================================
inline static std::vector<File::Event> readTrack (Reader& reader)
{
std::vector<File::Event> result;
uint32_t tickPosition = 0;
uint8_t statusByte = 0;
while (reader.size > 0)
{
auto interval = reader.readVariableLength();
tickPosition += interval;
if (reader.data[0] >= 0x80)
{
statusByte = reader.data[0];
reader.skip(1);
}
if (statusByte < 0x80)
throw File::ReadError ("Error in MIDI bytes");
if (statusByte == 0xff) // meta-event
{
auto start = reader.data;
reader.skip (1); // skip the type
auto length = reader.readVariableLength();
reader.skip (length);
LongMessage meta (std::addressof (statusByte), 1);
meta.midiData.storage.append (reinterpret_cast<const char*> (start), static_cast<size_t> (reader.data - start));
result.push_back ({ std::move (meta), tickPosition });
}
else if (statusByte == 0xf0) // sysex
{
LongMessage sysex (std::addressof (statusByte), 1);
auto start = reader.data;
while (reader.read<uint8_t>() < 0x80)
{}
sysex.midiData.storage.append (reinterpret_cast<const char*> (start), static_cast<size_t> (reader.data - start));
result.push_back ({ std::move (sysex), tickPosition });
}
else
{
ShortMessage m (statusByte, 0, 0);
auto length = m.length();
if (length > 1) m.midiData.bytes[1] = reader.read<uint8_t>();
if (length > 2) m.midiData.bytes[2] = reader.read<uint8_t>();
result.push_back ({ LongMessage (m), tickPosition });
}
}
return result;
}
}
inline void File::clear()
{
tracks.clear();
}
inline void File::load (const void* midiFileData, size_t dataSize)
{
clear();
if (dataSize == 0)
return;
if (midiFileData == nullptr)
throw ReadError ("No data supplied");
Reader reader { static_cast<const uint8_t*> (midiFileData), dataSize };
auto header = readHeader (reader);
timeFormat = static_cast<int16_t> (header.timeFormat);
for (uint16_t track = 0; track < header.numTracks; ++track)
{
auto chunkType = reader.readString (4);
auto chunkSize = reader.read<uint32_t>();
reader.expectSize (chunkSize);
if (chunkType == "MTrk")
{
Reader chunkReader { reader.data, chunkSize };
tracks.push_back ({ readTrack (chunkReader) });
}
reader.skip (chunkSize);
}
}
inline void File::iterateEvents (const std::function<void(const LongMessage&, double timeInSeconds)>& handleEvent) const
{
std::vector<Event> allEvents;
for (auto& t : tracks)
allEvents.insert (allEvents.end(), t.events.begin(), t.events.end());
std::stable_sort (allEvents.begin(), allEvents.end(),
[] (const Event& e1, const Event& e2) { return e1.tickPosition < e2.tickPosition; });
uint32_t lastTempoChangeTick = 0;
double lastTempoChangeSeconds = 0, secondsPerTick = 0;
if (timeFormat < 0)
secondsPerTick = 1.0 / (-(timeFormat >> 8) * (timeFormat & 0xff));
else
secondsPerTick = 0.5 / (timeFormat & 0x7fff);
for (auto& event : allEvents)
{
CHOC_ASSERT (event.tickPosition >= lastTempoChangeTick);
auto eventTimeSeconds = lastTempoChangeSeconds + secondsPerTick * (event.tickPosition - lastTempoChangeTick);
if (event.message.isMetaEventOfType (0x51)) // tempo meta-event
{
auto content = event.message.getMetaEventData();
if (content.length() != 3)
throw File::ReadError ("Error in meta-event data");
uint32_t microsecondsPerQuarterNote = (uint8_t) content[0];
microsecondsPerQuarterNote = (microsecondsPerQuarterNote << 8) | (uint8_t) content[1];
microsecondsPerQuarterNote = (microsecondsPerQuarterNote << 8) | (uint8_t) content[2];
if (timeFormat > 0)
{
lastTempoChangeTick = event.tickPosition;
lastTempoChangeSeconds = eventTimeSeconds;
auto secondsPerQuarterNote = microsecondsPerQuarterNote / 1000000.0;
secondsPerTick = secondsPerQuarterNote / (timeFormat & 0x7fff);
}
}
else
{
handleEvent (event.message, eventTimeSeconds);
}
}
}
inline choc::midi::Sequence File::toSequence() const
{
choc::midi::Sequence sequence;
iterateEvents ([&] (const LongMessage& m, double time)
{
sequence.events.push_back ({ time, m });
});
return sequence;
}
} // namespace choc::midi
#endif // CHOC_MIDIFILE_HEADER_INCLUDED