13
0
livetrax/libs/pbd3/pbd
David Robillard fe13d08874 Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes.  (Sorry, doing a "sprint" based thing, this is the end of the first one)

Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them.  Should be set to start work on actually recording and playing midi to/from disk now.

Relevant (significant) changes:

- Creation of a Buffer class.  Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template).  Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise.  Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below).  There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary.  Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)

- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports.  IO::register_***_port has a type argument that defaults to the default type if not passed.  Rationale:  previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things.  This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain.  (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)

- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument.  Ditto for output.

- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created.  Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part.  It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.

- MidiTrack creation.  Same thing as AudioTrack but with a different default type basically.  No big deal here.

- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)

Known broken:  Loading of sessions containing MIDI tracks.




git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 16:01:34 +00:00
..
.cvsignore Initial revision 2005-05-13 20:47:18 +00:00
.DS_Store Initial revision 2005-05-13 20:47:18 +00:00
abstract_ui.cc Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
abstract_ui.h Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
atomic.h Initial revision 2005-05-13 20:47:18 +00:00
base_ui.h add missing file, remove unnecessary qualifier 2006-04-25 11:10:52 +00:00
basename.h Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
compose.h fix compose mess, and a number of 64 bit printf specs 2005-10-06 19:10:57 +00:00
convert.h All included libraries now link dynamically instead of statically. 2006-04-25 20:23:50 +00:00
datum.h Initial revision 2005-05-13 20:47:18 +00:00
dirname.h Initial revision 2005-05-13 20:47:18 +00:00
ellipsoid.h Initial revision 2005-05-13 20:47:18 +00:00
error.h Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
failed_constructor.h Initial revision 2005-05-13 20:47:18 +00:00
fastlog.h Synced fastlog.h with ardour1 updates. 2005-08-11 19:45:29 +00:00
foreach.h Initial revision 2005-05-13 20:47:18 +00:00
forkexec.h Initial revision 2005-05-13 20:47:18 +00:00
lock_free_fifo.h Initial revision 2005-05-13 20:47:18 +00:00
lockmonitor.h committed RWlock fixes to libardour. added hw monitoring fixes from nick_m. minor alsa midi fix and update rate settings. 2006-01-06 04:59:17 +00:00
mathfix.h added mathfix.h from ardour1 2005-11-29 07:04:42 +00:00
mountpoint.h Initial revision 2005-05-13 20:47:18 +00:00
pathscanner.h Initial revision 2005-05-13 20:47:18 +00:00
pool.h Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
position.h Initial revision 2005-05-13 20:47:18 +00:00
precision_timer.h Initial revision 2005-05-13 20:47:18 +00:00
pthread_spinlock.h Initial revision 2005-05-13 20:47:18 +00:00
pthread_utils.h fixed missing include need for compile on gcc 3.3.x 2006-02-16 03:25:23 +00:00
rcpointer.h Initial revision 2005-05-13 20:47:18 +00:00
receiver.h a) completely refactor abstract UI code 2006-04-24 22:45:19 +00:00
relation.h Initial revision 2005-05-13 20:47:18 +00:00
restartable_rw.h Initial revision 2005-05-13 20:47:18 +00:00
ringbuffer.h Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
ringbufferNPT.h Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
rt.h Initial revision 2005-05-13 20:47:18 +00:00
rtthread.h Initial revision 2005-05-13 20:47:18 +00:00
scale.h Initial revision 2005-05-13 20:47:18 +00:00
selectable.h Initial revision 2005-05-13 20:47:18 +00:00
stacktrace.h new stacktrace function in libpbd3; variable size GUI request thread queues 2006-02-15 15:55:48 +00:00
stl_delete.h Initial revision 2005-05-13 20:47:18 +00:00
stl_functors.h Initial revision 2005-05-13 20:47:18 +00:00
strsplit.h Initial revision 2005-05-13 20:47:18 +00:00
textreceiver.h Initial revision 2005-05-13 20:47:18 +00:00
thread.h Initial revision 2005-05-13 20:47:18 +00:00
thrown_error.h Initial revision 2005-05-13 20:47:18 +00:00
touchable.h Initial revision 2005-05-13 20:47:18 +00:00
transmitter.h Large nasty commit in the form of a 5000 line patch chock-full of completely 2006-06-26 16:01:34 +00:00
types.h Initial revision 2005-05-13 20:47:18 +00:00
undo.h Initial revision 2005-05-13 20:47:18 +00:00
unescape.h Initial revision 2005-05-13 20:47:18 +00:00
whitespace.h Moved strip_whitespace_edges() to pbd/whitespace.h 2006-01-13 19:48:55 +00:00
xml++.h fixed memory leak in xmltree 2006-02-01 00:19:44 +00:00