Merged with trunk R1283.
[ardour.git] / libs / ardour / ardour / midi_diskstream.h
1 /*
2     Copyright (C) 2000 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id: diskstream.h 579 2006-06-12 19:56:37Z essej $
19 */
20
21 #ifndef __ardour_midi_diskstream_h__
22 #define __ardour_midi_diskstream_h__
23
24 #include <sigc++/signal.h>
25
26 #include <cmath>
27 #include <cassert>
28 #include <string>
29 #include <queue>
30 #include <map>
31 #include <vector>
32
33 #include <time.h>
34
35 #include <pbd/fastlog.h>
36 #include <pbd/ringbufferNPT.h>
37  
38
39 #include <ardour/ardour.h>
40 #include <ardour/configuration.h>
41 #include <ardour/session.h>
42 #include <ardour/route_group.h>
43 #include <ardour/route.h>
44 #include <ardour/port.h>
45 #include <ardour/utils.h>
46 #include <ardour/diskstream.h>
47 #include <ardour/midi_playlist.h>
48 #include <ardour/midi_ring_buffer.h>
49
50 struct tm;
51
52 namespace ARDOUR {
53
54 class MidiEngine;
55 class Send;
56 class Session;
57 class MidiPlaylist;
58 class SMFSource;
59 class IO;
60
61 class MidiDiskstream : public Diskstream
62 {       
63   public:
64         MidiDiskstream (Session &, const string& name, Diskstream::Flag f = Recordable);
65         MidiDiskstream (Session &, const XMLNode&);
66         ~MidiDiskstream();
67
68         float playback_buffer_load() const;
69         float capture_buffer_load() const;
70         
71         void get_playback(MidiBuffer& dst, jack_nframes_t start, jack_nframes_t end);
72
73         void set_record_enabled (bool yn);
74
75         boost::shared_ptr<MidiPlaylist> midi_playlist () { return boost::dynamic_pointer_cast<MidiPlaylist>(_playlist); }
76
77         int use_playlist (boost::shared_ptr<Playlist>);
78         int use_new_playlist ();
79         int use_copy_playlist ();
80
81         /* stateful */
82
83         XMLNode& get_state(void);
84         int set_state(const XMLNode& node);
85
86         void monitor_input (bool);
87
88         boost::shared_ptr<SMFSource> write_source () { return _write_source; }
89         
90         int set_destructive (bool yn); // doom!
91
92   protected:
93         friend class Session;
94
95         /* the Session is the only point of access for these
96            because they require that the Session is "inactive"
97            while they are called.
98         */
99
100         void set_pending_overwrite(bool);
101         int  overwrite_existing_buffers ();
102         void set_block_size (jack_nframes_t);
103         int  internal_playback_seek (jack_nframes_t distance);
104         int  can_internal_playback_seek (jack_nframes_t distance);
105         int  rename_write_sources ();
106         void reset_write_sources (bool, bool force = false);
107         void non_realtime_input_change ();
108
109   protected:
110         int seek (jack_nframes_t which_sample, bool complete_refill = false);
111
112   protected:
113         friend class MidiTrack;
114
115         int  process (jack_nframes_t transport_frame, jack_nframes_t nframes, jack_nframes_t offset, bool can_record, bool rec_monitors_input);
116         bool commit  (jack_nframes_t nframes);
117
118   private:
119
120         /* The two central butler operations */
121         int do_flush (Session::RunContext context, bool force = false);
122         int do_refill ();
123         
124         int do_refill_with_alloc();
125
126         int read (jack_nframes_t& start, jack_nframes_t cnt, bool reversed);
127
128         void finish_capture (bool rec_monitors_input);
129         void transport_stopped (struct tm&, time_t, bool abort);
130
131         void init (Diskstream::Flag);
132
133         int use_new_write_source (uint32_t n=0);
134
135         int find_and_use_playlist (const string&);
136
137         void allocate_temporary_buffers ();
138
139         int use_pending_capture_data (XMLNode& node);
140
141         void get_input_sources ();
142         void check_record_status (jack_nframes_t transport_frame, jack_nframes_t nframes, bool can_record);
143         void set_align_style_from_io();
144         
145         void engage_record_enable ();
146         void disengage_record_enable ();
147         
148         // FIXME: This is basically a single ChannelInfo.. abstractify that concept?
149         MidiRingBuffer*                    _playback_buf;
150         MidiRingBuffer*                    _capture_buf;
151         //RawMidi*                          _current_playback_buffer;
152         //RawMidi*                          _current_capture_buffer;
153         //RawMidi*                          _playback_wrap_buffer;
154         //RawMidi*                          _capture_wrap_buffer;
155         MidiPort*                         _source_port;
156         boost::shared_ptr<SMFSource>      _write_source;
157         RingBufferNPT<CaptureTransition>* _capture_transition_buf;
158         //RingBufferNPT<RawMidi>::rw_vector _playback_vector;
159         //RingBufferNPT<RawMidi>::rw_vector _capture_vector;
160         jack_nframes_t _last_flush_frame;
161 };
162
163 }; /* namespace ARDOUR */
164
165 #endif /* __ardour_midi_diskstream_h__ */