Region export dialog: Make export channel and -selector polymorphic, add the region...
[ardour.git] / libs / ardour / ardour / export_timespan.h
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Sakari Bergen
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_export_timespan_h__
22 #define __ardour_export_timespan_h__
23
24 #include <map>
25 #include <list>
26
27 #include <glibmm/ustring.h>
28
29 #include <ardour/export_status.h>
30 #include <ardour/export_channel.h>
31 #include <ardour/ardour.h>
32
33 using Glib::ustring;
34
35 namespace ARDOUR
36 {
37
38 class ExportChannel;
39 class ExportTempFile;
40
41 class ExportTimespan : public sigc::trackable
42 {
43   private:
44         typedef boost::shared_ptr<ExportTempFile> TempFilePtr;
45         typedef std::pair<ExportChannelPtr, TempFilePtr> ChannelFilePair;
46         typedef std::map<ExportChannelPtr, TempFilePtr> TempFileMap;
47         typedef boost::shared_ptr<ExportStatus> ExportStatusPtr;
48
49   private:
50         friend class ExportElementFactory;
51         ExportTimespan (ExportStatusPtr status, nframes_t frame_rate);
52         
53   public:
54         ~ExportTimespan ();
55         
56         ustring name () const { return _name; }
57         void set_name (ustring name) { _name = name; }
58         
59         ustring range_id () const { return _range_id; }
60         void set_range_id (ustring range_id) { _range_id = range_id; }
61         
62         /// Registers a channel to be read when export starts rolling
63         void register_channel (ExportChannelPtr channel);
64         
65         /// "Rewinds" the tempfiles to start reading the beginnings again
66         void rewind ();
67         
68         /// Reads data from the tempfile belonging to channel into data
69         nframes_t get_data (float * data, nframes_t frames, ExportChannelPtr channel);
70         
71         /// Reads data from each channel and writes to tempfile
72         int process (nframes_t frames);
73         
74         sigc::connection  process_connection;
75         
76         void set_range (nframes_t start, nframes_t end);
77         nframes_t get_length () const { return end_frame - start_frame; }
78         nframes_t get_start () const { return start_frame; }
79         nframes_t get_end () const { return end_frame; }
80
81   private:
82
83         ExportStatusPtr status;
84
85         nframes_t      start_frame;
86         nframes_t      end_frame;
87         nframes_t      position;
88         nframes_t      frame_rate;
89
90         TempFileMap    filemap;
91         
92         ustring       _name;
93         ustring       _range_id;
94
95 };
96
97 } // namespace ARDOUR
98
99 #endif /* __ardour_export_timespan_h__ */