enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[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
26 #include <boost/operators.hpp>
27 #include <boost/shared_ptr.hpp>
28
29 #include "pbd/gstdio_compat.h"
30
31 #include "ardour/export_pointers.h"
32 #include "ardour/session.h"
33 #include "ardour/libardour_visibility.h"
34 #include "ardour/types.h"
35 #include "pbd/signals.h"
36
37 #include "pbd/i18n.h"
38
39 namespace AudioGrapher {
40         class BroadcastInfo;
41 }
42
43 namespace ARDOUR
44 {
45
46 class ExportTimespan;
47 class ExportChannelConfiguration;
48 class ExportFormatSpecification;
49 class ExportFilename;
50 class ExportGraphBuilder;
51 class Location;
52
53 class LIBARDOUR_API ExportElementFactory
54 {
55   public:
56
57         ExportElementFactory (Session & session);
58         ~ExportElementFactory ();
59
60         ExportTimespanPtr add_timespan ();
61
62         ExportChannelConfigPtr add_channel_config ();
63
64         ExportFormatSpecPtr    add_format ();
65         ExportFormatSpecPtr    add_format (XMLNode const & state);
66         ExportFormatSpecPtr    add_format_copy (ExportFormatSpecPtr other);
67
68         ExportFilenamePtr      add_filename ();
69         ExportFilenamePtr      add_filename_copy (ExportFilenamePtr other);
70
71   private:
72         Session & session;
73 };
74
75 /** Export Handler */
76 class LIBARDOUR_API ExportHandler : public ExportElementFactory, public sigc::trackable
77 {
78   public:
79         struct FileSpec {
80                 FileSpec() {}
81                 FileSpec (ExportChannelConfigPtr channel_config, ExportFormatSpecPtr format,
82                           ExportFilenamePtr filename, BroadcastInfoPtr broadcast_info)
83                   : channel_config (channel_config)
84                   , format (format)
85                   , filename (filename)
86                   , broadcast_info (broadcast_info)
87                         {}
88
89                 ExportChannelConfigPtr channel_config;
90                 ExportFormatSpecPtr    format;
91                 ExportFilenamePtr      filename;
92                 BroadcastInfoPtr       broadcast_info;
93         };
94
95   private:
96         /* Session::get_export_handler() should be used to obtain an export handler
97          * This ensures that it doesn't go out of scope before finalize_audio_export is called
98          */
99
100         friend boost::shared_ptr<ExportHandler> Session::get_export_handler();
101         ExportHandler (Session & session);
102
103         void command_output(std::string output, size_t size);
104
105   public:
106         ~ExportHandler ();
107
108         bool add_export_config (ExportTimespanPtr timespan, ExportChannelConfigPtr channel_config,
109                                 ExportFormatSpecPtr format, ExportFilenamePtr filename,
110                                 BroadcastInfoPtr broadcast_info);
111         void do_export ();
112
113         std::string get_cd_marker_filename(std::string filename, CDMarkerFormat format);
114
115         /** signal emitted when soundcloud export reports progress updates during upload.
116          * The parameters are total and current bytes downloaded, and the current filename
117          */
118         PBD::Signal3<void, double, double, std::string> SoundcloudProgress;
119
120         /* upload credentials & preferences */
121         std::string soundcloud_username;
122         std::string soundcloud_password;
123         bool soundcloud_make_public;
124         bool soundcloud_open_page;
125         bool soundcloud_downloadable;
126
127   private:
128
129         void handle_duplicate_format_extensions();
130         int process (framecnt_t frames);
131
132         Session &          session;
133         boost::shared_ptr<ExportGraphBuilder> graph_builder;
134         ExportStatusPtr    export_status;
135
136         /* The timespan and corresponding file specifications that we are exporting;
137            there can be multiple FileSpecs for each ExportTimespan.
138         */
139         typedef std::multimap<ExportTimespanPtr, FileSpec> ConfigMap;
140         ConfigMap          config_map;
141
142         bool               normalizing;
143
144         /* Timespan management */
145
146         void start_timespan ();
147         int  process_timespan (framecnt_t frames);
148         int  process_normalize ();
149         void finish_timespan ();
150
151         typedef std::pair<ConfigMap::iterator, ConfigMap::iterator> TimespanBounds;
152         ExportTimespanPtr     current_timespan;
153         TimespanBounds        timespan_bounds;
154
155         PBD::ScopedConnection process_connection;
156         framepos_t             process_position;
157
158         /* CD Marker stuff */
159
160         struct CDMarkerStatus {
161                 CDMarkerStatus (std::string out_file, ExportTimespanPtr timespan,
162                                 ExportFormatSpecPtr format, std::string filename)
163                   : path (out_file)
164                   , timespan (timespan)
165                   , format (format)
166                   , filename (filename)
167                   , marker(0)
168                   , track_number (1)
169                   , track_position (0)
170                   , track_duration (0)
171                   , track_start_frame (0)
172                   , index_number (1)
173                   , index_position (0)
174                   {}
175
176                 ~CDMarkerStatus () {
177                         if (!g_file_set_contents (path.c_str(), out.str().c_str(), -1, NULL)) {
178                                 PBD::error << string_compose(_("Editor: cannot open \"%1\" as export file for CD marker file"), path) << endmsg;
179                         }
180
181                 }
182
183                 /* I/O */
184                 std::string         path;
185                 std::stringstream   out;
186
187                 /* General info */
188                 ExportTimespanPtr   timespan;
189                 ExportFormatSpecPtr format;
190                 std::string         filename;
191                 Location *          marker;
192
193                 /* Track info */
194                 uint32_t        track_number;
195                 framepos_t      track_position;
196                 framepos_t      track_duration;
197                 framepos_t      track_start_frame;
198
199                 /* Index info */
200                 uint32_t       index_number;
201                 framepos_t      index_position;
202         };
203
204
205         void export_cd_marker_file (ExportTimespanPtr timespan, ExportFormatSpecPtr file_format,
206                                     std::string filename, CDMarkerFormat format);
207
208         void write_cue_header (CDMarkerStatus & status);
209         void write_toc_header (CDMarkerStatus & status);
210         void write_mp4ch_header (CDMarkerStatus & status);
211
212         void write_track_info_cue (CDMarkerStatus & status);
213         void write_track_info_toc (CDMarkerStatus & status);
214         void write_track_info_mp4ch (CDMarkerStatus & status);
215
216         void write_index_info_cue (CDMarkerStatus & status);
217         void write_index_info_toc (CDMarkerStatus & status);
218         void write_index_info_mp4ch (CDMarkerStatus & status);
219
220         void frames_to_cd_frames_string (char* buf, framepos_t when);
221         void frames_to_chapter_marks_string (char* buf, framepos_t when);
222
223         std::string toc_escape_cdtext (const std::string&);
224         std::string toc_escape_filename (const std::string&);
225         std::string cue_escape_cdtext (const std::string& txt);
226
227         int cue_tracknum;
228         int cue_indexnum;
229 };
230
231 } // namespace ARDOUR
232
233 #endif /* __ardour_export_handler_h__ */