new files from sakari, missed last time
[ardour.git] / libs / ardour / ardour / export_handler.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_handler_h__
22 #define __ardour_export_handler_h__
23
24 #include <map>
25 #include <list>
26 #include <fstream>
27
28 #include <boost/shared_ptr.hpp>
29
30 #include <ardour/ardour.h>
31 #include <ardour/session.h>
32 #include <ardour/types.h>
33
34 namespace ARDOUR
35 {
36
37 class ExportTimespan;
38 class ExportChannelConfiguration;
39 class ExportFormatSpecification;
40 class ExportFilename;
41 class ExportProcessor;
42
43 class ExportElementFactory
44 {
45   protected:
46         typedef boost::shared_ptr<ExportTimespan> TimespanPtr;
47         typedef boost::shared_ptr<ExportChannelConfiguration> ChannelConfigPtr;
48         typedef boost::shared_ptr<ExportFormatSpecification> FormatPtr;
49         typedef boost::shared_ptr<ExportFilename> FilenamePtr;
50
51   public:
52
53         ExportElementFactory (Session & session);
54         ~ExportElementFactory ();
55
56         TimespanPtr      add_timespan ();
57
58         ChannelConfigPtr add_channel_config ();
59
60         FormatPtr        add_format ();
61         FormatPtr        add_format (XMLNode const & state);
62         FormatPtr        add_format_copy (FormatPtr other);
63
64         FilenamePtr      add_filename ();
65         FilenamePtr      add_filename_copy (FilenamePtr other);
66
67   private:
68         Session & session;
69 };
70
71 class ExportHandler : public ExportElementFactory, public sigc::trackable
72 {
73   private:
74         
75         /* Stuff for export configs
76          * The multimap maps timespans to file specifications
77          */
78         
79         struct FileSpec {
80         
81                 FileSpec (ChannelConfigPtr channel_config, FormatPtr format, FilenamePtr filename) :
82                   channel_config (channel_config),
83                   format (format),
84                   filename (filename)
85                   {}
86         
87                 ChannelConfigPtr channel_config;
88                 FormatPtr        format;
89                 FilenamePtr      filename;
90         };
91         
92         typedef std::pair<TimespanPtr, FileSpec> ConfigPair;
93         typedef std::multimap<TimespanPtr, FileSpec> ConfigMap;
94         
95         typedef boost::shared_ptr<ExportProcessor> ProcessorPtr;
96
97   private:
98         /* Session::get_export_handler() should be used to obtain an export handler
99          * This ensures that it doesn't go out of scope before finalize_audio_export is called
100          */
101
102         friend boost::shared_ptr<ExportHandler> Session::get_export_handler();
103         ExportHandler (Session & session);
104         
105   public:
106         ~ExportHandler ();
107
108         bool add_export_config (TimespanPtr timespan, ChannelConfigPtr channel_config, FormatPtr format, FilenamePtr filename);
109         void do_export (bool rt = false);
110
111   private:
112
113         Session &          session;
114         ProcessorPtr       processor;
115         ConfigMap          config_map;
116         
117         bool               realtime;
118         
119         sigc::connection          files_written_connection;
120         std::list<Glib::ustring> files_written;
121         
122         /* CD Marker stuff */
123         
124         struct CDMarkerStatus {
125                 CDMarkerStatus (string out_file, TimespanPtr timespan, FormatPtr format, string filename) :
126                   out (out_file.c_str()), timespan (timespan), format (format), filename (filename),
127                   track_number (1), track_position (0), track_duration (0), track_start_frame (0),
128                   index_number (1), index_position (0)
129                   {}
130                 
131                 /* General info */
132                 std::ofstream  out;
133                 TimespanPtr    timespan;
134                 FormatPtr      format;
135                 string         filename;
136                 Location *     marker;
137                 
138                 /* Track info */
139                 uint32_t       track_number;
140                 nframes_t      track_position;
141                 nframes_t      track_duration;
142                 nframes_t      track_start_frame;
143                 
144                 /* Index info */
145                 uint32_t       index_number;
146                 nframes_t      index_position;
147         };
148         
149         
150         void export_cd_marker_file (TimespanPtr timespan, FormatPtr file_format, std::string filename, CDMarkerFormat format);
151         
152         void write_cue_header (CDMarkerStatus & status);
153         void write_toc_header (CDMarkerStatus & status);
154         
155         void write_track_info_cue (CDMarkerStatus & status);
156         void write_track_info_toc (CDMarkerStatus & status);
157
158         void write_index_info_cue (CDMarkerStatus & status);
159         void write_index_info_toc (CDMarkerStatus & status);
160         
161         void frames_to_cd_frames_string (char* buf, nframes_t when);
162         
163         int cue_tracknum;
164         int cue_indexnum;
165         
166         /* Timespan management */
167         
168         void start_timespan ();
169         void finish_timespan ();
170         void timespan_thread_finished ();
171         
172         typedef std::pair<ConfigMap::iterator, ConfigMap::iterator> TimespanBounds;
173         TimespanPtr          current_timespan;
174         ConfigMap::iterator  current_map_it;
175         TimespanBounds       timespan_bounds;
176         sigc::connection     channel_config_connection;
177
178 };
179
180 } // namespace ARDOUR
181
182 #endif /* __ardour_export_handler_h__ */