1 /* This file is part of Evoral.
2 * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
3 * Copyright (C) 2000-2008 Paul Davis
6 * Evoral is free software; you can redistribute it and/or modify it under the
7 * terms of the GNU General Public License as published by the Free Software
8 * Foundation; either version 2 of the License, or (at your option) any later
11 * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 #define __STDC_LIMIT_MACROS 1
25 #include "libsmf/smf.h"
26 #include "evoral/Event.hpp"
27 #include "evoral/SMF.hpp"
28 #include "evoral/midi_util.h"
29 #include "pbd/file_manager.h"
45 SMF::num_tracks() const
47 return _smf
->number_of_tracks
;
56 /** Seek to the specified track (1-based indexing)
57 * \return 0 on success
60 SMF::seek_to_track(int track
)
62 _smf_track
= smf_get_track_by_number(_smf
, track
);
63 if (_smf_track
!= NULL
) {
64 _smf_track
->next_event_number
= (_smf_track
->number_of_events
== 0) ? 0 : 1;
71 /** Attempt to open the SMF file for reading and/or writing.
73 * \return 0 on success
74 * -1 if the file can not be opened or created
75 * -2 if the file exists but specified track does not exist
78 SMF::open(const std::string
& path
, int track
) THROW_FILE_ERROR
87 PBD::StdioFileDescriptor
d (_file_path
, "r");
88 FILE* f
= d
.allocate ();
93 if ((_smf
= smf_load (f
)) == 0) {
97 if ((_smf_track
= smf_get_track_by_number(_smf
, track
)) == 0) {
101 //cerr << "Track " << track << " # events: " << _smf_track->number_of_events << endl;
102 if (_smf_track
->number_of_events
== 0) {
103 _smf_track
->next_event_number
= 0;
106 _smf_track
->next_event_number
= 1;
114 /** Attempt to create a new SMF file for reading and/or writing.
116 * \return 0 on success
117 * -1 if the file can not be created
118 * -2 if the track can not be created
121 SMF::create(const std::string
& path
, int track
, uint16_t ppqn
) THROW_FILE_ERROR
131 if (smf_set_ppqn(_smf
, ppqn
) != 0) {
139 for (int i
= 0; i
< track
; ++i
) {
140 _smf_track
= smf_track_new();
142 smf_add_track(_smf
, _smf_track
);
145 _smf_track
= smf_get_track_by_number(_smf
, track
);
149 _smf_track
->next_event_number
= 0;
156 SMF::close() THROW_FILE_ERROR
160 /* XXX why would we automatically save-on-close?
163 PBD::StdioFileDescriptor
d (_file_path
, "w+");
164 FILE* f
= d
.allocate ();
169 cerr
<< "CLOSE: Save SMF to " << _file_path
<< endl
;
171 if (smf_save(_smf
, f
) != 0) {
182 SMF::seek_to_start() const
184 _smf_track
->next_event_number
= 1;
188 midify_note_id (event_id_t note_id
, uint8_t* buf
)
190 buf
[0] = (note_id
& 0xfe000000) >> 25;
191 buf
[1] = (note_id
& 0x01fc0000) >> 18;
192 buf
[2] = (note_id
& 0x0003f800) >> 11;
193 buf
[3] = (note_id
& 0x000007f0) >> 4;
194 buf
[4] = (note_id
& 0x0000000f);
198 unmidify_note_id (uint8_t* buf
)
200 return ((int) buf
[0] << 25) | ((int) buf
[1] << 18) | ((int) buf
[2] << 11) | ((int)buf
[3] << 4) | (int) buf
[4];
203 /** Read an event from the current position in file.
205 * File position MUST be at the beginning of a delta time, or this will die very messily.
206 * ev.buffer must be of size ev.size, and large enough for the event. The returned event
207 * will have it's time field set to it's delta time, in SMF tempo-based ticks, using the
208 * rate given by ppqn() (it is the caller's responsibility to calculate a real time).
210 * \a buf must be a pointer to a buffer allocated with malloc, or a pointer to NULL.
211 * \a size must be the capacity of \a buf. If it is not large enough, \a buf will
212 * be reallocated and *size will be set to the new size of buf.
214 * if the event is a meta-event and is an Evoral Note ID, then \a note_id will be set
215 * to the value of the NoteID; otherwise, meta-events will set \a note_id to -1.
217 * \return event length (including status byte) on success, 0 if event was
218 * a meta event, or -1 on EOF (or end of track).
221 SMF::read_event(uint32_t* delta_t
, uint32_t* size
, uint8_t** buf
, event_id_t
* note_id
) const
230 if ((event
= smf_track_get_next_event(_smf_track
)) != NULL
) {
232 *delta_t
= event
->delta_time_pulses
;
234 if (smf_event_is_metadata(event
)) {
235 *note_id
= -1; // "no note id in this meta-event */
236 if (event
->midi_buffer
[1] == 0x99) { // Evoral meta-event
237 if (event
->midi_buffer
[2] == 6) { // 6 bytes following
238 if (event
->midi_buffer
[3] == 0x1) { // Evoral Note ID
239 *note_id
= unmidify_note_id (&event
->midi_buffer
[4]);
240 cerr
<< "Loaded Event ID " << *note_id
<< endl
;
244 return 0; /* this is a meta-event */
247 int event_size
= event
->midi_buffer_length
;
248 assert(event_size
> 0);
250 // Make sure we have enough scratch buffer
251 if (*size
< (unsigned)event_size
) {
252 *buf
= (uint8_t*)realloc(*buf
, event_size
);
254 memcpy(*buf
, event
->midi_buffer
, size_t(event_size
));
257 assert(midi_event_is_valid(*buf
, *size
));
259 /* printf("SMF::read_event @ %u: ", *delta_t);
260 for (size_t i = 0; i < *size; ++i) {
261 printf("%X ", (*buf)[i]);
271 SMF::append_event_delta(uint32_t delta_t
, uint32_t size
, const uint8_t* buf
, event_id_t note_id
)
277 /* printf("SMF::append_event_delta @ %u:", delta_t);
278 for (size_t i = 0; i < size; ++i) {
279 printf("%X ", buf[i]);
282 if (!midi_event_is_valid(buf
, size
)) {
283 cerr
<< "WARNING: SMF ignoring illegal MIDI event" << endl
;
289 /* XXX july 2010: currently only store event ID's for notes
292 if (((buf
[0] & 0xf0) == MIDI_CMD_NOTE_ON
|| ((buf
[0] & 0xf0) == MIDI_CMD_NOTE_OFF
)) && note_id
>= 0) {
293 event
= smf_event_new ();
294 assert(event
!= NULL
);
296 event
->midi_buffer
= new uint8_t[9];
297 event
->midi_buffer_length
= 9;
299 event
->midi_buffer
[0] = 0xff; // Meta-event
300 event
->midi_buffer
[1] = 0x99; // Evoral meta-event
301 event
->midi_buffer
[2] = 6; // 6 bytes of data follow */
302 event
->midi_buffer
[3] = 0x1; // Evoral Note ID
303 midify_note_id (note_id
, &event
->midi_buffer
[4]);
306 smf_track_add_event_delta_pulses(_smf_track
, event
, 0);
309 event
= smf_event_new_from_pointer(buf
, size
);
310 assert(event
!= NULL
);
313 smf_track_add_event_delta_pulses(_smf_track
, event
, delta_t
);
321 smf_track_delete(_smf_track
);
323 _smf_track
= smf_track_new();
326 smf_add_track(_smf
, _smf_track
);
327 assert(_smf
->number_of_tracks
== 1);
331 SMF::end_write() THROW_FILE_ERROR
333 PBD::StdioFileDescriptor
d (_file_path
, "w+");
334 FILE* f
= d
.allocate ();
339 if (smf_save(_smf
, f
) != 0) {
345 SMF::round_to_file_precision (double val
) const
349 return round (val
* div
) / div
;
353 SMF::set_path (const std::string
& p
)
358 } // namespace Evoral