Fix MIDI rec-region display
[ardour.git] / libs / ardour / ardour / disk_reader.h
1 /*
2     Copyright (C) 2009-2016 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 */
19
20 #ifndef __ardour_disk_reader_h__
21 #define __ardour_disk_reader_h__
22
23 #include "pbd/i18n.h"
24
25 #include "ardour/disk_io.h"
26 #include "ardour/midi_buffer.h"
27
28 namespace ARDOUR
29 {
30
31 class Playlist;
32 class AudioPlaylist;
33 class MidiPlaylist;
34 template<typename T> class MidiRingBuffer;
35
36 class LIBARDOUR_API DiskReader : public DiskIOProcessor
37 {
38   public:
39         DiskReader (Session&, std::string const & name, DiskIOProcessor::Flag f = DiskIOProcessor::Flag (0));
40         ~DiskReader ();
41
42         bool set_name (std::string const & str);
43         std::string display_name() const { return std::string (_("player")); }
44
45         static samplecnt_t chunk_samples() { return _chunk_samples; }
46         static samplecnt_t default_chunk_samples ();
47         static void set_chunk_samples (samplecnt_t n) { _chunk_samples = n; }
48
49         void run (BufferSet& /*bufs*/, samplepos_t /*start_sample*/, samplepos_t /*end_sample*/, double speed, pframes_t /*nframes*/, bool /*result_required*/);
50         void realtime_handle_transport_stopped ();
51         void realtime_locate ();
52         int overwrite_existing_buffers ();
53         void set_pending_overwrite (bool yn);
54
55         virtual XMLNode& state (bool full);
56         int set_state (const XMLNode&, int version);
57
58         PBD::Signal0<void>            AlignmentStyleChanged;
59
60         float buffer_load() const;
61
62         void move_processor_automation (boost::weak_ptr<Processor>, std::list<Evoral::RangeMove<samplepos_t> > const &);
63
64         /* called by the Butler in a non-realtime context */
65
66         int do_refill () {
67                 return refill (_mixdown_buffer, _gain_buffer, 0);
68         }
69
70         /** For non-butler contexts (allocates temporary working buffers)
71          *
72          * This accessible method has a default argument; derived classes
73          * must inherit the virtual method that we call which does NOT
74          * have a default argument, to avoid complications with inheritance
75          */
76         int do_refill_with_alloc (bool partial_fill = true) {
77                 return _do_refill_with_alloc (partial_fill);
78         }
79
80         bool pending_overwrite () const { return _pending_overwrite; }
81
82         // Working buffers for do_refill (butler thread)
83         static void allocate_working_buffers();
84         static void free_working_buffers();
85
86         void adjust_buffering ();
87
88         int can_internal_playback_seek (samplecnt_t distance);
89         int internal_playback_seek (samplecnt_t distance);
90         int seek (samplepos_t sample, bool complete_refill = false);
91
92         static PBD::Signal0<void> Underrun;
93
94         void playlist_modified ();
95         void reset_tracker ();
96
97         static void set_midi_readahead_samples (samplecnt_t samples_ahead) { midi_readahead = samples_ahead; }
98
99         static void set_no_disk_output (bool yn);
100         static bool no_disk_output() { return _no_disk_output; }
101
102   protected:
103         friend class Track;
104         friend class MidiTrack;
105
106         void resolve_tracker (Evoral::EventSink<samplepos_t>& buffer, samplepos_t time);
107
108         void playlist_changed (const PBD::PropertyChange&);
109         int use_playlist (DataType, boost::shared_ptr<Playlist>);
110         void playlist_ranges_moved (std::list< Evoral::RangeMove<samplepos_t> > const &, bool);
111
112   private:
113         /** The number of samples by which this diskstream's output should be delayed
114             with respect to the transport sample.  This is used for latency compensation.
115         */
116         samplepos_t   overwrite_sample;
117         off_t         overwrite_offset;
118         bool          _pending_overwrite;
119         bool          overwrite_queued;
120         IOChange      input_change_pending;
121         samplepos_t   file_sample[DataType::num_types];
122
123         int _do_refill_with_alloc (bool partial_fill);
124
125         static samplecnt_t _chunk_samples;
126         static samplecnt_t midi_readahead;
127         static bool       _no_disk_output;
128
129         int audio_read (Sample* buf, Sample* mixdown_buffer, float* gain_buffer,
130                         samplepos_t& start, samplecnt_t cnt,
131                         int channel, bool reversed);
132         int midi_read (samplepos_t& start, samplecnt_t cnt, bool reversed);
133
134         static Sample* _mixdown_buffer;
135         static gain_t* _gain_buffer;
136
137         int refill (Sample* mixdown_buffer, float* gain_buffer, samplecnt_t fill_level);
138         int refill_audio (Sample *mixdown_buffer, float *gain_buffer, samplecnt_t fill_level);
139         int refill_midi ();
140
141         sampleoffset_t calculate_playback_distance (pframes_t);
142
143         void get_midi_playback (MidiBuffer& dst, samplepos_t start_sample, samplepos_t end_sample, MonitorState, BufferSet&, double speed, samplecnt_t distance);
144 };
145
146 } // namespace
147
148 #endif /* __ardour_disk_reader_h__ */