/* Copyright (C) 2008 Paul Davis Author: Sakari Bergen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __ardour_export_handler_h__ #define __ardour_export_handler_h__ #include #include #include #include #include "ardour/ardour.h" #include "ardour/session.h" #include "ardour/types.h" namespace AudioGrapher { class BroadcastInfo; } namespace ARDOUR { class ExportTimespan; class ExportChannelConfiguration; class ExportFormatSpecification; class ExportFilename; class ExportGraphBuilder; class ExportElementFactory { public: typedef boost::shared_ptr TimespanPtr; typedef boost::shared_ptr ChannelConfigPtr; typedef boost::shared_ptr FormatPtr; typedef boost::shared_ptr FilenamePtr; public: ExportElementFactory (Session & session); ~ExportElementFactory (); TimespanPtr add_timespan (); ChannelConfigPtr add_channel_config (); FormatPtr add_format (); FormatPtr add_format (XMLNode const & state); FormatPtr add_format_copy (FormatPtr other); FilenamePtr add_filename (); FilenamePtr add_filename_copy (FilenamePtr other); private: Session & session; }; class ExportHandler : public ExportElementFactory { public: struct FileSpec { FileSpec() {} FileSpec (ChannelConfigPtr channel_config, FormatPtr format, FilenamePtr filename, boost::shared_ptr broadcast_info) : channel_config (channel_config) , format (format) , filename (filename) , broadcast_info (broadcast_info) {} ChannelConfigPtr channel_config; FormatPtr format; FilenamePtr filename; boost::shared_ptr broadcast_info; }; private: /* Stuff for export configs * The multimap maps timespans to file specifications */ typedef std::pair ConfigPair; typedef std::multimap ConfigMap; typedef boost::shared_ptr GraphBuilderPtr; typedef boost::shared_ptr StatusPtr; private: /* Session::get_export_handler() should be used to obtain an export handler * This ensures that it doesn't go out of scope before finalize_audio_export is called */ friend boost::shared_ptr Session::get_export_handler(); ExportHandler (Session & session); public: ~ExportHandler (); bool add_export_config (TimespanPtr timespan, ChannelConfigPtr channel_config, FormatPtr format, FilenamePtr filename, boost::shared_ptr broadcast_info); void do_export (bool rt = false); private: int process (nframes_t frames); Session & session; GraphBuilderPtr graph_builder; StatusPtr export_status; ConfigMap config_map; bool realtime; bool normalizing; /* Timespan management */ void start_timespan (); int process_timespan (nframes_t frames); int process_normalize (); void finish_timespan (); typedef std::pair TimespanBounds; TimespanPtr current_timespan; TimespanBounds timespan_bounds; PBD::ScopedConnection process_connection; sframes_t process_position; /* CD Marker stuff */ struct CDMarkerStatus { CDMarkerStatus (std::string out_file, TimespanPtr timespan, FormatPtr format, std::string filename) : out (out_file.c_str()), timespan (timespan), format (format), filename (filename), marker(0), track_number (1), track_position (0), track_duration (0), track_start_frame (0), index_number (1), index_position (0) {} /* General info */ std::ofstream out; TimespanPtr timespan; FormatPtr format; std::string filename; Location * marker; /* Track info */ uint32_t track_number; sframes_t track_position; sframes_t track_duration; sframes_t track_start_frame; /* Index info */ uint32_t index_number; sframes_t index_position; }; void export_cd_marker_file (TimespanPtr timespan, FormatPtr file_format, std::string filename, CDMarkerFormat format); void write_cue_header (CDMarkerStatus & status); void write_toc_header (CDMarkerStatus & status); void write_track_info_cue (CDMarkerStatus & status); void write_track_info_toc (CDMarkerStatus & status); void write_index_info_cue (CDMarkerStatus & status); void write_index_info_toc (CDMarkerStatus & status); void frames_to_cd_frames_string (char* buf, sframes_t when); int cue_tracknum; int cue_indexnum; }; } // namespace ARDOUR #endif /* __ardour_export_handler_h__ */