2009-02-11 12:38:40 -05:00
|
|
|
/* This file is part of Evoral.
|
|
|
|
* Copyright (C) 2008 Dave Robillard <http://drobilla.net>
|
|
|
|
* Copyright (C) 2000-2008 Paul Davis
|
|
|
|
* Author: Hans Baier
|
|
|
|
*
|
|
|
|
* Evoral 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 2 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* Evoral 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 details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2009-02-11 04:54:31 -05:00
|
|
|
|
2009-02-14 15:52:15 -05:00
|
|
|
#define __STDC_LIMIT_MACROS 1
|
2009-02-11 12:38:40 -05:00
|
|
|
#include <cassert>
|
2009-02-11 04:54:31 -05:00
|
|
|
#include <iostream>
|
2009-02-14 15:52:15 -05:00
|
|
|
#include <stdint.h>
|
2009-02-15 19:36:11 -05:00
|
|
|
#include "libsmf/smf.h"
|
2009-02-11 12:38:40 -05:00
|
|
|
#include "evoral/Event.hpp"
|
2009-02-14 12:35:34 -05:00
|
|
|
#include "evoral/SMF.hpp"
|
2009-02-15 19:36:11 -05:00
|
|
|
#include "evoral/midi_util.h"
|
2009-02-11 04:54:31 -05:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace Evoral {
|
|
|
|
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::~SMF()
|
2009-02-11 12:38:40 -05:00
|
|
|
{
|
|
|
|
if (_smf) {
|
|
|
|
smf_delete(_smf);
|
|
|
|
_smf = 0;
|
|
|
|
_smf_track = 0;
|
|
|
|
}
|
|
|
|
}
|
2009-02-11 04:54:31 -05:00
|
|
|
|
2009-02-14 15:52:15 -05:00
|
|
|
uint16_t
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::num_tracks() const
|
2009-02-14 15:52:15 -05:00
|
|
|
{
|
|
|
|
return _smf->number_of_tracks;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::ppqn() const
|
2009-02-14 15:52:15 -05:00
|
|
|
{
|
2009-02-14 17:23:40 -05:00
|
|
|
return _smf->ppqn;
|
2009-02-14 15:52:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Seek to the specified track (1-based indexing)
|
|
|
|
* \return 0 on success
|
|
|
|
*/
|
|
|
|
int
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::seek_to_track(int track)
|
2009-02-14 15:52:15 -05:00
|
|
|
{
|
|
|
|
_smf_track = smf_get_track_by_number(_smf, track);
|
|
|
|
if (_smf_track != NULL) {
|
2009-02-14 17:23:40 -05:00
|
|
|
_smf_track->next_event_number = (_smf_track->number_of_events == 0) ? 0 : 1;
|
2009-02-14 15:52:15 -05:00
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Attempt to open the SMF file for reading and/or writing.
|
2009-02-11 04:54:31 -05:00
|
|
|
*
|
|
|
|
* \return 0 on success
|
2009-02-14 12:54:45 -05:00
|
|
|
* -1 if the file can not be opened or created
|
2009-02-14 15:52:15 -05:00
|
|
|
* -2 if the file exists but specified track does not exist
|
2009-02-11 04:54:31 -05:00
|
|
|
*/
|
|
|
|
int
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::open(const std::string& path, int track) THROW_FILE_ERROR
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
2009-02-14 15:52:15 -05:00
|
|
|
assert(track >= 1);
|
2009-02-11 04:54:31 -05:00
|
|
|
if (_smf) {
|
|
|
|
smf_delete(_smf);
|
|
|
|
}
|
|
|
|
|
2009-02-16 21:11:49 -05:00
|
|
|
_file_path = path;
|
|
|
|
_smf = smf_load(_file_path.c_str());
|
2009-02-14 15:52:15 -05:00
|
|
|
if (_smf == NULL) {
|
|
|
|
return -1;
|
2009-02-11 04:54:31 -05:00
|
|
|
}
|
2009-02-14 15:52:15 -05:00
|
|
|
|
2009-02-14 12:54:45 -05:00
|
|
|
_smf_track = smf_get_track_by_number(_smf, track);
|
|
|
|
if (!_smf_track)
|
|
|
|
return -2;
|
2009-02-11 04:54:31 -05:00
|
|
|
|
2009-02-14 21:14:23 -05:00
|
|
|
//cerr << "Track " << track << " # events: " << _smf_track->number_of_events << endl;
|
2009-02-14 15:52:15 -05:00
|
|
|
if (_smf_track->number_of_events == 0) {
|
2009-02-14 17:23:40 -05:00
|
|
|
_smf_track->next_event_number = 0;
|
2009-02-14 15:52:15 -05:00
|
|
|
_empty = true;
|
|
|
|
} else {
|
|
|
|
_smf_track->next_event_number = 1;
|
|
|
|
_empty = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Attempt to create a new SMF file for reading and/or writing.
|
|
|
|
*
|
|
|
|
* \return 0 on success
|
|
|
|
* -1 if the file can not be created
|
|
|
|
* -2 if the track can not be created
|
|
|
|
*/
|
|
|
|
int
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::create(const std::string& path, int track, uint16_t ppqn) THROW_FILE_ERROR
|
2009-02-14 15:52:15 -05:00
|
|
|
{
|
|
|
|
assert(track >= 1);
|
|
|
|
if (_smf) {
|
|
|
|
smf_delete(_smf);
|
|
|
|
}
|
|
|
|
|
2009-02-16 21:11:49 -05:00
|
|
|
_file_path = path;
|
2009-02-14 15:52:15 -05:00
|
|
|
|
|
|
|
_smf = smf_new();
|
|
|
|
if (smf_set_ppqn(_smf, ppqn) != 0) {
|
|
|
|
throw FileError();
|
|
|
|
}
|
2009-02-11 04:54:31 -05:00
|
|
|
|
2009-02-14 15:52:15 -05:00
|
|
|
if (_smf == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < track; ++i) {
|
|
|
|
_smf_track = smf_track_new();
|
|
|
|
assert(_smf_track);
|
|
|
|
smf_add_track(_smf, _smf_track);
|
|
|
|
}
|
|
|
|
|
|
|
|
_smf_track = smf_get_track_by_number(_smf, track);
|
|
|
|
if (!_smf_track)
|
|
|
|
return -2;
|
|
|
|
|
2009-02-14 17:23:40 -05:00
|
|
|
_smf_track->next_event_number = 0;
|
2009-02-14 15:52:15 -05:00
|
|
|
_empty = true;
|
2009-02-11 04:54:31 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::close() THROW_FILE_ERROR
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
|
|
|
if (_smf) {
|
2009-02-16 21:11:49 -05:00
|
|
|
if (smf_save(_smf, _file_path.c_str()) != 0) {
|
2009-02-14 12:39:49 -05:00
|
|
|
throw FileError();
|
2009-02-11 12:59:33 -05:00
|
|
|
}
|
2009-02-11 04:54:31 -05:00
|
|
|
smf_delete(_smf);
|
|
|
|
_smf = 0;
|
|
|
|
_smf_track = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::seek_to_start() const
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
2009-02-14 15:52:15 -05:00
|
|
|
_smf_track->next_event_number = 1;
|
2009-02-11 04:54:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Read an event from the current position in file.
|
|
|
|
*
|
|
|
|
* File position MUST be at the beginning of a delta time, or this will die very messily.
|
|
|
|
* ev.buffer must be of size ev.size, and large enough for the event. The returned event
|
|
|
|
* will have it's time field set to it's delta time, in SMF tempo-based ticks, using the
|
|
|
|
* rate given by ppqn() (it is the caller's responsibility to calculate a real time).
|
|
|
|
*
|
2009-02-14 15:52:15 -05:00
|
|
|
* \a buf must be a pointer to a buffer allocated with malloc, or a pointer to NULL.
|
|
|
|
* \a size must be the capacity of \a buf. If it is not large enough, \a buf will
|
|
|
|
* be reallocated and *size will be set to the new size of buf.
|
2009-02-11 04:54:31 -05:00
|
|
|
*
|
2009-02-14 15:52:15 -05:00
|
|
|
* \return event length (including status byte) on success, 0 if event was
|
|
|
|
* skipped (e.g. a meta event), or -1 on EOF (or end of track).
|
2009-02-11 04:54:31 -05:00
|
|
|
*/
|
|
|
|
int
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::read_event(uint32_t* delta_t, uint32_t* size, uint8_t** buf) const
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
2009-02-14 15:52:15 -05:00
|
|
|
smf_event_t* event;
|
2009-02-11 04:54:31 -05:00
|
|
|
|
|
|
|
assert(delta_t);
|
|
|
|
assert(size);
|
|
|
|
assert(buf);
|
|
|
|
|
2009-02-14 15:52:15 -05:00
|
|
|
if ((event = smf_track_get_next_event(_smf_track)) != NULL) {
|
2009-02-11 04:54:31 -05:00
|
|
|
if (smf_event_is_metadata(event)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*delta_t = event->delta_time_pulses;
|
|
|
|
|
|
|
|
int event_size = event->midi_buffer_length;
|
|
|
|
assert(event_size > 0);
|
|
|
|
|
|
|
|
// Make sure we have enough scratch buffer
|
|
|
|
if (*size < (unsigned)event_size) {
|
|
|
|
*buf = (uint8_t*)realloc(*buf, event_size);
|
|
|
|
}
|
|
|
|
memcpy(*buf, event->midi_buffer, size_t(event_size));
|
|
|
|
*size = event_size;
|
2009-02-14 15:52:15 -05:00
|
|
|
|
2009-02-15 19:36:11 -05:00
|
|
|
assert(midi_event_is_valid(*buf, *size));
|
|
|
|
|
2009-02-14 15:52:15 -05:00
|
|
|
/*printf("SMF::read_event:\n");
|
2009-02-14 17:52:38 -05:00
|
|
|
for (size_t i = 0; i < *size; ++i) {
|
2009-02-14 15:52:15 -05:00
|
|
|
printf("%X ", (*buf)[i]);
|
|
|
|
} printf("\n");*/
|
2009-02-11 04:54:31 -05:00
|
|
|
|
|
|
|
return event_size;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::append_event_delta(uint32_t delta_t, uint32_t size, const uint8_t* buf)
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
2009-02-14 17:52:38 -05:00
|
|
|
if (size == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2009-02-11 04:54:31 -05:00
|
|
|
|
2009-02-14 15:52:15 -05:00
|
|
|
/*printf("SMF::append_event_delta:\n");
|
2009-02-14 17:52:38 -05:00
|
|
|
for (size_t i = 0; i < size; ++i) {
|
|
|
|
printf("%X ", buf[i]);
|
2009-02-14 15:52:15 -05:00
|
|
|
} printf("\n");*/
|
|
|
|
|
2009-02-15 19:36:11 -05:00
|
|
|
if (!midi_event_is_valid(buf, size)) {
|
2009-02-15 19:53:26 -05:00
|
|
|
cerr << "WARNING: SMF ignoring illegal MIDI event" << endl;
|
2009-02-15 19:36:11 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-14 15:52:15 -05:00
|
|
|
smf_event_t* event;
|
2009-02-11 04:54:31 -05:00
|
|
|
|
2009-02-14 17:52:38 -05:00
|
|
|
event = smf_event_new_from_pointer(buf, size);
|
2009-02-11 04:54:31 -05:00
|
|
|
assert(event != NULL);
|
|
|
|
|
|
|
|
assert(_smf_track);
|
2009-02-14 17:52:38 -05:00
|
|
|
smf_track_add_event_delta_pulses(_smf_track, event, delta_t);
|
|
|
|
_empty = false;
|
2009-02-11 04:54:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::begin_write()
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
|
|
|
assert(_smf_track);
|
|
|
|
smf_track_delete(_smf_track);
|
|
|
|
|
|
|
|
_smf_track = smf_track_new();
|
|
|
|
assert(_smf_track);
|
|
|
|
|
|
|
|
smf_add_track(_smf, _smf_track);
|
|
|
|
assert(_smf->number_of_tracks == 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-02-14 20:32:41 -05:00
|
|
|
SMF::end_write() THROW_FILE_ERROR
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
2009-02-16 21:11:49 -05:00
|
|
|
if (smf_save(_smf, _file_path.c_str()) != 0)
|
2009-02-14 12:39:49 -05:00
|
|
|
throw FileError();
|
2009-02-11 04:54:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Evoral
|