13
0

Tidy, remove dead code.

git-svn-id: svn://localhost/ardour2/branches/3.0@4576 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2009-02-15 03:00:04 +00:00
parent 4b3b7fa952
commit 74ff55f835
3 changed files with 75 additions and 194 deletions

View File

@ -66,7 +66,6 @@ MidiModel::apply_command(Session& session, Command* cmd)
{ {
session.begin_reversible_command(cmd->name()); session.begin_reversible_command(cmd->name());
(*cmd)(); (*cmd)();
assert(is_sorted());
session.commit_reversible_command(cmd); session.commit_reversible_command(cmd);
set_edited(true); set_edited(true);
} }

View File

@ -80,13 +80,6 @@ public:
bool writing() const { return _writing; } bool writing() const { return _writing; }
void end_write(bool delete_stuck=false); void end_write(bool delete_stuck=false);
#if 0
size_t read(EventSink<Time>& dst,
Time start,
Time length,
Time stamp_offset) const;
#endif
/** Resizes vector if necessary (NOT realtime safe) */ /** Resizes vector if necessary (NOT realtime safe) */
void append(const Event<Time>& ev); void append(const Event<Time>& ev);
@ -113,11 +106,17 @@ public:
inline Notes& notes() { return _notes; } inline Notes& notes() { return _notes; }
inline const Notes& notes() const { return _notes; } inline const Notes& notes() const { return _notes; }
// useful for storing SysEx / Meta events
typedef std::vector< boost::shared_ptr< Event<Time> > > SysExes; typedef std::vector< boost::shared_ptr< Event<Time> > > SysExes;
inline SysExes& sysexes() { return _sysexes; } inline SysExes& sysexes() { return _sysexes; }
inline const SysExes& sysexes() const { return _sysexes; } inline const SysExes& sysexes() const { return _sysexes; }
private:
typedef std::priority_queue< boost::shared_ptr< Note<Time> >,
std::deque< boost::shared_ptr< Note<Time> > >,
LaterNoteEndComparator >
ActiveNotes;
public:
/** Read iterator */ /** Read iterator */
class const_iterator { class const_iterator {
public: public:
@ -146,12 +145,6 @@ public:
const Sequence<Time>* _seq; const Sequence<Time>* _seq;
boost::shared_ptr< Event<Time> > _event; boost::shared_ptr< Event<Time> > _event;
typedef std::priority_queue< boost::shared_ptr< Note<Time> >,
std::deque< boost::shared_ptr< Note<Time> > >,
LaterNoteEndComparator >
ActiveNotes;
mutable ActiveNotes _active_notes; mutable ActiveNotes _active_notes;
typedef std::vector<ControlIterator> ControlIterators; typedef std::vector<ControlIterator> ControlIterators;
@ -176,10 +169,6 @@ public:
bool edited() const { return _edited; } bool edited() const { return _edited; }
void set_edited(bool yn) { _edited = yn; } void set_edited(bool yn) { _edited = yn; }
#ifndef NDEBUG
bool is_sorted() const;
#endif
void add_note_unlocked(const boost::shared_ptr< Note<Time> > note); void add_note_unlocked(const boost::shared_ptr< Note<Time> > note);
void remove_note_unlocked(const boost::shared_ptr< const Note<Time> > note); void remove_note_unlocked(const boost::shared_ptr< const Note<Time> > note);
@ -203,7 +192,6 @@ private:
const TypeMap& _type_map; const TypeMap& _type_map;
Notes _notes; Notes _notes;
SysExes _sysexes; SysExes _sysexes;
typedef std::vector<size_t> WriteNotes; typedef std::vector<size_t> WriteNotes;
@ -214,16 +202,10 @@ private:
ControlLists _dirty_controls; ControlLists _dirty_controls;
const const_iterator _end_iter; const const_iterator _end_iter;
// mutable Time _next_read;
bool _percussive; bool _percussive;
uint8_t _lowest_note; uint8_t _lowest_note;
uint8_t _highest_note; uint8_t _highest_note;
typedef std::priority_queue<
boost::shared_ptr< Note<Time> >, std::deque< boost::shared_ptr< Note<Time> > >,
LaterNoteEndComparator>
ActiveNotes;
}; };

View File

@ -56,16 +56,6 @@ void Sequence<Time>::read_unlock() const {
_lock.reader_unlock(); _lock.reader_unlock();
} }
struct null_ostream : public std::ostream {
null_ostream(): std::ios(0), std::ostream(0) {}
};
static null_ostream nullout;
#ifdef DEBUG_SEQUENCE
static ostream& debugout = cout;
#endif
static ostream& errorout = cerr;
// Read iterator (const_iterator) // Read iterator (const_iterator)
@ -81,11 +71,11 @@ Sequence<Time>::const_iterator::const_iterator()
template<typename Time> template<typename Time>
Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t) Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t)
: _seq(&seq) : _seq(&seq)
, _is_end( (t == DBL_MAX) || seq.empty() ) , _is_end((t == DBL_MAX) || seq.empty())
, _locked( !_is_end ) , _locked(!_is_end)
{ {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Created Iterator @ " << t << " (is end: " << _is_end << ")" << endl; cerr << "Created Iterator @ " << t << " (is end: " << _is_end << ")" << endl;
#endif #endif
if (_is_end) { if (_is_end) {
@ -123,13 +113,13 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t
// find the earliest control event available // find the earliest control event available
for (Controls::const_iterator i = seq._controls.begin(); i != seq._controls.end(); ++i) { for (Controls::const_iterator i = seq._controls.begin(); i != seq._controls.end(); ++i) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Iterator: control: " << seq._type_map.to_symbol(i->first) << endl; cerr << "Iterator: control: " << seq._type_map.to_symbol(i->first) << endl;
#endif #endif
double x, y; double x, y;
bool ret = i->second->list()->rt_safe_earliest_event_unlocked(t, DBL_MAX, x, y); bool ret = i->second->list()->rt_safe_earliest_event_unlocked(t, DBL_MAX, x, y);
if (!ret) { if (!ret) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Iterator: CC " << i->first.id() << " (size " << i->second->list()->size() cerr << "Iterator: CC " << i->first.id() << " (size " << i->second->list()->size()
<< ") has no events past " << t << endl; << ") has no events past " << t << endl;
#endif #endif
continue; continue;
@ -137,19 +127,19 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t
assert(x >= 0); assert(x >= 0);
/* #ifdef DEBUG_SEQUENCE
if (y < i->first.min() || y > i->first.max()) { if (y < i->first.min() || y > i->first.max()) {
errorout << "ERROR: Controller " << i->first.symbol() << " value " << y cerr << "ERROR: Controller " << i->first.symbol() << " value " << y
<< " out of range [" << i->first.min() << "," << i->first.max() << " out of range [" << i->first.min() << "," << i->first.max()
<< "], event ignored" << endl; << "], event ignored" << endl;
continue; continue;
} }
*/ #endif
const ControlIterator new_iter(i->second->list(), x, y); const ControlIterator new_iter(i->second->list(), x, y);
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Iterator: CC " << i->first.id() << " added (" << x << ", " << y << ")" << endl; cerr << "Iterator: CC " << i->first.id() << " added (" << x << ", " << y << ")" << endl;
#endif #endif
_control_iters.push_back(new_iter); _control_iters.push_back(new_iter);
@ -163,11 +153,10 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t
} }
} }
#define MAKE_SURE_ADDING_SYSEXES_PRESERVES_OLD_SEMANTICS 1 #define ENSURE_SYSEX_SANITY 1
#if MAKE_SURE_ADDING_SYSEXES_PRESERVES_OLD_SEMANTICS #if ENSURE_SYSEX_SANITY
MIDIMessageType original_type = NIL; MIDIMessageType original_type = NIL;
assert (!earliest_control.list || earliest_control.x >= t); assert(!earliest_control.list || earliest_control.x >= t);
if (_note_iter != seq.notes().end() if (_note_iter != seq.notes().end()
&& (*_note_iter)->on_event().time() >= t && (*_note_iter)->on_event().time() >= t
&& (!earliest_control.list && (!earliest_control.list
@ -201,29 +190,27 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t
earliest_t = (*_sysex_iter)->time(); earliest_t = (*_sysex_iter)->time();
} }
#if MAKE_SURE_ADDING_SYSEXES_PRESERVES_OLD_SEMANTICS #if ENSURE_SYSEX_SANITY
assert (type == original_type || type == SYSEX); assert (type == original_type || type == SYSEX);
#endif #endif
if (type == NOTE_ON) { if (type == NOTE_ON) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Reading note on event @ " << earliest_t << endl; cerr << "Reading note on event @ " << earliest_t << endl;
#endif #endif
// initialize the event pointer with a new event
_event = boost::shared_ptr< Event<Time> >(new Event<Time>((*_note_iter)->on_event(), true)); _event = boost::shared_ptr< Event<Time> >(new Event<Time>((*_note_iter)->on_event(), true));
_active_notes.push(*_note_iter); _active_notes.push(*_note_iter);
++_note_iter; ++_note_iter;
_control_iter = _control_iters.end(); _control_iter = _control_iters.end();
} else if (type == CONTROL) { } else if (type == CONTROL) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Reading control event @ " << earliest_t << endl; cerr << "Reading control event @ " << earliest_t << endl;
#endif #endif
seq.control_to_midi_event(_event, earliest_control); seq.control_to_midi_event(_event, earliest_control);
} else if (type == SYSEX) { } else if (type == SYSEX) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Reading system exclusive event @ " << earliest_t << endl; cerr << "Reading system exclusive event @ " << earliest_t << endl;
#endif #endif
// initialize the event pointer with a new event
_event = boost::shared_ptr< Event<Time> >(new Event<Time>(*(*_sysex_iter), true)); _event = boost::shared_ptr< Event<Time> >(new Event<Time>(*(*_sysex_iter), true));
++_sysex_iter; ++_sysex_iter;
_control_iter = _control_iters.end(); _control_iter = _control_iters.end();
@ -231,7 +218,7 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t
if ( (! _event.get()) || _event->size() == 0) { if ( (! _event.get()) || _event->size() == 0) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "New iterator @ " << t << " is at end." << endl; cerr << "New iterator @ " << t << " is at end." << endl;
#endif #endif
_is_end = true; _is_end = true;
@ -244,15 +231,13 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t
} }
} else { } else {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "New Iterator = " << _event->event_type(); cerr << "New Iterator = " << _event->event_type();
debugout << " : " << hex << (int)((MIDIEvent<Time>*)_event.get())->type(); cerr << " : " << hex << (int)((MIDIEvent<Time>*)_event.get())->type();
debugout << " @ " << _event->time() << endl; cerr << " @ " << _event->time() << endl;
#endif #endif
} }
assert(_event && _event->size() > 0); assert(_event && _event->size() > 0);
//assert(_is_end || (_event->buffer() && _event->buffer()[0] != '\0'));
} }
template<typename Time> template<typename Time>
@ -272,7 +257,7 @@ Sequence<Time>::const_iterator::operator++()
} }
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Iterator ++" << endl; cerr << "Iterator ++" << endl;
#endif #endif
assert(_event && _event->buffer() && _event->size() > 0); assert(_event && _event->buffer() && _event->size() > 0);
@ -280,18 +265,16 @@ Sequence<Time>::const_iterator::operator++()
if (! (ev.is_note() || ev.is_cc() || ev.is_pgm_change() if (! (ev.is_note() || ev.is_cc() || ev.is_pgm_change()
|| ev.is_pitch_bender() || ev.is_channel_pressure() || ev.is_sysex()) ) { || ev.is_pitch_bender() || ev.is_channel_pressure() || ev.is_sysex()) ) {
errorout << "Unknown event type: " << hex << int(ev.buffer()[0]) cerr << "Unknown event type: " << hex << int(ev.buffer()[0])
<< int(ev.buffer()[1]) << int(ev.buffer()[2]) << endl; << int(ev.buffer()[1]) << int(ev.buffer()[2]) << endl;
} }
assert(( assert( ev.is_note()
ev.is_note() || || ev.is_cc()
ev.is_cc() || || ev.is_pgm_change()
ev.is_pgm_change() || || ev.is_pitch_bender()
ev.is_pitch_bender() || || ev.is_channel_pressure()
ev.is_channel_pressure() || || ev.is_sysex());
ev.is_sysex()
));
// Increment past current control event // Increment past current control event
if (!ev.is_note() && _control_iter != _control_iters.end() && _control_iter->list.get()) { if (!ev.is_note() && _control_iter != _control_iters.end() && _control_iter->list.get()) {
@ -355,31 +338,31 @@ Sequence<Time>::const_iterator::operator++()
if (type == NOTE_ON) { if (type == NOTE_ON) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Iterator = note on" << endl; cerr << "Iterator = note on" << endl;
#endif #endif
*_event = (*_note_iter)->on_event(); *_event = (*_note_iter)->on_event();
_active_notes.push(*_note_iter); _active_notes.push(*_note_iter);
++_note_iter; ++_note_iter;
} else if (type == NOTE_OFF) { } else if (type == NOTE_OFF) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Iterator = note off" << endl; cerr << "Iterator = note off" << endl;
#endif #endif
*_event = _active_notes.top()->off_event(); *_event = _active_notes.top()->off_event();
_active_notes.pop(); _active_notes.pop();
} else if (type == CONTROL) { } else if (type == CONTROL) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Iterator = control" << endl; cerr << "Iterator = control" << endl;
#endif #endif
_seq->control_to_midi_event(_event, *_control_iter); _seq->control_to_midi_event(_event, *_control_iter);
} else if (type == SYSEX) { } else if (type == SYSEX) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Iterator = SysEx" << endl; cerr << "Iterator = SysEx" << endl;
#endif #endif
*_event =*(*_sysex_iter); *_event =*(*_sysex_iter);
++_sysex_iter; ++_sysex_iter;
} else { } else {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Iterator = End" << endl; cerr << "Iterator = End" << endl;
#endif #endif
_is_end = true; _is_end = true;
} }
@ -448,72 +431,17 @@ Sequence<Time>::Sequence(const TypeMap& type_map, size_t size)
, _notes(size) , _notes(size)
, _writing(false) , _writing(false)
, _end_iter(*this, DBL_MAX) , _end_iter(*this, DBL_MAX)
// , _next_read(UINT32_MAX)
, _percussive(false) , _percussive(false)
, _lowest_note(127) , _lowest_note(127)
, _highest_note(0) , _highest_note(0)
{ {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Sequence (size " << size << ") constructed: " << this << endl; cerr << "Sequence (size " << size << ") constructed: " << this << endl;
#endif #endif
assert(_end_iter._is_end); assert(_end_iter._is_end);
assert( ! _end_iter._locked); assert( ! _end_iter._locked);
} }
#if 0
/** Read events in frame range \a start .. \a (start + dur) into \a dst,
* adding \a offset to each event's timestamp.
* \return number of events written to \a dst
*/
template<typename Time>
size_t
Sequence<Time>::read(EventSink<Time>& dst, Time start, Time dur, Time offset) const
{
#ifdef DEBUG_SEQUENCE
debugout << this << " read @ " << start << " * " << dur << " + " << offset << endl;
debugout << this << " # notes: " << n_notes() << endl;
debugout << this << " # controls: " << _controls.size() << endl;
#endif
size_t read_events = 0;
if (start != _next_read) {
#ifdef DEBUG_SEQUENCE
debugout << "Repositioning iterator from " << _next_read << " to " << start << endl;
#endif
_read_iter = const_iterator(*this, start);
} else {
#ifdef DEBUG_SEQUENCE
debugout << "Using cached iterator at " << _next_read << endl;
#endif
}
_next_read = start + dur;
while (_read_iter != end() && _read_iter->time() < start + dur) {
assert(_read_iter->size() > 0);
assert(_read_iter->buffer());
dst.write(_read_iter->time() + offset,
_read_iter->event_type(),
_read_iter->size(),
_read_iter->buffer());
#ifdef DEBUG_SEQUENCE
debugout << this << " read event type " << _read_iter->event_type()
<< " @ " << _read_iter->time() << " : ";
for (size_t i = 0; i < _read_iter->size(); ++i)
debugout << hex << (int)_read_iter->buffer()[i];
debugout << endl;
#endif
++_read_iter;
++read_events;
}
return read_events;
}
#endif
/** Write the controller event pointed to by \a iter to \a ev. /** Write the controller event pointed to by \a iter to \a ev.
* The buffer of \a ev will be allocated or resized as necessary. * The buffer of \a ev will be allocated or resized as necessary.
* The event_type of \a ev should be set to the expected output type. * The event_type of \a ev should be set to the expected output type.
@ -598,7 +526,6 @@ Sequence<Time>::clear()
_notes.clear(); _notes.clear();
for (Controls::iterator li = _controls.begin(); li != _controls.end(); ++li) for (Controls::iterator li = _controls.begin(); li != _controls.end(); ++li)
li->second->list()->clear(); li->second->list()->clear();
// _next_read = 0;
_read_iter = end(); _read_iter = end();
_lock.writer_unlock(); _lock.writer_unlock();
} }
@ -615,7 +542,7 @@ void
Sequence<Time>::start_write() Sequence<Time>::start_write()
{ {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << this << " START WRITE, PERCUSSIVE = " << _percussive << endl; cerr << this << " START WRITE, PERCUSSIVE = " << _percussive << endl;
#endif #endif
write_lock(); write_lock();
_writing = true; _writing = true;
@ -640,13 +567,13 @@ Sequence<Time>::end_write(bool delete_stuck)
assert(_writing); assert(_writing);
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << this << " END WRITE: " << _notes.size() << " NOTES\n"; cerr << this << " END WRITE: " << _notes.size() << " NOTES\n";
#endif #endif
if (!_percussive && delete_stuck) { if (!_percussive && delete_stuck) {
for (typename Notes::iterator n = _notes.begin(); n != _notes.end() ;) { for (typename Notes::iterator n = _notes.begin(); n != _notes.end() ;) {
if ((*n)->length() == 0) { if ((*n)->length() == 0) {
errorout << "WARNING: Stuck note lost: " << (*n)->note() << endl; cerr << "WARNING: Stuck note lost: " << (*n)->note() << endl;
n = _notes.erase(n); n = _notes.erase(n);
// we have to break here because erase invalidates the iterator // we have to break here because erase invalidates the iterator
break; break;
@ -658,7 +585,7 @@ Sequence<Time>::end_write(bool delete_stuck)
for (int i = 0; i < 16; ++i) { for (int i = 0; i < 16; ++i) {
if (!_write_notes[i].empty()) { if (!_write_notes[i].empty()) {
errorout << "WARNING: Sequence<Time>::end_write: Channel " << i << " has " cerr << "WARNING: Sequence<Time>::end_write: Channel " << i << " has "
<< _write_notes[i].size() << " stuck notes" << endl; << _write_notes[i].size() << " stuck notes" << endl;
} }
_write_notes[i].clear(); _write_notes[i].clear();
@ -731,7 +658,7 @@ void
Sequence<Time>::append_note_on_unlocked(uint8_t chan, Time time, uint8_t note_num, uint8_t velocity) Sequence<Time>::append_note_on_unlocked(uint8_t chan, Time time, uint8_t note_num, uint8_t velocity)
{ {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << this << " c=" << (int)chan << " note " << (int)note_num cerr << this << " c=" << (int)chan << " note " << (int)note_num
<< " on @ " << time << " v=" << (int)velocity << endl; << " on @ " << time << " v=" << (int)velocity << endl;
#endif #endif
assert(note_num <= 127); assert(note_num <= 127);
@ -753,13 +680,13 @@ Sequence<Time>::append_note_on_unlocked(uint8_t chan, Time time, uint8_t note_nu
_notes.push_back(new_note); _notes.push_back(new_note);
if (!_percussive) { if (!_percussive) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Sustained: Appending active note on " << (unsigned)(uint8_t)note_num cerr << "Sustained: Appending active note on " << (unsigned)(uint8_t)note_num
<< " channel " << chan << endl; << " channel " << chan << endl;
#endif #endif
_write_notes[chan].push_back(_notes.size() - 1); _write_notes[chan].push_back(_notes.size() - 1);
} else { } else {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Percussive: NOT appending active note on" << endl; cerr << "Percussive: NOT appending active note on" << endl;
#endif #endif
} }
} }
@ -769,7 +696,7 @@ void
Sequence<Time>::append_note_off_unlocked(uint8_t chan, Time time, uint8_t note_num) Sequence<Time>::append_note_off_unlocked(uint8_t chan, Time time, uint8_t note_num)
{ {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << this << " c=" << (int)chan << " note " << (int)note_num cerr << this << " c=" << (int)chan << " note " << (int)note_num
<< " off @ " << time << endl; << " off @ " << time << endl;
#endif #endif
assert(note_num <= 127); assert(note_num <= 127);
@ -779,7 +706,7 @@ Sequence<Time>::append_note_off_unlocked(uint8_t chan, Time time, uint8_t note_n
if (_percussive) { if (_percussive) {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "Sequence Ignoring note off (percussive mode)" << endl; cerr << "Sequence Ignoring note off (percussive mode)" << endl;
#endif #endif
return; return;
} }
@ -799,7 +726,7 @@ Sequence<Time>::append_note_off_unlocked(uint8_t chan, Time time, uint8_t note_n
note.set_length(time - note.time()); note.set_length(time - note.time());
_write_notes[chan].erase(n); _write_notes[chan].erase(n);
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << "resolved note, length: " << note.length() << endl; cerr << "resolved note, length: " << note.length() << endl;
#endif #endif
resolved = true; resolved = true;
break; break;
@ -807,7 +734,7 @@ Sequence<Time>::append_note_off_unlocked(uint8_t chan, Time time, uint8_t note_n
} }
if (!resolved) { if (!resolved) {
errorout << this << " spurious note off chan " << (int)chan cerr << this << " spurious note off chan " << (int)chan
<< ", note " << (int)note_num << " @ " << time << endl; << ", note " << (int)note_num << " @ " << time << endl;
} }
} }
@ -817,7 +744,7 @@ void
Sequence<Time>::append_control_unlocked(const Parameter& param, Time time, double value) Sequence<Time>::append_control_unlocked(const Parameter& param, Time time, double value)
{ {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << this << " " << _type_map.to_symbol(param) << " @ " << time << " \t= \t" << value cerr << this << " " << _type_map.to_symbol(param) << " @ " << time << " \t= \t" << value
<< " # controls: " << _controls.size() << endl; << " # controls: " << _controls.size() << endl;
#endif #endif
boost::shared_ptr<Control> c = control(param, true); boost::shared_ptr<Control> c = control(param, true);
@ -829,11 +756,11 @@ void
Sequence<Time>::append_sysex_unlocked(const MIDIEvent<Time>& ev) Sequence<Time>::append_sysex_unlocked(const MIDIEvent<Time>& ev)
{ {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << this << " SysEx @ " << ev.time() << " \t= \t [ " << hex; cerr << this << " SysEx @ " << ev.time() << " \t= \t [ " << hex;
for (size_t i=0; i < ev.size(); ++i) { for (size_t i=0; i < ev.size(); ++i) {
debugout << int(ev.buffer()[i]) << " "; cerr << int(ev.buffer()[i]) << " ";
} }
debugout << "]" << endl; cerr << "]" << endl;
#endif #endif
boost::shared_ptr<MIDIEvent<Time> > event(new MIDIEvent<Time>(ev, true)); boost::shared_ptr<MIDIEvent<Time> > event(new MIDIEvent<Time>(ev, true));
@ -845,7 +772,7 @@ void
Sequence<Time>::add_note_unlocked(const boost::shared_ptr< Note<Time> > note) Sequence<Time>::add_note_unlocked(const boost::shared_ptr< Note<Time> > note)
{ {
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << this << " add note " << (int)note->note() << " @ " << note->time() << endl; cerr << this << " add note " << (int)note->note() << " @ " << note->time() << endl;
#endif #endif
_edited = true; _edited = true;
typename Notes::iterator i = upper_bound(_notes.begin(), _notes.end(), note, typename Notes::iterator i = upper_bound(_notes.begin(), _notes.end(), note,
@ -859,43 +786,16 @@ Sequence<Time>::remove_note_unlocked(const boost::shared_ptr< const Note<Time> >
{ {
_edited = true; _edited = true;
#ifdef DEBUG_SEQUENCE #ifdef DEBUG_SEQUENCE
debugout << this << " remove note " << (int)note->note() << " @ " << note->time() << endl; cerr << this << " remove note " << (int)note->note() << " @ " << note->time() << endl;
#endif #endif
for (typename Notes::iterator n = _notes.begin(); n != _notes.end(); ++n) { for (typename Notes::iterator n = _notes.begin(); n != _notes.end(); ++n) {
Note<Time>& _n = *(*n); if (*(*n) == *note) {
const Note<Time>& _note = *note;
// TODO: There is still the issue, that after restarting ardour
// persisted undo does not work, because of rounding errors in the
// event times after saving/restoring to/from MIDI files
/*cerr << "======================================= " << endl;
cerr << int(_n.note()) << "@" << int(_n.time()) << "[" << int(_n.channel()) << "] --" << int(_n.length()) << "-- #" << int(_n.velocity()) << endl;
cerr << int(_note.note()) << "@" << int(_note.time()) << "[" << int(_note.channel()) << "] --" << int(_note.length()) << "-- #" << int(_note.velocity()) << endl;
cerr << "Equal: " << bool(_n == _note) << endl;
cerr << endl << endl;*/
if (_n == _note) {
_notes.erase(n); _notes.erase(n);
// we have to break here, because erase invalidates all iterators, ie. n itself
break; break;
} }
} }
} }
/** Slow! for debugging only. */
#ifndef NDEBUG
template<typename Time>
bool
Sequence<Time>::is_sorted() const {
bool t = 0;
for (typename Notes::const_iterator n = _notes.begin(); n != _notes.end(); ++n)
if ((*n)->time() < t)
return false;
else
t = (*n)->time();
return true;
}
#endif
template class Sequence<double>; template class Sequence<double>;
} // namespace Evoral } // namespace Evoral