globally remove all trailing whitespace from ardour code base.
[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
25 #include <cmath>
26 #include <cassert>
27 #include <string>
28 #include <queue>
29 #include <map>
30 #include <vector>
31
32 #include <time.h>
33
34 #include "pbd/fastlog.h"
35 #include "pbd/ringbufferNPT.h"
36
37 #include "ardour/ardour.h"
38 #include "ardour/diskstream.h"
39 #include "ardour/midi_buffer.h"
40 #include "ardour/utils.h"
41 #include "ardour/interpolation.h"
42
43 struct tm;
44
45 namespace ARDOUR {
46
47 class IO;
48 class MidiEngine;
49 class MidiPlaylist;
50 class MidiPort;
51 class MidiRingbuffer;
52 class MidiSource;
53 class SMFSource;
54 class Send;
55 class Session;
56
57 template<typename T> class MidiRingBuffer;
58
59 class LIBARDOUR_API MidiDiskstream : public Diskstream
60 {
61   public:
62         MidiDiskstream (Session &, const std::string& name, Diskstream::Flag f = Recordable);
63         MidiDiskstream (Session &, const XMLNode&);
64         ~MidiDiskstream();
65
66         float playback_buffer_load() const;
67         float capture_buffer_load() const;
68
69         void get_playback (MidiBuffer& dst, framecnt_t);
70         void flush_playback (framepos_t, framepos_t);
71
72         void set_record_enabled (bool yn);
73         void set_record_safe (bool yn);
74         
75         void reset_tracker ();
76         void resolve_tracker (Evoral::EventSink<framepos_t>& buffer, framepos_t time);
77
78         boost::shared_ptr<MidiPlaylist> midi_playlist ();
79
80         int use_playlist (boost::shared_ptr<Playlist>);
81         int use_new_playlist ();
82         int use_copy_playlist ();
83
84         bool set_name (std::string const &);
85         bool set_write_source_name (const std::string& str);
86
87         /* stateful */
88         XMLNode& get_state(void);
89         int set_state(const XMLNode&, int version);
90
91         void ensure_input_monitoring (bool);
92
93         boost::shared_ptr<SMFSource> write_source ()    { return _write_source; }
94
95         int set_destructive (bool yn); // doom!
96
97         void set_note_mode (NoteMode m);
98
99         /** Emitted when some MIDI data has been received for recording.
100          *  Parameter is the source that it is destined for.
101          *  A caller can get a copy of the data with get_gui_feed_buffer ()
102          */
103         PBD::Signal1<void, boost::weak_ptr<MidiSource> > DataRecorded;
104
105         boost::shared_ptr<MidiBuffer> get_gui_feed_buffer () const;
106
107   protected:
108         friend class Session;
109         friend class Butler;
110
111         /* the Session is the only point of access for these
112            because they require that the Session is "inactive"
113            while they are called.
114         */
115
116         void set_pending_overwrite(bool);
117         int  overwrite_existing_buffers ();
118         void set_block_size (pframes_t);
119         int  internal_playback_seek (framecnt_t distance);
120         int  can_internal_playback_seek (framecnt_t distance);
121         std::string steal_write_source_name();
122         void reset_write_sources (bool, bool force = false);
123         void non_realtime_input_change ();
124         void non_realtime_locate (framepos_t location);
125
126         static void set_readahead_frames (framecnt_t frames_ahead) { midi_readahead = frames_ahead; }
127
128   protected:
129         friend class MidiTrack;
130         friend class Auditioner;
131
132         int seek (framepos_t which_sample, bool complete_refill = false);
133         int _do_refill_with_alloc (bool one_chunk_only);
134         int process (BufferSet&, framepos_t transport_frame, pframes_t nframes, framecnt_t &, bool need_diskstream);
135         frameoffset_t calculate_playback_distance (pframes_t nframes);
136         bool commit (framecnt_t nframes);
137
138         static framecnt_t midi_readahead;
139
140   private:
141
142         /* The two central butler operations */
143         int do_flush (RunContext context, bool force = false);
144         int do_refill ();
145
146         int read (framepos_t& start, framecnt_t cnt, bool reversed);
147
148         void finish_capture ();
149         void transport_stopped_wallclock (struct tm&, time_t, bool abort);
150         void transport_looped (framepos_t transport_frame);
151
152         void init ();
153
154         int use_new_write_source (uint32_t n=0);
155
156         int find_and_use_playlist (const std::string&);
157
158         void allocate_temporary_buffers ();
159
160         int use_pending_capture_data (XMLNode& node);
161
162         void get_input_sources ();
163         void set_align_style_from_io();
164
165         /* fixed size buffers per instance of ardour for now (non-dynamic)
166          */
167
168         void adjust_playback_buffering () {}
169         void adjust_capture_buffering () {}
170
171         bool prep_record_enable ();
172         bool prep_record_disable ();
173
174         MidiRingBuffer<framepos_t>*  _playback_buf;
175         MidiRingBuffer<framepos_t>*  _capture_buf;
176         boost::weak_ptr<MidiPort>    _source_port;
177         boost::shared_ptr<SMFSource> _write_source;
178         NoteMode                     _note_mode;
179         gint                         _frames_written_to_ringbuffer;
180         gint                         _frames_read_from_ringbuffer;
181         volatile gint                _frames_pending_write;
182         volatile gint                _num_captured_loops;
183         framepos_t                   _accumulated_capture_offset;
184
185         /** A buffer that we use to put newly-arrived MIDI data in for
186             the GUI to read (so that it can update itself).
187         */
188         MidiBuffer                   _gui_feed_buffer;
189         mutable Glib::Threads::Mutex _gui_feed_buffer_mutex;
190
191         CubicMidiInterpolation interpolation;
192 };
193
194 }; /* namespace ARDOUR */
195
196 #endif /* __ardour_midi_diskstream_h__ */