ace5a041ce5e511513267da692ef0ebde9294943
[ardour.git] / libs / ardour / ardour / audio_track.h
1 /*
2     Copyright (C) 2002-2006 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_audio_track_h__
21 #define __ardour_audio_track_h__
22
23 #include "ardour/interthread_info.h"
24 #include "ardour/track.h"
25
26 namespace ARDOUR {
27
28 class Session;
29 class AudioDiskstream;
30 class AudioPlaylist;
31 class RouteGroup;
32 class AudioFileSource;
33
34 class LIBARDOUR_API AudioTrack : public Track
35 {
36   public:
37         AudioTrack (Session&, std::string name, Route::Flag f = Route::Flag (0), TrackMode m = Normal);
38         ~AudioTrack ();
39
40         int set_mode (TrackMode m);
41         bool can_use_mode (TrackMode m, bool& bounce_required);
42
43         int roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
44                   int declick, bool& need_butler);
45
46         boost::shared_ptr<Diskstream> create_diskstream ();
47         void set_diskstream (boost::shared_ptr<Diskstream>);
48
49         DataType data_type () const {
50                 return DataType::AUDIO;
51         }
52
53         void freeze_me (InterThreadInfo&);
54         void unfreeze ();
55         bool frozen_processor(PBD::ID const) const;
56
57         bool bounceable (boost::shared_ptr<Processor>, bool include_endpoint) const;
58         boost::shared_ptr<Region> bounce (InterThreadInfo&);
59         boost::shared_ptr<Region> bounce_range (framepos_t start, framepos_t end, InterThreadInfo&, 
60                                                 boost::shared_ptr<Processor> endpoint, bool include_endpoint);
61         int export_stuff (BufferSet& bufs, framepos_t start_frame, framecnt_t nframes,
62                           boost::shared_ptr<Processor> endpoint, bool include_endpoint, bool for_export, bool for_freeze);
63
64         int set_state (const XMLNode&, int version);
65
66         boost::shared_ptr<AudioFileSource> write_source (uint32_t n = 0);
67
68   protected:
69         boost::shared_ptr<AudioDiskstream> audio_diskstream () const;
70         XMLNode& state (bool full);
71
72   private:
73
74         boost::shared_ptr<Diskstream> diskstream_factory (XMLNode const &);
75         
76         int  deprecated_use_diskstream_connections ();
77         void set_state_part_two ();
78         void set_state_part_three ();
79 };
80
81 } // namespace ARDOUR
82
83 #endif /* __ardour_audio_track_h__ */