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-11 12:38:40 -05:00
|
|
|
#include <cassert>
|
2009-02-11 04:54:31 -05:00
|
|
|
#include <iostream>
|
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-11 12:38:40 -05:00
|
|
|
#include "libsmf/smf.h"
|
2009-02-11 04:54:31 -05:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace Evoral {
|
|
|
|
|
2009-02-11 12:38:40 -05:00
|
|
|
template<typename Time>
|
2009-02-14 12:35:34 -05:00
|
|
|
SMF<Time>::~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
|
|
|
|
|
|
|
/** Attempt to open the SMF file for reading and writing.
|
|
|
|
*
|
|
|
|
* Currently SMF is always read/write.
|
|
|
|
*
|
|
|
|
* \return 0 on success
|
2009-02-14 12:54:45 -05:00
|
|
|
* -1 if the file can not be opened or created
|
|
|
|
* -2 if the file exists but specified track does not
|
2009-02-11 04:54:31 -05:00
|
|
|
*/
|
|
|
|
template<typename Time>
|
|
|
|
int
|
2009-02-14 12:54:45 -05:00
|
|
|
SMF<Time>::open(const std::string& path, bool create, int track) THROW_FILE_ERROR
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
|
|
|
if (_smf) {
|
|
|
|
smf_delete(_smf);
|
|
|
|
}
|
|
|
|
|
2009-02-12 18:28:51 -05:00
|
|
|
_path = path;
|
|
|
|
|
|
|
|
_smf = smf_load(_path.c_str());
|
2009-02-11 04:54:31 -05:00
|
|
|
if (!_smf) {
|
2009-02-14 12:54:45 -05:00
|
|
|
if (!create) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-02-11 04:54:31 -05:00
|
|
|
_smf = smf_new();
|
2009-02-11 12:59:33 -05:00
|
|
|
if (smf_set_ppqn(_smf, _ppqn) != 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
|
|
|
|
2009-02-14 12:54:45 -05:00
|
|
|
if (_smf == NULL) {
|
2009-02-11 04:54:31 -05:00
|
|
|
return -1;
|
|
|
|
}
|
2009-02-12 18:28:51 -05:00
|
|
|
|
2009-02-14 12:54:45 -05:00
|
|
|
for (int i = 0; i < track; ++i) {
|
|
|
|
_smf_track = smf_track_new();
|
|
|
|
assert(_smf_track);
|
|
|
|
smf_add_track(_smf, _smf_track);
|
|
|
|
}
|
2009-02-11 04:54:31 -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 12:54:45 -05:00
|
|
|
cerr << "Track " << track << " # events: " << _smf_track->number_of_events << endl;
|
2009-02-11 04:54:31 -05:00
|
|
|
|
|
|
|
_empty = !(_smf_track->number_of_events > 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Time>
|
|
|
|
void
|
2009-02-14 12:35:34 -05:00
|
|
|
SMF<Time>::close() THROW_FILE_ERROR
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
|
|
|
if (_smf) {
|
2009-02-11 12:59:33 -05:00
|
|
|
if (smf_save(_smf, _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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Time>
|
|
|
|
void
|
2009-02-14 12:35:34 -05:00
|
|
|
SMF<Time>::seek_to_start() const
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
|
|
|
smf_rewind(_smf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 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).
|
|
|
|
*
|
|
|
|
* \a size should be the capacity of \a buf. If it is not large enough, \a buf will
|
|
|
|
* be freed and a new buffer allocated in its place, the size of which will be placed
|
|
|
|
* in size.
|
|
|
|
*
|
|
|
|
* Returns event length (including status byte) on success, 0 if event was
|
|
|
|
* skipped (eg a meta event), or -1 on EOF (or end of track).
|
|
|
|
*/
|
|
|
|
template<typename Time>
|
|
|
|
int
|
2009-02-14 12:35:34 -05:00
|
|
|
SMF<Time>::read_event(uint32_t* delta_t, uint32_t* size, uint8_t** buf) const
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
|
|
|
smf_event_t *event;
|
|
|
|
|
|
|
|
assert(delta_t);
|
|
|
|
assert(size);
|
|
|
|
assert(buf);
|
|
|
|
|
|
|
|
if ((event = smf_get_next_event(_smf)) != NULL) {
|
|
|
|
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;
|
|
|
|
|
|
|
|
return event_size;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Time>
|
|
|
|
void
|
2009-02-14 12:35:34 -05:00
|
|
|
SMF<Time>::append_event_delta(uint32_t delta_t, const Event<Time>& ev)
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
|
|
|
assert(ev.size() > 0);
|
|
|
|
|
|
|
|
smf_event_t *event;
|
|
|
|
|
|
|
|
event = smf_event_new_from_pointer((void *) ev.buffer(), int(ev.size()));
|
|
|
|
assert(event != NULL);
|
|
|
|
|
|
|
|
memcpy(event->midi_buffer, ev.buffer(), ev.size());
|
|
|
|
|
|
|
|
assert(_smf_track);
|
|
|
|
smf_track_add_event_delta_pulses (_smf_track, event, int(delta_t));
|
|
|
|
_last_ev_time = ev.time();
|
|
|
|
|
|
|
|
if (ev.size() > 0) {
|
|
|
|
_empty = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Time>
|
|
|
|
void
|
2009-02-14 12:35:34 -05:00
|
|
|
SMF<Time>::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);
|
|
|
|
|
|
|
|
_last_ev_time = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Time>
|
|
|
|
void
|
2009-02-14 12:35:34 -05:00
|
|
|
SMF<Time>::end_write() THROW_FILE_ERROR
|
2009-02-11 04:54:31 -05:00
|
|
|
{
|
2009-02-11 12:59:33 -05:00
|
|
|
if (smf_save(_smf, _path.c_str()) != 0)
|
2009-02-14 12:39:49 -05:00
|
|
|
throw FileError();
|
2009-02-11 04:54:31 -05:00
|
|
|
}
|
|
|
|
|
2009-02-14 12:35:34 -05:00
|
|
|
template class SMF<double>;
|
2009-02-11 04:54:31 -05:00
|
|
|
|
|
|
|
} // namespace Evoral
|