/* * Copyright (C) 1999-2019 Paul Davis * Copyright (C) 2005-2006 Taybin Rutkin * Copyright (C) 2006-2014 David Robillard * Copyright (C) 2006-2016 Tim Mayberry * Copyright (C) 2006 Jesse Chappell * Copyright (C) 2007-2012 Carl Hetherington * Copyright (C) 2008-2009 Hans Baier * Copyright (C) 2012-2019 Robin Gareus * Copyright (C) 2013-2016 John Emmas * Copyright (C) 2013-2017 Nick Mainsbridge * Copyright (C) 2014-2018 Ben Loftis * Copyright (C) 2017 Johannes Mueller * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifdef WAF_BUILD #include "libardour-config.h" #endif #include #include #include #include #include /* snprintf(3) ... grrr */ #include #include #include #include #include /* for open(2) */ #include #include #include #ifdef HAVE_SYS_VFS_H #include #endif #if defined(__APPLE__) || defined(__FreeBSD__) #include #include #endif #ifdef HAVE_SYS_STATVFS_H #include #endif #include #include "pbd/gstdio_compat.h" #include "pbd/locale_guard.h" #include #include #include #include #include "midi++/mmc.h" #include "midi++/port.h" #include "evoral/SMF.h" #include "pbd/basename.h" #include "pbd/debug.h" #include "pbd/enumwriter.h" #include "pbd/error.h" #include "pbd/file_utils.h" #include "pbd/pathexpand.h" #include "pbd/pthread_utils.h" #include "pbd/progress.h" #include "pbd/scoped_file_descriptor.h" #include "pbd/types_convert.h" #include "pbd/localtime_r.h" #include "pbd/unwind.h" #include "ardour/amp.h" #include "ardour/async_midi_port.h" #include "ardour/audio_track.h" #include "ardour/audioengine.h" #include "ardour/audiofilesource.h" #include "ardour/audioregion.h" #include "ardour/auditioner.h" #include "ardour/automation_control.h" #include "ardour/boost_debug.h" #include "ardour/butler.h" #include "ardour/control_protocol_manager.h" #include "ardour/debug.h" #include "ardour/directory_names.h" #include "ardour/disk_reader.h" #include "ardour/filename_extensions.h" #include "ardour/graph.h" #include "ardour/io_plug.h" #include "ardour/location.h" #include "ardour/lv2_plugin.h" #include "ardour/midi_model.h" #include "ardour/midi_region.h" #include "ardour/midi_scene_changer.h" #include "ardour/midi_source.h" #include "ardour/midi_track.h" #include "ardour/mixer_scene.h" #include "ardour/playlist_factory.h" #include "ardour/playlist_source.h" #include "ardour/port.h" #include "ardour/processor.h" #include "ardour/profile.h" #include "ardour/proxy_controllable.h" #include "ardour/recent_sessions.h" #include "ardour/region_factory.h" #include "ardour/revision.h" #include "ardour/route_group.h" #include "ardour/send.h" #include "ardour/selection.h" #include "ardour/session.h" #include "ardour/session_directory.h" #include "ardour/session_metadata.h" #include "ardour/session_playlists.h" #include "ardour/session_state_utils.h" #include "ardour/silentfilesource.h" #include "ardour/smf_source.h" #include "ardour/sndfilesource.h" #include "ardour/source_factory.h" #include "ardour/speakers.h" #include "ardour/template_utils.h" #include "ardour/tempo.h" #include "ardour/ticker.h" #include "ardour/transport_master_manager.h" #include "ardour/types_convert.h" #include "ardour/user_bundle.h" #include "ardour/vca.h" #include "ardour/vca_manager.h" #include "control_protocol/control_protocol.h" #include "LuaBridge/LuaBridge.h" #include "pbd/i18n.h" #include using namespace std; using namespace ARDOUR; using namespace PBD; using namespace Temporal; void Session::pre_engine_init (string fullpath) { if (fullpath.empty()) { destroy (); throw failed_constructor(); } /* discover canonical fullpath */ _path = canonical_path(fullpath); /* is it new ? */ _is_new = !Glib::file_test (_path, Glib::FileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)); /* finish initialization that can't be done in a normal C++ constructor definition. */ timerclear (&last_mmc_step); _processing_prohibited.store (0); _record_status.store (Disabled); _playback_load.store (100); _capture_load.store (100); set_next_event (); _all_route_group->set_active (true, this); if (config.get_use_video_sync()) { waiting_for_sync_offset = true; } else { waiting_for_sync_offset = false; } last_rr_session_dir = session_dirs.begin(); set_history_depth (Config->get_history_depth()); /* default: assume simple stereo speaker configuration */ _speakers->setup_default_speakers (2); _solo_cut_control.reset (new ProxyControllable (_("solo cut control (dB)"), PBD::Controllable::GainLike, boost::bind (&RCConfiguration::set_solo_mute_gain, Config, _1), boost::bind (&RCConfiguration::get_solo_mute_gain, Config))); add_controllable (_solo_cut_control); /* These are all static "per-class" signals */ SourceFactory::SourceCreated.connect_same_thread (*this, boost::bind (&Session::add_source, this, _1)); PlaylistFactory::PlaylistCreated.connect_same_thread (*this, boost::bind (&Session::add_playlist, this, _1)); AutomationList::AutomationListCreated.connect_same_thread (*this, boost::bind (&Session::add_automation_list, this, _1)); IO::PortCountChanged.connect_same_thread (*this, boost::bind (&Session::ensure_buffers, this, _1)); /* stop IO objects from doing stuff until we're ready for them */ Delivery::disable_panners (); } int Session::post_engine_init () { BootMessage (_("Set block size and sample rate")); set_block_size (_engine.samples_per_cycle()); set_sample_rate (_engine.sample_rate()); BootMessage (_("Using configuration")); _midi_ports = new MidiPortManager; MIDISceneChanger* msc; _scene_changer = msc = new MIDISceneChanger (*this); msc->set_input_port (std::dynamic_pointer_cast(scene_input_port())); msc->set_output_port (std::dynamic_pointer_cast(scene_output_port())); boost::function timer_func (boost::bind (&Session::audible_sample, this, (bool*)(0))); std::dynamic_pointer_cast(scene_input_port())->set_timer (timer_func); setup_midi_machine_control (); /* setup MTC generator */ mtc_tx_resync_latency (true); LatencyUpdated.connect_same_thread (*this, boost::bind (&Session::mtc_tx_resync_latency, this, _1)); if (_butler->start_thread()) { error << _("Butler did not start") << endmsg; return -1; } if (start_midi_thread ()) { error << _("MIDI I/O thread did not start") << endmsg; return -1; } setup_click_sounds (0); setup_midi_control (); _engine.Halted.connect_same_thread (*this, boost::bind (&Session::engine_halted, this)); _engine.Xrun.connect_same_thread (*this, boost::bind (&Session::xrun_recovery, this)); try { /* MidiClock requires a tempo map */ delete midi_clock; midi_clock = new MidiClockTicker (*this); /* crossfades require sample rate knowledge */ _engine.GraphReordered.connect_same_thread (*this, boost::bind (&Session::graph_reordered, this, true)); _engine.MidiSelectionPortsChanged.connect_same_thread (*this, boost::bind (&Session::rewire_midi_selection_ports, this)); DiskReader::allocate_working_buffers(); refresh_disk_space (); /* we're finally ready to call set_state() ... all objects have * been created, the engine is running. */ if (state_tree) { try { switch (set_state (*state_tree->root(), Stateful::loading_state_version)) { case 0: /* OK */ break; case -2: /* SR mismatch */ return -6; default: error << _("Could not set session state from XML") << endmsg; return -4; } } catch (PBD::unknown_enumeration& e) { error << _("Session state: ") << e.what() << endmsg; return -4; } } else { // set_state() will call setup_raid_path(), but if it's a new session we need // to call setup_raid_path() here. setup_raid_path (_path); } /* ENGINE */ boost::function ff (boost::bind (&Session::config_changed, this, _1, false)); boost::function ft (boost::bind (&Session::config_changed, this, _1, true)); Config->map_parameters (ff); config.map_parameters (ft); _butler->map_parameters (); /* Configure all processors; now that the * engine is running, ports are re-established, * and IOChange are complete. */ { Glib::Threads::Mutex::Lock lx (AudioEngine::instance()->process_lock ()); ProcessorChangeBlocker pcb (this); std::shared_ptr r = routes.reader (); for (auto const& i : *r) { i->configure_processors (0); } /* release process-lock, ProcessorChangeBlocker may trigger * latency-callback from non-rt thread which may take the lock */ lx.release (); } /* Reset all panners */ Delivery::reset_panners (); /* this will cause the CPM to instantiate any protocols that are in use * (or mandatory), which will pass it this Session, and then call * set_state() on each instantiated protocol to match stored state. */ ControlProtocolManager::instance().set_session (this); /* This must be done after the ControlProtocolManager set_session above, as it will set states for ports which the ControlProtocolManager creates. */ // XXX set state of MIDI::Port's // MidiPortManager::instance()->set_port_states (Config->midi_port_states ()); /* And this must be done after the MIDI::Manager::set_port_states as * it will try to make connections whose details are loaded by set_port_states. */ hookup_io (); /* Let control protocols know that we are now all connected, so they * could start talking to surfaces if they want to. */ ControlProtocolManager::instance().midi_connectivity_established (); if (_is_new && !no_auto_connect()) { Glib::Threads::Mutex::Lock lm (AudioEngine::instance()->process_lock()); auto_connect_master_bus (); } _state_of_the_state = StateOfTheState (_state_of_the_state & ~(CannotSave | Dirty)); /* update latencies */ initialize_latencies (); _locations->added.connect_same_thread (*this, boost::bind (&Session::location_added, this, _1)); _locations->removed.connect_same_thread (*this, boost::bind (&Session::location_removed, this, _1)); _locations->changed.connect_same_thread (*this, boost::bind (&Session::locations_changed, this)); if (synced_to_engine()) { _engine.transport_stop (); } // send_full_time_code (0); } catch (AudioEngine::PortRegistrationFailure& err) { error << err.what() << endmsg; return -5; } catch (std::exception const & e) { error << _("Unexpected exception during session setup: ") << e.what() << endmsg; return -6; } catch (...) { error << _("Unknown exception during session setup") << endmsg; return -7; } BootMessage (_("Reset Remote Controls")); send_immediate_mmc (MIDI::MachineControlCommand (MIDI::MachineControl::cmdMmcReset)); send_immediate_mmc (MIDI::MachineControlCommand (Timecode::Time ())); ltc_tx_initialize(); Port::set_connecting_blocked (false); /* Can't do this until the trigger input MIDI port is set up */ TriggerBox::static_init (*this); set_clean (); /* Now, finally, we can [ask the butler to] fill the playback buffers */ BootMessage (_("Filling playback buffers")); request_locate (transport_sample(), true); reset_xrun_count (); return 0; } void Session::session_loaded () { SessionLoaded(); set_clean (); if (_is_new) { save_state (""); } /* Now, finally, we can fill the playback buffers */ BootMessage (_("Filling playback buffers")); force_locate (_transport_sample, MustStop); reset_xrun_count (); } string Session::raid_path () const { Searchpath raid_search_path; for (vector::const_iterator i = session_dirs.begin(); i != session_dirs.end(); ++i) { raid_search_path += (*i).path; } return raid_search_path.to_string (); } void Session::setup_raid_path (string path) { if (path.empty()) { return; } space_and_path sp; string fspath; session_dirs.clear (); Searchpath search_path(path); Searchpath sound_search_path; Searchpath midi_search_path; for (Searchpath::const_iterator i = search_path.begin(); i != search_path.end(); ++i) { sp.path = *i; sp.blocks = 0; // not needed session_dirs.push_back (sp); SessionDirectory sdir(sp.path); sound_search_path += sdir.sound_path (); midi_search_path += sdir.midi_path (); } // reset the round-robin soundfile path thingie last_rr_session_dir = session_dirs.begin(); } bool Session::path_is_within_session (const std::string& path) { for (vector::const_iterator i = session_dirs.begin(); i != session_dirs.end(); ++i) { if (PBD::path_is_within (i->path, path)) { return true; } } return false; } int Session::ensure_subdirs () { string dir; dir = session_directory().peak_path(); if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session peakfile folder \"%1\" (%2)"), dir, strerror (errno)) << endmsg; return -1; } dir = session_directory().sound_path(); if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session sounds dir \"%1\" (%2)"), dir, strerror (errno)) << endmsg; return -1; } dir = session_directory().midi_path(); if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session midi dir \"%1\" (%2)"), dir, strerror (errno)) << endmsg; return -1; } dir = session_directory().dead_path(); if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session dead sounds folder \"%1\" (%2)"), dir, strerror (errno)) << endmsg; return -1; } dir = session_directory().export_path(); if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session export folder \"%1\" (%2)"), dir, strerror (errno)) << endmsg; return -1; } if(Profile->get_mixbus()) { dir = session_directory().backup_path(); if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session backup folder \"%1\" (%2)"), dir, strerror (errno)) << endmsg; return -1; } } dir = analysis_dir (); if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session analysis folder \"%1\" (%2)"), dir, strerror (errno)) << endmsg; return -1; } dir = plugins_dir (); if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session plugins folder \"%1\" (%2)"), dir, strerror (errno)) << endmsg; return -1; } dir = externals_dir (); if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session externals folder \"%1\" (%2)"), dir, strerror (errno)) << endmsg; return -1; } return 0; } /** @param session_template directory containing session template, or empty. * Caller must not hold process lock. */ int Session::create (const string& session_template, BusProfile const * bus_profile, bool unnamed) { if (g_mkdir_with_parents (_path.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create session folder \"%1\" (%2)"), _path, strerror (errno)) << endmsg; return -1; } if (unnamed) { PBD::ScopedFileDescriptor fd = g_open (unnamed_file_name().c_str(), O_CREAT|O_TRUNC|O_RDWR, 0666); } if (ensure_subdirs ()) { return -1; } _writable = exists_and_writable (_path); if (!session_template.empty()) { string in_path = session_template_dir_to_file (session_template); FILE* in = g_fopen (in_path.c_str(), "rb"); if (in) { /* no need to call legalize_for_path() since the string * in session_template is already a legal path name */ string out_path = Glib::build_filename (_session_dir->root_path(), _name + statefile_suffix); FILE* out = g_fopen (out_path.c_str(), "wb"); if (out) { char buf[1024]; stringstream new_session; while (!feof (in)) { size_t charsRead = fread (buf, sizeof(char), 1024, in); if (ferror (in)) { error << string_compose (_("Error reading session template file %1 (%2)"), in_path, strerror (errno)) << endmsg; fclose (in); fclose (out); return -1; } if (charsRead == 0) { break; } new_session.write (buf, charsRead); } fclose (in); string file_contents = new_session.str(); size_t writeSize = file_contents.length(); if (fwrite (file_contents.c_str(), sizeof(char), writeSize, out) != writeSize) { error << string_compose (_("Error writing session template file %1 (%2)"), out_path, strerror (errno)) << endmsg; fclose (out); return -1; } fclose (out); _is_new = false; /* Copy plugin state files from template to new session */ std::string template_plugins = Glib::build_filename (session_template, X_("plugins")); copy_recurse (template_plugins, plugins_dir ()); return 0; } else { error << string_compose (_("Could not open %1 for writing session template"), out_path) << endmsg; fclose(in); return -1; } } else { error << string_compose (_("Could not open session template %1 for reading"), in_path) << endmsg; return -1; } } /* set up Master Out and Monitor Out if necessary */ if (bus_profile) { RouteList rl; ChanCount count(DataType::AUDIO, bus_profile->master_out_channels); if (bus_profile->master_out_channels) { int rv = add_master_bus (count); if (rv) { return rv; } if (Config->get_use_monitor_bus()) add_monitor_section (); } } set_clean (); reset_xrun_count (); return 0; } void Session::maybe_write_autosave() { if (dirty() && record_status() != Recording) { save_state("", true); } } void Session::remove_pending_capture_state () { std::string pending_state_file_path(_session_dir->root_path()); pending_state_file_path = Glib::build_filename (pending_state_file_path, legalize_for_path (_current_snapshot_name) + pending_suffix); if (!Glib::file_test (pending_state_file_path, Glib::FILE_TEST_EXISTS)) { return; } if (::g_unlink (pending_state_file_path.c_str()) != 0) { error << string_compose(_("Could not remove pending capture state at path \"%1\" (%2)"), pending_state_file_path, g_strerror (errno)) << endmsg; } #ifndef NDEBUG else { cerr << "removed " << pending_state_file_path << endl; } #endif } /** Rename a state file. * @param old_name Old snapshot name. * @param new_name New snapshot name. */ void Session::rename_state (string old_name, string new_name) { if (old_name == _current_snapshot_name || old_name == _name) { /* refuse to rename the current snapshot or the "main" one */ return; } const string old_xml_filename = legalize_for_path (old_name) + statefile_suffix; const string new_xml_filename = legalize_for_path (new_name) + statefile_suffix; const std::string old_xml_path(Glib::build_filename (_session_dir->root_path(), old_xml_filename)); const std::string new_xml_path(Glib::build_filename (_session_dir->root_path(), new_xml_filename)); if (::g_rename (old_xml_path.c_str(), new_xml_path.c_str()) != 0) { error << string_compose(_("could not rename snapshot %1 to %2 (%3)"), old_name, new_name, g_strerror(errno)) << endmsg; } } /** Remove a state file. * @param snapshot_name Snapshot name. */ void Session::remove_state (string snapshot_name) { if (!_writable || snapshot_name == _current_snapshot_name || snapshot_name == _name) { // refuse to remove the current snapshot or the "main" one return; } std::string xml_path(_session_dir->root_path()); xml_path = Glib::build_filename (xml_path, legalize_for_path (snapshot_name) + statefile_suffix); if (!create_backup_file (xml_path)) { // don't remove it if a backup can't be made // create_backup_file will log the error. return; } // and delete it if (g_remove (xml_path.c_str()) != 0) { error << string_compose(_("Could not remove session file at path \"%1\" (%2)"), xml_path, g_strerror (errno)) << endmsg; } StateSaved (snapshot_name); /* EMIT SIGNAL */ } /** @param snapshot_name Name to save under, without .ardour / .pending prefix */ int Session::save_state (string snapshot_name, bool pending, bool switch_to_snapshot, bool template_only, bool for_archive, bool only_used_assets) { DEBUG_TRACE (DEBUG::Locale, string_compose ("Session::save_state locale '%1'\n", setlocale (LC_NUMERIC, NULL))); /* only_used_assets is only possible when archiving */ assert (!only_used_assets || for_archive); /* template and archive are exclusive */ assert (!template_only || !for_archive); /* switch_to_snapshot needs a new name and can't be pending */ assert (!switch_to_snapshot || (!snapshot_name.empty () && snapshot_name != _current_snapshot_name && !pending && !template_only && !for_archive)); /* pending saves are for current snapshot only */ assert (!pending || ((snapshot_name.empty () || snapshot_name == _current_snapshot_name) && !template_only && !for_archive)); XMLTree tree; std::string xml_path(_session_dir->root_path()); /* prevent concurrent saves from different threads */ Glib::Threads::Mutex::Lock lm (save_state_lock); Glib::Threads::Mutex::Lock lx (save_source_lock, Glib::Threads::NOT_LOCK); if (!for_archive) { lx.acquire (); } if (!_writable || cannot_save()) { return 1; } if (_suspend_save.load ()) { /* StateProtector cannot be used for templates or save-as */ assert (!template_only && !switch_to_snapshot && !for_archive && (snapshot_name.empty () || snapshot_name == _current_snapshot_name)); if (pending) { _save_queued_pending = true; } else { _save_queued = true; } return 1; } if (pending) { _save_queued_pending = false; } else { _save_queued = false; } snapshot_t fork_state = NormalSave; if (!snapshot_name.empty() && snapshot_name != _current_snapshot_name && !template_only && !pending && !for_archive) { /* snapshot, close midi */ fork_state = switch_to_snapshot ? SwitchToSnapshot : SnapshotKeep; } #ifndef NDEBUG const int64_t save_start_time = g_get_monotonic_time(); #endif /* tell sources we're saving first, in case they write out to a new file * which should be saved with the state rather than the old one */ for (SourceMap::const_iterator i = sources.begin(); i != sources.end(); ++i) { try { i->second->session_saved(); } catch (Evoral::SMF::FileError& e) { error << string_compose ("Could not write to MIDI file %1; MIDI data not saved.", e.file_name ()) << endmsg; } } PBD::Unwinder uw (LV2Plugin::force_state_save, for_archive); SessionSaveUnderway (); /* EMIT SIGNAL */ bool mark_as_clean = true; if (!snapshot_name.empty() && !switch_to_snapshot) { mark_as_clean = false; } if (template_only) { mark_as_clean = false; tree.set_root (&get_template()); } else { tree.set_root (&state (false, fork_state, for_archive, only_used_assets)); } if (snapshot_name.empty()) { snapshot_name = _current_snapshot_name; } else if (switch_to_snapshot) { set_snapshot_name (snapshot_name); } assert (!snapshot_name.empty()); if (!pending) { /* proper save: use statefile_suffix (.ardour in English) */ xml_path = Glib::build_filename (xml_path, legalize_for_path (snapshot_name) + statefile_suffix); /* make a backup copy of the old file */ if (Glib::file_test (xml_path, Glib::FILE_TEST_EXISTS) && !create_backup_file (xml_path)) { // create_backup_file will log the error return -1; } } else { assert (snapshot_name == _current_snapshot_name); /* pending save: use pending_suffix (.pending in English) */ xml_path = Glib::build_filename (xml_path, legalize_for_path (snapshot_name) + pending_suffix); } std::string tmp_path(_session_dir->root_path()); tmp_path = Glib::build_filename (tmp_path, legalize_for_path (snapshot_name) + temp_suffix); DEBUG_TRACE (DEBUG::SaveState, string_compose ("writing state to '%1'\n", tmp_path)); if (!tree.write (tmp_path)) { error << string_compose (_("state could not be saved to %1"), tmp_path) << endmsg; if (g_remove (tmp_path.c_str()) != 0) { error << string_compose(_("Could not remove temporary session file at path \"%1\" (%2)"), tmp_path, g_strerror (errno)) << endmsg; } return -1; } else { DEBUG_TRACE (DEBUG::SaveState, string_compose ("renaming state to '%1'\n", xml_path)); if (::g_rename (tmp_path.c_str(), xml_path.c_str()) != 0) { error << string_compose (_("could not rename temporary session file %1 to %2 (%3)"), tmp_path, xml_path, g_strerror(errno)) << endmsg; if (g_remove (tmp_path.c_str()) != 0) { error << string_compose(_("Could not remove temporary session file at path \"%1\" (%2)"), tmp_path, g_strerror (errno)) << endmsg; } return -1; } } //Mixbus auto-backup mechanism if(Profile->get_mixbus()) { if (pending) { //"pending" save means it's a backup, or some other non-user-initiated save; a good time to make a backup // make a serialized safety backup // (will make one periodically but only one per hour is left on disk) // these backup files go into a separated folder char timebuf[128]; time_t n; struct tm local_time; time (&n); localtime_r (&n, &local_time); strftime (timebuf, sizeof(timebuf), "%y-%m-%d.%H", &local_time); std::string save_path(session_directory().backup_path()); save_path += G_DIR_SEPARATOR; save_path += legalize_for_path(_current_snapshot_name); save_path += "-"; save_path += timebuf; save_path += statefile_suffix; if (!copy_file (xml_path, save_path)) { error << string_compose(_("Could not save backup file at path \"%1\" (%2)"), save_path, g_strerror (errno)) << endmsg; } } } if (!pending && !for_archive) { save_history (snapshot_name); if (mark_as_clean) { unset_dirty (/* EMIT SIGNAL */ true); } StateSaved (snapshot_name); /* EMIT SIGNAL */ } #ifndef NDEBUG if (DEBUG_ENABLED (DEBUG::SaveState)) { const int64_t elapsed_time_us = g_get_monotonic_time() - save_start_time; DEBUG_TRACE (DEBUG::SaveState, string_compose ("saved in %1%2%3 ms\n", fixed, setprecision (1), elapsed_time_us / 1000.)); } #endif if (!pending && !for_archive && ! template_only) { remove_pending_capture_state (); } return 0; } int Session::restore_state (string snapshot_name) { try { if (load_state (snapshot_name) == 0) { set_state (*state_tree->root(), Stateful::loading_state_version); } } catch (...) { // SessionException // unknown_enumeration return -1; } return 0; } int Session::load_state (string snapshot_name, bool from_template) { delete state_tree; state_tree = 0; bool state_was_pending = false; /* check for leftover pending state from a crashed capture attempt */ std::string xmlpath(_session_dir->root_path()); xmlpath = Glib::build_filename (xmlpath, legalize_for_path (snapshot_name) + pending_suffix); if (Glib::file_test (xmlpath, Glib::FILE_TEST_EXISTS)) { /* there is pending state from a crashed capture attempt */ boost::optional r = AskAboutPendingState(); if (r.value_or (1)) { state_was_pending = true; } else { remove_pending_capture_state (); } } if (!state_was_pending) { xmlpath = Glib::build_filename (_session_dir->root_path(), snapshot_name); } if (!Glib::file_test (xmlpath, Glib::FILE_TEST_EXISTS)) { xmlpath = Glib::build_filename (_session_dir->root_path(), legalize_for_path (snapshot_name) + statefile_suffix); if (!Glib::file_test (xmlpath, Glib::FILE_TEST_EXISTS)) { error << string_compose(_("%1: session file \"%2\" doesn't exist!"), _name, xmlpath) << endmsg; return 1; } } state_tree = new XMLTree; set_dirty(); _writable = exists_and_writable (xmlpath) && exists_and_writable(Glib::path_get_dirname(xmlpath)); if (!state_tree->read (xmlpath)) { error << string_compose(_("Could not understand session file %1"), xmlpath) << endmsg; delete state_tree; state_tree = 0; return -1; } XMLNode const & root (*state_tree->root()); if (root.name() != X_("Session")) { error << string_compose (_("Session file %1 is not a session"), xmlpath) << endmsg; delete state_tree; state_tree = 0; return -1; } std::string version; root.get_property ("version", version); Stateful::loading_state_version = parse_stateful_loading_version (version); if ((Stateful::loading_state_version / 1000L) > (CURRENT_SESSION_FILE_VERSION / 1000L)) { cerr << "Session-version: " << Stateful::loading_state_version << " is not supported. Current: " << CURRENT_SESSION_FILE_VERSION << "\n"; throw SessionException (string_compose (_("Incompatible Session Version. That session was created with a newer version of %1"), PROGRAM_NAME)); } if (Stateful::loading_state_version < CURRENT_SESSION_FILE_VERSION && _writable && !from_template) { std::string backup_path(_session_dir->root_path()); std::string backup_filename = string_compose ("%1-%2%3", legalize_for_path (snapshot_name), Stateful::loading_state_version, statefile_suffix); backup_path = Glib::build_filename (backup_path, backup_filename); // only create a backup for a given statefile version once if (!Glib::file_test (backup_path, Glib::FILE_TEST_EXISTS)) { const int lsv_k = Stateful::loading_state_version / 1000L; const int lsv_h = (Stateful::loading_state_version % 1000L) / 100L; const int csv_k = CURRENT_SESSION_FILE_VERSION / 1000L; const int csv_h = (CURRENT_SESSION_FILE_VERSION % 1000L) / 100L; if (lsv_k < csv_k || (lsv_k == csv_k && lsv_h < csv_h)) { /* only inform the GUI if a major change is done: * - CURRENT_SESSION_FILE_VERSION is bumped to the next thousand * - CURRENT_SESSION_FILE_VERSION uses a different century (hecta) */ VersionMismatch (xmlpath, backup_path); } if (!copy_file (xmlpath, backup_path)) {; return -1; } } } save_snapshot_name (snapshot_name); return 0; } int Session::load_options (const XMLNode& node) { config.set_variables (node); return 0; } bool Session::save_default_options () { return config.save_state(); } XMLNode& Session::get_state () const { /* this is not directly called, but required by PBD::Stateful */ assert (0); return state (false, NormalSave); } XMLNode& Session::get_template () { /* if we don't disable rec-enable, diskstreams will believe they need to store their capture sources in their state node. */ disable_record (false); return state (true, NormalSave); } typedef std::set > SourceSet; bool Session::export_track_state (std::shared_ptr rl, const string& path) { if (Glib::file_test (path, Glib::FILE_TEST_EXISTS)) { return false; } if (g_mkdir_with_parents (path.c_str(), 0755) != 0) { return false; } PBD::Unwinder uw (_template_state_dir, path); LocaleGuard lg; XMLNode* node = new XMLNode("TrackState"); // XXX XMLNode* child; PlaylistSet playlists; // SessionPlaylists SourceSet sources; // these will work with new_route_from_template() // TODO: LV2 plugin-state-dir needs to be relative (on load?) child = node->add_child ("Routes"); for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) { if ((*i)->is_auditioner()) { continue; } if ((*i)->is_master() || (*i)->is_monitor()) { continue; } child->add_child_nocopy ((*i)->get_state()); std::shared_ptr track = std::dynamic_pointer_cast (*i); if (track) { playlists.insert (track->playlist ()); } } // on load, Regions in the playlists need to resolve and map Source-IDs // also playlist needs to be merged or created with new-name.. // ... and Diskstream in tracks adjusted to use the correct playlist child = node->add_child ("Playlists"); // SessionPlaylists::add_state for (PlaylistSet::const_iterator i = playlists.begin(); i != playlists.end(); ++i) { child->add_child_nocopy ((*i)->get_state ()); std::shared_ptr prl = (*i)->region_list (); for (RegionList::const_iterator s = prl->begin(); s != prl->end(); ++s) { const Region::SourceList& sl = (*s)->sources (); for (Region::SourceList::const_iterator sli = sl.begin(); sli != sl.end(); ++sli) { sources.insert (*sli); } } } child = node->add_child ("Sources"); for (SourceSet::const_iterator i = sources.begin(); i != sources.end(); ++i) { child->add_child_nocopy ((*i)->get_state ()); std::shared_ptr fs = std::dynamic_pointer_cast (*i); if (fs) { #ifdef PLATFORM_WINDOWS fs->close (); #endif string p = fs->path (); PBD::copy_file (p, Glib::build_filename (path, Glib::path_get_basename (p))); } } std::string sn = Glib::build_filename (path, "share.axml"); XMLTree tree; tree.set_root (node); return tree.write (sn.c_str()); } static void merge_all_sources (std::shared_ptr pl, std::set >* all_sources) { pl->deep_sources (*all_sources); } void Session::collect_sources_of_this_snapshot (set>& s, bool incl_unused) const { _playlists->sync_all_regions_with_regions (); _playlists->foreach (boost::bind (merge_all_sources, _1, &s), incl_unused); std::shared_ptr rl = routes.reader(); for (auto const& r : *rl) { std::shared_ptr tb = r->triggerbox (); if (tb) { tb->deep_sources (s); } } } namespace { struct route_id_compare { bool operator() (const std::shared_ptr& r1, const std::shared_ptr& r2) { return r1->id () < r2->id (); } }; } // anon namespace XMLNode& Session::state (bool save_template, snapshot_t snapshot_type, bool for_archive, bool only_used_assets) const { LocaleGuard lg; XMLNode* node = new XMLNode("Session"); XMLNode* child; PBD::Unwinder uw (Automatable::skip_saving_automation, save_template); node->set_property("version", CURRENT_SESSION_FILE_VERSION); child = node->add_child ("ProgramVersion"); child->set_property("created-with", created_with); std::string modified_with = string_compose ("%1 %2", PROGRAM_NAME, revision); child->set_property("modified-with", modified_with); /* store configuration settings */ if (!save_template) { node->set_property ("name", _name); node->set_property ("sample-rate", _base_sample_rate); /* store the last engine device we we can avoid autostarting on a different device with wrong i/o count */ std::shared_ptr backend = _engine.current_backend(); if (!for_archive && _engine.running () && backend && _engine.setup_required ()) { child = node->add_child ("EngineHints"); child->set_property ("backend", backend-> name ()); if (backend->use_separate_input_and_output_devices()) { child->set_property ("input-device", backend->input_device_name ()); child->set_property ("output-device", backend->output_device_name ()); } else { child->set_property ("input-device", backend->device_name ()); child->set_property ("output-device", backend->device_name ()); } } if (session_dirs.size() > 1) { string p; vector::const_iterator i = session_dirs.begin(); vector::const_iterator next; ++i; /* skip the first one */ next = i; ++next; while (i != session_dirs.end()) { p += (*i).path; if (next != session_dirs.end()) { p += G_SEARCHPATH_SEPARATOR; } else { break; } ++next; ++i; } child = node->add_child ("Path"); child->add_content (p); } node->set_property ("session-range-is-free", _session_range_is_free); } /* save the ID counter */ node->set_property ("id-counter", ID::counter()); node->set_property ("rg-counter", Region::next_group_id ()); node->set_property ("name-counter", name_id_counter ()); /* save the event ID counter */ node->set_property ("event-counter", Evoral::event_id_counter()); /* save the VCA counter */ node->set_property ("vca-counter", VCA::get_next_vca_number()); /* various options */ list midi_port_nodes = _midi_ports->get_midi_port_states(); if (!midi_port_nodes.empty()) { XMLNode* midi_port_stuff = new XMLNode ("MIDIPorts"); for (list::const_iterator n = midi_port_nodes.begin(); n != midi_port_nodes.end(); ++n) { midi_port_stuff->add_child_nocopy (**n); } node->add_child_nocopy (*midi_port_stuff); } XMLNode& cfgxml (config.get_variables (X_("Config"))); if (save_template) { /* exclude search-paths from template */ cfgxml.remove_nodes_and_delete ("name", "audio-search-path"); cfgxml.remove_nodes_and_delete ("name", "midi-search-path"); cfgxml.remove_nodes_and_delete ("name", "raid-path"); } node->add_child_nocopy (cfgxml); node->add_child_nocopy (ARDOUR::SessionMetadata::Metadata()->get_state()); child = node->add_child ("Sources"); if (!save_template) { Glib::Threads::Mutex::Lock sl (source_lock); set > sources_used_by_this_snapshot; if (only_used_assets) { collect_sources_of_this_snapshot (sources_used_by_this_snapshot, false); } for (SourceMap::const_iterator siter = sources.begin(); siter != sources.end(); ++siter) { /* Don't save information about non-file Sources, or * about file sources that are empty * and unused by any regions. */ std::shared_ptr fs; if ((fs = std::dynamic_pointer_cast (siter->second)) == 0) { continue; } if (fs->empty() && !fs->used()) { continue; } if (only_used_assets) { /* skip only unused audio files */ std::shared_ptr afs = std::dynamic_pointer_cast (fs); if (afs && !afs->used()) { continue; } if (afs && sources_used_by_this_snapshot.find (afs) == sources_used_by_this_snapshot.end ()) { continue; } } if (snapshot_type != NormalSave && fs->within_session ()) { /* this copying of MIDI files should not really be occuring within a const scope like ::state(). However the copying is too intertwined with getting the current state of the Source, and so we can't move it to before ::state() is called. If we are not switching to a new snapshot (but are making a snapshot), we want the state from before the copy. If we are switching to a new snapshot, we want the state from after the copy. This makes it almost impossible to tease this apart. So for now (April 2022) we use const_cast. */ if (const_cast(this)->maybe_copy_midifile (snapshot_type, siter->second, child)) { continue; /* state already added to child */ } } child->add_child_nocopy (siter->second->get_state()); } } node->add_child_nocopy (*TriggerBox::get_custom_midi_binding_state()); child = node->add_child ("Regions"); if (!save_template) { Glib::Threads::Mutex::Lock rl (region_lock); if (!only_used_assets) { const RegionFactory::RegionMap& region_map (RegionFactory::all_regions()); for (RegionFactory::RegionMap::const_iterator i = region_map.begin(); i != region_map.end(); ++i) { std::shared_ptr r = i->second; /* regions must have sources */ assert (r->sources().size() > 0 && r->master_sources().size() > 0); /* only store regions not attached to playlists */ if (r->playlist() == 0) { if (std::dynamic_pointer_cast(r)) { child->add_child_nocopy ((std::dynamic_pointer_cast(r))->get_basic_state ()); } else { child->add_child_nocopy (r->get_state ()); } } } } else { /* save used nested sources of unused regions compounds. Those sources * are not FileSource, and hence not saved when iterating over * `sources_used_by_this_snapshot'. They also must be saved as "Region" * * Furthermore we need to collect Regions used by Triggers, since * they are not in any Playlist. */ std::set> tr; { std::shared_ptr rl = routes.reader(); for (auto const& r : *rl) { std::shared_ptr tb = r->triggerbox (); if (tb) { tb->used_regions (tr); } } } auto const& used_pl (_playlists->get_used ()); const RegionFactory::RegionMap& region_map (RegionFactory::all_regions()); for (RegionFactory::RegionMap::const_iterator i = region_map.begin(); i != region_map.end(); ++i) { std::shared_ptr r = i->second; if (tr.find (r) != tr.end()) { child->add_child_nocopy (r->get_state ()); continue; } /* check for compounds */ if (r->max_source_level () == 0 || ! r->whole_file ()) { continue; } if (!_playlists->region_use_count (r)) { /* nested source is not used */ continue; } /* Check is region was already saved as part of a playlist */ bool found = false; for (auto const& pl : used_pl) { auto const& rlist (pl->region_list ()); if (find (rlist->begin(), rlist->end(), r) != rlist->end()) { found = true; break; } } if (!found) { child->add_child_nocopy (r->get_state ()); } } } RegionFactory::CompoundAssociations& cassocs (RegionFactory::compound_associations()); if (!cassocs.empty()) { XMLNode* ca = node->add_child (X_("CompoundAssociations")); for (RegionFactory::CompoundAssociations::iterator i = cassocs.begin(); i != cassocs.end(); ++i) { if (i->first->playlist () == 0 && only_used_assets) { continue; } XMLNode* can = new XMLNode (X_("CompoundAssociation")); can->set_property (X_("copy"), i->first->id()); can->set_property (X_("original"), i->second->id()); ca->add_child_nocopy (*can); /* see above, child is still "Regions" here */ if (i->second->playlist() == 0 && only_used_assets) { if (std::shared_ptr ar = std::dynamic_pointer_cast (i->second)) { child->add_child_nocopy (ar->get_basic_state ()); } else { child->add_child_nocopy (i->second->get_state ()); } } } } } if (!save_template) { node->add_child_nocopy (_selection->get_state()); if (_locations) { node->add_child_nocopy (_locations->get_state()); } } else { Session* ncthis = const_cast (this); Locations loc (*ncthis); const bool was_dirty = dirty(); // for a template, just create a new Locations, populate it // with the default start and end, and get the state for that. Location* range = new Location (*ncthis, timepos_t (Temporal::AudioTime), timepos_t (Temporal::AudioTime), _("session"), Location::IsSessionRange); range->set (timepos_t::max (Temporal::AudioTime), timepos_t (Temporal::AudioTime)); loc.add (range); XMLNode& locations_state = loc.get_state(); node->add_child_nocopy (locations_state); /* adding a location above will have marked the session * dirty. This is an artifact, so fix it if the session wasn't * already dirty */ if (!was_dirty) { ncthis->unset_dirty (); } } child = node->add_child ("Bundles"); { std::shared_ptr bundles = _bundles.reader (); for (auto const& i : *bundles) { std::shared_ptr b = std::dynamic_pointer_cast (i); if (b) { child->add_child_nocopy (b->get_state()); } } } node->add_child_nocopy (_vca_manager->get_state()); child = node->add_child ("Routes"); { std::shared_ptr r = routes.reader (); route_id_compare cmp; RouteList xml_node_order (*r); xml_node_order.sort (cmp); for (RouteList::const_iterator i = xml_node_order.begin(); i != xml_node_order.end(); ++i) { if (!(*i)->is_auditioner()) { if (save_template) { child->add_child_nocopy ((*i)->get_template()); } else { child->add_child_nocopy ((*i)->get_state()); } } } } _playlists->add_state (node, save_template, !only_used_assets); child = node->add_child ("RouteGroups"); for (list::const_iterator i = _route_groups.begin(); i != _route_groups.end(); ++i) { child->add_child_nocopy ((*i)->get_state()); } if (_click_io) { XMLNode* gain_child = node->add_child ("Click"); gain_child->add_child_nocopy (_click_io->get_state ()); gain_child->add_child_nocopy (_click_gain->get_state ()); } node->add_child_nocopy (_speakers->get_state()); node->add_child_nocopy (TempoMap::fetch()->get_state()); node->add_child_nocopy (get_control_protocol_state()); if (_extra_xml) { node->add_child_copy (*_extra_xml); } { Glib::Threads::Mutex::Lock lm (lua_lock); std::string saved; { luabridge::LuaRef savedstate ((*_lua_save)()); saved = savedstate.cast(); } lua.collect_garbage (); lm.release (); gchar* b64 = g_base64_encode ((const guchar*)saved.c_str (), saved.size ()); std::string b64s (b64); g_free (b64); XMLNode* script_node = new XMLNode (X_("Script")); script_node->set_property (X_("lua"), LUA_VERSION); script_node->add_content (b64s); node->add_child_nocopy (*script_node); } { Glib::Threads::RWLock::ReaderLock lm (_mixer_scenes_lock); uint64_t idx = 0; uint64_t last = 0; for (auto const& i : _mixer_scenes) { ++idx; if (i && !i->empty ()) { last = idx; } } if (last > 0) { idx = 0; XMLNode* ms_node = new XMLNode (X_("MixerScenes")); ms_node->set_property ("n_scenes", (uint64_t) _mixer_scenes.size ()); for (auto const& i : _mixer_scenes) { if (i && !i->empty ()) { XMLNode& ms_state (i->get_state ()); ms_state.set_property ("index", idx); ms_node->add_child_nocopy (ms_state); } if (++idx >= last) { break; } } node->add_child_nocopy (*ms_node); } } { std::shared_ptr iop (_io_plugins.reader ()); XMLNode* iop_node = new XMLNode (X_("IOPlugins")); for (auto const& i : *iop) { iop_node->add_child_nocopy (i->get_state()); } node->add_child_nocopy (*iop_node); } return *node; } bool Session::maybe_copy_midifile (snapshot_t snapshot_type, std::shared_ptr src, XMLNode* child) { /* copy MIDI sources to new file * * We cannot replace the midi-source and MidiRegion::clobber_sources, * because the GUI (midi_region) has a direct pointer to the midi-model * of the source, as does UndoTransaction. * * On the upside, .mid files are not kept open. The file is only open * when reading the model initially and when flushing the model to disk: * source->session_saved () or export. * * We can change the _path of the existing source under the hood, keeping * all IDs, references and pointers intact. * */ std::shared_ptr ms; if ((ms = std::dynamic_pointer_cast (src)) == 0) { return false; /* No, it was not a MIDI source */ } const std::string ancestor_name = ms->ancestor_name(); const std::string base = PBD::basename_nosuffix(ancestor_name); const string path = new_midi_source_path (base, false); /* Session::save_state() will already have called * ms->session_saved (); */ /* use SMF-API to clone data (use the midi_model, not data on disk) */ std::shared_ptr newsrc (new SMFSource (*this, path, ms->flags())); { Source::WriterLock lm (ms->mutex()); if (!ms->model()) { ms->load_model (lm); } } Source::ReaderLock lm (ms->mutex()); /* write_to() calls newsrc->flush_midi () to write the file to disk */ if (ms->write_to (lm, newsrc, Temporal::Beats(), std::numeric_limits::max())) { error << string_compose (_("Session-Save: Failed to copy MIDI Source '%1' for snapshot"), ancestor_name) << endmsg; } else { newsrc->session_saved (); /*< this sohuld be a no-op */ if (snapshot_type == SnapshotKeep) { /* keep working on current session. * * Save snapshot-state with the original filename. * Switch to use new path for future saves of the main session. */ child->add_child_nocopy (ms->get_state()); } /* swap file-paths. * ~SMFSource unlinks removable() files. */ std::string npath (ms->path ()); ms->replace_file (newsrc->path ()); newsrc->replace_file (npath); if (snapshot_type == SwitchToSnapshot) { /* save and switch to snapshot. * * Leave the old file in place (as is). * Snapshot uses new source directly */ child->add_child_nocopy (ms->get_state()); } } return true; /* Yes, it was a MIDI file */ } XMLNode& Session::get_control_protocol_state () const { return ControlProtocolManager::instance().get_state (); } int Session::set_state (const XMLNode& node, int version) { LocaleGuard lg; XMLNodeList nlist; XMLNode* child; int ret = -1; _state_of_the_state = StateOfTheState (_state_of_the_state | CannotSave); if (node.name() != X_("Session")) { fatal << _("programming error: Session: incorrect XML node sent to set_state()") << endmsg; goto out; } node.get_property ("name", _name); if (node.get_property (X_("sample-rate"), _base_sample_rate)) { bool reconfigured = false; while (!AudioEngine::instance()->running () || _base_sample_rate != AudioEngine::instance()->sample_rate ()) { boost::optional r = AskAboutSampleRateMismatch (_base_sample_rate, _current_sample_rate); int rv = r.value_or (0); if (rv == 0 && AudioEngine::instance()->running ()) { /* continue with rate mismatch */ break; } else if (rv == -1 && AudioEngine::instance()->running ()) { /* retry */ reconfigured = true; continue; } else { if (AudioEngine::instance()->running ()) { error << _("Session: Load aborted due to sample-rate mismatch") << endmsg; } else { error << _("Session: Load aborted since engine is offline") << endmsg; } ret = -2; goto out; } } if (reconfigured) { set_block_size (_engine.samples_per_cycle()); } if (_base_sample_rate != _engine.sample_rate () || reconfigured) { /* set _current_sample_rate early on. It is used when instantiating plugins. * This also calls Temporal::set_sample_rate, which is required to * to convert positions during session load. */ set_sample_rate (_base_sample_rate); /* post_engine_init() calls initialize_latencies() * which sets up resampling. However by that time all session * ports will exist and would be need to be reinitialized. */ setup_engine_resampling (); } else { /* required to convert positions during session load */ Temporal::set_sample_rate (_base_sample_rate); /* all other initialization is correctly done by * Session::immediately_post_engine */ } } else { /* creating session from template */ assert (_base_sample_rate > 0 && AudioEngine::instance()->running ()); /* required to convert positions during session load */ Temporal::set_sample_rate (_base_sample_rate); } /* need the tempo map setup ASAP */ if ((child = find_named_node (node, "TempoMap")) == 0) { error << _("Session: XML state has no 'Tempo Map' section") << endmsg; goto out; } else { try { TempoMap::WritableSharedPtr tmap = TempoMap::write_copy (); /* get writable copy of current tempo map */ tmap->set_state (*child, version); /* reset its state */ TempoMap::update (tmap); /* update the global tempo map manager */ } catch (...) { error << _("Session: XML state has invalid Tempo Map section") << endmsg; goto out; } } created_with = "unknown"; if ((child = find_named_node (node, "ProgramVersion")) != 0) { child->get_property (X_("created-with"), created_with); } setup_raid_path(_session_dir->root_path()); node.get_property (X_("end-is-free"), _session_range_is_free); //deprecated, but use old values if they are in the config node.get_property (X_("session-range-is-free"), _session_range_is_free); uint64_t rg_counter; if (node.get_property (X_("rg-counter"), rg_counter)) { Region::set_next_group_id (rg_counter); } else { Region::set_next_group_id (0); } uint64_t counter; if (node.get_property (X_("id-counter"), counter)) { ID::init_counter (counter); } else { /* old sessions used a timebased counter, so fake * the startup ID counter based on a standard * timestamp. */ time_t now; time (&now); ID::init_counter (now); } if (node.get_property (X_("name-counter"), counter)) { init_name_id_counter (counter); } if (node.get_property (X_("event-counter"), counter)) { Evoral::init_event_id_counter (counter); } if (node.get_property (X_("vca-counter"), counter)) { VCA::set_next_vca_number (counter); } else { VCA::set_next_vca_number (1); } if ((child = find_named_node (node, "MIDIPorts")) != 0) { _midi_ports->set_midi_port_states (child->children()); } Stateful::save_extra_xml (node); if (((child = find_named_node (node, "Options")) != 0)) { /* old style */ load_options (*child); } else if ((child = find_named_node (node, "Config")) != 0) { /* new style */ load_options (*child); } else { error << _("Session: XML state has no 'Options' section") << endmsg; } if ((child = find_named_node (node, X_("TriggerBindings"))) != 0) { TriggerBox::load_custom_midi_bindings (*child); } if (version >= 3000) { if ((child = find_named_node (node, "Metadata")) == 0) { warning << _("Session: XML state has no 'Metadata' section") << endmsg; } else if ( ARDOUR::SessionMetadata::Metadata()->set_state (*child, version) ) { error << _("Session: XML state contains invalid session metadata") << endmsg; goto out; } } if ((child = find_named_node (node, X_("Speakers"))) != 0) { _speakers->set_state (*child, version); } if ((child = find_named_node (node, "Sources")) == 0) { error << _("Session: XML state has no 'Sources' section") << endmsg; goto out; } else if (load_sources (*child)) { error << _("Session: failed to load audio/MIDI sources") << endmsg; goto out; } if ((child = find_named_node (node, "Locations")) == 0) { error << _("Session: XML state has no 'Locations' section") << endmsg; goto out; } else if (_locations->set_state (*child, version)) { error << _("Session: failed to parse 'Locations' information") << endmsg; goto out; } locations_changed (); if (_session_range_location) { AudioFileSource::set_header_position_offset (_session_range_location->start().samples()); } if ((child = find_named_node (node, "Regions")) == 0) { error << _("Session: XML state has no 'Regions' section") << endmsg; goto out; } else if (load_regions (*child)) { error << _("Session: failed to load regions") << endmsg; goto out; } if ((child = find_named_node (node, "Playlists")) == 0) { error << _("Session: XML state has no 'Playlists' section") << endmsg; goto out; } else if (_playlists->load (*this, *child)) { error << _("Session: failed to load active playlists") << endmsg; goto out; } if ((child = find_named_node (node, "UnusedPlaylists")) == 0) { // this is OK } else if (_playlists->load_unused (*this, *child)) { error << _("Session: failed to load playlists") << endmsg; goto out; } if ((child = find_named_node (node, "CompoundAssociations")) != 0) { if (load_compounds (*child)) { error << _("Session: failed to load region compound information") << endmsg; goto out; } } if (version >= 3000) { if ((child = find_named_node (node, "Bundles")) == 0) { warning << _("Session: XML state has no 'Bundles' section") << endmsg; //goto out; } else { /* We can't load Bundles yet as they need to be able * to convert from port names to Port objects, which can't happen until * later */ _bundle_xml_node = new XMLNode (*child); } } if ((child = find_named_node (node, VCAManager::xml_node_name)) != 0) { _vca_manager->set_state (*child, version); } if (version < 3000) { if ((child = find_named_node (node, "DiskStreams"))) { for (XMLNodeList::const_iterator n = child->children ().begin (); n != child->children ().end (); ++n) { if ((*n)->name() == "AudioDiskstream" || (*n)->name() == "DiskStream") { std::string diskstream_id; std::string playlist_name; if ((*n)->get_property ("playlist", playlist_name) && (*n)->get_property ("id", diskstream_id)) { _diskstreams_2X [PBD::ID(diskstream_id)] = playlist_name; } } } } } { /* ensure each Source has a corresponding whole-file region */ SourceMap src_map (sources); const RegionFactory::RegionMap& region_map (RegionFactory::all_regions()); for (RegionFactory::RegionMap::const_iterator i = region_map.begin(); i != region_map.end(); ++i) { std::shared_ptr r = i->second; if (!r->whole_file ()) { continue; } SourceList::size_type sz = r->sources().size(); for (uint32_t n = 0; n < sz; ++n) { SourceMap::iterator j = src_map.find (r->source(n)->id()); if (j != src_map.end ()) { /* found whole-file region for given source */ src_map.erase (j); } } } /* TODO try to be smart and combine %L/%R sources into stereo whole-file regions */ for (SourceMap::const_iterator i = src_map.begin(); i != src_map.end(); ++i) { std::shared_ptr afs = std::dynamic_pointer_cast (i->second); if (!afs) { continue; } std::string region_name = region_name_from_path (afs->path (), false); while (RegionFactory::region_by_name (region_name)) { region_name = bump_name_once (region_name, '.'); } PropertyList plist; plist.add (Properties::name, region_name); plist.add (Properties::whole_file, true); plist.add (Properties::automatic, true); plist.add (Properties::start, 0); plist.add (Properties::length, afs->length ()); plist.add (Properties::layer, 0); SourceList srcs; srcs.push_back (i->second); if (RegionFactory::create (srcs, plist)) { info << string_compose (_("Created region '%1' for source '%2'"), region_name, afs->name ()) << endmsg; } else { warning << string_compose (_("Failed to create region representation for source '%1'"), afs->name ()) << endmsg; } } } if ((child = find_named_node (node, "Routes")) == 0) { error << _("Session: XML state has no 'Routes' section") << endmsg; goto out; } else if (load_routes (*child, version)) { error << _("Session: failed to load route state") << endmsg; goto out; } /* Now that we Tracks have been loaded and playlists are assigned */ _playlists->update_tracking (); _diskstreams_2X.clear (); /* Now that we have Routes and masters loaded, connect them if appropriate */ Slavable::Assign (_vca_manager); /* EMIT SIGNAL */ if (version >= 3000) { if ((child = find_named_node (node, "RouteGroups")) == 0) { error << _("Session: XML state has no 'Route Groups' section") << endmsg; goto out; } else if (load_route_groups (*child, version)) { error << _("Session: failed to load route group information") << endmsg; goto out; } } else if (version < 3000) { if ((child = find_named_node (node, "EditGroups")) == 0) { error << _("Session: XML state has no 'Edit Groups' section") << endmsg; goto out; } else if (load_route_groups (*child, version)) { error << _("Session: failed to load edit group information") << endmsg; goto out; } if ((child = find_named_node (node, "MixGroups")) == 0) { error << _("Session: XML state has no 'Mix Groups' section") << endmsg; goto out; } else if (load_route_groups (*child, version)) { error << _("Session: failed to load mix group information") << endmsg; goto out; } } if ((child = find_named_node (node, "Click")) == 0) { warning << _("Session: XML state has no 'Click' section") << endmsg; } else if (_click_io) { setup_click_state (&node); } if ((child = find_named_node (node, ControlProtocolManager::state_node_name)) != 0) { ControlProtocolManager::instance().set_state (*child, 1 /* here: session-specific state */); } if ((child = find_named_node (node, "Script"))) { for (XMLNodeList::const_iterator n = child->children ().begin (); n != child->children ().end (); ++n) { if (!(*n)->is_content ()) { continue; } gsize size; guchar* buf = g_base64_decode ((*n)->content ().c_str (), &size); try { Glib::Threads::Mutex::Lock lm (lua_lock); (*_lua_load)(std::string ((const char*)buf, size)); } catch (luabridge::LuaException const& e) { #ifndef NDEBUG cerr << "LuaException:" << e.what () << endl; #endif warning << "LuaException: " << e.what () << endmsg; } catch (...) { } g_free (buf); } } if ((child = find_named_node (node, "MixerScenes"))) { Glib::Threads::RWLock::WriterLock lm (_mixer_scenes_lock); uint64_t n_scenes = 0; child->get_property("n_scenes", n_scenes); _mixer_scenes.resize (n_scenes); for (auto const n : child->children () ) { uint64_t index = 0; if (n->get_property("index", index)) { _mixer_scenes[index] = std::shared_ptr (new MixerScene (*this)); _mixer_scenes[index]->set_state (*n, version); } } } if ((child = find_named_node (node, "IOPlugins"))) { RCUWriter writer (_io_plugins); std::shared_ptr iopl = writer.get_copy (); for (XMLNodeList::const_iterator n = child->children ().begin (); n != child->children ().end (); ++n) { std::shared_ptr iop = std::make_shared(*this); if (0 == iop->set_state (**n, version)) { iopl->push_back (iop); iop->LatencyChanged.connect_same_thread (*this, boost::bind (&Session::update_latency_compensation, this, true, false)); } else { /* TODO Unknown I/O Plugin, retain state */ } } Glib::Threads::Mutex::Lock lm (AudioEngine::instance()->process_lock ()); for (auto const& i : *iopl) { i->ensure_io (); } } if ((child = find_named_node (node, X_("Selection")))) { _selection->set_state (*child, version); } update_route_record_state (); sync_cues (); /* here beginneth the second phase ... */ set_snapshot_name (_current_snapshot_name); StateReady (); /* EMIT SIGNAL */ delete state_tree; state_tree = 0; return 0; out: delete state_tree; state_tree = 0; return ret; } int Session::load_routes (const XMLNode& node, int version) { XMLNodeList nlist; XMLNodeConstIterator niter; RouteList new_routes; nlist = node.children(); set_dirty(); for (niter = nlist.begin(); niter != nlist.end(); ++niter) { std::shared_ptr route; if (version < 3000) { route = XMLRouteFactory_2X (**niter, version); } else if (version < 5000) { route = XMLRouteFactory_3X (**niter, version); } else { route = XMLRouteFactory (**niter, version); } if (route == 0) { error << _("Session: cannot create track/bus from XML description.") << endmsg; return -1; } BootMessage (string_compose (_("Loaded track/bus %1"), route->name())); new_routes.push_back (route); } BootMessage (_("Tracks/busses loaded; Adding to Session")); add_routes (new_routes, false, false, PresentationInfo::max_order); /* re-subscribe to MIDI connection handler */ for (RouteList::iterator r = new_routes.begin(); r != new_routes.end(); ++r) { std::shared_ptr mt = std::dynamic_pointer_cast (*r); bool is_midi_route = (*r)->n_inputs().n_midi() > 0 && (*r)->n_inputs().n_midi() > 0; if (mt || is_midi_route) { (*r)->output()->changed.connect_same_thread (*this, boost::bind (&Session::midi_output_change_handler, this, _1, _2, std::weak_ptr(*r))); } } BootMessage (_("Finished adding tracks/busses")); return 0; } std::shared_ptr Session::XMLRouteFactory (const XMLNode& node, int version) { std::shared_ptr ret; if (node.name() != "Route") { return ret; } XMLProperty const * pl_prop = node.property (X_("audio-playlist")); if (!pl_prop) { pl_prop = node.property (X_("midi-playlist")); } DataType type = DataType::AUDIO; node.get_property("default-type", type); assert (type != DataType::NIL); if (pl_prop) { /* has at least 1 playlist, therefore a track ... */ std::shared_ptr track; if (type == DataType::AUDIO) { track.reset (new AudioTrack (*this)); } else { track.reset (new MidiTrack (*this)); } if (track->init()) { return ret; } if (track->set_state (node, version)) { return ret; } BOOST_MARK_TRACK (track); ret = track; } else { PresentationInfo::Flag flags = PresentationInfo::get_flags (node); std::shared_ptr r (new Route (*this, X_("toBeResetFroXML"), flags)); if (r->init () == 0 && r->set_state (node, version) == 0) { BOOST_MARK_ROUTE (r); ret = r; } } return ret; } std::shared_ptr Session::XMLRouteFactory_3X (const XMLNode& node, int version) { std::shared_ptr ret; if (node.name() != "Route") { return ret; } XMLNode* ds_child = find_named_node (node, X_("Diskstream")); DataType type = DataType::AUDIO; node.get_property("default-type", type); assert (type != DataType::NIL); if (ds_child) { std::shared_ptr track; if (type == DataType::AUDIO) { track.reset (new AudioTrack (*this)); } else { track.reset (new MidiTrack (*this)); } if (track->init()) { return ret; } if (track->set_state (node, version)) { return ret; } BOOST_MARK_TRACK (track); ret = track; } else { PresentationInfo::Flag flags = PresentationInfo::get_flags2X3X (node); std::shared_ptr r (new Route (*this, X_("toBeResetFroXML"), flags)); if (r->init () == 0 && r->set_state (node, version) == 0) { BOOST_MARK_ROUTE (r); ret = r; } } return ret; } std::shared_ptr Session::XMLRouteFactory_2X (const XMLNode& node, int version) { std::shared_ptr ret; if (node.name() != "Route") { return ret; } XMLProperty const * ds_prop = node.property (X_("diskstream-id")); if (!ds_prop) { ds_prop = node.property (X_("diskstream")); } DataType type = DataType::AUDIO; node.get_property("default-type", type); assert (type != DataType::NIL); if (ds_prop) { PBD::ID ds_id (ds_prop->value ()); std::string playlist_name = _diskstreams_2X[ds_id]; std::shared_ptr pl = playlists()->by_name (playlist_name); if (playlist_name.empty () || !pl) { warning << string_compose (_("Could not find diskstream for diskstream-id: '%1', playlist: '%2'"), ds_prop->value (), playlist_name) << endmsg; } std::shared_ptr track; if (type == DataType::AUDIO) { track.reset (new AudioTrack (*this)); } else { track.reset (new MidiTrack (*this)); } if (track->init()) { return ret; } if (pl) { track->use_playlist (DataType::AUDIO, pl); } else { track->use_new_playlist (DataType::AUDIO); } if (track->set_state (node, version)) { return ret; } if (pl) { pl->set_orig_track_id (track->id()); playlists()->update_orig_2X (ds_id, track->id()); } BOOST_MARK_TRACK (track); ret = track; } else { PresentationInfo::Flag flags = PresentationInfo::get_flags2X3X (node); std::shared_ptr r (new Route (*this, X_("toBeResetFroXML"), flags)); if (r->init () == 0 && r->set_state (node, version) == 0) { BOOST_MARK_ROUTE (r); ret = r; } } return ret; } int Session::load_regions (const XMLNode& node) { XMLNodeList nlist; XMLNodeConstIterator niter; std::shared_ptr region; nlist = node.children(); set_dirty(); for (niter = nlist.begin(); niter != nlist.end(); ++niter) { if ((region = XMLRegionFactory (**niter, false)) == 0) { error << _("Session: cannot create Region from XML description."); XMLProperty const * name = (**niter).property("name"); if (name) { error << " " << string_compose (_("Can not load state for region '%1'"), name->value()); } error << endmsg; } } return 0; } int Session::load_compounds (const XMLNode& node) { XMLNodeList calist = node.children(); XMLNodeConstIterator caiter; XMLProperty const * caprop; for (caiter = calist.begin(); caiter != calist.end(); ++caiter) { XMLNode* ca = *caiter; ID orig_id; ID copy_id; if ((caprop = ca->property (X_("original"))) == 0) { continue; } orig_id = caprop->value(); if ((caprop = ca->property (X_("copy"))) == 0) { continue; } copy_id = caprop->value(); std::shared_ptr orig = RegionFactory::region_by_id (orig_id); std::shared_ptr copy = RegionFactory::region_by_id (copy_id); if (!orig || !copy) { warning << string_compose (_("Regions in compound description not found (ID's %1 and %2): ignored"), orig_id, copy_id) << endmsg; continue; } RegionFactory::add_compound_association (orig, copy); } return 0; } void Session::load_nested_sources (const XMLNode& node) { XMLNodeList nlist; XMLNodeConstIterator niter; nlist = node.children(); for (niter = nlist.begin(); niter != nlist.end(); ++niter) { if ((*niter)->name() == "Source") { /* it may already exist, so don't recreate it unnecessarily */ XMLProperty const * prop = (*niter)->property (X_("id")); if (!prop) { error << _("Nested source has no ID info in session file! (ignored)") << endmsg; continue; } ID source_id (prop->value()); if (!source_by_id (source_id)) { try { SourceFactory::create (*this, **niter, true); } catch (failed_constructor& err) { error << string_compose (_("Cannot reconstruct nested source for region %1"), name()) << endmsg; } } } } } std::shared_ptr Session::XMLRegionFactory (const XMLNode& node, bool full) { XMLProperty const * type = node.property("type"); try { const XMLNodeList& nlist = node.children(); for (XMLNodeConstIterator niter = nlist.begin(); niter != nlist.end(); ++niter) { XMLNode *child = (*niter); if (child->name() == "NestedSource") { load_nested_sources (*child); } } if (!type || type->value() == "audio") { return std::shared_ptr(XMLAudioRegionFactory (node, full)); } else if (type->value() == "midi") { return std::shared_ptr(XMLMidiRegionFactory (node, full)); } } catch (failed_constructor& err) { return std::shared_ptr (); } return std::shared_ptr (); } std::shared_ptr Session::XMLAudioRegionFactory (const XMLNode& node, bool /*full*/) { XMLProperty const * prop; std::shared_ptr source; std::shared_ptr as; SourceList sources; SourceList master_sources; uint32_t nchans = 1; char buf[128]; if (node.name() != X_("Region")) { return std::shared_ptr(); } node.get_property (X_("channels"), nchans); if ((prop = node.property ("name")) == 0) { cerr << "no name for this region\n"; abort (); } if ((prop = node.property (X_("source-0"))) == 0) { if ((prop = node.property ("source")) == 0) { error << _("Session: XMLNode describing a AudioRegion is incomplete (no source)") << endmsg; return std::shared_ptr(); } } PBD::ID s_id (prop->value()); if ((source = source_by_id (s_id)) == 0) { error << string_compose(_("Session: XMLNode describing a AudioRegion references an unknown source id =%1"), s_id) << endmsg; return std::shared_ptr(); } as = std::dynamic_pointer_cast(source); if (!as) { error << string_compose(_("Session: XMLNode describing a AudioRegion references a non-audio source id =%1"), s_id) << endmsg; return std::shared_ptr(); } sources.push_back (as); /* pickup other channels */ for (uint32_t n=1; n < nchans; ++n) { snprintf (buf, sizeof(buf), X_("source-%d"), n); if ((prop = node.property (buf)) != 0) { PBD::ID id2 (prop->value()); if ((source = source_by_id (id2)) == 0) { error << string_compose(_("Session: XMLNode describing a AudioRegion references an unknown source id =%1"), id2) << endmsg; return std::shared_ptr(); } as = std::dynamic_pointer_cast(source); if (!as) { error << string_compose(_("Session: XMLNode describing a AudioRegion references a non-audio source id =%1"), id2) << endmsg; return std::shared_ptr(); } sources.push_back (as); } } for (uint32_t n = 0; n < nchans; ++n) { snprintf (buf, sizeof(buf), X_("master-source-%d"), n); if ((prop = node.property (buf)) != 0) { PBD::ID id2 (prop->value()); if ((source = source_by_id (id2)) == 0) { error << string_compose(_("Session: XMLNode describing a AudioRegion references an unknown source id =%1"), id2) << endmsg; return std::shared_ptr(); } as = std::dynamic_pointer_cast(source); if (!as) { error << string_compose(_("Session: XMLNode describing a AudioRegion references a non-audio source id =%1"), id2) << endmsg; return std::shared_ptr(); } master_sources.push_back (as); } } try { std::shared_ptr region (std::dynamic_pointer_cast (RegionFactory::create (sources, node))); /* a final detail: this is the one and only place that we know how long missing files are */ if (region->whole_file()) { for (SourceList::iterator sx = sources.begin(); sx != sources.end(); ++sx) { std::shared_ptr sfp = std::dynamic_pointer_cast (*sx); if (sfp) { sfp->set_length (region->length().samples()); } } } if (!master_sources.empty()) { if (master_sources.size() != nchans) { error << _("Session: XMLNode describing an AudioRegion is missing some master sources; ignored") << endmsg; } else { region->set_master_sources (master_sources); } } return region; } catch (failed_constructor& err) { return std::shared_ptr(); } } std::shared_ptr Session::XMLMidiRegionFactory (const XMLNode& node, bool /*full*/) { XMLProperty const * prop; std::shared_ptr source; std::shared_ptr ms; SourceList sources; if (node.name() != X_("Region")) { return std::shared_ptr(); } if ((prop = node.property ("name")) == 0) { cerr << "no name for this region\n"; abort (); } if ((prop = node.property (X_("source-0"))) == 0) { if ((prop = node.property ("source")) == 0) { error << _("Session: XMLNode describing a MidiRegion is incomplete (no source)") << endmsg; return std::shared_ptr(); } } PBD::ID s_id (prop->value()); if ((source = source_by_id (s_id)) == 0) { error << string_compose(_("Session: XMLNode describing a MidiRegion references an unknown source id =%1"), s_id) << endmsg; return std::shared_ptr(); } ms = std::dynamic_pointer_cast(source); if (!ms) { error << string_compose(_("Session: XMLNode describing a MidiRegion references a non-midi source id =%1"), s_id) << endmsg; return std::shared_ptr(); } sources.push_back (ms); try { std::shared_ptr region (std::dynamic_pointer_cast (RegionFactory::create (sources, node))); /* a final detail: this is the one and only place that we know how long missing files are */ if (region->whole_file()) { for (SourceList::iterator sx = sources.begin(); sx != sources.end(); ++sx) { std::shared_ptr sfp = std::dynamic_pointer_cast (*sx); if (sfp) { sfp->set_length (region->length().samples()); } } } return region; } catch (failed_constructor& err) { return std::shared_ptr(); } } XMLNode& Session::get_sources_as_xml () { XMLNode* node = new XMLNode (X_("Sources")); Glib::Threads::Mutex::Lock lm (source_lock); for (SourceMap::const_iterator i = sources.begin(); i != sources.end(); ++i) { node->add_child_nocopy (i->second->get_state()); } return *node; } void Session::reset_write_sources (bool mark_write_complete, bool force) { std::shared_ptr rl = routes.reader(); for (auto const& i : *rl) { std::shared_ptr tr = std::dynamic_pointer_cast (i); if (tr) { _state_of_the_state = StateOfTheState (_state_of_the_state | InCleanup); tr->reset_write_sources(mark_write_complete, force); _state_of_the_state = StateOfTheState (_state_of_the_state & ~InCleanup); } } } int Session::load_sources (const XMLNode& node) { XMLNodeList nlist; XMLNodeConstIterator niter; /* don't need this but it stops some * versions of gcc complaining about * discarded return values. */ std::shared_ptr source; nlist = node.children(); set_dirty(); std::map relocation; for (niter = nlist.begin(); niter != nlist.end(); ++niter) { #ifdef PLATFORM_WINDOWS int old_mode = 0; #endif XMLNode srcnode (**niter); bool try_replace_abspath = true; retry: try { #ifdef PLATFORM_WINDOWS // do not show "insert media" popups (files embedded from removable media). old_mode = SetErrorMode(SEM_FAILCRITICALERRORS); #endif if ((source = XMLSourceFactory (srcnode)) == 0) { error << _("Session: cannot create Source from XML description.") << endmsg; } #ifdef PLATFORM_WINDOWS SetErrorMode(old_mode); #endif } catch (MissingSource& err) { #ifdef PLATFORM_WINDOWS SetErrorMode(old_mode); #endif /* try previous abs path replacements first */ if (try_replace_abspath && Glib::path_is_absolute (err.path)) { std::string dir = Glib::path_get_dirname (err.path); std::map::const_iterator rl = relocation.find (dir); if (rl != relocation.end ()) { std::string newpath = Glib::build_filename (rl->second, Glib::path_get_basename (err.path)); if (Glib::file_test (newpath, Glib::FILE_TEST_EXISTS)) { srcnode.set_property ("origin", newpath); try_replace_abspath = false; goto retry; } } } int user_choice; _missing_file_replacement = ""; if (err.type == DataType::MIDI && Glib::path_is_absolute (err.path)) { error << string_compose (_("An external MIDI file is missing. %1 cannot currently recover from missing external MIDI files"), PROGRAM_NAME) << endmsg; return -1; } if (!no_questions_about_missing_files) { user_choice = MissingFile (this, err.path, err.type).value_or (-1); } else { user_choice = -2; } switch (user_choice) { case 0: /* user added a new search location * or selected a new absolute path, * so try again */ if (Glib::path_is_absolute (err.path)) { if (!_missing_file_replacement.empty ()) { /* replace origin, in XML */ std::string newpath = Glib::build_filename ( _missing_file_replacement, Glib::path_get_basename (err.path)); srcnode.set_property ("origin", newpath); relocation[Glib::path_get_dirname (err.path)] = _missing_file_replacement; _missing_file_replacement = ""; } } goto retry; case 1: /* user asked to quit the entire session load */ return -1; case 2: no_questions_about_missing_files = true; goto retry; case 3: no_questions_about_missing_files = true; /* fallthrough */ case -1: default: switch (err.type) { case DataType::AUDIO: source = SourceFactory::createSilent (*this, **niter, max_samplecnt, _current_sample_rate); break; case DataType::MIDI: /* The MIDI file is actually missing so * just create a new one in the same * location. Do not announce its */ string fullpath; if (!Glib::path_is_absolute (err.path)) { fullpath = Glib::build_filename (source_search_path (DataType::MIDI).front(), err.path); } else { /* this should be an unrecoverable error: we would be creating a MIDI file outside * the session tree. */ return -1; } /* Note that we do not announce the source just yet - we need to reset its ID before we do that */ source = SourceFactory::createWritable (DataType::MIDI, *this, fullpath, _current_sample_rate, false, false); /* reset ID to match the missing one */ source->set_id (**niter); /* Now we can announce it */ SourceFactory::SourceCreated (source); break; } break; } } } return 0; } std::shared_ptr Session::XMLSourceFactory (const XMLNode& node) { if (node.name() != "Source") { return std::shared_ptr(); } try { /* note: do peak building in another thread when loading session state */ return SourceFactory::create (*this, node, true); } catch (failed_constructor& err) { error << string_compose (_("Found a sound file that cannot be used by %1. Talk to the programmers."), PROGRAM_NAME) << endmsg; node.dump (std::cout, " Invalid Source: "); return std::shared_ptr(); } } int Session::save_template (const string& template_name, const string& description, bool replace_existing) { if (cannot_save () || template_name.empty ()) { return -1; } bool absolute_path = Glib::path_is_absolute (template_name); /* directory to put the template in */ std::string template_dir_path; if (!absolute_path) { std::string user_template_dir(user_template_directory()); if (g_mkdir_with_parents (user_template_dir.c_str(), 0755) != 0) { error << string_compose(_("Could not create templates directory \"%1\" (%2)"), user_template_dir, g_strerror (errno)) << endmsg; return -1; } template_dir_path = Glib::build_filename (user_template_dir, template_name); } else { template_dir_path = template_name; } if (!replace_existing && Glib::file_test (template_dir_path, Glib::FILE_TEST_EXISTS)) { warning << string_compose(_("Template \"%1\" already exists - new version not created"), template_dir_path) << endmsg; return -2; } if (g_mkdir_with_parents (template_dir_path.c_str(), 0755) != 0) { error << string_compose(_("Could not create directory for Session template\"%1\" (%2)"), template_dir_path, g_strerror (errno)) << endmsg; return -1; } /* file to write */ std::string template_file_path; if (absolute_path) { template_file_path = Glib::build_filename (template_dir_path, Glib::path_get_basename (template_dir_path) + template_suffix); } else { template_file_path = Glib::build_filename (template_dir_path, template_name + template_suffix); } SessionSaveUnderway (); /* EMIT SIGNAL */ XMLTree tree; XMLNode* root; { PBD::Unwinder uw (_template_state_dir, template_dir_path); root = &get_template (); } root->remove_nodes_and_delete (X_("description")); if (!description.empty()) { XMLNode* desc = new XMLNode (X_("description")); XMLNode* desc_cont = new XMLNode (X_("content"), description); desc->add_child_nocopy (*desc_cont); root->add_child_nocopy (*desc); } tree.set_root (root); if (!tree.write (template_file_path)) { error << _("template not saved") << endmsg; return -1; } store_recent_templates (template_file_path); return 0; } void Session::refresh_disk_space () { #if __APPLE__ || __FreeBSD__ || __NetBSD__ || (HAVE_SYS_VFS_H && HAVE_SYS_STATVFS_H) Glib::Threads::Mutex::Lock lm (space_lock); /* get freespace on every FS that is part of the session path */ _total_free_4k_blocks = 0; _total_free_4k_blocks_uncertain = false; for (vector::iterator i = session_dirs.begin(); i != session_dirs.end(); ++i) { #if defined(__NetBSD__) struct statvfs statfsbuf; statvfs (i->path.c_str(), &statfsbuf); #else struct statfs statfsbuf; statfs (i->path.c_str(), &statfsbuf); #endif double const scale = statfsbuf.f_bsize / 4096.0; /* See if this filesystem is read-only */ struct statvfs statvfsbuf; statvfs (i->path.c_str(), &statvfsbuf); /* f_bavail can be 0 if it is undefined for whatever filesystem we are looking at; Samba shares mounted via GVFS are an example of this. */ if (statfsbuf.f_bavail == 0) { /* block count unknown */ i->blocks = 0; i->blocks_unknown = true; } else if (statvfsbuf.f_flag & ST_RDONLY) { /* read-only filesystem */ i->blocks = 0; i->blocks_unknown = false; } else { /* read/write filesystem with known space */ i->blocks = (uint32_t) floor (statfsbuf.f_bavail * scale); i->blocks_unknown = false; } _total_free_4k_blocks += i->blocks; if (i->blocks_unknown) { _total_free_4k_blocks_uncertain = true; } } #elif defined PLATFORM_WINDOWS vector scanned_volumes; vector::iterator j; vector::iterator i; DWORD nSectorsPerCluster, nBytesPerSector, nFreeClusters, nTotalClusters; char disk_drive[4]; bool volume_found; _total_free_4k_blocks = 0; for (i = session_dirs.begin(); i != session_dirs.end(); i++) { strncpy (disk_drive, (*i).path.c_str(), 3); disk_drive[3] = 0; strupr(disk_drive); volume_found = false; if (0 != (GetDiskFreeSpace(disk_drive, &nSectorsPerCluster, &nBytesPerSector, &nFreeClusters, &nTotalClusters))) { int64_t nBytesPerCluster = nBytesPerSector * nSectorsPerCluster; int64_t nFreeBytes = nBytesPerCluster * (int64_t)nFreeClusters; i->blocks = (uint32_t)(nFreeBytes / 4096); for (j = scanned_volumes.begin(); j != scanned_volumes.end(); j++) { if (0 == j->compare(disk_drive)) { volume_found = true; break; } } if (!volume_found) { scanned_volumes.push_back(disk_drive); _total_free_4k_blocks += i->blocks; } } } if (0 == _total_free_4k_blocks) { strncpy (disk_drive, path().c_str(), 3); disk_drive[3] = 0; if (0 != (GetDiskFreeSpace(disk_drive, &nSectorsPerCluster, &nBytesPerSector, &nFreeClusters, &nTotalClusters))) { int64_t nBytesPerCluster = nBytesPerSector * nSectorsPerCluster; int64_t nFreeBytes = nBytesPerCluster * (int64_t)nFreeClusters; _total_free_4k_blocks = (uint32_t)(nFreeBytes / 4096); } } #endif } string Session::get_best_session_directory_for_new_audio () { vector::iterator i; string result = _session_dir->root_path(); /* handle common case without system calls */ if (session_dirs.size() == 1) { return result; } /* OK, here's the algorithm we're following here: We want to select which directory to use for the next file source to be created. Ideally, we'd like to use a round-robin process so as to get maximum performance benefits from splitting the files across multiple disks. However, in situations without much diskspace, an RR approach may end up filling up a filesystem with new files while others still have space. Its therefore important to pay some attention to the freespace in the filesystem holding each directory as well. However, if we did that by itself, we'd keep creating new files in the file system with the most space until it was as full as all others, thus negating any performance benefits of this RAID-1 like approach. So, we use a user-configurable space threshold. If there are at least 2 filesystems with more than this much space available, we use RR selection between them. If not, then we pick the filesystem with the most space. This gets a good balance between the two approaches. */ refresh_disk_space (); int free_enough = 0; for (i = session_dirs.begin(); i != session_dirs.end(); ++i) { if ((*i).blocks * 4096 >= Config->get_disk_choice_space_threshold()) { free_enough++; } } if (free_enough >= 2) { /* use RR selection process, ensuring that the one picked works OK. */ i = last_rr_session_dir; do { if (++i == session_dirs.end()) { i = session_dirs.begin(); } if ((*i).blocks * 4096 >= Config->get_disk_choice_space_threshold()) { SessionDirectory sdir(i->path); if (sdir.create ()) { result = (*i).path; last_rr_session_dir = i; return result; } } } while (i != last_rr_session_dir); } else { /* pick FS with the most freespace (and that seems to actually work ...) */ vector sorted; space_and_path_ascending_cmp cmp; sorted = session_dirs; sort (sorted.begin(), sorted.end(), cmp); for (i = sorted.begin(); i != sorted.end(); ++i) { SessionDirectory sdir(i->path); if (sdir.create ()) { result = (*i).path; last_rr_session_dir = i; return result; } } } return result; } string Session::automation_dir () const { return Glib::build_filename (_path, automation_dir_name); } string Session::analysis_dir () const { return Glib::build_filename (_path, analysis_dir_name); } string Session::plugins_dir () const { return Glib::build_filename (_path, plugins_dir_name); } string Session::externals_dir () const { return Glib::build_filename (_path, externals_dir_name); } int Session::load_bundles (XMLNode const & node) { XMLNodeList nlist = node.children(); XMLNodeConstIterator niter; set_dirty(); for (niter = nlist.begin(); niter != nlist.end(); ++niter) { if ((*niter)->name() == "InputBundle") { add_bundle (std::shared_ptr (new UserBundle (**niter, true))); } else if ((*niter)->name() == "OutputBundle") { add_bundle (std::shared_ptr (new UserBundle (**niter, false))); } else { error << string_compose(_("Unknown node \"%1\" found in Bundles list from session file"), (*niter)->name()) << endmsg; return -1; } } return 0; } int Session::load_route_groups (const XMLNode& node, int version) { XMLNodeList nlist = node.children(); XMLNodeConstIterator niter; set_dirty (); if (version >= 3000) { for (niter = nlist.begin(); niter != nlist.end(); ++niter) { if ((*niter)->name() == "RouteGroup") { RouteGroup* rg = new RouteGroup (*this, ""); add_route_group (rg); rg->set_state (**niter, version); } } } else if (version < 3000) { for (niter = nlist.begin(); niter != nlist.end(); ++niter) { if ((*niter)->name() == "EditGroup" || (*niter)->name() == "MixGroup") { RouteGroup* rg = new RouteGroup (*this, ""); add_route_group (rg); rg->set_state (**niter, version); } } } return 0; } static bool state_file_filter (const string &str, void* /*arg*/) { return (str.length() > strlen(statefile_suffix) && str.find (statefile_suffix) == (str.length() - strlen (statefile_suffix)) && str.substr (0, 2) != "._" /* ignore HFS+ extended data */ ); } static string remove_end(string state) { string statename(state); string::size_type start,end; if ((start = statename.find_last_of (G_DIR_SEPARATOR)) != string::npos) { statename = statename.substr (start+1); } if ((end = statename.rfind(statefile_suffix)) == string::npos) { end = statename.length(); } return string(statename.substr (0, end)); } vector Session::possible_states (string path) { vector states; find_files_matching_filter (states, path, state_file_filter, 0, false, false); transform(states.begin(), states.end(), states.begin(), remove_end); sort (states.begin(), states.end()); return states; } vector Session::possible_states () const { return possible_states(_path); } RouteGroup* Session::new_route_group (const std::string& name) { RouteGroup* rg = NULL; for (std::list::const_iterator i = _route_groups.begin (); i != _route_groups.end (); ++i) { if ((*i)->name () == name) { rg = *i; break; } } if (!rg) { rg = new RouteGroup (*this, name); add_route_group (rg); } return (rg); } void Session::add_route_group (RouteGroup* g) { _route_groups.push_back (g); route_group_added (g); /* EMIT SIGNAL */ g->RouteAdded.connect_same_thread (*this, boost::bind (&Session::route_added_to_route_group, this, _1, _2)); g->RouteRemoved.connect_same_thread (*this, boost::bind (&Session::route_removed_from_route_group, this, _1, _2)); g->PropertyChanged.connect_same_thread (*this, boost::bind (&Session::route_group_property_changed, this, g)); set_dirty (); } void Session::remove_route_group (RouteGroup& rg) { list::iterator i; if ((i = find (_route_groups.begin(), _route_groups.end(), &rg)) != _route_groups.end()) { _route_groups.erase (i); delete &rg; route_group_removed (); /* EMIT SIGNAL */ } } /** Set a new order for our route groups, without adding or removing any. * @param groups Route group list in the new order. */ void Session::reorder_route_groups (list groups) { _route_groups = groups; route_groups_reordered (); /* EMIT SIGNAL */ set_dirty (); } RouteGroup * Session::route_group_by_name (string name) { list::iterator i; for (i = _route_groups.begin(); i != _route_groups.end(); ++i) { if ((*i)->name() == name) { return* i; } } return 0; } RouteGroup& Session::all_route_group() const { return *_all_route_group; } void Session::add_commands (vector const & cmds) { for (vector::const_iterator i = cmds.begin(); i != cmds.end(); ++i) { add_command (*i); } } void Session::add_command (Command* const cmd) { assert (_current_trans); if (!_current_trans) { error << "Attempted to add an UNDO command without a current transaction. ignoring command (" << cmd->name() << ")" << endl; return; } DEBUG_TRACE (DEBUG::UndoHistory, string_compose ("Current Undo Transaction %1, adding command: %2\n", _current_trans->name (), cmd->name ())); _current_trans->add_command (cmd); } PBD::StatefulDiffCommand* Session::add_stateful_diff_command (std::shared_ptr sfd) { PBD::StatefulDiffCommand* cmd = new PBD::StatefulDiffCommand (sfd); add_command (cmd); return cmd; } void Session::begin_reversible_command (const string& name) { begin_reversible_command (g_quark_from_string (name.c_str ())); } /** Begin a reversible command using a GQuark to identify it. * begin_reversible_command() and commit_reversible_command() calls may be nested, * but there must be as many begin...()s as there are commit...()s. */ void Session::begin_reversible_command (GQuark q) { if (_current_trans) { #ifndef NDEBUG cerr << "An UNDO transaction was started while a prior command was underway. Aborting command (" << g_quark_to_string (q) << ") and prior (" << _current_trans->name() << ")" << "\n"; #else PBD::warning << "An UNDO transaction was started while a prior command was underway. Aborting command (" << g_quark_to_string (q) << ") and prior (" << _current_trans->name() << ")" << endmsg; #endif abort_reversible_command(); assert (false); return; } /* If nested begin/commit pairs are used, we create just one UndoTransaction to hold all the commands that are committed. This keeps the order of commands correct in the history. */ if (_current_trans == 0) { DEBUG_TRACE (DEBUG::UndoHistory, string_compose ("Begin Reversible Command, new transaction: %1\n", g_quark_to_string (q))); /* start a new transaction */ assert (_current_trans_quarks.empty ()); _current_trans = new UndoTransaction(); _current_trans->set_name (g_quark_to_string (q)); } else { DEBUG_TRACE (DEBUG::UndoHistory, string_compose ("Begin Reversible Command, current transaction: %1\n", _current_trans->name ())); } _current_trans_quarks.push_front (q); } void Session::abort_reversible_command () { if (!_current_trans) { return; } DEBUG_TRACE (DEBUG::UndoHistory, string_compose ("Abort Reversible Command: %1\n", _current_trans->name ())); _current_trans->clear(); delete _current_trans; _current_trans = nullptr; _current_trans_quarks.clear(); } bool Session::abort_empty_reversible_command () { if (!collected_undo_commands ()) { abort_reversible_command (); return true; } return false; } void Session::commit_reversible_command (Command *cmd) { assert (_current_trans); assert (!_current_trans_quarks.empty ()); if (!_current_trans) { return; } struct timeval now; if (cmd) { DEBUG_TRACE (DEBUG::UndoHistory, string_compose ("Current Undo Transaction %1, adding command: %2\n", _current_trans->name (), cmd->name ())); _current_trans->add_command (cmd); } DEBUG_TRACE (DEBUG::UndoHistory, string_compose ("Commit Reversible Command, current transaction: %1\n", _current_trans->name ())); _current_trans_quarks.pop_front (); if (!_current_trans_quarks.empty ()) { DEBUG_TRACE (DEBUG::UndoHistory, string_compose ("Commit Reversible Command, transaction is not " "top-level, current transaction: %1\n", _current_trans->name ())); /* the transaction we're committing is not the top-level one */ return; } if (_current_trans->empty()) { /* no commands were added to the transaction, so just get rid of it */ DEBUG_TRACE (DEBUG::UndoHistory, string_compose ("Commit Reversible Command, No commands were " "added to current transaction: %1\n", _current_trans->name ())); delete _current_trans; _current_trans = nullptr; return; } gettimeofday (&now, 0); _current_trans->set_timestamp (now); DEBUG_TRACE (DEBUG::UndoHistory, string_compose ("Commit Reversible Command, add to history %1\n", _current_trans->name ())); _history.add (_current_trans); _current_trans = nullptr; } static bool accept_all_audio_files (const string& path, void* /*arg*/) { if (!Glib::file_test (path, Glib::FILE_TEST_IS_REGULAR)) { return false; } if (!AudioFileSource::safe_audio_file_extension (path)) { return false; } return true; } static bool accept_all_midi_files (const string& path, void* /*arg*/) { if (!Glib::file_test (path, Glib::FILE_TEST_IS_REGULAR)) { return false; } return ( (path.length() > 4 && path.find (".mid") != (path.length() - 4)) || (path.length() > 4 && path.find (".smf") != (path.length() - 4)) || (path.length() > 5 && path.find (".midi") != (path.length() - 5))); } static bool accept_all_state_files (const string& path, void* /*arg*/) { if (!Glib::file_test (path, Glib::FILE_TEST_IS_REGULAR)) { return false; } std::string const statefile_ext (statefile_suffix); if (path.length() >= statefile_ext.length()) { return (0 == path.compare (path.length() - statefile_ext.length(), statefile_ext.length(), statefile_ext)); } else { return false; } } int Session::find_all_sources (string path, set& result) { XMLTree tree; XMLNode* node; if (!tree.read (path)) { return -1; } if ((node = find_named_node (*tree.root(), "Sources")) == 0) { return -2; } XMLNodeList nlist; XMLNodeConstIterator niter; nlist = node->children(); set_dirty(); for (niter = nlist.begin(); niter != nlist.end(); ++niter) { XMLProperty const * prop; if ((prop = (*niter)->property (X_("type"))) == 0) { continue; } DataType type (prop->value()); if ((prop = (*niter)->property (X_("name"))) == 0) { continue; } if (Glib::path_is_absolute (prop->value())) { /* external file, ignore */ continue; } string found_path; bool is_new; uint16_t chan; if (FileSource::find (*this, type, prop->value(), true, is_new, chan, found_path)) { result.insert (found_path); } } return 0; } int Session::find_all_sources_across_snapshots (set& result, bool exclude_this_snapshot) { vector state_files; string ripped; string this_snapshot_path; result.clear (); ripped = _path; if (ripped[ripped.length()-1] == G_DIR_SEPARATOR) { ripped = ripped.substr (0, ripped.length() - 1); } find_files_matching_filter (state_files, ripped, accept_all_state_files, (void *) 0, true, true); if (state_files.empty()) { /* impossible! */ return 0; } this_snapshot_path = Glib::build_filename (_path, legalize_for_path (_current_snapshot_name)); this_snapshot_path += statefile_suffix; for (vector::iterator i = state_files.begin(); i != state_files.end(); ++i) { if (exclude_this_snapshot && *i == this_snapshot_path) { continue; } if (find_all_sources (*i, result) < 0) { return -1; } } return 0; } struct RegionCounter { typedef std::map > AudioSourceList; AudioSourceList::iterator iter; std::shared_ptr region; uint32_t count; RegionCounter() : count (0) {} }; int Session::ask_about_playlist_deletion (std::shared_ptr p) { boost::optional r = AskAboutPlaylistDeletion (p); return r.value_or (1); } void Session::cleanup_regions () { bool removed = false; const RegionFactory::RegionMap& regions (RegionFactory::regions()); /* collect Regions used by Triggers */ std::set> tr; { std::shared_ptr rl = routes.reader(); for (auto const& r : *rl) { std::shared_ptr tb = r->triggerbox (); if (tb) { tb->used_regions (tr); } } } for (RegionFactory::RegionMap::const_iterator i = regions.begin(); i != regions.end();) { uint32_t used = _playlists->region_use_count (i->second); if (tr.find (i->second) != tr.end()) { ++used; } if (used == 0 && !i->second->automatic ()) { std::weak_ptr w = i->second; ++i; removed = true; RegionFactory::map_remove (w); } else { ++i; } } if (removed) { // re-check to remove parent references of compound regions for (RegionFactory::RegionMap::const_iterator i = regions.begin(); i != regions.end();) { if (!(i->second->whole_file() && i->second->max_source_level() > 0)) { ++i; continue; } assert(std::dynamic_pointer_cast(i->second->source (0)) != 0); if (0 == _playlists->region_use_count (i->second)) { std::weak_ptr w = i->second; ++i; RegionFactory::map_remove (w); } else { ++i; } } } } bool Session::can_cleanup_peakfiles () const { if (deletion_in_progress()) { return false; } if (!_writable || cannot_save ()) { warning << _("Cannot cleanup peak-files for read-only session.") << endmsg; return false; } if (record_status() == Recording) { error << _("Cannot cleanup peak-files while recording") << endmsg; return false; } return true; } int Session::cleanup_peakfiles () { Glib::Threads::Mutex::Lock lm (peak_cleanup_lock, Glib::Threads::TRY_LOCK); if (!lm.locked()) { return -1; } assert (can_cleanup_peakfiles ()); assert (!peaks_cleanup_in_progres()); _state_of_the_state = StateOfTheState (_state_of_the_state | PeakCleanup); int timeout = 5000; // 5 seconds while (!SourceFactory::files_with_peaks.empty()) { Glib::usleep (1000); if (--timeout < 0) { warning << _("Timeout waiting for peak-file creation to terminate before cleanup, please try again later.") << endmsg; _state_of_the_state = StateOfTheState (_state_of_the_state & (~PeakCleanup)); return -1; } } for (SourceMap::iterator i = sources.begin(); i != sources.end(); ++i) { std::shared_ptr as; if ((as = std::dynamic_pointer_cast (i->second)) != 0) { as->close_peakfile(); } } PBD::clear_directory (session_directory().peak_path()); _state_of_the_state = StateOfTheState (_state_of_the_state & (~PeakCleanup)); for (SourceMap::iterator i = sources.begin(); i != sources.end(); ++i) { std::shared_ptr as; if ((as = std::dynamic_pointer_cast (i->second)) != 0) { SourceFactory::setup_peakfile(as, true); } } return 0; } int Session::cleanup_sources (CleanupReport& rep) { // FIXME: needs adaptation to midi SourceList dead_sources; string audio_path; string midi_path; vector candidates; vector unused; set sources_used_by_all_snapshots; string spath; int ret = -1; string tmppath1; string tmppath2; Searchpath asp; Searchpath msp; set > sources_used_by_this_snapshot; _state_of_the_state = StateOfTheState (_state_of_the_state | InCleanup); Glib::Threads::Mutex::Lock ls (source_lock, Glib::Threads::NOT_LOCK); /* this is mostly for windows which doesn't allow file * renaming if the file is in use. But we don't special * case it because we need to know if this causes * problems, and the easiest way to notice that is to * keep it in place for all platforms. */ request_stop (false); _butler->summon (); _butler->wait_until_finished (); /* consider deleting all unused playlists */ if (_playlists->maybe_delete_unused (boost::bind (Session::ask_about_playlist_deletion, _1))) { ret = 0; goto out; } /* sync the "all regions" property of each playlist with its current state */ _playlists->sync_all_regions_with_regions (); /* find all un-used sources */ rep.paths.clear (); rep.space = 0; ls.acquire (); for (SourceMap::iterator i = sources.begin(); i != sources.end(); ) { SourceMap::iterator tmp; tmp = i; ++tmp; /* do not bother with files that are zero size, otherwise we remove the current "nascent" * capture files. */ if (!i->second->used() && (i->second->empty())) { dead_sources.push_back (i->second); } i = tmp; } ls.release (); /* build a list of all the possible audio directories for the session */ for (vector::const_iterator i = session_dirs.begin(); i != session_dirs.end(); ++i) { SessionDirectory sdir ((*i).path); asp += sdir.sound_path(); } audio_path += asp.to_string(); /* build a list of all the possible midi directories for the session */ for (vector::const_iterator i = session_dirs.begin(); i != session_dirs.end(); ++i) { SessionDirectory sdir ((*i).path); msp += sdir.midi_path(); } midi_path += msp.to_string(); find_files_matching_filter (candidates, audio_path, accept_all_audio_files, (void *) 0, true, true); find_files_matching_filter (candidates, midi_path, accept_all_midi_files, (void *) 0, true, true); /* add sources from all other snapshots as "used", but don't use this snapshot because the state file on disk still references sources we may have already dropped. */ find_all_sources_across_snapshots (sources_used_by_all_snapshots, true); /* Although the region factory has a list of all regions ever created * for this session, we're only interested in regions actually in * playlists right now. So merge all playlist regions lists together. * * This will include the playlists used within compound regions. */ collect_sources_of_this_snapshot (sources_used_by_this_snapshot ); /* add our current source list */ ls.acquire (); for (SourceMap::iterator i = sources.begin(); i != sources.end(); ) { std::shared_ptr fs; SourceMap::iterator tmp = i; ++tmp; if ((fs = std::dynamic_pointer_cast (i->second)) == 0) { /* not a file */ i = tmp; continue; } /* this is mostly for windows which doesn't allow file * renaming if the file is in use. But we do not special * case it because we need to know if this causes * problems, and the easiest way to notice that is to * keep it in place for all platforms. */ fs->close (); if (!fs->is_stub()) { /* Note that we're checking a list of all * sources across all snapshots with the list * of sources used by this snapshot. */ if (sources_used_by_this_snapshot.find (i->second) != sources_used_by_this_snapshot.end()) { /* this source is in use by this snapshot */ sources_used_by_all_snapshots.insert (fs->path()); cerr << "Source from source list found in used_by_this_snapshot (" << fs->path() << ")\n"; } else { cerr << "Source from source list NOT found in used_by_this_snapshot (" << fs->path() << ")\n"; /* this source is NOT in use by this snapshot */ /* remove all related regions from RegionFactory master list */ RegionFactory::remove_regions_using_source (i->second); /* remove from our current source list * also. We may not remove it from * disk, because it may be used by * other snapshots, but it isn't used inside this * snapshot anymore, so we don't need a * reference to it. */ dead_sources.push_back (i->second); sources.erase (i); } } i = tmp; } ls.release (); for (SourceList::iterator i = dead_sources.begin(); i != dead_sources.end(); ++i) { /* The following triggers Region::source_deleted (), which * causes regions to drop the given source */ (*i)->drop_references (); SourceRemoved (*i); /* EMIT SIGNAL */ } /* now check each candidate source to see if it exists in the list of * sources_used_by_all_snapshots. If it doesn't, put it into "unused". */ cerr << "Candidates: " << candidates.size() << endl; cerr << "Used by others: " << sources_used_by_all_snapshots.size() << endl; for (vector::iterator x = candidates.begin(); x != candidates.end(); ++x) { bool used = false; spath = *x; for (set::iterator i = sources_used_by_all_snapshots.begin(); i != sources_used_by_all_snapshots.end(); ++i) { tmppath1 = canonical_path (spath); tmppath2 = canonical_path ((*i)); if (tmppath1 == tmppath2) { used = true; break; } } cerr << "\t" << (used ? "keep: " : "drop: ") << spath << endl; if (!used) { unused.push_back (spath); } } cerr << "Actually unused: " << unused.size() << endl; if (unused.empty()) { /* Nothing to do */ ret = 0; goto out; } /* now try to move all unused files into the "dead" directory(ies) */ for (vector::iterator x = unused.begin(); x != unused.end(); ++x) { GStatBuf statbuf; string newpath; /* don't move the file across filesystems, just * stick it in the `dead_dir_name' directory * on whichever filesystem it was already on. */ if ((*x).find ("/sounds/") != string::npos) { /* old school, go up 1 level */ newpath = Glib::path_get_dirname (*x); // "sounds" newpath = Glib::path_get_dirname (newpath); // "session-name" } else { /* new school, go up 4 levels */ newpath = Glib::path_get_dirname (*x); // "audiofiles" or "midifiles" newpath = Glib::path_get_dirname (newpath); // "session-name" newpath = Glib::path_get_dirname (newpath); // "interchange" newpath = Glib::path_get_dirname (newpath); // "session-dir" } newpath = Glib::build_filename (newpath, dead_dir_name); if (g_mkdir_with_parents (newpath.c_str(), 0755) < 0) { error << string_compose(_("Session: cannot create dead file folder \"%1\" (%2)"), newpath, strerror (errno)) << endmsg; return -1; } newpath = Glib::build_filename (newpath, Glib::path_get_basename ((*x))); if (Glib::file_test (newpath, Glib::FILE_TEST_EXISTS)) { /* the new path already exists, try versioning */ char buf[PATH_MAX+1]; int version = 1; string newpath_v; snprintf (buf, sizeof (buf), "%s.%d", newpath.c_str(), version); newpath_v = buf; while (Glib::file_test (newpath_v.c_str(), Glib::FILE_TEST_EXISTS) && version < 999) { snprintf (buf, sizeof (buf), "%s.%d", newpath.c_str(), ++version); newpath_v = buf; } if (version == 999) { error << string_compose (_("there are already 1000 files with names like %1; versioning discontinued"), newpath) << endmsg; } else { newpath = newpath_v; } } if ((g_stat ((*x).c_str(), &statbuf) != 0) || (::g_rename ((*x).c_str(), newpath.c_str()) != 0)) { error << string_compose (_("cannot rename unused file source from %1 to %2 (%3)"), (*x), newpath, g_strerror (errno)) << endmsg; continue; } /* see if there an easy to find peakfile for this file, and remove it. */ string base = Glib::path_get_basename (*x); base += "%A"; /* this is what we add for the channel suffix of all native files, * or for the first channel of embedded files. it will miss * some peakfiles for other channels */ string peakpath = construct_peak_filepath (base); if (Glib::file_test (peakpath.c_str (), Glib::FILE_TEST_EXISTS)) { if (::g_unlink (peakpath.c_str ()) != 0) { error << string_compose (_("cannot remove peakfile %1 for %2 (%3)"), peakpath, _path, g_strerror (errno)) << endmsg; /* try to back out */ ::g_rename (newpath.c_str (), _path.c_str ()); goto out; } } rep.paths.push_back (*x); rep.space += statbuf.st_size; } /* drop last Source references */ dead_sources.clear (); /* dump the history list, remove references */ _history.clear (); /* save state so we don't end up a session file * referring to non-existent sources. */ save_state (); ret = 0; out: _state_of_the_state = StateOfTheState (_state_of_the_state & ~InCleanup); return ret; } int Session::cleanup_trash_sources (CleanupReport& rep) { // FIXME: needs adaptation for MIDI vector::iterator i; string dead_dir; for (i = session_dirs.begin(); i != session_dirs.end(); ++i) { dead_dir = Glib::build_filename ((*i).path, dead_dir_name); clear_directory (dead_dir, &rep.space, &rep.paths); } return 0; } void Session::set_dirty () { /* return early if there's nothing to do */ if (dirty ()) { return; } /* never mark session dirty during loading */ if (loading () || deletion_in_progress ()) { return; } _state_of_the_state = StateOfTheState (_state_of_the_state | Dirty); DirtyChanged(); /* EMIT SIGNAL */ } void Session::set_clean () { bool was_dirty = dirty(); _state_of_the_state = Clean; if (was_dirty) { DirtyChanged(); /* EMIT SIGNAL */ } } void Session::unset_dirty (bool emit_dirty_changed) { bool was_dirty = dirty(); _state_of_the_state = StateOfTheState (_state_of_the_state & (~Dirty)); if (was_dirty && emit_dirty_changed) { DirtyChanged (); /* EMIT SIGNAL */ } } void Session::set_deletion_in_progress () { _state_of_the_state = StateOfTheState (_state_of_the_state | Deletion); } void Session::clear_deletion_in_progress () { _state_of_the_state = StateOfTheState (_state_of_the_state & (~Deletion)); } void Session::add_controllable (std::shared_ptr c) { /* this adds a controllable to the list managed by the Session. this is a subset of those managed by the Controllable class itself, and represents the only ones whose state will be saved as part of the session. */ Glib::Threads::Mutex::Lock lm (controllables_lock); controllables.insert (c); } std::shared_ptr Session::controllable_by_id (const PBD::ID& id) { Glib::Threads::Mutex::Lock lm (controllables_lock); for (Controllables::iterator i = controllables.begin(); i != controllables.end(); ++i) { if ((*i)->id() == id) { return *i; } } return std::shared_ptr(); } std::shared_ptr Session::automation_control_by_id (const PBD::ID& id) { return std::dynamic_pointer_cast (controllable_by_id (id)); } void Session::add_instant_xml (XMLNode& node, bool write_to_config) { if (_writable) { Stateful::add_instant_xml (node, _path); } if (write_to_config) { Config->add_instant_xml (node); } } XMLNode* Session::instant_xml (const string& node_name) { #ifdef MIXBUS // "Safe Mode" (shift + click open) -> also ignore instant.xml if (get_disable_all_loaded_plugins ()) { return NULL; } #endif return Stateful::instant_xml (node_name, _path); } int Session::save_history (string snapshot_name) { XMLTree tree; if (!_writable) { return 0; } if (snapshot_name.empty()) { snapshot_name = _current_snapshot_name; } const string history_filename = legalize_for_path (snapshot_name) + history_suffix; const string backup_filename = history_filename + backup_suffix; const std::string xml_path(Glib::build_filename (_session_dir->root_path(), history_filename)); const std::string backup_path(Glib::build_filename (_session_dir->root_path(), backup_filename)); if (Glib::file_test (xml_path, Glib::FILE_TEST_EXISTS)) { if (::g_rename (xml_path.c_str(), backup_path.c_str()) != 0) { error << _("could not backup old history file, current history not saved") << endmsg; return -1; } } if (!Config->get_save_history() || Config->get_saved_history_depth() < 0 || (_history.undo_depth() == 0 && _history.redo_depth() == 0)) { return 0; } tree.set_root (&_history.get_state (Config->get_saved_history_depth())); if (!tree.write (xml_path)) { error << string_compose (_("history could not be saved to %1"), xml_path) << endmsg; if (g_remove (xml_path.c_str()) != 0) { error << string_compose(_("Could not remove history file at path \"%1\" (%2)"), xml_path, g_strerror (errno)) << endmsg; } if (::g_rename (backup_path.c_str(), xml_path.c_str()) != 0) { error << string_compose (_("could not restore history file from backup %1 (%2)"), backup_path, g_strerror (errno)) << endmsg; } return -1; } return 0; } int Session::restore_history (string snapshot_name) { XMLTree tree; if (snapshot_name.empty()) { snapshot_name = _current_snapshot_name; } const std::string xml_filename = legalize_for_path (snapshot_name) + history_suffix; const std::string xml_path(Glib::build_filename (_session_dir->root_path(), xml_filename)); info << "Loading history from " << xml_path << endmsg; if (!Glib::file_test (xml_path, Glib::FILE_TEST_EXISTS)) { info << string_compose (_("%1: no history file \"%2\" for this session."), _name, xml_path) << endmsg; return 1; } if (!tree.read (xml_path)) { error << string_compose (_("Could not understand session history file \"%1\""), xml_path) << endmsg; return -1; } // replace history _history.clear(); try { for (XMLNodeConstIterator it = tree.root()->children().begin(); it != tree.root()->children().end(); ++it) { XMLNode *t = *it; std::string name; int64_t tv_sec; int64_t tv_usec; if (!t->get_property ("name", name) || !t->get_property ("tv-sec", tv_sec) || !t->get_property ("tv-usec", tv_usec)) { continue; } UndoTransaction* ut = new UndoTransaction (); ut->set_name (name); struct timeval tv; tv.tv_sec = tv_sec; tv.tv_usec = tv_usec; ut->set_timestamp(tv); for (XMLNodeConstIterator child_it = t->children().begin(); child_it != t->children().end(); child_it++) { XMLNode *n = *child_it; Command *c; if (n->name() == "MementoCommand" || n->name() == "MementoUndoCommand" || n->name() == "MementoRedoCommand") { if ((c = memento_command_factory(n))) { ut->add_command(c); } } else if (n->name() == "TempoCommand") { ut->add_command (new TempoCommand (*n)); } else if (n->name() == "NoteDiffCommand") { PBD::ID id (n->property("midi-source")->value()); std::shared_ptr midi_source = std::dynamic_pointer_cast(source_by_id(id)); if (midi_source) { ut->add_command (new MidiModel::NoteDiffCommand(midi_source->model(), *n)); } else { error << _("Failed to downcast MidiSource for NoteDiffCommand") << endmsg; } } else if (n->name() == "SysExDiffCommand") { PBD::ID id (n->property("midi-source")->value()); std::shared_ptr midi_source = std::dynamic_pointer_cast(source_by_id(id)); if (midi_source) { ut->add_command (new MidiModel::SysExDiffCommand (midi_source->model(), *n)); } else { error << _("Failed to downcast MidiSource for SysExDiffCommand") << endmsg; } } else if (n->name() == "PatchChangeDiffCommand") { PBD::ID id (n->property("midi-source")->value()); std::shared_ptr midi_source = std::dynamic_pointer_cast(source_by_id(id)); if (midi_source) { ut->add_command (new MidiModel::PatchChangeDiffCommand (midi_source->model(), *n)); } else { error << _("Failed to downcast MidiSource for PatchChangeDiffCommand") << endmsg; } } else if (n->name() == "StatefulDiffCommand") { if ((c = stateful_diff_command_factory (n))) { ut->add_command (c); } } else { error << string_compose(_("Couldn't figure out how to make a Command out of a %1 XMLNode."), n->name()) << endmsg; } } _history.add (ut); } } catch (std::exception const & e) { error << string_compose (_("Error during loading undo history (%1). Undo history will be ignored"), e.what()) << endmsg; } return 0; } void Session::config_changed (std::string p, bool ours) { if (ours) { set_dirty (); } if (p == "auto-loop") { } else if (p == "session-monitoring") { } else if (p == "auto-input") { if (Config->get_monitoring_model() == HardwareMonitoring && transport_rolling()) { /* auto-input only makes a difference if we're rolling */ set_track_monitor_input_status (!config.get_auto_input()); } } else if (p == "punch-in") { if (!punch_is_possible ()) { if (config.get_punch_in ()) { /* force off */ config.set_punch_in (false); return; } } Location* location; if ((location = _locations->auto_punch_location()) != 0) { if (config.get_punch_in ()) { auto_punch_start_changed (location); } else { clear_events (SessionEvent::PunchIn); } } } else if (p == "punch-out") { if (!punch_is_possible ()) { if (config.get_punch_out ()) { /* force off */ config.set_punch_out (false); return; } } Location* location; if ((location = _locations->auto_punch_location()) != 0) { if (config.get_punch_out()) { auto_punch_end_changed (location); } else { clear_events (SessionEvent::PunchOut); } } } else if (p == "use-video-sync") { waiting_for_sync_offset = config.get_use_video_sync(); } else if (p == "mmc-control") { //poke_midi_thread (); } else if (p == "mmc-device-id" || p == "mmc-receive-id" || p == "mmc-receive-device-id") { _mmc->set_receive_device_id (Config->get_mmc_receive_device_id()); } else if (p == "mmc-send-id" || p == "mmc-send-device-id") { _mmc->set_send_device_id (Config->get_mmc_send_device_id()); } else if (p == "midi-control") { //poke_midi_thread (); } else if (p == "raid-path") { setup_raid_path (config.get_raid_path()); } else if (p == "timecode-format") { sync_time_vars (); } else if (p == "video-pullup") { sync_time_vars (); } else if (p == "seamless-loop") { if (play_loop && transport_rolling()) { // to reset diskstreams etc request_play_loop (true); } } else if (p == "click-sound") { setup_click_sounds (1); } else if (p == "click-emphasis-sound") { setup_click_sounds (-1); } else if (p == "clicking") { if (Config->get_clicking()) { if (_click_io && click_data) { // don't require emphasis data _clicking = true; } } else { _clicking = false; } } else if (p == "click-record-only") { _click_rec_only = Config->get_click_record_only(); } else if (p == "click-gain") { if (_click_gain) { _click_gain->gain_control()->set_value (Config->get_click_gain(), Controllable::NoGroup); } } else if (p == "send-mtc") { if (Config->get_send_mtc ()) { /* mark us ready to send */ next_quarter_frame_to_send = 0; } } else if (p == "send-mmc") { _mmc->enable_send (Config->get_send_mmc ()); if (Config->get_send_mmc ()) { /* re-initialize MMC */ send_immediate_mmc (MIDI::MachineControlCommand (MIDI::MachineControl::cmdMmcReset)); send_immediate_mmc (MIDI::MachineControlCommand (Timecode::Time ())); } } else if (p == "jack-time-master") { engine().reset_timebase (); } else if (p == "native-file-header-format") { if (!first_file_header_format_reset) { reset_native_file_format (); } first_file_header_format_reset = false; } else if (p == "native-file-data-format") { if (!first_file_data_format_reset) { reset_native_file_format (); } first_file_data_format_reset = false; } else if (p == "external-sync") { request_sync_source (TransportMasterManager::instance().current()); } else if (p == "denormal-model") { setup_fpu (); } else if (p == "history-depth") { set_history_depth (Config->get_history_depth()); } else if (p == "remote-model") { /* XXX DO SOMETHING HERE TO TELL THE GUI THAT WE NEED TO SET REMOTE ID'S */ } else if (p == "initial-program-change") { if (_mmc->output_port() && Config->get_initial_program_change() >= 0) { MIDI::byte buf[2]; buf[0] = MIDI::program; // channel zero by default buf[1] = (Config->get_initial_program_change() & 0x7f); _mmc->output_port()->midimsg (buf, sizeof (buf), 0); } } else if (p == "solo-mute-override") { // catch_up_on_solo_mute_override (); } else if (p == "listen-position" || p == "pfl-position" || p == "afl-position") { listen_position_changed (); } else if (p == "solo-control-is-listen-control") { solo_control_mode_changed (); } else if (p == "solo-mute-gain") { _solo_cut_control->Changed (true, Controllable::NoGroup); } else if (p == "timecode-offset" || p == "timecode-offset-negative") { last_timecode_valid = false; } else if (p == "ltc-sink-port") { reconnect_ltc_output (); } else if (p == "timecode-generator-offset") { ltc_tx_parse_offset(); } else if (p == "auto-return-target-list") { if (!loading()) { follow_playhead_priority (); } } else if (p == "use-monitor-bus") { /* NB. This is always called when constructing a session, * after restoring session state (if any), * via post_engine_init() -> Config->map_parameters() */ bool want_ms = Config->get_use_monitor_bus(); bool have_ms = _monitor_out ? true : false; if (loading ()) { /* When loading an existing session, the config "use-monitor-bus" * is ignored. Instead the sesion-state (xml) will have added the * "monitor-route" and restored its state (and connections) * if the session has a monitor-section. * Update the config to reflect this. */ if (want_ms != have_ms) { Config->set_use_monitor_bus (have_ms); } MonitorBusAddedOrRemoved (); /* EMIT SIGNAL */ } else { /* Otherwise, Config::set_use_monitor_bus() does * control the the presence of the monitor-section * (new sessions, user initiated change) */ if (want_ms && !have_ms) { add_monitor_section (); } else if (!want_ms && have_ms) { remove_monitor_section (); } } } else if (p == "loop-fade-choice") { last_loopend = 0; /* force locate to refill buffers with new loop boundary data */ auto_loop_changed (_locations->auto_loop_location()); } else if (p == "use-master-volume") { if (master_volume () && !Config->get_use_master_volume ()) { _master_out->set_volume_applies_to_output (true); master_volume ()->set_value (GAIN_COEFF_UNITY, Controllable::NoGroup); } } else if (p == "cue-behavior") { bool follow = (config.get_cue_behavior() & FollowCues); if (follow && !transport_state_rolling() && !loading()) { request_locate (transport_sample(), true); } } else if (p == "default-time-domain") { Temporal::TimeDomain td = config.get_default_time_domain (); std::cerr << "Setting time domain\n"; set_time_domain (td); Config->set_preferred_time_domain(td); /* sync the global default time domain to this newly chosen one */ } set_dirty (); } void Session::set_history_depth (uint32_t d) { _history.set_depth (d); } /** Connect things to the MMC object */ void Session::setup_midi_machine_control () { _mmc = new MIDI::MachineControl; std::shared_ptr async_in = std::dynamic_pointer_cast (_midi_ports->mmc_input_port()); std::shared_ptr async_out = std::dynamic_pointer_cast (_midi_ports->mmc_output_port()); if (!async_out || !async_out) { return; } /* XXXX argh, passing raw pointers back into libmidi++ */ MIDI::Port* mmc_in = async_in.get(); MIDI::Port* mmc_out = async_out.get(); _mmc->set_ports (mmc_in, mmc_out); _mmc->Play.connect_same_thread (*this, boost::bind (&Session::mmc_deferred_play, this, _1)); _mmc->DeferredPlay.connect_same_thread (*this, boost::bind (&Session::mmc_deferred_play, this, _1)); _mmc->Stop.connect_same_thread (*this, boost::bind (&Session::mmc_stop, this, _1)); _mmc->FastForward.connect_same_thread (*this, boost::bind (&Session::mmc_fast_forward, this, _1)); _mmc->Rewind.connect_same_thread (*this, boost::bind (&Session::mmc_rewind, this, _1)); _mmc->Pause.connect_same_thread (*this, boost::bind (&Session::mmc_pause, this, _1)); _mmc->RecordPause.connect_same_thread (*this, boost::bind (&Session::mmc_record_pause, this, _1)); _mmc->RecordStrobe.connect_same_thread (*this, boost::bind (&Session::mmc_record_strobe, this, _1)); _mmc->RecordExit.connect_same_thread (*this, boost::bind (&Session::mmc_record_exit, this, _1)); _mmc->Locate.connect_same_thread (*this, boost::bind (&Session::mmc_locate, this, _1, _2)); _mmc->Step.connect_same_thread (*this, boost::bind (&Session::mmc_step, this, _1, _2)); _mmc->Shuttle.connect_same_thread (*this, boost::bind (&Session::mmc_shuttle, this, _1, _2, _3)); _mmc->TrackRecordStatusChange.connect_same_thread (*this, boost::bind (&Session::mmc_record_enable, this, _1, _2, _3)); /* also handle MIDI SPP because its so common */ _mmc->SPPStart.connect_same_thread (*this, boost::bind (&Session::spp_start, this)); _mmc->SPPContinue.connect_same_thread (*this, boost::bind (&Session::spp_continue, this)); _mmc->SPPStop.connect_same_thread (*this, boost::bind (&Session::spp_stop, this)); } std::shared_ptr Session::solo_cut_control() const { /* the solo cut control is a bit of an anomaly, at least as of Febrary 2011. There are no other * controls in Ardour that currently get presented to the user in the GUI that require * access as a Controllable and are also NOT owned by some SessionObject (e.g. Route, or MonitorProcessor). * * its actually an RCConfiguration parameter, so we use a ProxyControllable to wrap * it up as a Controllable. Changes to the Controllable will just map back to the RCConfiguration * parameter. */ return _solo_cut_control; } void Session::save_snapshot_name (const std::string & n) { /* assure Stateful::_instant_xml is loaded * add_instant_xml() only adds to existing data and defaults * to use an empty Tree otherwise */ instant_xml ("LastUsedSnapshot"); XMLNode last_used_snapshot ("LastUsedSnapshot"); last_used_snapshot.set_property ("name", n); add_instant_xml (last_used_snapshot, false); } void Session::set_snapshot_name (const std::string & n) { _current_snapshot_name = n; save_snapshot_name (n); } int Session::rename (const std::string& new_name) { string legal_name = legalize_for_path (new_name); string new_path; string oldstr; string newstr; bool first = true; string const old_sources_root = _session_dir->sources_root(); if (!_writable || cannot_save ()) { error << _("Cannot rename read-only session.") << endmsg; return 0; // don't show "messed up" warning } if (record_status() == Recording) { error << _("Cannot rename session while recording") << endmsg; return 0; // don't show "messed up" warning } StateProtector stp (this); /* Rename: * session directory * interchange subdirectory * session file * session history * Backup files are left unchanged and not renamed. */ /* Windows requires that we close all files before attempting the * rename. This works on other platforms, but isn't necessary there. * Leave it in place for all platforms though, since it may help * catch issues that could arise if the way Source files work ever * change (since most developers are not using Windows). */ for (SourceMap::const_iterator i = sources.begin(); i != sources.end(); ++i) { std::shared_ptr fs = std::dynamic_pointer_cast (i->second); if (fs) { fs->close (); } } /* pass one: not 100% safe check that the new directory names don't * already exist ... */ for (vector::const_iterator i = session_dirs.begin(); i != session_dirs.end(); ++i) { oldstr = (*i).path; /* this is a stupid hack because Glib::path_get_dirname() is * lexical-only, and so passing it /a/b/c/ gives a different * result than passing it /a/b/c ... */ if (oldstr[oldstr.length()-1] == G_DIR_SEPARATOR) { oldstr = oldstr.substr (0, oldstr.length() - 1); } string base = Glib::path_get_dirname (oldstr); newstr = Glib::build_filename (base, legal_name); if (Glib::file_test (newstr, Glib::FILE_TEST_EXISTS)) { return -1; } } /* Session dirs */ first = true; for (vector::iterator i = session_dirs.begin(); i != session_dirs.end(); ++i) { vector v; oldstr = (*i).path; /* this is a stupid hack because Glib::path_get_dirname() is * lexical-only, and so passing it /a/b/c/ gives a different * result than passing it /a/b/c ... */ if (oldstr[oldstr.length()-1] == G_DIR_SEPARATOR) { oldstr = oldstr.substr (0, oldstr.length() - 1); } string base = Glib::path_get_dirname (oldstr); newstr = Glib::build_filename (base, legal_name); if (::g_rename (oldstr.c_str(), newstr.c_str()) != 0) { error << string_compose (_("renaming %s as %2 failed (%3)"), oldstr, newstr, g_strerror (errno)) << endmsg; return 1; } /* Reset path in "session dirs" */ (*i).path = newstr; (*i).blocks = 0; /* reset primary SessionDirectory object */ if (first) { (*_session_dir) = newstr; new_path = newstr; first = false; } /* now rename directory below session_dir/interchange */ string old_interchange_dir; string new_interchange_dir; /* use newstr here because we renamed the path * (folder/directory) that used to be oldstr to newstr above */ v.push_back (newstr); v.push_back (interchange_dir_name); v.push_back (Glib::path_get_basename (oldstr)); old_interchange_dir = Glib::build_filename (v); v.clear (); v.push_back (newstr); v.push_back (interchange_dir_name); v.push_back (legal_name); new_interchange_dir = Glib::build_filename (v); if (::g_rename (old_interchange_dir.c_str(), new_interchange_dir.c_str()) != 0) { error << string_compose (_("renaming %s as %2 failed (%3)"), old_interchange_dir, new_interchange_dir, g_strerror (errno)) << endmsg; return 1; } } /* state file */ oldstr = Glib::build_filename (new_path, _current_snapshot_name + statefile_suffix); newstr= Glib::build_filename (new_path, legal_name + statefile_suffix); if (::g_rename (oldstr.c_str(), newstr.c_str()) != 0) { error << string_compose (_("renaming %1 as %2 failed (%3)"), oldstr, newstr, g_strerror (errno)) << endmsg; return 1; } /* history file */ oldstr = Glib::build_filename (new_path, _current_snapshot_name) + history_suffix; if (Glib::file_test (oldstr, Glib::FILE_TEST_EXISTS)) { newstr = Glib::build_filename (new_path, legal_name) + history_suffix; if (::g_rename (oldstr.c_str(), newstr.c_str()) != 0) { error << string_compose (_("renaming %1 as %2 failed (%3)"), oldstr, newstr, g_strerror (errno)) << endmsg; return 1; } } /* remove old name from recent sessions */ remove_recent_sessions (_path); _path = new_path; /* update file source paths */ for (SourceMap::iterator i = sources.begin(); i != sources.end(); ++i) { std::shared_ptr fs = std::dynamic_pointer_cast (i->second); if (fs) { string p = fs->path (); boost::replace_all (p, old_sources_root, _session_dir->sources_root()); fs->set_path (p); SourceFactory::setup_peakfile(i->second, true); } } set_snapshot_name (new_name); _name = new_name; set_dirty (); /* save state again to get everything just right */ save_state (_current_snapshot_name); /* add to recent sessions */ store_recent_sessions (new_name, _path); /* remove unnamed file name, if any (it's not an error if it doesn't exist) */ ::g_unlink (unnamed_file_name().c_str()); return 0; } int Session::parse_stateful_loading_version (const std::string& version) { if (version.empty ()) { /* no version implies very old version of Ardour */ return 1000; } if (version.find ('.') != string::npos) { /* old school version format */ if (version[0] == '2') { return 2000; } else { return 3000; } } else { return string_to(version); } } int Session::get_info_from_path (const string& xmlpath, float& sample_rate, SampleFormat& data_format, std::string& program_version, XMLNode* engine_hints) { bool found_sr = false; bool found_data_format = false; std::string version; program_version = ""; if (engine_hints) { /* clear existing properties */ *engine_hints = XMLNode ("EngineHints"); } if (!Glib::file_test (xmlpath, Glib::FILE_TEST_EXISTS)) { return -1; } xmlParserCtxtPtr ctxt = xmlNewParserCtxt(); if (ctxt == NULL) { return -2; } xmlDocPtr doc = xmlCtxtReadFile (ctxt, xmlpath.c_str(), NULL, XML_PARSE_HUGE); if (doc == NULL) { xmlFreeParserCtxt(ctxt); return -2; } xmlNodePtr node = xmlDocGetRootElement(doc); if (node == NULL) { xmlFreeParserCtxt(ctxt); xmlFreeDoc (doc); return -2; } /* sample rate & version*/ xmlAttrPtr attr; for (attr = node->properties; attr; attr = attr->next) { if (!strcmp ((const char*)attr->name, "version") && attr->children) { version = std::string ((char*)attr->children->content); } if (!strcmp ((const char*)attr->name, "sample-rate") && attr->children) { sample_rate = atoi ((char*)attr->children->content); found_sr = true; } } if ((parse_stateful_loading_version(version) / 1000L) > (CURRENT_SESSION_FILE_VERSION / 1000L)) { return -3; } if ((parse_stateful_loading_version(version) / 1000L) <= 2) { /* sample-format '0' is implicit */ data_format = FormatFloat; found_data_format = true; } node = node->children; while (node != NULL) { if (!strcmp((const char*) node->name, "ProgramVersion")) { xmlChar* val = xmlGetProp (node, (const xmlChar*)"modified-with"); if (val) { program_version = string ((const char*)val); size_t sep = program_version.find_first_of("-"); if (sep != string::npos) { program_version = program_version.substr (0, sep); } } xmlFree (val); } if (engine_hints && strcmp((const char*) node->name, "EngineHints") == 0) { xmlChar* val = xmlGetProp (node, (const xmlChar*)"backend"); if (val) { engine_hints->set_property ("backend", (const char*)val); } xmlFree (val); val = xmlGetProp (node, (const xmlChar*)"input-device"); if (val) { engine_hints->set_property ("input-device", (const char*)val); } xmlFree (val); val = xmlGetProp (node, (const xmlChar*)"output-device"); if (val) { engine_hints->set_property ("output-device", (const char*)val); } xmlFree (val); } if (strcmp((const char*) node->name, "Config")) { node = node->next; continue; } for (node = node->children; node; node = node->next) { xmlChar* pv = xmlGetProp (node, (const xmlChar*)"name"); if (pv && !strcmp ((const char*)pv, "native-file-data-format")) { xmlFree (pv); xmlChar* val = xmlGetProp (node, (const xmlChar*)"value"); if (val) { try { SampleFormat fmt = (SampleFormat) string_2_enum (string ((const char*)val), fmt); data_format = fmt; found_data_format = true; } catch (PBD::unknown_enumeration& e) {} } xmlFree (val); break; } xmlFree (pv); } break; } xmlFreeParserCtxt(ctxt); xmlFreeDoc (doc); return (found_sr && found_data_format) ? 0 : 1; } std::string Session::get_snapshot_from_instant (const std::string& session_dir) { std::string instant_xml_path = Glib::build_filename (session_dir, "instant.xml"); if (!Glib::file_test (instant_xml_path, Glib::FILE_TEST_EXISTS)) { return ""; } XMLTree tree; if (!tree.read (instant_xml_path)) { return ""; } XMLProperty const * prop; XMLNode *last_used_snapshot = tree.root()->child("LastUsedSnapshot"); if (last_used_snapshot && (prop = last_used_snapshot->property ("name")) != 0) { return prop->value(); } return ""; } typedef std::vector > SeveralFileSources; typedef std::map SourcePathMap; int Session::bring_all_sources_into_session (boost::function callback) { uint32_t total = 0; uint32_t n = 0; SourcePathMap source_path_map; string new_path; std::shared_ptr afs; int ret = 0; { Glib::Threads::Mutex::Lock lm (source_lock); for (SourceMap::const_iterator i = sources.begin(); i != sources.end(); ++i) { std::shared_ptr fs = std::dynamic_pointer_cast (i->second); if (!fs) { continue; } if (fs->within_session()) { continue; } if (source_path_map.find (fs->path()) != source_path_map.end()) { source_path_map[fs->path()].push_back (fs); } else { SeveralFileSources v; v.push_back (fs); source_path_map.insert (make_pair (fs->path(), v)); } total++; } for (SourcePathMap::iterator i = source_path_map.begin(); i != source_path_map.end(); ++i) { /* tell caller where we are */ string old_path = i->first; callback (n, total, old_path); new_path.clear (); switch (i->second.front()->type()) { case DataType::AUDIO: new_path = new_audio_source_path_for_embedded (old_path); break; case DataType::MIDI: /* XXX not implemented yet */ break; } if (new_path.empty()) { continue; } if (!copy_file (old_path, new_path)) { ret = -1; } /* make sure we stop looking in the external dir/folder. Remember, this is an all-or-nothing operations, it doesn't merge just some files. */ remove_dir_from_search_path (Glib::path_get_dirname (old_path), i->second.front()->type()); for (SeveralFileSources::iterator f = i->second.begin(); f != i->second.end(); ++f) { (*f)->set_path (new_path); } } } save_state (); return ret; } static bool accept_all_files (string const &, void *) { return true; } void Session::save_as_bring_callback (uint32_t,uint32_t,string) { /* It would be good if this did something useful vis-a-vis save-as, but the arguments doesn't provide the correct information right now to do this. */ } static string make_new_media_path (string old_path, string new_session_folder, string new_session_name) { // old_path must be in within_session () string typedir = Glib::path_get_basename (Glib::path_get_dirname (old_path)); vector v; v.push_back (new_session_folder); /* full path */ v.push_back (interchange_dir_name); v.push_back (new_session_name); /* just one directory/folder */ v.push_back (typedir); v.push_back (Glib::path_get_basename (old_path)); return Glib::build_filename (v); } static string make_new_audio_path (string filename, string new_session_folder, string new_session_name) { vector v; v.push_back (new_session_folder); /* full path */ v.push_back (interchange_dir_name); v.push_back (new_session_name); v.push_back (ARDOUR::sound_dir_name); v.push_back (filename); return Glib::build_filename (v); } int Session::save_as (SaveAs& saveas) { vector files; string current_folder = Glib::path_get_dirname (_path); string new_folder = legalize_for_path (saveas.new_name); string to_dir = Glib::build_filename (saveas.new_parent_folder, new_folder); int64_t total_bytes = 0; int64_t copied = 0; int64_t cnt = 0; int64_t all = 0; int32_t internal_file_cnt = 0; vector do_not_copy_extensions; do_not_copy_extensions.push_back (statefile_suffix); do_not_copy_extensions.push_back (pending_suffix); do_not_copy_extensions.push_back (backup_suffix); do_not_copy_extensions.push_back (temp_suffix); do_not_copy_extensions.push_back (history_suffix); /* get total size */ for (vector::const_iterator sd = session_dirs.begin(); sd != session_dirs.end(); ++sd) { /* need to clear this because * find_files_matching_filter() is cumulative */ files.clear (); find_files_matching_filter (files, (*sd).path, accept_all_files, 0, false, true, true); all += files.size(); for (vector::iterator i = files.begin(); i != files.end(); ++i) { GStatBuf gsb; g_stat ((*i).c_str(), &gsb); total_bytes += gsb.st_size; } } /* save old values so we can switch back if we are not switching to the new session */ string old_path = _path; string old_name = _name; string old_snapshot = _current_snapshot_name; string old_sd = _session_dir->root_path(); vector old_search_path[DataType::num_types]; string old_config_search_path[DataType::num_types]; old_search_path[DataType::AUDIO] = source_search_path (DataType::AUDIO); old_search_path[DataType::MIDI] = source_search_path (DataType::MIDI); old_config_search_path[DataType::AUDIO] = config.get_audio_search_path (); old_config_search_path[DataType::MIDI] = config.get_midi_search_path (); /* switch session directory */ (*_session_dir) = to_dir; /* create new tree */ if (!_session_dir->create()) { saveas.failure_message = string_compose (_("Cannot create new session folder %1"), to_dir); return -1; } try { /* copy all relevant files. Find each location in session_dirs, * and copy files from there to target. */ for (vector::const_iterator sd = session_dirs.begin(); sd != session_dirs.end(); ++sd) { /* need to clear this because * find_files_matching_filter() is cumulative */ files.clear (); const size_t prefix_len = (*sd).path.size(); /* Work just on the files within this session dir */ find_files_matching_filter (files, (*sd).path, accept_all_files, 0, false, true, true); /* add dir separator to protect against collisions with * track names (e.g. track named "audiofiles" or * "analysis". */ static const std::string audiofile_dir_string = string (sound_dir_name) + G_DIR_SEPARATOR; static const std::string midifile_dir_string = string (midi_dir_name) + G_DIR_SEPARATOR; static const std::string analysis_dir_string = analysis_dir() + G_DIR_SEPARATOR; /* copy all the files. Handling is different for media files than others because of the *silly* subtree we have below the interchange folder. That really was a bad idea, but I'm not fixing it as part of implementing ::save_as(). */ for (vector::iterator i = files.begin(); i != files.end(); ++i) { std::string from = *i; #ifdef __APPLE__ string filename = Glib::path_get_basename (from); std::transform (filename.begin(), filename.end(), filename.begin(), ::toupper); if (filename == ".DS_STORE") { continue; } #endif if (from.find (audiofile_dir_string) != string::npos) { /* audio file: only copy if asked */ if (saveas.include_media && saveas.copy_media) { string to = make_new_media_path (*i, to_dir, new_folder); info << "media file copying from " << from << " to " << to << endmsg; if (!copy_file (from, to)) { throw Glib::FileError (Glib::FileError::IO_ERROR, string_compose(_("\ncopying \"%1\" failed !"), from)); } } /* we found media files inside the session folder */ internal_file_cnt++; } else if (from.find (midifile_dir_string) != string::npos) { /* midi file: always copy unless * creating an empty new session */ if (saveas.include_media) { string to = make_new_media_path (*i, to_dir, new_folder); info << "media file copying from " << from << " to " << to << endmsg; if (!copy_file (from, to)) { throw Glib::FileError (Glib::FileError::IO_ERROR, "copy failed"); } } /* we found media files inside the session folder */ internal_file_cnt++; } else if (from.find (analysis_dir_string) != string::npos) { /* make sure analysis dir exists in * new session folder, but we're not * copying analysis files here, see * below */ (void) g_mkdir_with_parents (analysis_dir().c_str(), 775); continue; } else { /* normal non-media file. Don't copy state, history, etc. */ bool do_copy = true; for (vector::iterator v = do_not_copy_extensions.begin(); v != do_not_copy_extensions.end(); ++v) { if ((from.length() > (*v).length()) && (from.find (*v) == from.length() - (*v).length())) { /* end of filename matches extension, do not copy file */ do_copy = false; break; } } if (!saveas.copy_media && from.find (peakfile_suffix) != string::npos) { /* don't copy peakfiles if * we're not copying media */ do_copy = false; } if (do_copy) { string to = Glib::build_filename (to_dir, from.substr (prefix_len)); info << "attempting to make directory/folder " << to << endmsg; if (g_mkdir_with_parents (Glib::path_get_dirname (to).c_str(), 0755)) { throw Glib::FileError (Glib::FileError::IO_ERROR, "cannot create required directory"); } info << "attempting to copy " << from << " to " << to << endmsg; if (!copy_file (from, to)) { throw Glib::FileError (Glib::FileError::IO_ERROR, string_compose(_("\ncopying \"%1\" failed !"), from)); } } } /* measure file size even if we're not going to copy so that our Progress signals are correct, since we included these do-not-copy files in the computation of the total size and file count. */ GStatBuf gsb; g_stat (from.c_str(), &gsb); copied += gsb.st_size; cnt++; double fraction = (double) copied / total_bytes; bool keep_going = true; if (saveas.copy_media) { /* no need or expectation of this if * media is not being copied, because * it will be fast(ish). */ /* tell someone "X percent, file M of N"; M is one-based */ boost::optional res = saveas.Progress (fraction, cnt, all); if (res) { keep_going = *res; } } if (!keep_going) { throw Glib::FileError (Glib::FileError::FAILED, "copy cancelled"); } } } /* copy optional folders, if any */ string old = plugins_dir (); if (Glib::file_test (old, Glib::FILE_TEST_EXISTS)) { string newdir = Glib::build_filename (to_dir, Glib::path_get_basename (old)); copy_files (old, newdir); } old = externals_dir (); if (Glib::file_test (old, Glib::FILE_TEST_EXISTS)) { string newdir = Glib::build_filename (to_dir, Glib::path_get_basename (old)); copy_files (old, newdir); } old = automation_dir (); if (Glib::file_test (old, Glib::FILE_TEST_EXISTS)) { string newdir = Glib::build_filename (to_dir, Glib::path_get_basename (old)); copy_files (old, newdir); } if (saveas.include_media) { if (saveas.copy_media) { #ifndef PLATFORM_WINDOWS /* There are problems with analysis files on * Windows, because they used a colon in their * names as late as 4.0. Colons are not legal * under Windows even if NTFS allows them. * * This is a tricky problem to solve so for * just don't copy these files. They will be * regenerated as-needed anyway, subject to the * existing issue that the filenames will be * rejected by Windows, which is a separate * problem (though related). */ /* only needed if we are copying media, since the * analysis data refers to media data */ old = analysis_dir (); if (Glib::file_test (old, Glib::FILE_TEST_EXISTS)) { string newdir = Glib::build_filename (to_dir, "analysis"); copy_files (old, newdir); } #endif /* PLATFORM_WINDOWS */ } } _path = to_dir; set_snapshot_name (saveas.new_name); _name = saveas.new_name; if (saveas.include_media && !saveas.copy_media) { /* reset search paths of the new session (which we're pretending to be right now) to include the original session search path, so we can still find all audio. */ if (internal_file_cnt) { for (vector::iterator s = old_search_path[DataType::AUDIO].begin(); s != old_search_path[DataType::AUDIO].end(); ++s) { ensure_search_path_includes (*s, DataType::AUDIO); } /* we do not do this for MIDI because we copy all MIDI files if saveas.include_media is true */ } } bool was_dirty = dirty (); save_default_options (); if (saveas.copy_media && saveas.copy_external) { if (bring_all_sources_into_session (boost::bind (&Session::save_as_bring_callback, this, _1, _2, _3))) { throw Glib::FileError (Glib::FileError::NO_SPACE_LEFT, "consolidate failed"); } } saveas.final_session_folder_name = _path; store_recent_sessions (_name, _path); if (!saveas.switch_to) { /* save the new state */ save_state ("", false, false, !saveas.include_media); /* switch back to the way things were */ _path = old_path; _name = old_name; set_snapshot_name (old_snapshot); (*_session_dir) = old_sd; if (was_dirty) { set_dirty (); } if (internal_file_cnt) { /* reset these to their original values */ config.set_audio_search_path (old_config_search_path[DataType::AUDIO]); config.set_midi_search_path (old_config_search_path[DataType::MIDI]); } } else { /* prune session dirs, and update disk space statistics */ space_and_path sp; sp.path = _path; session_dirs.clear (); session_dirs.push_back (sp); refresh_disk_space (); _writable = exists_and_writable (_path); /* ensure that all existing tracks reset their current capture source paths */ reset_write_sources (true, true); /* creating new write sources marks the session as dirty. If the new session is empty, then save_state() thinks we're saving a template and will not mark the session as clean. So do that here, before we save state. */ if (!saveas.include_media) { unset_dirty (); } save_state ("", false, false, !saveas.include_media); /* the copying above was based on actually discovering files, not just iterating over the sources list. But if we're going to switch to the new (copied) session, we need to change the paths in the sources also. */ for (SourceMap::const_iterator i = sources.begin(); i != sources.end(); ++i) { std::shared_ptr fs = std::dynamic_pointer_cast (i->second); if (!fs) { continue; } if (fs->within_session()) { string newpath = make_new_media_path (fs->path(), to_dir, new_folder); fs->set_path (newpath); } } } } catch (Glib::FileError& e) { saveas.failure_message = e.what(); /* recursively remove all the directories */ remove_directory (to_dir); /* return error */ return -1; } catch (...) { saveas.failure_message = _("unknown reason"); /* recursively remove all the directories */ remove_directory (to_dir); /* return error */ return -1; } return 0; } int Session::archive_session (const std::string& dest, const std::string& name, ArchiveEncode compress_audio, FileArchive::CompressionLevel compression_level, bool only_used_sources, Progress* progress) { if (dest.empty () || name.empty ()) { error << _("Cannot archive session: invalid destination path/name") << endmsg; return -1; } /* We are going to temporarily change some source properties, * don't allow any concurrent saves (periodic or otherwise */ Glib::Threads::Mutex::Lock lm (save_source_lock); disable_record (false); /* save current values */ string old_path = _path; string old_name = _name; string old_snapshot = _current_snapshot_name; string old_sd = _session_dir->root_path(); string old_config_search_path[DataType::num_types]; old_config_search_path[DataType::AUDIO] = config.get_audio_search_path (); old_config_search_path[DataType::MIDI] = config.get_midi_search_path (); /* ensure that session-path is included in search-path */ bool ok = false; for (vector::const_iterator sd = session_dirs.begin(); sd != session_dirs.end(); ++sd) { if ((*sd).path == old_path) { ok = true; } } if (!ok) { error << _("Cannot archive: session media-search path does not include current session-path.") << endmsg; return -1; } /* create temporary dir to save session to */ GError* err = NULL; char* td = g_dir_make_tmp ("ardourarchive-XXXXXX", &err); if (!td) { error << string_compose(_("Could not make tmpdir: %1"), err->message) << endmsg; return -1; } const string to_dir = PBD::canonical_path (td); g_free (td); g_clear_error (&err); /* switch session directory temporarily */ (*_session_dir) = to_dir; if (!_session_dir->create()) { (*_session_dir) = old_sd; remove_directory (to_dir); error << string_compose(_("Session archive failed to create SessionDirectory `%1'"), to_dir) << endmsg; return -1; } /* prepare archive */ string archive = Glib::build_filename (dest, name + session_archive_suffix); PBD::ScopedConnectionList progress_connection; PBD::FileArchive ar (archive, progress); /* collect files to archive */ std::map filemap; vector do_not_copy_extensions; do_not_copy_extensions.push_back (statefile_suffix); do_not_copy_extensions.push_back (pending_suffix); do_not_copy_extensions.push_back (backup_suffix); do_not_copy_extensions.push_back (temp_suffix); do_not_copy_extensions.push_back (history_suffix); do_not_copy_extensions.push_back (".DS_Store"); vector blacklist_dirs; blacklist_dirs.push_back (string (peak_dir_name) + G_DIR_SEPARATOR); blacklist_dirs.push_back (string (analysis_dir_name) + G_DIR_SEPARATOR); blacklist_dirs.push_back (string (dead_dir_name) + G_DIR_SEPARATOR); blacklist_dirs.push_back (string (export_dir_name) + G_DIR_SEPARATOR); blacklist_dirs.push_back (string (externals_dir_name) + G_DIR_SEPARATOR); blacklist_dirs.push_back (string (plugins_dir_name) + G_DIR_SEPARATOR); std::map, std::string> orig_sources; std::map, std::string> orig_origin; std::map, float> orig_gain; std::map, uint16_t> orig_channel; set > sources_used_by_this_snapshot; if (only_used_sources) { collect_sources_of_this_snapshot (sources_used_by_this_snapshot, false); } /* collect audio sources for this session, calc total size for encoding * add option to only include *used* sources (see Session::cleanup_sources) */ size_t total_size = 0; { Glib::Threads::Mutex::Lock lm (source_lock); /* build a list of used names */ std::set audio_file_names; for (SourceMap::const_iterator i = sources.begin(); i != sources.end(); ++i) { if (std::dynamic_pointer_cast (i->second)) { continue; } std::shared_ptr afs = std::dynamic_pointer_cast (i->second); if (!afs || afs->length ().is_zero ()) { continue; } if (only_used_sources) { if (!afs->used()) { continue; } if (sources_used_by_this_snapshot.find (afs) == sources_used_by_this_snapshot.end ()) { continue; } } audio_file_names.insert (Glib::path_get_basename (afs->path())); } for (SourceMap::const_iterator i = sources.begin(); i != sources.end(); ++i) { if (std::dynamic_pointer_cast (i->second)) { continue; } std::shared_ptr afs = std::dynamic_pointer_cast (i->second); if (!afs || afs->length ().is_zero ()) { continue; } if (only_used_sources) { if (!afs->used()) { continue; } if (sources_used_by_this_snapshot.find (afs) == sources_used_by_this_snapshot.end ()) { continue; } } std::string from = afs->path(); if (compress_audio != NO_ENCODE) { total_size += afs->readable_length_samples (); } else { /* copy files as-is */ if (!afs->within_session()) { string to = Glib::path_get_basename (from); /* avoid name collitions, see also new_audio_source_path_for_embedded () * - avoid conflict with files existing in interchange * - avoid conflict with other embedded sources */ if (audio_file_names.find (to) == audio_file_names.end ()) { // we need a new name, add a '-' before the '.' string bn = to.substr (0, to.find_last_of ('.')); string ext = to.find_last_of ('.') == string::npos ? "" : to.substr (to.find_last_of ('.')); to = bn + "-1" + ext; } while (audio_file_names.find (to) == audio_file_names.end ()) { to = bump_name_once (to, '-'); } audio_file_names.insert (to); filemap[from] = make_new_audio_path (to, name, name); remove_dir_from_search_path (Glib::path_get_dirname (from), DataType::AUDIO); orig_origin[afs] = afs->origin (); afs->set_origin (""); } else { filemap[from] = make_new_media_path (from, name, name); } } } } vector extra_files; size_t prefix_len; int rv = 0; if (progress && progress->cancelled ()) { goto out; } /* encode audio */ if (compress_audio != NO_ENCODE) { if (progress) { progress->set_progress (2); // set to "encoding" progress->set_progress (0); } Glib::Threads::Mutex::Lock lm (source_lock); for (SourceMap::const_iterator i = sources.begin(); i != sources.end(); ++i) { if (std::dynamic_pointer_cast (i->second)) { continue; } std::shared_ptr afs = std::dynamic_pointer_cast (i->second); if (!afs || afs->length ().is_zero ()) { continue; } if (only_used_sources) { if (!afs->used()) { continue; } if (sources_used_by_this_snapshot.find (afs) == sources_used_by_this_snapshot.end ()) { continue; } } orig_sources[afs] = afs->path(); orig_gain[afs] = afs->gain(); orig_channel[afs] = afs->channel(); std::string new_path = make_new_media_path (afs->path (), to_dir, name); std::string channelsuffix = ""; if (afs->channel() > 0) { /* n_channels() is /wrongly/ 1. */ /* embedded external multi-channel files are converted to multiple-mono */ channelsuffix = string_compose ("-c%1", afs->channel ()); } new_path = Glib::build_filename (Glib::path_get_dirname (new_path), PBD::basename_nosuffix (new_path) + channelsuffix + ".flac"); g_mkdir_with_parents (Glib::path_get_dirname (new_path).c_str (), 0755); /* avoid name collisions of external files with same name */ if (Glib::file_test (new_path, Glib::FILE_TEST_EXISTS)) { new_path = Glib::build_filename (Glib::path_get_dirname (new_path), PBD::basename_nosuffix (new_path) + channelsuffix + "-1.flac"); } while (Glib::file_test (new_path, Glib::FILE_TEST_EXISTS)) { new_path = bump_name_once (new_path, '-'); } if (progress) { progress->descend ((float)afs->readable_length_samples () / total_size); } try { SndFileSource* ns = new SndFileSource (*this, *(afs.get()), new_path, compress_audio == FLAC_16BIT, progress); afs->replace_file (new_path); afs->set_gain (ns->gain(), true); afs->set_channel (0); delete ns; } catch (...) { error << "failed to encode " << afs->path() << " to " << new_path << endmsg; rv = -1; break; } if (progress) { progress->ascend (); if (progress->cancelled ()) { break; } } } } if (rv) { goto out; } if (progress) { progress->set_progress (-1); // set to "archiving" progress->set_progress (0); if (progress->cancelled ()) { goto out; } } /* index files relevant for this session */ for (vector::const_iterator sd = session_dirs.begin(); sd != session_dirs.end(); ++sd) { vector files; size_t prefix_len = (*sd).path.size(); if (prefix_len > 0 && (*sd).path.at (prefix_len - 1) != G_DIR_SEPARATOR) { ++prefix_len; } find_files_matching_filter (files, (*sd).path, accept_all_files, 0, false, true, true); static const std::string audiofile_dir_string = string (sound_dir_name) + G_DIR_SEPARATOR; static const std::string videofile_dir_string = string (video_dir_name) + G_DIR_SEPARATOR; static const std::string midifile_dir_string = string (midi_dir_name) + G_DIR_SEPARATOR; for (vector::const_iterator i = files.begin (); i != files.end (); ++i) { std::string from = *i; #ifdef __APPLE__ string filename = Glib::path_get_basename (from); std::transform (filename.begin(), filename.end(), filename.begin(), ::toupper); if (filename == ".DS_STORE") { continue; } #endif if (from.find (audiofile_dir_string) != string::npos) { ; // handled above } else if (from.find (midifile_dir_string) != string::npos) { filemap[from] = make_new_media_path (from, name, name); } else if (from.find (videofile_dir_string) != string::npos) { filemap[from] = make_new_media_path (from, name, name); } else { bool do_copy = true; for (vector::iterator v = blacklist_dirs.begin(); v != blacklist_dirs.end(); ++v) { if (from.find (*v) != string::npos) { do_copy = false; break; } } for (vector::iterator v = do_not_copy_extensions.begin(); v != do_not_copy_extensions.end(); ++v) { if ((from.length() > (*v).length()) && (from.find (*v) == from.length() - (*v).length())) { do_copy = false; break; } } if (do_copy) { filemap[from] = name + G_DIR_SEPARATOR + from.substr (prefix_len); } } } } /* write session file */ _path = to_dir; g_mkdir_with_parents (externals_dir ().c_str (), 0755); if (save_state (name, false, false, false, true, only_used_sources)) { error << string_compose(_("Session archive failed to save state `%1'"), to_dir) << endmsg; rv = -1; goto out; } save_default_options (); prefix_len = _path.size(); if (prefix_len > 0 && _path.at (prefix_len - 1) != G_DIR_SEPARATOR) { ++prefix_len; } /* collect session-state files */ do_not_copy_extensions.clear (); do_not_copy_extensions.push_back (history_suffix); blacklist_dirs.clear (); blacklist_dirs.push_back (string (externals_dir_name) + G_DIR_SEPARATOR); find_files_matching_filter (extra_files, to_dir, accept_all_files, 0, false, true, true); for (auto const& from : extra_files) { bool do_copy = true; for (vector::iterator v = blacklist_dirs.begin(); v != blacklist_dirs.end(); ++v) { if (from.find (*v) != string::npos) { do_copy = false; break; } } for (vector::iterator v = do_not_copy_extensions.begin(); v != do_not_copy_extensions.end(); ++v) { if ((from.length() > (*v).length()) && (from.find (*v) == from.length() - (*v).length())) { do_copy = false; break; } } if (do_copy) { filemap[from] = name + G_DIR_SEPARATOR + from.substr (prefix_len); } } out: /* restore original values */ _path = old_path; _name = old_name; set_snapshot_name (old_snapshot); (*_session_dir) = old_sd; config.set_audio_search_path (old_config_search_path[DataType::AUDIO]); config.set_midi_search_path (old_config_search_path[DataType::MIDI]); for (std::map, std::string>::iterator i = orig_origin.begin (); i != orig_origin.end (); ++i) { i->first->set_origin (i->second); } for (std::map, std::string>::iterator i = orig_sources.begin (); i != orig_sources.end (); ++i) { i->first->replace_file (i->second); } for (std::map, float>::iterator i = orig_gain.begin (); i != orig_gain.end (); ++i) { i->first->set_gain (i->second, true); } for (std::map, uint16_t>::iterator i = orig_channel.begin (); i != orig_channel.end (); ++i) { i->first->set_channel (i->second); } if (0 == rv && !(progress && progress->cancelled ())) { rv = ar.create (filemap, compression_level); if (rv) { error << string_compose(_("Session archive failed write output: `%1'"), archive) << endmsg; } } remove_directory (to_dir); return rv; } void Session::undo (uint32_t n) { if (actively_recording()) { return; } StateProtector stp (this); _history.undo (n); } void Session::redo (uint32_t n) { if (actively_recording()) { return; } StateProtector stp (this); _history.redo (n); } std::string Session::unnamed_file_name() const { return Glib::build_filename (_path, X_(".unnamed")); } bool Session::unnamed() const { return Glib::file_test (unnamed_file_name(), Glib::FILE_TEST_EXISTS); } void Session::end_unnamed_status () const { ::g_remove (unnamed_file_name().c_str()); }