8eac07ce142a2f577ba4e1a9da1bda0d986fc1c2
[ardour.git] / gtk2_ardour / ardour_ui.cc
1 /*
2     Copyright (C) 1999-2013 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #include "gtk2ardour-version.h"
23 #endif
24
25 #include <algorithm>
26 #include <cmath>
27 #include <iostream>
28 #include <cerrno>
29 #include <fstream>
30
31 #ifndef PLATFORM_WINDOWS
32 #include <sys/resource.h>
33 #endif
34
35 #include <stdint.h>
36 #include <fcntl.h>
37 #include <signal.h>
38 #include <unistd.h>
39 #include <time.h>
40
41 #include <glib.h>
42 #include <glib/gstdio.h>
43
44 #include <gtkmm/messagedialog.h>
45 #include <gtkmm/accelmap.h>
46
47 #include "pbd/error.h"
48 #include "pbd/basename.h"
49 #include "pbd/compose.h"
50 #include "pbd/failed_constructor.h"
51 #include "pbd/enumwriter.h"
52 #include "pbd/memento_command.h"
53 #include "pbd/openuri.h"
54 #include "pbd/stl_delete.h"
55 #include "pbd/file_utils.h"
56 #include "pbd/localtime_r.h"
57 #include "pbd/pthread_utils.h"
58
59 #include "gtkmm2ext/application.h"
60 #include "gtkmm2ext/bindings.h"
61 #include "gtkmm2ext/gtk_ui.h"
62 #include "gtkmm2ext/utils.h"
63 #include "gtkmm2ext/click_box.h"
64 #include "gtkmm2ext/fastmeter.h"
65 #include "gtkmm2ext/popup.h"
66 #include "gtkmm2ext/window_title.h"
67
68 #include "ardour/ardour.h"
69 #include "ardour/audio_backend.h"
70 #include "ardour/audioengine.h"
71 #include "ardour/audiofilesource.h"
72 #include "ardour/automation_watch.h"
73 #include "ardour/diskstream.h"
74 #include "ardour/filename_extensions.h"
75 #include "ardour/filesystem_paths.h"
76 #include "ardour/port.h"
77 #include "ardour/plugin_manager.h"
78 #include "ardour/process_thread.h"
79 #include "ardour/profile.h"
80 #include "ardour/recent_sessions.h"
81 #include "ardour/session_directory.h"
82 #include "ardour/session_route.h"
83 #include "ardour/session_state_utils.h"
84 #include "ardour/session_utils.h"
85 #include "ardour/slave.h"
86 #include "ardour/system_exec.h"
87
88 #ifdef WINDOWS_VST_SUPPORT
89 #include <fst.h>
90 #endif
91 #ifdef AUDIOUNIT_SUPPORT
92 #include "ardour/audio_unit.h"
93 #endif
94
95 #include "timecode/time.h"
96
97 typedef uint64_t microseconds_t;
98
99 #include "about.h"
100 #include "actions.h"
101 #include "add_route_dialog.h"
102 #include "ambiguous_file_dialog.h"
103 #include "ardour_ui.h"
104 #include "audio_clock.h"
105 #include "big_clock_window.h"
106 #include "bundle_manager.h"
107 #include "engine_dialog.h"
108 #include "export_video_dialog.h"
109 #include "export_video_infobox.h"
110 #include "gain_meter.h"
111 #include "global_port_matrix.h"
112 #include "gui_object.h"
113 #include "gui_thread.h"
114 #include "keyboard.h"
115 #include "keyeditor.h"
116 #include "location_ui.h"
117 #include "main_clock.h"
118 #include "missing_file_dialog.h"
119 #include "missing_plugin_dialog.h"
120 #include "mixer_ui.h"
121 #include "mouse_cursors.h"
122 #include "nsm.h"
123 #include "opts.h"
124 #include "pingback.h"
125 #include "processor_box.h"
126 #include "prompter.h"
127 #include "public_editor.h"
128 #include "rc_option_editor.h"
129 #include "route_time_axis.h"
130 #include "route_params_ui.h"
131 #include "session_dialog.h"
132 #include "session_metadata_dialog.h"
133 #include "session_option_editor.h"
134 #include "shuttle_control.h"
135 #include "speaker_dialog.h"
136 #include "splash.h"
137 #include "startup.h"
138 #include "theme_manager.h"
139 #include "time_axis_view_item.h"
140 #include "timers.h"
141 #include "utils.h"
142 #include "video_server_dialog.h"
143 #include "add_video_dialog.h"
144 #include "transcode_video_dialog.h"
145
146 #include "i18n.h"
147
148 using namespace ARDOUR;
149 using namespace ARDOUR_UI_UTILS;
150 using namespace PBD;
151 using namespace Gtkmm2ext;
152 using namespace Gtk;
153 using namespace std;
154
155 ARDOUR_UI *ARDOUR_UI::theArdourUI = 0;
156
157 sigc::signal<void, framepos_t, bool, framepos_t> ARDOUR_UI::Clock;
158 sigc::signal<void>      ARDOUR_UI::CloseAllDialogs;
159
160
161 static bool
162 ask_about_configuration_copy (string const & old_dir, string const & new_dir, int version)
163 {
164         MessageDialog msg (string_compose (_("%1 %2.x has discovered configuration files from %1 %3.x.\n\n"
165                                              "Would you like these files to be copied and used for Ardour 4.x?\n\n"
166                                              "(This will require you to restart %1.)"),
167                                            PROGRAM_NAME, PROGRAM_VERSION, version), true);
168
169         msg.add_button (Gtk::Stock::NO, Gtk::RESPONSE_NO);
170         msg.show_all ();
171
172         return (msg.run() == Gtk::RESPONSE_OK);
173 }
174
175 ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
176
177         : Gtkmm2ext::UI (PROGRAM_NAME, argcp, argvp)
178         , ui_config (new UIConfiguration)
179         , gui_object_state (new GUIObjectState)
180
181         , primary_clock (new MainClock (X_("primary"), false, X_("transport"), true, true, true, false, true))
182         , secondary_clock (new MainClock (X_("secondary"), false, X_("secondary"), true, true, false, false, true))
183           
184           /* big clock */
185
186         , big_clock (new AudioClock (X_("bigclock"), false, "big", true, true, false, false))
187         , video_timeline(0)
188
189           /* start of private members */
190         , editor (0)
191         , mixer (0)
192         , nsm (0)
193         , _was_dirty (false)
194         , _mixer_on_top (false)
195         , first_time_engine_run (true)
196
197           /* transport */
198
199         , roll_controllable (new TransportControllable ("transport roll", *this, TransportControllable::Roll))
200         , stop_controllable (new TransportControllable ("transport stop", *this, TransportControllable::Stop))
201         , goto_start_controllable (new TransportControllable ("transport goto start", *this, TransportControllable::GotoStart))
202         , goto_end_controllable (new TransportControllable ("transport goto end", *this, TransportControllable::GotoEnd))
203         , auto_loop_controllable (new TransportControllable ("transport auto loop", *this, TransportControllable::AutoLoop))
204         , play_selection_controllable (new TransportControllable ("transport play selection", *this, TransportControllable::PlaySelection))
205         , rec_controllable (new TransportControllable ("transport rec-enable", *this, TransportControllable::RecordEnable))
206
207         , auto_return_button (ArdourButton::led_default_elements)
208         , follow_edits_button (ArdourButton::led_default_elements)
209         , auto_input_button (ArdourButton::led_default_elements)
210
211         , auditioning_alert_button (_("Audition"))
212         , solo_alert_button (_("Solo"))
213         , feedback_alert_button (_("Feedback"))
214         , error_alert_button ( ArdourButton::just_led_default_elements )
215
216         , editor_meter(0)
217         , editor_meter_peak_display()
218
219         , speaker_config_window (X_("speaker-config"), _("Speaker Configuration"))
220         , key_editor (X_("key-editor"), _("Key Bindings"))
221         , rc_option_editor (X_("rc-options-editor"), _("Preferences"))
222         , add_route_dialog (X_("add-routes"), _("Add Tracks/Busses"))
223         , about (X_("about"), _("About"))
224         , location_ui (X_("locations"), _("Locations"))
225         , route_params (X_("inspector"), _("Tracks and Busses"))
226         , audio_midi_setup (X_("audio-midi-setup"), _("Audio/MIDI Setup"))
227         , export_video_dialog (X_("video-export"), _("Video Export Dialog"))
228         , session_option_editor (X_("session-options-editor"), _("Properties"), boost::bind (&ARDOUR_UI::create_session_option_editor, this))
229         , add_video_dialog (X_("add-video"), _("Add Tracks/Busses"), boost::bind (&ARDOUR_UI::create_add_video_dialog, this))
230         , bundle_manager (X_("bundle-manager"), _("Bundle Manager"), boost::bind (&ARDOUR_UI::create_bundle_manager, this))
231         , big_clock_window (X_("big-clock"), _("Big Clock"), boost::bind (&ARDOUR_UI::create_big_clock_window, this))
232         , audio_port_matrix (X_("audio-connection-manager"), _("Audio Connections"), boost::bind (&ARDOUR_UI::create_global_port_matrix, this, ARDOUR::DataType::AUDIO))
233         , midi_port_matrix (X_("midi-connection-manager"), _("MIDI Connections"), boost::bind (&ARDOUR_UI::create_global_port_matrix, this, ARDOUR::DataType::MIDI))
234
235         , _status_bar_visibility (X_("status-bar"))
236         , _feedback_exists (false)
237         , _log_not_acknowledged (LogLevelNone)
238 {
239         Gtkmm2ext::init(localedir);
240
241         if (ARDOUR::handle_old_configuration_files (boost::bind (ask_about_configuration_copy, _1, _2, _3))) {
242                 MessageDialog msg (string_compose (_("Your configuration files were copied. You can now restart %1."), PROGRAM_NAME), true);
243                 msg.run ();
244                 /* configuration was modified, exit immediately */
245                 _exit (0);
246         }
247
248         
249         splash = 0;
250
251         _numpad_locate_happening = false;
252
253         if (theArdourUI == 0) {
254                 theArdourUI = this;
255         }
256
257         ui_config->ParameterChanged.connect (sigc::mem_fun (*this, &ARDOUR_UI::parameter_changed));
258         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
259         ui_config->map_parameters (pc);
260
261         editor = 0;
262         mixer = 0;
263         meterbridge = 0;
264         editor = 0;
265         _session_is_new = false;
266         session_selector_window = 0;
267         last_key_press_time = 0;
268         video_server_process = 0;
269         open_session_selector = 0;
270         have_configure_timeout = false;
271         have_disk_speed_dialog_displayed = false;
272         session_loaded = false;
273         ignore_dual_punch = false;
274
275         roll_button.set_controllable (roll_controllable);
276         stop_button.set_controllable (stop_controllable);
277         goto_start_button.set_controllable (goto_start_controllable);
278         goto_end_button.set_controllable (goto_end_controllable);
279         auto_loop_button.set_controllable (auto_loop_controllable);
280         play_selection_button.set_controllable (play_selection_controllable);
281         rec_button.set_controllable (rec_controllable);
282
283         roll_button.set_name ("transport button");
284         stop_button.set_name ("transport button");
285         goto_start_button.set_name ("transport button");
286         goto_end_button.set_name ("transport button");
287         auto_loop_button.set_name ("transport button");
288         play_selection_button.set_name ("transport button");
289         rec_button.set_name ("transport recenable button");
290         midi_panic_button.set_name ("transport button");
291
292         last_configure_time= 0;
293         last_peak_grab = 0;
294
295         ARDOUR::Diskstream::DiskOverrun.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::disk_overrun_handler, this), gui_context());
296         ARDOUR::Diskstream::DiskUnderrun.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::disk_underrun_handler, this), gui_context());
297
298         ARDOUR::Session::VersionMismatch.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::session_format_mismatch, this, _1, _2), gui_context());
299
300         /* handle dialog requests */
301
302         ARDOUR::Session::Dialog.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::session_dialog, this, _1), gui_context());
303
304         /* handle pending state with a dialog (PROBLEM: needs to return a value and thus cannot be x-thread) */
305
306         ARDOUR::Session::AskAboutPendingState.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::pending_state_dialog, this));
307
308         /* handle Audio/MIDI setup when session requires it */
309
310         ARDOUR::Session::AudioEngineSetupRequired.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::do_audio_midi_setup, this, _1));
311
312         /* handle sr mismatch with a dialog (PROBLEM: needs to return a value and thus cannot be x-thread) */
313
314         ARDOUR::Session::AskAboutSampleRateMismatch.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::sr_mismatch_dialog, this, _1, _2));
315
316         /* handle requests to quit (coming from JACK session) */
317
318         ARDOUR::Session::Quit.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::finish, this), gui_context ());
319
320         /* tell the user about feedback */
321
322         ARDOUR::Session::FeedbackDetected.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::feedback_detected, this), gui_context ());
323         ARDOUR::Session::SuccessfulGraphSort.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::successful_graph_sort, this), gui_context ());
324
325         /* handle requests to deal with missing files */
326
327         ARDOUR::Session::MissingFile.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::missing_file, this, _1, _2, _3));
328
329         /* and ambiguous files */
330
331         ARDOUR::FileSource::AmbiguousFileName.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::ambiguous_file, this, _1, _2));
332
333         /* also plugin scan messages */
334         ARDOUR::PluginScanMessage.connect (forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::plugin_scan_dialog, this, _1, _2, _3), gui_context());
335         ARDOUR::PluginScanTimeout.connect (forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::plugin_scan_timeout, this, _1), gui_context());
336
337         ARDOUR::GUIIdle.connect (forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::gui_idle_handler, this), gui_context());
338
339         Config->ParameterChanged.connect ( forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::set_flat_buttons, this), gui_context() );
340         set_flat_buttons();
341
342         /* lets get this party started */
343
344         setup_gtk_ardour_enums ();
345         setup_profile ();
346
347         SessionEvent::create_per_thread_pool ("GUI", 512);
348
349         /* we like keyboards */
350
351         keyboard = new ArdourKeyboard(*this);
352
353         XMLNode* node = ARDOUR_UI::instance()->keyboard_settings();
354         if (node) {
355                 keyboard->set_state (*node, Stateful::loading_state_version);
356         }
357
358         /* we don't like certain modifiers */
359         Bindings::set_ignored_state (GDK_LOCK_MASK|GDK_MOD2_MASK|GDK_MOD3_MASK);
360
361         reset_dpi();
362
363         TimeAxisViewItem::set_constant_heights ();
364
365         /* Set this up so that our window proxies can register actions */
366
367         ActionManager::init ();
368
369         /* The following must happen after ARDOUR::init() so that Config is set up */
370
371         const XMLNode* ui_xml = Config->extra_xml (X_("UI"));
372
373         if (ui_xml) {
374                 key_editor.set_state (*ui_xml);
375                 rc_option_editor.set_state (*ui_xml);
376                 session_option_editor.set_state (*ui_xml);
377                 speaker_config_window.set_state (*ui_xml);
378                 about.set_state (*ui_xml);
379                 add_route_dialog.set_state (*ui_xml);
380                 add_video_dialog.set_state (*ui_xml);
381                 route_params.set_state (*ui_xml);
382                 bundle_manager.set_state (*ui_xml);
383                 location_ui.set_state (*ui_xml);
384                 big_clock_window.set_state (*ui_xml);
385                 audio_port_matrix.set_state (*ui_xml);
386                 midi_port_matrix.set_state (*ui_xml);
387                 export_video_dialog.set_state (*ui_xml);
388         }
389
390         WM::Manager::instance().register_window (&key_editor);
391         WM::Manager::instance().register_window (&rc_option_editor);
392         WM::Manager::instance().register_window (&session_option_editor);
393         WM::Manager::instance().register_window (&speaker_config_window);
394         WM::Manager::instance().register_window (&about);
395         WM::Manager::instance().register_window (&add_route_dialog);
396         WM::Manager::instance().register_window (&add_video_dialog);
397         WM::Manager::instance().register_window (&route_params);
398         WM::Manager::instance().register_window (&audio_midi_setup);
399         WM::Manager::instance().register_window (&export_video_dialog);
400         WM::Manager::instance().register_window (&bundle_manager);
401         WM::Manager::instance().register_window (&location_ui);
402         WM::Manager::instance().register_window (&big_clock_window);
403         WM::Manager::instance().register_window (&audio_port_matrix);
404         WM::Manager::instance().register_window (&midi_port_matrix);
405
406         /* Trigger setting up the color scheme and loading the GTK RC file */
407
408         ARDOUR_UI::config()->load_rc_file (false);
409         
410         _process_thread = new ProcessThread ();
411         _process_thread->init ();
412
413         DPIReset.connect (sigc::mem_fun (*this, &ARDOUR_UI::resize_text_widgets));
414
415         attach_to_engine ();
416 }
417
418 GlobalPortMatrixWindow*
419 ARDOUR_UI::create_global_port_matrix (ARDOUR::DataType type)
420 {
421         if (!_session) {
422                 return 0;
423         }
424         return new GlobalPortMatrixWindow (_session, type);
425 }
426
427 void
428 ARDOUR_UI::attach_to_engine ()
429 {
430         AudioEngine::instance()->Running.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_running, this), gui_context());
431         ARDOUR::Port::set_connecting_blocked (ARDOUR_COMMAND_LINE::no_connect_ports);
432 }
433
434 void
435 ARDOUR_UI::engine_stopped ()
436 {
437         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::engine_stopped)
438         ActionManager::set_sensitive (ActionManager::engine_sensitive_actions, false);
439         ActionManager::set_sensitive (ActionManager::engine_opposite_sensitive_actions, true);
440 }
441
442 void
443 ARDOUR_UI::engine_running ()
444 {
445         if (first_time_engine_run) {
446                 post_engine();
447                 first_time_engine_run = false;
448         } 
449         
450         update_disk_space ();
451         update_cpu_load ();
452         update_sample_rate (AudioEngine::instance()->sample_rate());
453         update_timecode_format ();
454 }
455
456 void
457 ARDOUR_UI::engine_halted (const char* reason, bool free_reason)
458 {
459         if (!Gtkmm2ext::UI::instance()->caller_is_ui_thread()) {
460                 /* we can't rely on the original string continuing to exist when we are called
461                    again in the GUI thread, so make a copy and note that we need to
462                    free it later.
463                 */
464                 char *copy = strdup (reason);
465                 Gtkmm2ext::UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_halted, this, copy, true));
466                 return;
467         }
468
469         ActionManager::set_sensitive (ActionManager::engine_sensitive_actions, false);
470         ActionManager::set_sensitive (ActionManager::engine_opposite_sensitive_actions, true);
471
472         update_sample_rate (0);
473
474         string msgstr;
475
476         /* if the reason is a non-empty string, it means that the backend was shutdown
477            rather than just Ardour.
478         */
479
480         if (strlen (reason)) {
481                 msgstr = string_compose (_("The audio backend was shutdown because:\n\n%1"), reason);
482         } else {
483                 msgstr = string_compose (_("\
484 The audio backend has either been shutdown or it\n\
485 disconnected %1 because %1\n\
486 was not fast enough. Try to restart\n\
487 the audio backend and save the session."), PROGRAM_NAME);
488         }
489
490         MessageDialog msg (*editor, msgstr);
491         pop_back_splash (msg);
492         msg.run ();
493         
494         if (free_reason) {
495                 free (const_cast<char*> (reason));
496         }
497 }
498
499 void
500 ARDOUR_UI::post_engine ()
501 {
502         /* Things to be done once (and once ONLY) after we have a backend running in the AudioEngine
503          */
504 #ifdef AUDIOUNIT_SUPPORT
505         std::string au_msg;
506         if (AUPluginInfo::au_get_crashlog(au_msg)) {
507                 popup_error(_("Audio Unit Plugin Scan Failed. Automatic AU scanning has been disabled. Please see the log window for further details."));
508                 error << _("Audio Unit Plugin Scan Failed:") << endmsg;
509                 info << au_msg << endmsg;
510         }
511 #endif
512
513         ARDOUR::init_post_engine ();
514         
515         /* connect to important signals */
516
517         AudioEngine::instance()->Stopped.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_stopped, this), gui_context());
518         AudioEngine::instance()->SampleRateChanged.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::update_sample_rate, this, _1), gui_context());
519         AudioEngine::instance()->BufferSizeChanged.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::update_sample_rate, this, _1), gui_context());
520         AudioEngine::instance()->Halted.connect_same_thread (halt_connection, boost::bind (&ARDOUR_UI::engine_halted, this, _1, false));
521
522         _tooltips.enable();
523
524         if (setup_windows ()) {
525                 throw failed_constructor ();
526         }
527
528         /* Do this after setup_windows (), as that's when the _status_bar_visibility is created */
529         XMLNode* n = Config->extra_xml (X_("UI"));
530         if (n) {
531                 _status_bar_visibility.set_state (*n);
532         }
533         
534         check_memory_locking();
535
536         /* this is the first point at which all the keybindings are available */
537
538         if (ARDOUR_COMMAND_LINE::show_key_actions) {
539                 vector<string> names;
540                 vector<string> paths;
541                 vector<string> tooltips;
542                 vector<string> keys;
543                 vector<AccelKey> bindings;
544
545                 ActionManager::get_all_actions (names, paths, tooltips, keys, bindings);
546
547                 vector<string>::iterator n;
548                 vector<string>::iterator k;
549                 vector<string>::iterator p;
550                 for (n = names.begin(), k = keys.begin(), p = paths.begin(); n != names.end(); ++n, ++k, ++p) {
551                         cout << "Action: '" << (*n) << "' bound to '" << (*k) << "' Path: '" << (*p) << "'" << endl;
552                 }
553
554                 halt_connection.disconnect ();
555                 AudioEngine::instance()->stop ();
556                 exit (0);
557         }
558
559         /* this being a GUI and all, we want peakfiles */
560
561         AudioFileSource::set_build_peakfiles (true);
562         AudioFileSource::set_build_missing_peakfiles (true);
563
564         /* set default clock modes */
565
566         if (Profile->get_sae()) {
567                 primary_clock->set_mode (AudioClock::BBT);
568                 secondary_clock->set_mode (AudioClock::MinSec);
569         }  else {
570                 primary_clock->set_mode (AudioClock::Timecode);
571                 secondary_clock->set_mode (AudioClock::BBT);
572         }
573
574         /* start the time-of-day-clock */
575
576 #ifndef GTKOSX
577         /* OS X provides a nearly-always visible wallclock, so don't be stupid */
578         update_wall_clock ();
579         Glib::signal_timeout().connect_seconds (sigc::mem_fun(*this, &ARDOUR_UI::update_wall_clock), 1);
580 #endif
581
582         {
583                 DisplaySuspender ds;
584                 Config->ParameterChanged.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::parameter_changed, this, _1), gui_context());
585                 boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
586                 Config->map_parameters (pc);
587
588                 ui_config->map_parameters (pc);
589         }
590 }
591
592 ARDOUR_UI::~ARDOUR_UI ()
593 {
594         ui_config->save_state();
595
596         stop_video_server();
597
598         if (getenv ("ARDOUR_RUNNING_UNDER_VALGRIND")) {
599                 // don't bother at 'real' exit. the OS cleans up for us.
600                 delete big_clock;
601                 delete primary_clock;
602                 delete secondary_clock;
603                 delete _process_thread;
604                 delete gui_object_state;
605                 FastMeter::flush_pattern_cache ();
606         }
607 }
608
609 void
610 ARDOUR_UI::pop_back_splash (Gtk::Window& win)
611 {
612         if (Splash::instance()) {
613                 Splash::instance()->pop_back_for (win);
614         }
615 }
616
617 gint
618 ARDOUR_UI::configure_timeout ()
619 {
620         if (last_configure_time == 0) {
621                 /* no configure events yet */
622                 return true;
623         }
624
625         /* force a gap of 0.5 seconds since the last configure event
626          */
627
628         if (get_microseconds() - last_configure_time < 500000) {
629                 return true;
630         } else {
631                 have_configure_timeout = false;
632                 save_ardour_state ();
633                 return false;
634         }
635 }
636
637 gboolean
638 ARDOUR_UI::configure_handler (GdkEventConfigure* /*conf*/)
639 {
640         if (have_configure_timeout) {
641                 last_configure_time = get_microseconds();
642         } else {
643                 Glib::signal_timeout().connect (sigc::mem_fun(*this, &ARDOUR_UI::configure_timeout), 100);
644                 have_configure_timeout = true;
645         }
646
647         return FALSE;
648 }
649
650 void
651 ARDOUR_UI::set_transport_controllable_state (const XMLNode& node)
652 {
653         const XMLProperty* prop;
654
655         if ((prop = node.property ("roll")) != 0) {
656                 roll_controllable->set_id (prop->value());
657         }
658         if ((prop = node.property ("stop")) != 0) {
659                 stop_controllable->set_id (prop->value());
660         }
661         if ((prop = node.property ("goto-start")) != 0) {
662                 goto_start_controllable->set_id (prop->value());
663         }
664         if ((prop = node.property ("goto-end")) != 0) {
665                 goto_end_controllable->set_id (prop->value());
666         }
667         if ((prop = node.property ("auto-loop")) != 0) {
668                 auto_loop_controllable->set_id (prop->value());
669         }
670         if ((prop = node.property ("play-selection")) != 0) {
671                 play_selection_controllable->set_id (prop->value());
672         }
673         if ((prop = node.property ("rec")) != 0) {
674                 rec_controllable->set_id (prop->value());
675         }
676         if ((prop = node.property ("shuttle")) != 0) {
677                 shuttle_box->controllable()->set_id (prop->value());
678         }
679 }
680
681 XMLNode&
682 ARDOUR_UI::get_transport_controllable_state ()
683 {
684         XMLNode* node = new XMLNode(X_("TransportControllables"));
685         char buf[64];
686
687         roll_controllable->id().print (buf, sizeof (buf));
688         node->add_property (X_("roll"), buf);
689         stop_controllable->id().print (buf, sizeof (buf));
690         node->add_property (X_("stop"), buf);
691         goto_start_controllable->id().print (buf, sizeof (buf));
692         node->add_property (X_("goto_start"), buf);
693         goto_end_controllable->id().print (buf, sizeof (buf));
694         node->add_property (X_("goto_end"), buf);
695         auto_loop_controllable->id().print (buf, sizeof (buf));
696         node->add_property (X_("auto_loop"), buf);
697         play_selection_controllable->id().print (buf, sizeof (buf));
698         node->add_property (X_("play_selection"), buf);
699         rec_controllable->id().print (buf, sizeof (buf));
700         node->add_property (X_("rec"), buf);
701         shuttle_box->controllable()->id().print (buf, sizeof (buf));
702         node->add_property (X_("shuttle"), buf);
703
704         return *node;
705 }
706
707 void
708 ARDOUR_UI::save_session_at_its_request (std::string snapshot_name)
709 {
710         if (_session) {
711                 _session->save_state (snapshot_name);
712         }
713 }
714
715 gint
716 ARDOUR_UI::autosave_session ()
717 {
718         if (g_main_depth() > 1) {
719                 /* inside a recursive main loop,
720                    give up because we may not be able to
721                    take a lock.
722                 */
723                 return 1;
724         }
725
726         if (!Config->get_periodic_safety_backups()) {
727                 return 1;
728         }
729
730         if (_session) {
731                 _session->maybe_write_autosave();
732         }
733
734         return 1;
735 }
736
737 void
738 ARDOUR_UI::update_autosave ()
739 {
740         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::update_autosave)
741
742         if (_session && _session->dirty()) {
743                 if (_autosave_connection.connected()) {
744                         _autosave_connection.disconnect();
745                 }
746
747                 _autosave_connection = Glib::signal_timeout().connect (sigc::mem_fun (*this, &ARDOUR_UI::autosave_session),
748                                 Config->get_periodic_safety_backup_interval() * 1000);
749
750         } else {
751                 if (_autosave_connection.connected()) {
752                         _autosave_connection.disconnect();
753                 }
754         }
755 }
756
757 void
758 ARDOUR_UI::check_announcements ()
759 {
760 #ifdef PHONE_HOME
761         string _annc_filename;
762
763 #ifdef __APPLE__
764         _annc_filename = PROGRAM_NAME "_announcements_osx_";
765 #else
766         _annc_filename = PROGRAM_NAME "_announcements_linux_";
767 #endif
768         _annc_filename.append (VERSIONSTRING);
769
770         std::string path = Glib::build_filename (user_config_directory(), _annc_filename);
771         std::ifstream announce_file (path.c_str());
772         if ( announce_file.fail() )
773                 _announce_string = "";
774         else {
775                 std::stringstream oss;
776                 oss << announce_file.rdbuf();
777                 _announce_string = oss.str();
778         }
779
780         pingback (VERSIONSTRING, path);
781 #endif
782 }
783
784 int
785 ARDOUR_UI::starting ()
786 {
787         Application* app = Application::instance ();
788         const char *nsm_url;
789         bool brand_new_user = ArdourStartup::required ();
790
791         app->ShouldQuit.connect (sigc::mem_fun (*this, &ARDOUR_UI::queue_finish));
792         app->ShouldLoad.connect (sigc::mem_fun (*this, &ARDOUR_UI::load_from_application_api));
793
794         if (ARDOUR_COMMAND_LINE::check_announcements) {
795                 check_announcements ();
796         }
797
798         app->ready ();
799
800         /* we need to create this early because it may need to set the
801          *  audio backend end up.
802          */
803         
804         try {
805                 audio_midi_setup.get (true);
806         } catch (...) {
807                 std::cerr << "audio-midi engine setup failed."<< std::endl;
808                 return -1;
809         }
810
811         if ((nsm_url = g_getenv ("NSM_URL")) != 0) {
812                 nsm = new NSM_Client;
813                 if (!nsm->init (nsm_url)) {
814                         nsm->announce (PROGRAM_NAME, ":dirty:", "ardour3");
815
816                         unsigned int i = 0;
817                         // wait for announce reply from nsm server
818                         for ( i = 0; i < 5000; ++i) {
819                                 nsm->check ();
820
821                                 Glib::usleep (i);
822                                 if (nsm->is_active()) {
823                                         break;
824                                 }
825                         }
826                         if (i == 5000) {
827                                 error << _("NSM server did not announce itself") << endmsg;
828                                 return -1;
829                         }
830                         // wait for open command from nsm server
831                         for ( i = 0; i < 5000; ++i) {
832                                 nsm->check ();
833                                 Glib::usleep (1000);
834                                 if (nsm->client_id ()) {
835                                         break;
836                                 }
837                         }
838
839                         if (i == 5000) {
840                                 error << _("NSM: no client ID provided") << endmsg;
841                                 return -1;
842                         }
843
844                         if (_session && nsm) {
845                                 _session->set_nsm_state( nsm->is_active() );
846                         } else {
847                                 error << _("NSM: no session created") << endmsg;
848                                 return -1;
849                         }
850
851                         // nsm requires these actions disabled
852                         vector<string> action_names;
853                         action_names.push_back("SaveAs");
854                         action_names.push_back("Rename");
855                         action_names.push_back("New");
856                         action_names.push_back("Open");
857                         action_names.push_back("Recent");
858                         action_names.push_back("Close");
859
860                         for (vector<string>::const_iterator n = action_names.begin(); n != action_names.end(); ++n) {
861                                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Main"), (*n).c_str());
862                                 if (act) {
863                                         act->set_sensitive (false);
864                                 }
865                         }
866
867                 } else {
868                         delete nsm;
869                         nsm = 0;
870                         error << _("NSM: initialization failed") << endmsg;
871                         return -1;
872                 }
873
874         } else  {
875                 
876                 if (brand_new_user) {
877                         ArdourStartup s;
878                         s.present ();
879                         main().run();
880                         s.hide ();
881                         switch (s.response ()) {
882                         case Gtk::RESPONSE_OK:
883                                 break;
884                         default:
885                                 return -1;
886                         }
887                 }
888
889 #ifdef NO_PLUGIN_STATE
890
891                 ARDOUR::RecentSessions rs;
892                 ARDOUR::read_recent_sessions (rs);
893
894                 string path = Glib::build_filename (user_config_directory(), ".iknowaboutfreeversion");
895                 
896                 if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS) && !rs.empty()) {
897                         
898                         /* already used Ardour, have sessions ... warn about plugin state */
899                         
900                         ArdourDialog d (_("Free/Demo Version Warning"), true);
901                         Label l;
902                         Button b (string_compose (_("Subscribe and support development of %1"), PROGRAM_NAME));
903                         CheckButton c (_("Don't warn me about this again"));
904                         
905                         l.set_markup (string_compose (_("<span weight=\"bold\" size=\"large\">%1</span>\n\n<b>%2</b>\n\n<i>%3</i>\n\n%4"),
906                                                       string_compose (_("This is a free/demo version of %1"), PROGRAM_NAME),
907                                                       _("It will not restore OR save any plugin settings"),
908                                                       _("If you load an existing session with plugin settings\n"
909                                                         "they will not be used and will be lost."),
910                                                       _("To get full access to updates without this limitation\n"
911                                                         "consider becoming a subscriber for a low cost every month.")));
912                         l.set_justify (JUSTIFY_CENTER);
913                         
914                         b.signal_clicked().connect (mem_fun(*this, &ARDOUR_UI::launch_subscribe));
915                         
916                         d.get_vbox()->pack_start (l, true, true);
917                         d.get_vbox()->pack_start (b, false, false, 12);
918                         d.get_vbox()->pack_start (c, false, false, 12);
919                         
920                         d.add_button (_("Quit now"), RESPONSE_CANCEL);
921                         d.add_button (string_compose (_("Continue using %1"), PROGRAM_NAME), RESPONSE_OK);
922                         
923                         d.show_all ();
924
925                         c.signal_toggled().connect (sigc::hide_return (sigc::bind (sigc::ptr_fun (toggle_file_existence), path)));
926                         
927                         if (d.run () != RESPONSE_OK) {
928                                 _exit (0);
929                         }
930                 }
931 #endif
932                         
933                 /* go get a session */
934
935                 const bool new_session_required = (ARDOUR_COMMAND_LINE::new_session || brand_new_user);
936
937                 if (get_session_parameters (false, new_session_required, ARDOUR_COMMAND_LINE::load_template)) {
938                         std::cerr << "Cannot get session parameters."<< std::endl;
939                         return -1;
940                 }
941         }
942
943         use_config ();
944
945         goto_editor_window ();
946
947         WM::Manager::instance().show_visible ();
948
949         /* We have to do this here since goto_editor_window() ends up calling show_all() on the
950          * editor window, and we may want stuff to be hidden.
951          */
952         _status_bar_visibility.update ();
953
954         BootMessage (string_compose (_("%1 is ready for use"), PROGRAM_NAME));
955         return 0;
956 }
957
958 void
959 ARDOUR_UI::check_memory_locking ()
960 {
961 #if defined(__APPLE__) || defined(PLATFORM_WINDOWS)
962         /* OS X doesn't support mlockall(2), and so testing for memory locking capability there is pointless */
963         return;
964 #else // !__APPLE__
965
966         XMLNode* memory_warning_node = Config->instant_xml (X_("no-memory-warning"));
967
968         if (AudioEngine::instance()->is_realtime() && memory_warning_node == 0) {
969
970                 struct rlimit limits;
971                 int64_t ram;
972                 long pages, page_size;
973 #ifdef __FreeBSD__
974                 size_t pages_len=sizeof(pages);
975                 if ((page_size = getpagesize()) < 0 ||
976                                 sysctlbyname("hw.availpages", &pages, &pages_len, NULL, 0))
977 #else
978                 if ((page_size = sysconf (_SC_PAGESIZE)) < 0 ||(pages = sysconf (_SC_PHYS_PAGES)) < 0)
979 #endif
980                 {
981                         ram = 0;
982                 } else {
983                         ram = (int64_t) pages * (int64_t) page_size;
984                 }
985
986                 if (getrlimit (RLIMIT_MEMLOCK, &limits)) {
987                         return;
988                 }
989
990                 if (limits.rlim_cur != RLIM_INFINITY) {
991
992                         if (ram == 0 || ((double) limits.rlim_cur / ram) < 0.75) {
993
994                                 MessageDialog msg (
995                                         string_compose (
996                                                 _("WARNING: Your system has a limit for maximum amount of locked memory. "
997                                                   "This might cause %1 to run out of memory before your system "
998                                                   "runs out of memory. \n\n"
999                                                   "You can view the memory limit with 'ulimit -l', "
1000                                                   "and it is normally controlled by %2"),
1001                                                 PROGRAM_NAME, 
1002 #ifdef __FreeBSD__
1003                                                 X_("/etc/login.conf")
1004 #else
1005                                                 X_(" /etc/security/limits.conf")
1006 #endif
1007                                         ).c_str());
1008
1009                                 msg.set_default_response (RESPONSE_OK);
1010
1011                                 VBox* vbox = msg.get_vbox();
1012                                 HBox hbox;
1013                                 CheckButton cb (_("Do not show this window again"));
1014                                 hbox.pack_start (cb, true, false);
1015                                 vbox->pack_start (hbox);
1016                                 cb.show();
1017                                 vbox->show();
1018                                 hbox.show ();
1019
1020                                 pop_back_splash (msg);
1021
1022                                 editor->ensure_float (msg);
1023                                 msg.run ();
1024
1025                                 if (cb.get_active()) {
1026                                         XMLNode node (X_("no-memory-warning"));
1027                                         Config->add_instant_xml (node);
1028                                 }
1029                         }
1030                 }
1031         }
1032 #endif // !__APPLE__
1033 }
1034
1035
1036 void
1037 ARDOUR_UI::queue_finish ()
1038 {
1039         Glib::signal_idle().connect (mem_fun (*this, &ARDOUR_UI::idle_finish));
1040 }
1041
1042 bool
1043 ARDOUR_UI::idle_finish ()
1044 {
1045         finish ();
1046         return false; /* do not call again */
1047 }
1048
1049 void
1050 ARDOUR_UI::finish()
1051 {
1052         if (_session) {
1053                 ARDOUR_UI::instance()->video_timeline->sync_session_state();
1054
1055                 if (_session->dirty()) {
1056                         vector<string> actions;
1057                         actions.push_back (_("Don't quit"));
1058                         actions.push_back (_("Just quit"));
1059                         actions.push_back (_("Save and quit"));
1060                         switch (ask_about_saving_session(actions)) {
1061                         case -1:
1062                                 return;
1063                                 break;
1064                         case 1:
1065                                 /* use the default name */
1066                                 if (save_state_canfail ("")) {
1067                                         /* failed - don't quit */
1068                                         MessageDialog msg (*editor,
1069                                                            string_compose (_("\
1070 %1 was unable to save your session.\n\n\
1071 If you still wish to quit, please use the\n\n\
1072 \"Just quit\" option."), PROGRAM_NAME));
1073                                         pop_back_splash(msg);
1074                                         msg.run ();
1075                                         return;
1076                                 }
1077                                 break;
1078                         case 0:
1079                                 break;
1080                         }
1081                 }
1082
1083                 second_connection.disconnect ();
1084                 point_one_second_connection.disconnect ();
1085                 point_zero_something_second_connection.disconnect();
1086                 fps_connection.disconnect();
1087         }
1088
1089         delete ARDOUR_UI::instance()->video_timeline;
1090         ARDOUR_UI::instance()->video_timeline = NULL;
1091         stop_video_server();
1092
1093         /* Save state before deleting the session, as that causes some
1094            windows to be destroyed before their visible state can be
1095            saved.
1096         */
1097         save_ardour_state ();
1098
1099         close_all_dialogs ();
1100
1101         if (_session) {
1102                 _session->set_clean ();
1103                 _session->remove_pending_capture_state ();
1104                 delete _session;
1105                 _session = 0;
1106         }
1107
1108         halt_connection.disconnect ();
1109         AudioEngine::instance()->stop ();
1110 #ifdef WINDOWS_VST_SUPPORT
1111         fst_stop_threading();
1112 #endif
1113         quit ();
1114 }
1115
1116 int
1117 ARDOUR_UI::ask_about_saving_session (const vector<string>& actions)
1118 {
1119         ArdourDialog window (_("Unsaved Session"));
1120         Gtk::HBox dhbox;  // the hbox for the image and text
1121         Gtk::Label  prompt_label;
1122         Gtk::Image* dimage = manage (new Gtk::Image(Stock::DIALOG_WARNING,  Gtk::ICON_SIZE_DIALOG));
1123
1124         string msg;
1125
1126         assert (actions.size() >= 3);
1127
1128         window.add_button (actions[0], RESPONSE_REJECT);
1129         window.add_button (actions[1], RESPONSE_APPLY);
1130         window.add_button (actions[2], RESPONSE_ACCEPT);
1131
1132         window.set_default_response (RESPONSE_ACCEPT);
1133
1134         Gtk::Button noquit_button (msg);
1135         noquit_button.set_name ("EditorGTKButton");
1136
1137         string prompt;
1138
1139         if (_session->snap_name() == _session->name()) {
1140                 prompt = string_compose(_("The session \"%1\"\nhas not been saved.\n\nAny changes made this time\nwill be lost unless you save it.\n\nWhat do you want to do?"),
1141                                         _session->snap_name());
1142         } else {
1143                 prompt = string_compose(_("The snapshot \"%1\"\nhas not been saved.\n\nAny changes made this time\nwill be lost unless you save it.\n\nWhat do you want to do?"),
1144                                         _session->snap_name());
1145         }
1146
1147         prompt_label.set_text (prompt);
1148         prompt_label.set_name (X_("PrompterLabel"));
1149         prompt_label.set_alignment(ALIGN_LEFT, ALIGN_TOP);
1150
1151         dimage->set_alignment(ALIGN_CENTER, ALIGN_TOP);
1152         dhbox.set_homogeneous (false);
1153         dhbox.pack_start (*dimage, false, false, 5);
1154         dhbox.pack_start (prompt_label, true, false, 5);
1155         window.get_vbox()->pack_start (dhbox);
1156
1157         window.set_name (_("Prompter"));
1158         window.set_modal (true);
1159         window.set_resizable (false);
1160
1161         dhbox.show();
1162         prompt_label.show();
1163         dimage->show();
1164         window.show();
1165         window.present ();
1166
1167         ResponseType r = (ResponseType) window.run();
1168
1169         window.hide ();
1170
1171         switch (r) {
1172         case RESPONSE_ACCEPT: // save and get out of here
1173                 return 1;
1174         case RESPONSE_APPLY:  // get out of here
1175                 return 0;
1176         default:
1177                 break;
1178         }
1179
1180         return -1;
1181 }
1182
1183
1184 void
1185 ARDOUR_UI::every_second ()
1186 {
1187         update_cpu_load ();
1188         update_buffer_load ();
1189         update_disk_space ();
1190         update_timecode_format ();
1191
1192         if (nsm && nsm->is_active ()) {
1193                 nsm->check ();
1194
1195                 if (!_was_dirty && _session->dirty ()) {
1196                         nsm->is_dirty ();
1197                         _was_dirty = true;
1198                 }
1199                 else if (_was_dirty && !_session->dirty ()){
1200                         nsm->is_clean ();
1201                         _was_dirty = false;
1202                 }
1203         }
1204 }
1205
1206 void
1207 ARDOUR_UI::every_point_one_seconds ()
1208 {
1209         // TODO get rid of this..
1210         // ShuttleControl is updated directly via TransportStateChange signal
1211 }
1212
1213 void
1214 ARDOUR_UI::every_point_zero_something_seconds ()
1215 {
1216         // august 2007: actual update frequency: 25Hz (40ms), not 100Hz
1217
1218         if (editor_meter && ARDOUR_UI::config()->get_show_editor_meter()) {
1219                 float mpeak = editor_meter->update_meters();
1220                 if (mpeak > editor_meter_max_peak) {
1221                         if (mpeak >= ARDOUR_UI::config()->get_meter_peak()) {
1222                                 editor_meter_peak_display.set_active_state ( Gtkmm2ext::ExplicitActive );
1223                         }
1224                 }
1225         }
1226 }
1227
1228 void
1229 ARDOUR_UI::set_fps_timeout_connection ()
1230 {
1231         unsigned int interval = 40;
1232         if (!_session) return;
1233         if (_session->timecode_frames_per_second() != 0) {
1234                 /* ideally we'll use a select() to sleep and not accumulate
1235                  * idle time to provide a regular periodic signal.
1236                  * See linux_vst_gui_support.cc 'elapsed_time_ms'.
1237                  * However, that'll require a dedicated thread and cross-thread
1238                  * signals to the GUI Thread..
1239                  */
1240                 interval = floor(500. /* update twice per FPS, since Glib::signal_timeout is very irregular */
1241                                 * _session->frame_rate() / _session->nominal_frame_rate()
1242                                 / _session->timecode_frames_per_second()
1243                                 );
1244 #ifdef PLATFORM_WINDOWS
1245                 // the smallest windows scheduler time-slice is ~15ms.
1246                 // periodic GUI timeouts shorter than that will cause
1247                 // WaitForSingleObject to spinlock (100% of one CPU Core)
1248                 // and gtk never enters idle mode.
1249                 // also changing timeBeginPeriod(1) does not affect that in
1250                 // any beneficial way, so we just limit the max rate for now.
1251                 interval = std::max(30u, interval); // at most ~33Hz.
1252 #else
1253                 interval = std::max(8u, interval); // at most 120Hz.
1254 #endif
1255         }
1256         fps_connection.disconnect();
1257         Timers::set_fps_interval (interval);
1258 }
1259
1260 void
1261 ARDOUR_UI::update_sample_rate (framecnt_t)
1262 {
1263         char buf[64];
1264
1265         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::update_sample_rate, ignored)
1266
1267         if (!AudioEngine::instance()->connected()) {
1268
1269                 snprintf (buf, sizeof (buf), "%s", _("Audio: <span foreground=\"red\">none</span>"));
1270
1271         } else {
1272
1273                 framecnt_t rate = AudioEngine::instance()->sample_rate();
1274
1275                 if (rate == 0) {
1276                         /* no sample rate available */
1277                         snprintf (buf, sizeof (buf), "%s", _("Audio: <span foreground=\"red\">none</span>"));
1278                 } else {
1279
1280                         if (fmod (rate, 1000.0) != 0.0) {
1281                                 snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"green\">%.1f kHz / %4.1f ms</span>"),
1282                                           (float) rate / 1000.0f,
1283                                           (AudioEngine::instance()->usecs_per_cycle() / 1000.0f));
1284                         } else {
1285                                 snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"green\">%" PRId64 " kHz / %4.1f ms</span>"),
1286                                           rate/1000,
1287                                           (AudioEngine::instance()->usecs_per_cycle() / 1000.0f));
1288                         }
1289                 }
1290         }
1291         sample_rate_label.set_markup (buf);
1292 }
1293
1294 void
1295 ARDOUR_UI::update_format ()
1296 {
1297         if (!_session) {
1298                 format_label.set_text ("");
1299                 return;
1300         }
1301
1302         stringstream s;
1303         s << _("File:") << X_(" <span foreground=\"green\">");
1304
1305         switch (_session->config.get_native_file_header_format ()) {
1306         case BWF:
1307                 s << _("BWF");
1308                 break;
1309         case WAVE:
1310                 s << _("WAV");
1311                 break;
1312         case WAVE64:
1313                 s << _("WAV64");
1314                 break;
1315         case CAF:
1316                 s << _("CAF");
1317                 break;
1318         case AIFF:
1319                 s << _("AIFF");
1320                 break;
1321         case iXML:
1322                 s << _("iXML");
1323                 break;
1324         case RF64:
1325                 s << _("RF64");
1326                 break;
1327         }
1328
1329         s << " ";
1330         
1331         switch (_session->config.get_native_file_data_format ()) {
1332         case FormatFloat:
1333                 s << _("32-float");
1334                 break;
1335         case FormatInt24:
1336                 s << _("24-int");
1337                 break;
1338         case FormatInt16:
1339                 s << _("16-int");
1340                 break;
1341         }
1342
1343         s << X_("</span>");
1344
1345         format_label.set_markup (s.str ());
1346 }
1347
1348 void
1349 ARDOUR_UI::update_cpu_load ()
1350 {
1351         char buf[64];
1352
1353         /* If this text is changed, the set_size_request_to_display_given_text call in ARDOUR_UI::resize_text_widgets
1354            should also be changed.
1355         */
1356
1357         double const c = AudioEngine::instance()->get_dsp_load ();
1358         snprintf (buf, sizeof (buf), _("DSP: <span foreground=\"%s\">%5.1f%%</span>"), c >= 90 ? X_("red") : X_("green"), c);
1359         cpu_load_label.set_markup (buf);
1360 }
1361
1362 void
1363 ARDOUR_UI::update_buffer_load ()
1364 {
1365         char buf[256];
1366
1367         uint32_t const playback = _session ? _session->playback_load () : 100;
1368         uint32_t const capture = _session ? _session->capture_load () : 100;
1369
1370         /* If this text is changed, the set_size_request_to_display_given_text call in ARDOUR_UI::resize_text_widgets
1371            should also be changed.
1372         */
1373         
1374         if (_session) {
1375                 snprintf (
1376                         buf, sizeof (buf),
1377                         _("Buffers: <span foreground=\"green\">p:</span><span foreground=\"%s\">%" PRIu32 "%%</span> "
1378                                    "<span foreground=\"green\">c:</span><span foreground=\"%s\">%" PRIu32 "%%</span>"),
1379                         playback <= 5 ? X_("red") : X_("green"),
1380                         playback,
1381                         capture <= 5 ? X_("red") : X_("green"),
1382                         capture
1383                         );
1384
1385                 buffer_load_label.set_markup (buf);
1386         } else {
1387                 buffer_load_label.set_text ("");
1388         }
1389 }
1390
1391 void
1392 ARDOUR_UI::count_recenabled_streams (Route& route)
1393 {
1394         Track* track = dynamic_cast<Track*>(&route);
1395         if (track && track->record_enabled()) {
1396                 rec_enabled_streams += track->n_inputs().n_total();
1397         }
1398 }
1399
1400 void
1401 ARDOUR_UI::update_disk_space()
1402 {
1403         if (_session == 0) {
1404                 return;
1405         }
1406
1407         boost::optional<framecnt_t> opt_frames = _session->available_capture_duration();
1408         char buf[64];
1409         framecnt_t fr = _session->frame_rate();
1410
1411         if (fr == 0) {
1412                 /* skip update - no SR available */
1413                 return;
1414         }
1415
1416         if (!opt_frames) {
1417                 /* Available space is unknown */
1418                 snprintf (buf, sizeof (buf), "%s", _("Disk: <span foreground=\"green\">Unknown</span>"));
1419         } else if (opt_frames.get_value_or (0) == max_framecnt) {
1420                 snprintf (buf, sizeof (buf), "%s", _("Disk: <span foreground=\"green\">24hrs+</span>"));
1421         } else {
1422                 rec_enabled_streams = 0;
1423                 _session->foreach_route (this, &ARDOUR_UI::count_recenabled_streams, false);
1424
1425                 framecnt_t frames = opt_frames.get_value_or (0);
1426
1427                 if (rec_enabled_streams) {
1428                         frames /= rec_enabled_streams;
1429                 }
1430
1431                 int hrs;
1432                 int mins;
1433                 int secs;
1434
1435                 hrs  = frames / (fr * 3600);
1436
1437                 if (hrs > 24) {
1438                         snprintf (buf, sizeof (buf), "%s", _("Disk: <span foreground=\"green\">&gt;24 hrs</span>"));
1439                 } else {
1440                         frames -= hrs * fr * 3600;
1441                         mins = frames / (fr * 60);
1442                         frames -= mins * fr * 60;
1443                         secs = frames / fr;
1444                         
1445                         bool const low = (hrs == 0 && mins <= 30);
1446                         
1447                         snprintf (
1448                                 buf, sizeof(buf),
1449                                 _("Disk: <span foreground=\"%s\">%02dh:%02dm:%02ds</span>"),
1450                                 low ? X_("red") : X_("green"),
1451                                 hrs, mins, secs
1452                                 );
1453                 }
1454         }
1455
1456         disk_space_label.set_markup (buf);
1457 }
1458
1459 void
1460 ARDOUR_UI::update_timecode_format ()
1461 {
1462         char buf[64];
1463
1464         if (_session) {
1465                 bool matching;
1466                 TimecodeSlave* tcslave;
1467                 SyncSource sync_src = Config->get_sync_source();
1468
1469                 if ((sync_src == LTC || sync_src == MTC) && (tcslave = dynamic_cast<TimecodeSlave*>(_session->slave())) != 0) {
1470                         matching = (tcslave->apparent_timecode_format() == _session->config.get_timecode_format());
1471                 } else {
1472                         matching = true;
1473                 }
1474                         
1475                 snprintf (buf, sizeof (buf), S_("Timecode|TC: <span foreground=\"%s\">%s</span>"),
1476                           matching ? X_("green") : X_("red"),
1477                           Timecode::timecode_format_name (_session->config.get_timecode_format()).c_str());
1478         } else {
1479                 snprintf (buf, sizeof (buf), "TC: n/a");
1480         }
1481
1482         timecode_format_label.set_markup (buf);
1483 }       
1484
1485 gint
1486 ARDOUR_UI::update_wall_clock ()
1487 {
1488         time_t now;
1489         struct tm *tm_now;
1490         static int last_min = -1;
1491
1492         time (&now);
1493         tm_now = localtime (&now);
1494         if (last_min != tm_now->tm_min) {
1495                 char buf[16];
1496                 sprintf (buf, "%02d:%02d", tm_now->tm_hour, tm_now->tm_min);
1497                 wall_clock_label.set_text (buf);
1498                 last_min = tm_now->tm_min;
1499         }
1500
1501         return TRUE;
1502 }
1503
1504 void
1505 ARDOUR_UI::redisplay_recent_sessions ()
1506 {
1507         std::vector<std::string> session_directories;
1508         RecentSessionsSorter cmp;
1509
1510         recent_session_display.set_model (Glib::RefPtr<TreeModel>(0));
1511         recent_session_model->clear ();
1512
1513         ARDOUR::RecentSessions rs;
1514         ARDOUR::read_recent_sessions (rs);
1515
1516         if (rs.empty()) {
1517                 recent_session_display.set_model (recent_session_model);
1518                 return;
1519         }
1520
1521         // sort them alphabetically
1522         sort (rs.begin(), rs.end(), cmp);
1523
1524         for (ARDOUR::RecentSessions::iterator i = rs.begin(); i != rs.end(); ++i) {
1525                 session_directories.push_back ((*i).second);
1526         }
1527
1528         for (vector<std::string>::const_iterator i = session_directories.begin();
1529                         i != session_directories.end(); ++i)
1530         {
1531                 std::vector<std::string> state_file_paths;
1532
1533                 // now get available states for this session
1534
1535                 get_state_files_in_directory (*i, state_file_paths);
1536
1537                 vector<string> states;
1538                 vector<const gchar*> item;
1539                 string fullpath = *i;
1540
1541                 /* remove any trailing / */
1542
1543                 if (fullpath[fullpath.length() - 1] == '/') {
1544                         fullpath = fullpath.substr (0, fullpath.length() - 1);
1545                 }
1546
1547                 /* check whether session still exists */
1548                 if (!Glib::file_test(fullpath.c_str(), Glib::FILE_TEST_EXISTS)) {
1549                         /* session doesn't exist */
1550                         continue;
1551                 }
1552
1553                 /* now get available states for this session */
1554                 states = Session::possible_states (fullpath);
1555
1556                 if (states.empty()) {
1557                         /* no state file? */
1558                         continue;
1559                 }
1560
1561                 std::vector<string> state_file_names(get_file_names_no_extension (state_file_paths));
1562
1563                 Gtk::TreeModel::Row row = *(recent_session_model->append());
1564
1565                 row[recent_session_columns.fullpath] = fullpath;
1566                 row[recent_session_columns.tip] = Glib::Markup::escape_text (fullpath);
1567
1568                 if (state_file_names.size() > 1) {
1569                         // multiple session files in the session directory - show the directory name.
1570                         row[recent_session_columns.visible_name] = Glib::path_get_basename (fullpath);
1571
1572                         // add the children
1573                         for (std::vector<std::string>::iterator i2 = state_file_names.begin();
1574                                         i2 != state_file_names.end(); ++i2)
1575                         {
1576
1577                                 Gtk::TreeModel::Row child_row = *(recent_session_model->append (row.children()));
1578
1579                                 child_row[recent_session_columns.visible_name] = *i2;
1580                                 child_row[recent_session_columns.fullpath] = fullpath;
1581                                 child_row[recent_session_columns.tip] = Glib::Markup::escape_text (fullpath);
1582                         }
1583                 } else {
1584                         // only a single session file in the directory - show its actual name.
1585                         row[recent_session_columns.visible_name] = state_file_names.front ();
1586                 }
1587         }
1588
1589         recent_session_display.set_tooltip_column(1); // recent_session_columns.tip
1590         recent_session_display.set_model (recent_session_model);
1591 }
1592
1593 void
1594 ARDOUR_UI::build_session_selector ()
1595 {
1596         session_selector_window = new ArdourDialog (_("Recent Sessions"));
1597
1598         Gtk::ScrolledWindow *scroller = manage (new Gtk::ScrolledWindow);
1599
1600         session_selector_window->add_button (Stock::CANCEL, RESPONSE_CANCEL);
1601         session_selector_window->add_button (Stock::OPEN, RESPONSE_ACCEPT);
1602         session_selector_window->set_default_response (RESPONSE_ACCEPT);
1603         recent_session_model = TreeStore::create (recent_session_columns);
1604         recent_session_display.set_model (recent_session_model);
1605         recent_session_display.append_column (_("Recent Sessions"), recent_session_columns.visible_name);
1606         recent_session_display.set_headers_visible (false);
1607         recent_session_display.get_selection()->set_mode (SELECTION_BROWSE);
1608         recent_session_display.signal_row_activated().connect (sigc::mem_fun (*this, &ARDOUR_UI::recent_session_row_activated));
1609
1610         scroller->add (recent_session_display);
1611         scroller->set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
1612
1613         session_selector_window->set_name ("SessionSelectorWindow");
1614         session_selector_window->set_size_request (200, 400);
1615         session_selector_window->get_vbox()->pack_start (*scroller);
1616
1617         recent_session_display.show();
1618         scroller->show();
1619 }
1620
1621 void
1622 ARDOUR_UI::recent_session_row_activated (const TreePath& /*path*/, TreeViewColumn* /*col*/)
1623 {
1624         session_selector_window->response (RESPONSE_ACCEPT);
1625 }
1626
1627 void
1628 ARDOUR_UI::open_recent_session ()
1629 {
1630         bool can_return = (_session != 0);
1631
1632         if (session_selector_window == 0) {
1633                 build_session_selector ();
1634         }
1635
1636         redisplay_recent_sessions ();
1637
1638         while (true) {
1639
1640                 ResponseType r = (ResponseType) session_selector_window->run ();
1641
1642                 switch (r) {
1643                 case RESPONSE_ACCEPT:
1644                         break;
1645                 default:
1646                         if (can_return) {
1647                                 session_selector_window->hide();
1648                                 return;
1649                         } else {
1650                                 exit (1);
1651                         }
1652                 }
1653
1654                 if (recent_session_display.get_selection()->count_selected_rows() == 0) {
1655                         continue;
1656                 }
1657
1658                 session_selector_window->hide();
1659
1660                 Gtk::TreeModel::iterator i = recent_session_display.get_selection()->get_selected();
1661
1662                 if (i == recent_session_model->children().end()) {
1663                         return;
1664                 }
1665
1666                 std::string path = (*i)[recent_session_columns.fullpath];
1667                 std::string state = (*i)[recent_session_columns.visible_name];
1668
1669                 _session_is_new = false;
1670
1671                 if (load_session (path, state) == 0) {
1672                         break;
1673                 }
1674
1675                 can_return = false;
1676         }
1677 }
1678
1679 bool
1680 ARDOUR_UI::check_audioengine ()
1681 {
1682         if (!AudioEngine::instance()->connected()) {
1683                 MessageDialog msg (string_compose (
1684                                            _("%1 is not connected to any audio backend.\n"
1685                                              "You cannot open or close sessions in this condition"),
1686                                            PROGRAM_NAME));
1687                 pop_back_splash (msg);
1688                 msg.run ();
1689                 return false;
1690         }
1691         return true;
1692 }
1693
1694 void
1695 ARDOUR_UI::open_session ()
1696 {
1697         if (!check_audioengine()) {
1698                 return;
1699
1700         }
1701
1702         /* popup selector window */
1703
1704         if (open_session_selector == 0) {
1705
1706                 /* ardour sessions are folders */
1707
1708                 open_session_selector = new Gtk::FileChooserDialog (_("Open Session"), FILE_CHOOSER_ACTION_OPEN);
1709                 open_session_selector->add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1710                 open_session_selector->add_button (Gtk::Stock::OPEN, Gtk::RESPONSE_ACCEPT);
1711                 open_session_selector->set_default_response(Gtk::RESPONSE_ACCEPT);
1712                 
1713                 if (_session) {
1714                         string session_parent_dir = Glib::path_get_dirname(_session->path());
1715                         string::size_type last_dir_sep = session_parent_dir.rfind(G_DIR_SEPARATOR);
1716                         session_parent_dir = session_parent_dir.substr(0, last_dir_sep);
1717                         open_session_selector->set_current_folder(session_parent_dir);
1718                 } else {
1719                         open_session_selector->set_current_folder(Config->get_default_session_parent_dir());
1720                 }
1721
1722                 string default_session_folder = Config->get_default_session_parent_dir();
1723                 try {
1724                         /* add_shortcut_folder throws an exception if the folder being added already has a shortcut */
1725                         open_session_selector->add_shortcut_folder (default_session_folder);
1726                 }
1727                 catch (Glib::Error & e) {
1728                         std::cerr << "open_session_selector->add_shortcut_folder (" << default_session_folder << ") threw Glib::Error " << e.what() << std::endl;
1729                 }
1730
1731                 FileFilter session_filter;
1732                 session_filter.add_pattern (string_compose(X_("*%1"), ARDOUR::statefile_suffix));
1733                 session_filter.set_name (string_compose (_("%1 sessions"), PROGRAM_NAME));
1734                 open_session_selector->add_filter (session_filter);
1735                 open_session_selector->set_filter (session_filter);
1736         }
1737
1738         int response = open_session_selector->run();
1739         open_session_selector->hide ();
1740
1741         switch (response) {
1742         case RESPONSE_ACCEPT:
1743                 break;
1744         default:
1745                 open_session_selector->hide();
1746                 return;
1747         }
1748
1749         open_session_selector->hide();
1750         string session_path = open_session_selector->get_filename();
1751         string path, name;
1752         bool isnew;
1753
1754         if (session_path.length() > 0) {
1755                 if (ARDOUR::find_session (session_path, path, name, isnew) == 0) {
1756                         _session_is_new = isnew;
1757                         load_session (path, name);
1758                 }
1759         }
1760 }
1761
1762
1763 void
1764 ARDOUR_UI::session_add_mixed_track (const ChanCount& input, const ChanCount& output, RouteGroup* route_group, 
1765                                     uint32_t how_many, const string& name_template, PluginInfoPtr instrument)
1766 {
1767         list<boost::shared_ptr<MidiTrack> > tracks;
1768
1769         if (_session == 0) {
1770                 warning << _("You cannot add a track without a session already loaded.") << endmsg;
1771                 return;
1772         }
1773
1774         try {
1775                 tracks = _session->new_midi_track (input, output, instrument, ARDOUR::Normal, route_group, how_many, name_template);
1776                 
1777                 if (tracks.size() != how_many) {
1778                         error << string_compose(P_("could not create %1 new mixed track", "could not create %1 new mixed tracks", how_many), how_many) << endmsg;
1779                 }
1780         }
1781
1782         catch (...) {
1783                 MessageDialog msg (*editor,
1784                                    string_compose (_("There are insufficient ports available\n\
1785 to create a new track or bus.\n\
1786 You should save %1, exit and\n\
1787 restart with more ports."), PROGRAM_NAME));
1788                 msg.run ();
1789         }
1790 }
1791         
1792
1793 void
1794 ARDOUR_UI::session_add_midi_route (bool disk, RouteGroup* route_group, uint32_t how_many, const string& name_template, PluginInfoPtr instrument)
1795 {
1796         ChanCount one_midi_channel;
1797         one_midi_channel.set (DataType::MIDI, 1);
1798
1799         if (disk) {
1800                 session_add_mixed_track (one_midi_channel, one_midi_channel, route_group, how_many, name_template, instrument);
1801         }
1802 }
1803
1804 void
1805 ARDOUR_UI::session_add_audio_route (
1806         bool track,
1807         int32_t input_channels,
1808         int32_t output_channels,
1809         ARDOUR::TrackMode mode,
1810         RouteGroup* route_group,
1811         uint32_t how_many,
1812         string const & name_template
1813         )
1814 {
1815         list<boost::shared_ptr<AudioTrack> > tracks;
1816         RouteList routes;
1817
1818         if (_session == 0) {
1819                 warning << _("You cannot add a track or bus without a session already loaded.") << endmsg;
1820                 return;
1821         }
1822
1823         try {
1824                 if (track) {
1825                         tracks = _session->new_audio_track (input_channels, output_channels, mode, route_group, how_many, name_template);
1826
1827                         if (tracks.size() != how_many) {
1828                                 error << string_compose (P_("could not create %1 new audio track", "could not create %1 new audio tracks", how_many), how_many) 
1829                                       << endmsg;
1830                         }
1831
1832                 } else {
1833
1834                         routes = _session->new_audio_route (input_channels, output_channels, route_group, how_many, name_template);
1835
1836                         if (routes.size() != how_many) {
1837                                 error << string_compose (P_("could not create %1 new audio bus", "could not create %1 new audio busses", how_many), how_many)
1838                                       << endmsg;
1839                         }
1840                 }
1841         }
1842
1843         catch (...) {
1844                 MessageDialog msg (*editor,
1845                                    string_compose (_("There are insufficient ports available\n\
1846 to create a new track or bus.\n\
1847 You should save %1, exit and\n\
1848 restart with more ports."), PROGRAM_NAME));
1849                 pop_back_splash (msg);
1850                 msg.run ();
1851         }
1852 }
1853
1854 void
1855 ARDOUR_UI::transport_goto_start ()
1856 {
1857         if (_session) {
1858                 _session->goto_start();
1859
1860                 /* force displayed area in editor to start no matter
1861                    what "follow playhead" setting is.
1862                 */
1863
1864                 if (editor) {
1865                         editor->center_screen (_session->current_start_frame ());
1866                 }
1867         }
1868 }
1869
1870 void
1871 ARDOUR_UI::transport_goto_zero ()
1872 {
1873         if (_session) {
1874                 _session->request_locate (0);
1875
1876                 /* force displayed area in editor to start no matter
1877                    what "follow playhead" setting is.
1878                 */
1879
1880                 if (editor) {
1881                         editor->reset_x_origin (0);
1882                 }
1883         }
1884 }
1885
1886 void
1887 ARDOUR_UI::transport_goto_wallclock ()
1888 {
1889         if (_session && editor) {
1890
1891                 time_t now;
1892                 struct tm tmnow;
1893                 framepos_t frames;
1894
1895                 time (&now);
1896                 localtime_r (&now, &tmnow);
1897                 
1898                 int frame_rate = _session->frame_rate();
1899                 
1900                 if (frame_rate == 0) {
1901                         /* no frame rate available */
1902                         return;
1903                 }
1904
1905                 frames = tmnow.tm_hour * (60 * 60 * frame_rate);
1906                 frames += tmnow.tm_min * (60 * frame_rate);
1907                 frames += tmnow.tm_sec * frame_rate;
1908
1909                 _session->request_locate (frames, _session->transport_rolling ());
1910
1911                 /* force displayed area in editor to start no matter
1912                    what "follow playhead" setting is.
1913                 */
1914
1915                 if (editor) {
1916                         editor->center_screen (frames);
1917                 }
1918         }
1919 }
1920
1921 void
1922 ARDOUR_UI::transport_goto_end ()
1923 {
1924         if (_session) {
1925                 framepos_t const frame = _session->current_end_frame();
1926                 _session->request_locate (frame);
1927
1928                 /* force displayed area in editor to start no matter
1929                    what "follow playhead" setting is.
1930                 */
1931
1932                 if (editor) {
1933                         editor->center_screen (frame);
1934                 }
1935         }
1936 }
1937
1938 void
1939 ARDOUR_UI::transport_stop ()
1940 {
1941         if (!_session) {
1942                 return;
1943         }
1944
1945         if (_session->is_auditioning()) {
1946                 _session->cancel_audition ();
1947                 return;
1948         }
1949
1950         _session->request_stop (false, true);
1951 }
1952
1953 /** Check if any tracks are record enabled. If none are, record enable all of them.
1954  * @return true if track record-enabled status was changed, false otherwise.
1955  */  
1956 bool
1957 ARDOUR_UI::trx_record_enable_all_tracks ()
1958 {
1959         if (!_session) {
1960                 return false;
1961         }
1962
1963         boost::shared_ptr<RouteList> rl = _session->get_tracks ();
1964         bool none_record_enabled = true;
1965
1966         for (RouteList::iterator r = rl->begin(); r != rl->end(); ++r) {
1967                 boost::shared_ptr<Track> t = boost::dynamic_pointer_cast<Track> (*r);
1968                 assert (t);
1969
1970                 if (t->record_enabled()) {
1971                         none_record_enabled = false;
1972                         break;
1973                 }
1974         }
1975
1976         if (none_record_enabled) {
1977                 _session->set_record_enabled (rl, true, Session::rt_cleanup);
1978         } 
1979
1980         return none_record_enabled;
1981 }
1982
1983 void
1984 ARDOUR_UI::transport_record (bool roll)
1985 {
1986         if (_session) {
1987                 switch (_session->record_status()) {
1988                 case Session::Disabled:
1989                         if (_session->ntracks() == 0) {
1990                                 MessageDialog msg (*editor, _("Please create one or more tracks before trying to record.\nYou can do this with the \"Add Track or Bus\" option in the Session menu."));
1991                                 msg.run ();
1992                                 return;
1993                         }
1994                         if (Profile->get_trx()) {
1995                                 roll = trx_record_enable_all_tracks ();
1996                         }
1997                         _session->maybe_enable_record ();
1998                         if (roll) {
1999                                 transport_roll ();
2000                         }
2001                         break;
2002                 case Session::Recording:
2003                         if (roll) {
2004                                 _session->request_stop();
2005                         } else {
2006                                 _session->disable_record (false, true);
2007                         }
2008                         break;
2009
2010                 case Session::Enabled:
2011                         _session->disable_record (false, true);
2012                 }
2013         }
2014 }
2015
2016 void
2017 ARDOUR_UI::transport_roll ()
2018 {
2019         if (!_session) {
2020                 return;
2021         }
2022
2023         if (_session->is_auditioning()) {
2024                 return;
2025         }
2026
2027 #if 0
2028         if (_session->config.get_external_sync()) {
2029                 switch (Config->get_sync_source()) {
2030                 case Engine:
2031                         break;
2032                 default:
2033                         /* transport controlled by the master */
2034                         return;
2035                 }
2036         }
2037 #endif
2038
2039         bool rolling = _session->transport_rolling();
2040
2041         if (_session->get_play_loop()) {
2042
2043                 /* If loop playback is not a mode, then we should cancel
2044                    it when this action is requested. If it is a mode
2045                    we just leave it in place.
2046                 */
2047
2048                 if (!Config->get_loop_is_mode()) {
2049                         /* XXX it is not possible to just leave seamless loop and keep
2050                            playing at present (nov 4th 2009)
2051                         */
2052                         if (!Config->get_seamless_loop()) {
2053                                 /* stop loop playback and stop rolling */
2054                                 _session->request_play_loop (false, true);
2055                         } else if (rolling) {
2056                                 /* stop loop playback but keep rolling */
2057                                 _session->request_play_loop (false, false);
2058                         }
2059                 } 
2060
2061         } else if (_session->get_play_range () ) {
2062                 /* stop playing a range if we currently are */
2063                 _session->request_play_range (0, true);
2064         }
2065
2066         if (!rolling) {
2067                 _session->request_transport_speed (1.0f);
2068         }
2069 }
2070
2071 bool
2072 ARDOUR_UI::get_smart_mode() const
2073 {
2074         return ( editor->get_smart_mode() );
2075 }
2076
2077
2078 void
2079 ARDOUR_UI::toggle_roll (bool with_abort, bool roll_out_of_bounded_mode)
2080 {
2081
2082         if (!_session) {
2083                 return;
2084         }
2085
2086         if (_session->is_auditioning()) {
2087                 _session->cancel_audition ();
2088                 return;
2089         }
2090
2091         if (_session->config.get_external_sync()) {
2092                 switch (Config->get_sync_source()) {
2093                 case Engine:
2094                         break;
2095                 default:
2096                         /* transport controlled by the master */
2097                         return;
2098                 }
2099         }
2100
2101         bool rolling = _session->transport_rolling();
2102         bool affect_transport = true;
2103
2104         if (rolling && roll_out_of_bounded_mode) {
2105                 /* drop out of loop/range playback but leave transport rolling */
2106                 if (_session->get_play_loop()) {
2107                         if (Config->get_seamless_loop()) {
2108                                 /* the disk buffers contain copies of the loop - we can't
2109                                    just keep playing, so stop the transport. the user
2110                                    can restart as they wish.
2111                                 */
2112                                 affect_transport = true;
2113                         } else {
2114                                 /* disk buffers are normal, so we can keep playing */
2115                                 affect_transport = false;
2116                         }
2117                         _session->request_play_loop (false, affect_transport);
2118                 } else if (_session->get_play_range ()) {
2119                         affect_transport = false;
2120                         _session->request_play_range (0, true);
2121                 }
2122         }
2123
2124         if (affect_transport) {
2125                 if (rolling) {
2126                         _session->request_stop (with_abort, true);
2127                 } else {
2128                         if (ARDOUR_UI::config()->get_follow_edits() && ( editor->get_selection().time.front().start == _session->transport_frame() ) ) {  //if playhead is exactly at the start of a range, we can assume it was placed there by follow_edits
2129                                 _session->request_play_range (&editor->get_selection().time, true);
2130                                 _session->set_requested_return_frame( editor->get_selection().time.front().start );  //force an auto-return here
2131                         }
2132                         _session->request_transport_speed (1.0f);
2133                 }
2134         }
2135 }
2136
2137 void
2138 ARDOUR_UI::toggle_session_auto_loop ()
2139 {
2140         Location * looploc = _session->locations()->auto_loop_location();
2141
2142         if (!_session || !looploc) {
2143                 return;
2144         }
2145
2146         if (_session->get_play_loop()) {
2147
2148                 /* looping enabled, our job is to disable it */
2149
2150                 _session->request_play_loop (false);
2151
2152         } else {
2153
2154                 /* looping not enabled, our job is to enable it.
2155
2156                    loop-is-NOT-mode: this action always starts the transport rolling.
2157                    loop-IS-mode:     this action simply sets the loop play mechanism, but
2158                                         does not start transport.
2159                 */
2160                 if (Config->get_loop_is_mode()) {
2161                         _session->request_play_loop (true, false);
2162                 } else {
2163                         _session->request_play_loop (true, true);
2164                 }
2165         }
2166         
2167         //show the loop markers
2168         looploc->set_hidden (false, this);
2169 }
2170
2171 void
2172 ARDOUR_UI::transport_play_selection ()
2173 {
2174         if (!_session) {
2175                 return;
2176         }
2177
2178         editor->play_selection ();
2179 }
2180
2181 void
2182 ARDOUR_UI::transport_play_preroll ()
2183 {
2184         if (!_session) {
2185                 return;
2186         }
2187         editor->play_with_preroll ();
2188 }
2189
2190 void
2191 ARDOUR_UI::transport_rewind (int option)
2192 {
2193         float current_transport_speed;
2194
2195         if (_session) {
2196                 current_transport_speed = _session->transport_speed();
2197
2198                 if (current_transport_speed >= 0.0f) {
2199                         switch (option) {
2200                         case 0:
2201                                 _session->request_transport_speed (-1.0f);
2202                                 break;
2203                         case 1:
2204                                 _session->request_transport_speed (-4.0f);
2205                                 break;
2206                         case -1:
2207                                 _session->request_transport_speed (-0.5f);
2208                                 break;
2209                         }
2210                 } else {
2211                         /* speed up */
2212                         _session->request_transport_speed (current_transport_speed * 1.5f);
2213                 }
2214         }
2215 }
2216
2217 void
2218 ARDOUR_UI::transport_forward (int option)
2219 {
2220         if (!_session) {
2221                 return;
2222         }
2223         
2224         float current_transport_speed = _session->transport_speed();
2225         
2226         if (current_transport_speed <= 0.0f) {
2227                 switch (option) {
2228                 case 0:
2229                         _session->request_transport_speed (1.0f);
2230                         break;
2231                 case 1:
2232                         _session->request_transport_speed (4.0f);
2233                         break;
2234                 case -1:
2235                         _session->request_transport_speed (0.5f);
2236                         break;
2237                 }
2238         } else {
2239                 /* speed up */
2240                 _session->request_transport_speed (current_transport_speed * 1.5f);
2241         }
2242 }
2243
2244 void
2245 ARDOUR_UI::toggle_record_enable (uint32_t rid)
2246 {
2247         if (!_session) {
2248                 return;
2249         }
2250
2251         boost::shared_ptr<Route> r;
2252
2253         if ((r = _session->route_by_remote_id (rid)) != 0) {
2254
2255                 Track* t;
2256
2257                 if ((t = dynamic_cast<Track*>(r.get())) != 0) {
2258                         t->set_record_enabled (!t->record_enabled(), this);
2259                 }
2260         }
2261 }
2262
2263 void
2264 ARDOUR_UI::map_transport_state ()
2265 {
2266         if (!_session) {
2267                 auto_loop_button.unset_active_state ();
2268                 play_selection_button.unset_active_state ();
2269                 roll_button.unset_active_state ();
2270                 stop_button.set_active_state (Gtkmm2ext::ExplicitActive);
2271                 return;
2272         }
2273
2274         shuttle_box->map_transport_state ();
2275
2276         float sp = _session->transport_speed();
2277
2278         if (sp != 0.0f) {
2279
2280                 /* we're rolling */
2281
2282                 if (_session->get_play_range()) {
2283
2284                         play_selection_button.set_active_state (Gtkmm2ext::ExplicitActive);
2285                         roll_button.unset_active_state ();
2286                         auto_loop_button.unset_active_state ();
2287
2288                 } else if (_session->get_play_loop ()) {
2289
2290                         auto_loop_button.set_active (true);
2291                         play_selection_button.set_active (false);
2292                         if (Config->get_loop_is_mode()) {
2293                                 roll_button.set_active (true);
2294                         } else {
2295                                 roll_button.set_active (false);
2296                         }
2297
2298                 } else {
2299
2300                         roll_button.set_active (true);
2301                         play_selection_button.set_active (false);
2302                         auto_loop_button.set_active (false);
2303                 }
2304
2305                 if (ARDOUR_UI::config()->get_follow_edits()) {
2306                         /* light up both roll and play-selection if they are joined */
2307                         roll_button.set_active (true);
2308                         play_selection_button.set_active (true);
2309                 }
2310
2311                 stop_button.set_active (false);
2312
2313         } else {
2314
2315                 stop_button.set_active (true);
2316                 roll_button.set_active (false);
2317                 play_selection_button.set_active (false);
2318                 if (Config->get_loop_is_mode ()) {
2319                         auto_loop_button.set_active (_session->get_play_loop());
2320                 } else {
2321                         auto_loop_button.set_active (false);
2322                 }
2323                 update_disk_space ();
2324         }
2325 }
2326
2327 void
2328 ARDOUR_UI::blink_handler (bool blink_on)
2329 {
2330         transport_rec_enable_blink (blink_on);
2331         solo_blink (blink_on);
2332         sync_blink (blink_on);
2333         audition_blink (blink_on);
2334         feedback_blink (blink_on);
2335         error_blink (blink_on);
2336 }
2337
2338 void
2339 ARDOUR_UI::update_clocks ()
2340 {
2341         if (!_session) return;
2342
2343         if (editor && !editor->dragging_playhead()) {
2344                 Clock (_session->audible_frame(), false, editor->get_preferred_edit_position()); /* EMIT_SIGNAL */
2345         }
2346 }
2347
2348 void
2349 ARDOUR_UI::start_clocking ()
2350 {
2351         if (ui_config->get_super_rapid_clock_update()) {
2352                 clock_signal_connection = Timers::fps_connect (sigc::mem_fun(*this, &ARDOUR_UI::update_clocks));
2353         } else {
2354                 clock_signal_connection = Timers::rapid_connect (sigc::mem_fun(*this, &ARDOUR_UI::update_clocks));
2355         }
2356 }
2357
2358 void
2359 ARDOUR_UI::stop_clocking ()
2360 {
2361         clock_signal_connection.disconnect ();
2362 }
2363
2364 /** Ask the user for the name of a new snapshot and then take it.
2365  */
2366
2367 void
2368 ARDOUR_UI::snapshot_session (bool switch_to_it)
2369 {
2370         ArdourPrompter prompter (true);
2371         string snapname;
2372
2373         prompter.set_name ("Prompter");
2374         prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
2375         if (switch_to_it) {
2376                 prompter.set_title (_("Save as..."));
2377                 prompter.set_prompt (_("New session name"));
2378         } else {
2379                 prompter.set_title (_("Take Snapshot"));
2380                 prompter.set_prompt (_("Name of new snapshot"));
2381         }
2382
2383         if (!switch_to_it) {
2384                 char timebuf[128];
2385                 time_t n;
2386                 struct tm local_time;
2387
2388                 time (&n);
2389                 localtime_r (&n, &local_time);
2390                 strftime (timebuf, sizeof(timebuf), "%FT%H.%M.%S", &local_time);
2391                 prompter.set_initial_text (timebuf);
2392         }
2393
2394   again:
2395         switch (prompter.run()) {
2396         case RESPONSE_ACCEPT:
2397         {
2398                 prompter.get_result (snapname);
2399
2400                 bool do_save = (snapname.length() != 0);
2401
2402                 if (do_save) {
2403                         char illegal = Session::session_name_is_legal(snapname);
2404                         if (illegal) {
2405                                 MessageDialog msg (string_compose (_("To ensure compatibility with various systems\n"
2406                                                      "snapshot names may not contain a '%1' character"), illegal));
2407                                 msg.run ();
2408                                 goto again;
2409                         }
2410                 }
2411
2412                 vector<std::string> p;
2413                 get_state_files_in_directory (_session->session_directory().root_path(), p);
2414                 vector<string> n = get_file_names_no_extension (p);
2415                 if (find (n.begin(), n.end(), snapname) != n.end()) {
2416
2417                         ArdourDialog confirm (_("Confirm Snapshot Overwrite"), true);
2418                         Label m (_("A snapshot already exists with that name.  Do you want to overwrite it?"));
2419                         confirm.get_vbox()->pack_start (m, true, true);
2420                         confirm.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2421                         confirm.add_button (_("Overwrite"), Gtk::RESPONSE_ACCEPT);
2422                         confirm.show_all ();
2423                         switch (confirm.run()) {
2424                         case RESPONSE_CANCEL:
2425                                 do_save = false;
2426                         }
2427                 }
2428
2429                 if (do_save) {
2430                         save_state (snapname, switch_to_it);
2431                 }
2432                 break;
2433         }
2434
2435         default:
2436                 break;
2437         }
2438 }
2439
2440 /** Ask the user for a new session name and then rename the session to it.
2441  */
2442
2443 void
2444 ARDOUR_UI::rename_session ()
2445 {
2446         if (!_session) {
2447                 return;
2448         }
2449
2450         ArdourPrompter prompter (true);
2451         string name;
2452
2453         prompter.set_name ("Prompter");
2454         prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
2455         prompter.set_title (_("Rename Session"));
2456         prompter.set_prompt (_("New session name"));
2457
2458   again:
2459         switch (prompter.run()) {
2460         case RESPONSE_ACCEPT:
2461         {
2462                 prompter.get_result (name);
2463
2464                 bool do_rename = (name.length() != 0);
2465
2466                 if (do_rename) {
2467                         char illegal = Session::session_name_is_legal (name);
2468
2469                         if (illegal) {
2470                                 MessageDialog msg (string_compose (_("To ensure compatibility with various systems\n"
2471                                                                      "session names may not contain a '%1' character"), illegal));
2472                                 msg.run ();
2473                                 goto again;
2474                         }
2475
2476                         switch (_session->rename (name)) {
2477                         case -1: {
2478                                 MessageDialog msg (_("That name is already in use by another directory/folder. Please try again."));
2479                                 msg.set_position (WIN_POS_MOUSE);
2480                                 msg.run ();
2481                                 goto again;
2482                                 break;
2483                         }
2484                         case 0:
2485                                 break;
2486                         default: {
2487                                 MessageDialog msg (_("Renaming this session failed.\nThings could be seriously messed up at this point"));
2488                                 msg.set_position (WIN_POS_MOUSE);
2489                                 msg.run ();
2490                                 break;
2491                         }
2492                         }
2493                 }
2494                 
2495                 break;
2496         }
2497
2498         default:
2499                 break;
2500         }
2501 }
2502
2503 void
2504 ARDOUR_UI::save_state (const string & name, bool switch_to_it)
2505 {
2506         XMLNode* node = new XMLNode (X_("UI"));
2507
2508         WM::Manager::instance().add_state (*node);
2509
2510         node->add_child_nocopy (gui_object_state->get_state());
2511
2512         _session->add_extra_xml (*node);
2513
2514         if (export_video_dialog) {
2515                 _session->add_extra_xml (export_video_dialog->get_state());
2516         }
2517
2518         save_state_canfail (name, switch_to_it);
2519 }
2520
2521 int
2522 ARDOUR_UI::save_state_canfail (string name, bool switch_to_it)
2523 {
2524         if (_session) {
2525                 int ret;
2526
2527                 if (name.length() == 0) {
2528                         name = _session->snap_name();
2529                 }
2530
2531                 if ((ret = _session->save_state (name, false, switch_to_it)) != 0) {
2532                         return ret;
2533                 }
2534         }
2535
2536         save_ardour_state (); /* XXX cannot fail? yeah, right ... */
2537         return 0;
2538 }
2539
2540 void
2541 ARDOUR_UI::primary_clock_value_changed ()
2542 {
2543         if (_session) {
2544                 _session->request_locate (primary_clock->current_time ());
2545         }
2546 }
2547
2548 void
2549 ARDOUR_UI::big_clock_value_changed ()
2550 {
2551         if (_session) {
2552                 _session->request_locate (big_clock->current_time ());
2553         }
2554 }
2555
2556 void
2557 ARDOUR_UI::secondary_clock_value_changed ()
2558 {
2559         if (_session) {
2560                 _session->request_locate (secondary_clock->current_time ());
2561         }
2562 }
2563
2564 void
2565 ARDOUR_UI::transport_rec_enable_blink (bool onoff)
2566 {
2567         if (_session == 0) {
2568                 return;
2569         }
2570
2571         if (_session->step_editing()) {
2572                 return;
2573         }
2574
2575         Session::RecordState const r = _session->record_status ();
2576         bool const h = _session->have_rec_enabled_track ();
2577
2578         if (r == Session::Enabled || (r == Session::Recording && !h)) {
2579                 if (onoff) {
2580                         rec_button.set_active_state (Gtkmm2ext::ExplicitActive);
2581                 } else {
2582                         rec_button.set_active_state (Gtkmm2ext::Off);
2583                 }
2584         } else if (r == Session::Recording && h) {
2585                 rec_button.set_active_state (Gtkmm2ext::ExplicitActive);
2586         } else {
2587                 rec_button.unset_active_state ();
2588         }
2589 }
2590
2591 void
2592 ARDOUR_UI::save_template ()
2593 {
2594         ArdourPrompter prompter (true);
2595         string name;
2596
2597         if (!check_audioengine()) {
2598                 return;
2599         }
2600
2601         prompter.set_name (X_("Prompter"));
2602         prompter.set_title (_("Save Template"));
2603         prompter.set_prompt (_("Name for template:"));
2604         prompter.set_initial_text(_session->name() + _("-template"));
2605         prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
2606
2607         switch (prompter.run()) {
2608         case RESPONSE_ACCEPT:
2609                 prompter.get_result (name);
2610
2611                 if (name.length()) {
2612                         _session->save_template (name);
2613                 }
2614                 break;
2615
2616         default:
2617                 break;
2618         }
2619 }
2620
2621 void
2622 ARDOUR_UI::edit_metadata ()
2623 {
2624         SessionMetadataEditor dialog;
2625         dialog.set_session (_session);
2626         dialog.grab_focus ();
2627         dialog.run ();
2628 }
2629
2630 void
2631 ARDOUR_UI::import_metadata ()
2632 {
2633         SessionMetadataImporter dialog;
2634         dialog.set_session (_session);
2635         dialog.run ();
2636 }
2637
2638 bool
2639 ARDOUR_UI::ask_about_loading_existing_session (const std::string& session_path)
2640 {
2641         std::string str = string_compose (_("This session\n%1\nalready exists. Do you want to open it?"), session_path);
2642
2643         MessageDialog msg (str,
2644                            false,
2645                            Gtk::MESSAGE_WARNING,
2646                            Gtk::BUTTONS_YES_NO,
2647                            true);
2648
2649
2650         msg.set_name (X_("OpenExistingDialog"));
2651         msg.set_title (_("Open Existing Session"));
2652         msg.set_wmclass (X_("existing_session"), PROGRAM_NAME);
2653         msg.set_position (Gtk::WIN_POS_CENTER);
2654         pop_back_splash (msg);
2655
2656         switch (msg.run()) {
2657         case RESPONSE_YES:
2658                 return true;
2659                 break;
2660         }
2661         return false;
2662 }
2663
2664 int
2665 ARDOUR_UI::build_session_from_dialog (SessionDialog& sd, const std::string& session_path, const std::string& session_name)
2666 {
2667         BusProfile bus_profile;
2668
2669         if (nsm || Profile->get_sae()) {
2670
2671                 bus_profile.master_out_channels = 2;
2672                 bus_profile.input_ac = AutoConnectPhysical;
2673                 bus_profile.output_ac = AutoConnectMaster;
2674                 bus_profile.requested_physical_in = 0; // use all available
2675                 bus_profile.requested_physical_out = 0; // use all available
2676
2677         } else {
2678
2679                 /* get settings from advanced section of NSD */
2680
2681                 if (sd.create_master_bus()) {
2682                         bus_profile.master_out_channels = (uint32_t) sd.master_channel_count();
2683                 } else {
2684                         bus_profile.master_out_channels = 0;
2685                 }
2686
2687                 if (sd.connect_inputs()) {
2688                         bus_profile.input_ac = AutoConnectPhysical;
2689                 } else {
2690                         bus_profile.input_ac = AutoConnectOption (0);
2691                 }
2692
2693                 bus_profile.output_ac = AutoConnectOption (0);
2694
2695                 if (sd.connect_outputs ()) {
2696                         if (sd.connect_outs_to_master()) {
2697                                 bus_profile.output_ac = AutoConnectMaster;
2698                         } else if (sd.connect_outs_to_physical()) {
2699                                 bus_profile.output_ac = AutoConnectPhysical;
2700                         }
2701                 }
2702
2703                 bus_profile.requested_physical_in = (uint32_t) sd.input_limit_count();
2704                 bus_profile.requested_physical_out = (uint32_t) sd.output_limit_count();
2705         }
2706
2707         if (build_session (session_path, session_name, bus_profile)) {
2708                 return -1;
2709         }
2710
2711         return 0;
2712 }
2713
2714 void
2715 ARDOUR_UI::load_from_application_api (const std::string& path)
2716 {
2717         ARDOUR_COMMAND_LINE::session_name = path;
2718
2719         if (Glib::file_test (path, Glib::FILE_TEST_IS_DIR)) {
2720                 /* /path/to/foo => /path/to/foo, foo */
2721                 load_session (path, basename_nosuffix (path));
2722         } else {
2723                 /* /path/to/foo/foo.ardour => /path/to/foo, foo */
2724                 load_session (Glib::path_get_dirname (path), basename_nosuffix (path));
2725         }
2726 }
2727
2728 /** @param quit_on_cancel true if exit() should be called if the user clicks `cancel' in the new session dialog */
2729 int
2730 ARDOUR_UI::get_session_parameters (bool quit_on_cancel, bool should_be_new, string load_template)
2731 {
2732         string session_name;
2733         string session_path;
2734         string template_name;
2735         int ret = -1;
2736         bool likely_new = false;
2737         bool cancel_not_quit;
2738
2739         /* deal with any existing DIRTY session now, rather than later. don't
2740          * treat a non-dirty session this way, so that it stays visible 
2741          * as we bring up the new session dialog.
2742          */
2743
2744         if (_session && ARDOUR_UI::instance()->video_timeline) {
2745                 ARDOUR_UI::instance()->video_timeline->sync_session_state();
2746         }
2747
2748         /* if there is already a session, relabel the button
2749            on the SessionDialog so that we don't Quit directly
2750         */
2751         cancel_not_quit = (_session != 0);
2752
2753         if (_session && _session->dirty()) {
2754                 if (unload_session (false)) {
2755                         /* unload cancelled by user */
2756                         return 0;
2757                 }
2758                 ARDOUR_COMMAND_LINE::session_name = "";
2759         }
2760
2761         if (!load_template.empty()) {
2762                 should_be_new = true;
2763                 template_name = load_template;
2764         }
2765
2766         session_name = basename_nosuffix (ARDOUR_COMMAND_LINE::session_name);
2767         session_path = ARDOUR_COMMAND_LINE::session_name;
2768         
2769         if (!session_path.empty()) {
2770                 if (Glib::file_test (session_path.c_str(), Glib::FILE_TEST_EXISTS)) {
2771                         if (Glib::file_test (session_path.c_str(), Glib::FILE_TEST_IS_REGULAR)) {
2772                                 /* session/snapshot file, change path to be dir */
2773                                 session_path = Glib::path_get_dirname (session_path);
2774                         }
2775                 }
2776         }
2777
2778         SessionDialog session_dialog (should_be_new, session_name, session_path, load_template, cancel_not_quit);
2779
2780         while (ret != 0) {
2781
2782                 if (!ARDOUR_COMMAND_LINE::session_name.empty()) {
2783
2784                         /* if they named a specific statefile, use it, otherwise they are
2785                            just giving a session folder, and we want to use it as is
2786                            to find the session.
2787                         */
2788
2789                         string::size_type suffix = ARDOUR_COMMAND_LINE::session_name.find (statefile_suffix);
2790
2791                         if (suffix != string::npos) {
2792                                 session_path = Glib::path_get_dirname (ARDOUR_COMMAND_LINE::session_name);
2793                                 session_name = ARDOUR_COMMAND_LINE::session_name.substr (0, suffix);
2794                                 session_name = Glib::path_get_basename (session_name);
2795                         } else {
2796                                 session_path = ARDOUR_COMMAND_LINE::session_name;
2797                                 session_name = Glib::path_get_basename (ARDOUR_COMMAND_LINE::session_name);
2798                         }
2799                 } else {
2800                         session_path = "";
2801                         session_name = "";
2802                         session_dialog.clear_given ();
2803                 }
2804                 
2805                 if (should_be_new || session_name.empty()) {
2806                         /* need the dialog to get info from user */
2807
2808                         cerr << "run dialog\n";
2809
2810                         switch (session_dialog.run()) {
2811                         case RESPONSE_ACCEPT:
2812                                 break;
2813                         default:
2814                                 if (quit_on_cancel) {
2815                                         // JE - Currently (July 2014) this section can only get reached if the
2816                                         // user quits from the main 'Session Setup' dialog (i.e. reaching this
2817                                         // point does NOT indicate an abnormal termination). Therefore, let's
2818                                         // behave gracefully (i.e. let's do some cleanup) before we call exit()
2819                                         ARDOUR::cleanup ();
2820                                         pthread_cancel_all ();
2821
2822                                         exit (1);
2823                                 } else {
2824                                         return ret;
2825                                 }
2826                         }
2827
2828                         session_dialog.hide ();
2829                 }
2830
2831                 /* if we run the startup dialog again, offer more than just "new session" */
2832                 
2833                 should_be_new = false;
2834                 
2835                 session_name = session_dialog.session_name (likely_new);
2836                 session_path = session_dialog.session_folder ();
2837
2838                 if (nsm) {
2839                         likely_new = true;
2840                 }
2841
2842                 string::size_type suffix = session_name.find (statefile_suffix);
2843                 
2844                 if (suffix != string::npos) {
2845                         session_name = session_name.substr (0, suffix);
2846                 }
2847                 
2848                 /* this shouldn't happen, but we catch it just in case it does */
2849                 
2850                 if (session_name.empty()) {
2851                         continue;
2852                 }
2853                 
2854                 if (session_dialog.use_session_template()) {
2855                         template_name = session_dialog.session_template_name();
2856                         _session_is_new = true;
2857                 }
2858                 
2859                 if (session_name[0] == G_DIR_SEPARATOR ||
2860 #ifdef PLATFORM_WINDOWS
2861                     (session_name.length() > 3 && session_name[1] == ':' && session_name[2] == G_DIR_SEPARATOR)
2862 #else
2863                     (session_name.length() > 2 && session_name[0] == '.' && session_name[1] == G_DIR_SEPARATOR) ||
2864                     (session_name.length() > 3 && session_name[0] == '.' && session_name[1] == '.' && session_name[2] == G_DIR_SEPARATOR)
2865 #endif
2866                          )
2867                 {
2868                         
2869                         /* absolute path or cwd-relative path specified for session name: infer session folder
2870                            from what was given.
2871                         */
2872                         
2873                         session_path = Glib::path_get_dirname (session_name);
2874                         session_name = Glib::path_get_basename (session_name);
2875                         
2876                 } else {
2877
2878                         session_path = session_dialog.session_folder();
2879                         
2880                         char illegal = Session::session_name_is_legal (session_name);
2881                         
2882                         if (illegal) {
2883                                 MessageDialog msg (session_dialog,
2884                                                    string_compose (_("To ensure compatibility with various systems\n"
2885                                                                      "session names may not contain a '%1' character"),
2886                                                                    illegal));
2887                                 msg.run ();
2888                                 ARDOUR_COMMAND_LINE::session_name = ""; // cancel that
2889                                 continue;
2890                         }
2891                 }
2892         
2893                 if (Glib::file_test (session_path, Glib::FileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))) {
2894
2895
2896                         if (likely_new && !nsm) {
2897
2898                                 std::string existing = Glib::build_filename (session_path, session_name);
2899
2900                                 if (!ask_about_loading_existing_session (existing)) {
2901                                         ARDOUR_COMMAND_LINE::session_name = ""; // cancel that
2902                                         continue;
2903                                 }
2904                         }
2905
2906                         _session_is_new = false;
2907
2908                 } else {
2909
2910                         if (!likely_new) {
2911                                 pop_back_splash (session_dialog);
2912                                 MessageDialog msg (string_compose (_("There is no existing session at \"%1\""), session_path));
2913                                 msg.run ();
2914                                 ARDOUR_COMMAND_LINE::session_name = ""; // cancel that
2915                                 continue;
2916                         }
2917
2918                         char illegal = Session::session_name_is_legal(session_name);
2919
2920                         if (illegal) {
2921                                 pop_back_splash (session_dialog);
2922                                 MessageDialog msg (session_dialog, string_compose(_("To ensure compatibility with various systems\n"
2923                                                                                     "session names may not contain a '%1' character"), illegal));
2924                                 msg.run ();
2925                                 ARDOUR_COMMAND_LINE::session_name = ""; // cancel that
2926                                 continue;
2927                         }
2928
2929                         _session_is_new = true;
2930                 }
2931
2932                 if (likely_new && template_name.empty()) {
2933
2934                         ret = build_session_from_dialog (session_dialog, session_path, session_name);
2935
2936                 } else {
2937
2938                         ret = load_session (session_path, session_name, template_name);
2939
2940                         if (ret == -2) {
2941                                 /* not connected to the AudioEngine, so quit to avoid an infinite loop */
2942                                 exit (1);
2943                         }
2944
2945                         if (!ARDOUR_COMMAND_LINE::immediate_save.empty()) {
2946                                 _session->save_state (ARDOUR_COMMAND_LINE::immediate_save, false);
2947                                 exit (1);
2948                         }
2949
2950                         /* clear this to avoid endless attempts to load the
2951                            same session.
2952                         */
2953
2954                         ARDOUR_COMMAND_LINE::session_name = "";
2955                 }
2956         }
2957
2958         return ret;
2959 }
2960
2961 void
2962 ARDOUR_UI::close_session()
2963 {
2964         if (!check_audioengine()) {
2965                 return;
2966         }
2967
2968         if (unload_session (true)) {
2969                 return;
2970         }
2971
2972         ARDOUR_COMMAND_LINE::session_name = "";
2973
2974         if (get_session_parameters (true, false)) {
2975                 exit (1);
2976         }
2977
2978         goto_editor_window ();
2979 }
2980
2981 /** @param snap_name Snapshot name (without .ardour suffix).
2982  *  @return -2 if the load failed because we are not connected to the AudioEngine.
2983  */
2984 int
2985 ARDOUR_UI::load_session (const std::string& path, const std::string& snap_name, std::string mix_template)
2986 {
2987         Session *new_session;
2988         int unload_status;
2989         int retval = -1;
2990
2991         if (_session) {
2992                 unload_status = unload_session ();
2993                 
2994                 if (unload_status < 0) {
2995                         goto out;
2996                 } else if (unload_status > 0) {
2997                         retval = 0;
2998                         goto out;
2999                 }
3000         }
3001
3002         session_loaded = false;
3003
3004         loading_message (string_compose (_("Please wait while %1 loads your session"), PROGRAM_NAME));
3005
3006         try {
3007                 new_session = new Session (*AudioEngine::instance(), path, snap_name, 0, mix_template);
3008         }
3009
3010         /* this one is special */
3011
3012         catch (AudioEngine::PortRegistrationFailure& err) {
3013
3014                 MessageDialog msg (err.what(),
3015                                    true,
3016                                    Gtk::MESSAGE_INFO,
3017                                    Gtk::BUTTONS_CLOSE);
3018
3019                 msg.set_title (_("Port Registration Error"));
3020                 msg.set_secondary_text (_("Click the Close button to try again."));
3021                 msg.set_position (Gtk::WIN_POS_CENTER);
3022                 pop_back_splash (msg);
3023                 msg.present ();
3024
3025                 int response = msg.run ();
3026
3027                 msg.hide ();
3028
3029                 switch (response) {
3030                 case RESPONSE_CANCEL:
3031                         exit (1);
3032                 default:
3033                         break;
3034                 }
3035                 goto out;
3036         }
3037
3038         catch (...) {
3039
3040                 MessageDialog msg (string_compose(
3041                                            _("Session \"%1 (snapshot %2)\" did not load successfully"),
3042                                            path, snap_name),
3043                                    true,
3044                                    Gtk::MESSAGE_INFO,
3045                                    BUTTONS_OK);
3046
3047                 msg.set_title (_("Loading Error"));
3048                 msg.set_position (Gtk::WIN_POS_CENTER);
3049                 pop_back_splash (msg);
3050                 msg.present ();
3051                 (void) msg.run ();
3052                 msg.hide ();
3053
3054                 goto out;
3055         }
3056
3057         {
3058                 list<string> const u = new_session->unknown_processors ();
3059                 if (!u.empty()) {
3060                         MissingPluginDialog d (_session, u);
3061                         d.run ();
3062                 }
3063         }
3064
3065         if (!new_session->writable()) {
3066                 MessageDialog msg (_("This session has been opened in read-only mode.\n\nYou will not be able to record or save."),
3067                                    true,
3068                                    Gtk::MESSAGE_INFO,
3069                                    BUTTONS_OK);
3070
3071                 msg.set_title (_("Read-only Session"));
3072                 msg.set_position (Gtk::WIN_POS_CENTER);
3073                 pop_back_splash (msg);
3074                 msg.present ();
3075                 (void) msg.run ();
3076                 msg.hide ();
3077         }
3078         
3079
3080         /* Now the session been created, add the transport controls */
3081         new_session->add_controllable(roll_controllable);
3082         new_session->add_controllable(stop_controllable);
3083         new_session->add_controllable(goto_start_controllable);
3084         new_session->add_controllable(goto_end_controllable);
3085         new_session->add_controllable(auto_loop_controllable);
3086         new_session->add_controllable(play_selection_controllable);
3087         new_session->add_controllable(rec_controllable);
3088
3089         set_session (new_session);
3090
3091         session_loaded = true;
3092
3093         goto_editor_window ();
3094
3095         if (_session) {
3096                 _session->set_clean ();
3097         }
3098
3099 #ifdef WINDOWS_VST_SUPPORT
3100         fst_stop_threading();
3101 #endif
3102
3103         flush_pending ();
3104
3105 #ifdef WINDOWS_VST_SUPPORT
3106         fst_start_threading();
3107 #endif
3108         retval = 0;
3109
3110   out:
3111         return retval;
3112 }
3113
3114 int
3115 ARDOUR_UI::build_session (const std::string& path, const std::string& snap_name, BusProfile& bus_profile)
3116 {
3117         Session *new_session;
3118         int x;
3119
3120         session_loaded = false;
3121         x = unload_session ();
3122
3123         if (x < 0) {
3124                 return -1;
3125         } else if (x > 0) {
3126                 return 0;
3127         }
3128
3129         _session_is_new = true;
3130
3131         try {
3132                 new_session = new Session (*AudioEngine::instance(), path, snap_name, &bus_profile);
3133         }
3134
3135         catch (...) {
3136
3137                 MessageDialog msg (string_compose(_("Could not create session in \"%1\""), path));
3138                 pop_back_splash (msg);
3139                 msg.run ();
3140                 return -1;
3141         }
3142
3143         /* Give the new session the default GUI state, if such things exist */
3144
3145         XMLNode* n;
3146         n = Config->instant_xml (X_("Editor"));
3147         if (n) {
3148                 n->remove_nodes_and_delete ("Selection"); // no not apply selection to new sessions.
3149                 new_session->add_instant_xml (*n, false);
3150         }
3151         n = Config->instant_xml (X_("Mixer"));
3152         if (n) {
3153                 new_session->add_instant_xml (*n, false);
3154         }
3155
3156         /* Put the playhead at 0 and scroll fully left */
3157         n = new_session->instant_xml (X_("Editor"));
3158         if (n) {
3159                 n->add_property (X_("playhead"), X_("0"));
3160                 n->add_property (X_("left-frame"), X_("0"));
3161         }
3162
3163         set_session (new_session);
3164
3165         session_loaded = true;
3166
3167         new_session->save_state(new_session->name());
3168
3169         return 0;
3170 }
3171
3172 void
3173 ARDOUR_UI::launch_chat ()
3174 {
3175 #ifdef __APPLE__
3176         open_uri("http://webchat.freenode.net/?channels=ardour-osx");
3177 #elif defined PLATFORM_WINDOWS
3178         open_uri("http://webchat.freenode.net/?channels=ardour-windows");
3179 #else
3180         open_uri("http://webchat.freenode.net/?channels=ardour");
3181 #endif
3182 }
3183
3184 void
3185 ARDOUR_UI::launch_manual ()
3186 {
3187         PBD::open_uri (Config->get_tutorial_manual_url());
3188 }
3189
3190 void
3191 ARDOUR_UI::launch_reference ()
3192 {
3193         PBD::open_uri (Config->get_reference_manual_url());
3194 }
3195
3196 void
3197 ARDOUR_UI::launch_tracker ()
3198 {
3199         PBD::open_uri ("http://tracker.ardour.org/bug_report_page.php");
3200 }
3201
3202 void
3203 ARDOUR_UI::launch_subscribe ()
3204 {
3205         PBD::open_uri ("https://community.ardour.org/s/subscribe");
3206 }
3207
3208 void
3209 ARDOUR_UI::launch_cheat_sheet ()
3210 {
3211 #ifdef __APPLE__
3212         PBD::open_uri ("http://manual.ardour.org/files/a3_mnemonic_cheat_sheet_osx.pdf");
3213 #else
3214         PBD::open_uri ("http://manual.ardour.org/files/a3_mnemonic_cheatsheet.pdf");
3215 #endif
3216 }
3217
3218 void
3219 ARDOUR_UI::launch_website ()
3220 {
3221         PBD::open_uri ("http://ardour.org");
3222 }
3223
3224 void
3225 ARDOUR_UI::launch_website_dev ()
3226 {
3227         PBD::open_uri ("http://ardour.org/development.html");
3228 }
3229
3230 void
3231 ARDOUR_UI::launch_forums ()
3232 {
3233         PBD::open_uri ("https://community.ardour.org/forums");
3234 }
3235
3236 void
3237 ARDOUR_UI::launch_howto_report ()
3238 {
3239         PBD::open_uri ("http://ardour.org/reporting_bugs");
3240 }
3241
3242 void
3243 ARDOUR_UI::loading_message (const std::string& msg)
3244 {
3245         if (ARDOUR_COMMAND_LINE::no_splash) {
3246                 return;
3247         }
3248
3249         if (!splash) {
3250                 show_splash ();
3251         }
3252
3253         splash->message (msg);
3254 }
3255
3256 void
3257 ARDOUR_UI::show_splash ()
3258 {
3259         if (splash == 0) {
3260                 try {
3261                         splash = new Splash;
3262                 } catch (...) {
3263                         return;
3264                 }
3265         }
3266
3267         splash->display ();
3268 }
3269
3270 void
3271 ARDOUR_UI::hide_splash ()
3272 {
3273         delete splash;
3274         splash = 0;
3275 }
3276
3277 void
3278 ARDOUR_UI::display_cleanup_results (ARDOUR::CleanupReport& rep, const gchar* list_title, const bool msg_delete)
3279 {
3280         size_t removed;
3281
3282         removed = rep.paths.size();
3283
3284         if (removed == 0) {
3285                 MessageDialog msgd (*editor,
3286                                     _("No files were ready for clean-up"),
3287                                     true,
3288                                     Gtk::MESSAGE_INFO,
3289                                     Gtk::BUTTONS_OK);
3290                 msgd.set_title (_("Clean-up"));
3291                 msgd.set_secondary_text (_("If this seems suprising, \n\
3292 check for any existing snapshots.\n\
3293 These may still include regions that\n\
3294 require some unused files to continue to exist."));
3295
3296                 msgd.run ();
3297                 return;
3298         }
3299
3300         ArdourDialog results (_("Clean-up"), true, false);
3301
3302         struct CleanupResultsModelColumns : public Gtk::TreeModel::ColumnRecord {
3303             CleanupResultsModelColumns() {
3304                     add (visible_name);
3305                     add (fullpath);
3306             }
3307             Gtk::TreeModelColumn<std::string> visible_name;
3308             Gtk::TreeModelColumn<std::string> fullpath;
3309         };
3310
3311
3312         CleanupResultsModelColumns results_columns;
3313         Glib::RefPtr<Gtk::ListStore> results_model;
3314         Gtk::TreeView results_display;
3315
3316         results_model = ListStore::create (results_columns);
3317         results_display.set_model (results_model);
3318         results_display.append_column (list_title, results_columns.visible_name);
3319
3320         results_display.set_name ("CleanupResultsList");
3321         results_display.set_headers_visible (true);
3322         results_display.set_headers_clickable (false);
3323         results_display.set_reorderable (false);
3324
3325         Gtk::ScrolledWindow list_scroller;
3326         Gtk::Label txt;
3327         Gtk::VBox dvbox;
3328         Gtk::HBox dhbox;  // the hbox for the image and text
3329         Gtk::HBox ddhbox; // the hbox we eventually pack into the dialog's vbox
3330         Gtk::Image* dimage = manage (new Gtk::Image(Stock::DIALOG_INFO,  Gtk::ICON_SIZE_DIALOG));
3331
3332         dimage->set_alignment(ALIGN_LEFT, ALIGN_TOP);
3333
3334         const string dead_directory = _session->session_directory().dead_path();
3335
3336         /* subst:
3337            %1 - number of files removed
3338            %2 - location of "dead"
3339            %3 - size of files affected
3340            %4 - prefix for "bytes" to produce sensible results (e.g. mega, kilo, giga)
3341         */
3342
3343         const char* bprefix;
3344         double space_adjusted = 0;
3345
3346         if (rep.space < 1000) {
3347                 bprefix = X_("");
3348                 space_adjusted = rep.space;
3349         } else if (rep.space < 1000000) {
3350                 bprefix = _("kilo");
3351                 space_adjusted = floorf((float)rep.space / 1000.0);
3352         } else if (rep.space < 1000000 * 1000) {
3353                 bprefix = _("mega");
3354                 space_adjusted = floorf((float)rep.space / (1000.0 * 1000.0));
3355         } else {
3356                 bprefix = _("giga");
3357                 space_adjusted = floorf((float)rep.space / (1000.0 * 1000 * 1000.0));
3358         }
3359
3360         if (msg_delete) {
3361                 txt.set_markup (string_compose (P_("\
3362 The following file was deleted from %2,\n\
3363 releasing %3 %4bytes of disk space", "\
3364 The following %1 files were deleted from %2,\n\
3365 releasing %3 %4bytes of disk space", removed),
3366                                         removed, Glib::Markup::escape_text (dead_directory), space_adjusted, bprefix, PROGRAM_NAME));
3367         } else {
3368                 txt.set_markup (string_compose (P_("\
3369 The following file was not in use and \n\
3370 has been moved to: %2\n\n\
3371 After a restart of %5\n\n\
3372 <span face=\"mono\">Session -> Clean-up -> Flush Wastebasket</span>\n\n\
3373 will release an additional %3 %4bytes of disk space.\n", "\
3374 The following %1 files were not in use and \n\
3375 have been moved to: %2\n\n\
3376 After a restart of %5\n\n\
3377 <span face=\"mono\">Session -> Clean-up -> Flush Wastebasket</span>\n\n\
3378 will release an additional %3 %4bytes of disk space.\n", removed),
3379                                         removed, Glib::Markup::escape_text (dead_directory), space_adjusted, bprefix, PROGRAM_NAME));
3380         }
3381
3382         dhbox.pack_start (*dimage, true, false, 5);
3383         dhbox.pack_start (txt, true, false, 5);
3384
3385         for (vector<string>::iterator i = rep.paths.begin(); i != rep.paths.end(); ++i) {
3386                 TreeModel::Row row = *(results_model->append());
3387                 row[results_columns.visible_name] = *i;
3388                 row[results_columns.fullpath] = *i;
3389         }
3390
3391         list_scroller.add (results_display);
3392         list_scroller.set_size_request (-1, 150);
3393         list_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
3394
3395         dvbox.pack_start (dhbox, true, false, 5);
3396         dvbox.pack_start (list_scroller, true, false, 5);
3397         ddhbox.pack_start (dvbox, true, false, 5);
3398
3399         results.get_vbox()->pack_start (ddhbox, true, false, 5);
3400         results.add_button (Stock::CLOSE, RESPONSE_CLOSE);
3401         results.set_default_response (RESPONSE_CLOSE);
3402         results.set_position (Gtk::WIN_POS_MOUSE);
3403
3404         results_display.show();
3405         list_scroller.show();
3406         txt.show();
3407         dvbox.show();
3408         dhbox.show();
3409         ddhbox.show();
3410         dimage->show();
3411
3412         //results.get_vbox()->show();
3413         results.set_resizable (false);
3414
3415         results.run ();
3416
3417 }
3418
3419 void
3420 ARDOUR_UI::cleanup ()
3421 {
3422         if (_session == 0) {
3423                 /* shouldn't happen: menu item is insensitive */
3424                 return;
3425         }
3426
3427
3428         MessageDialog checker (_("Are you sure you want to clean-up?"),
3429                                 true,
3430                                 Gtk::MESSAGE_QUESTION,
3431                                 Gtk::BUTTONS_NONE);
3432
3433         checker.set_title (_("Clean-up"));
3434
3435         checker.set_secondary_text(_("Clean-up is a destructive operation.\n\
3436 ALL undo/redo information will be lost if you clean-up.\n\
3437 Clean-up will move all unused files to a \"dead\" location."));
3438
3439         checker.add_button (Stock::CANCEL, RESPONSE_CANCEL);
3440         checker.add_button (_("Clean-up"), RESPONSE_ACCEPT);
3441         checker.set_default_response (RESPONSE_CANCEL);
3442
3443         checker.set_name (_("CleanupDialog"));
3444         checker.set_wmclass (X_("ardour_cleanup"), PROGRAM_NAME);
3445         checker.set_position (Gtk::WIN_POS_MOUSE);
3446
3447         switch (checker.run()) {
3448         case RESPONSE_ACCEPT:
3449                 break;
3450         default:
3451                 return;
3452         }
3453
3454         ARDOUR::CleanupReport rep;
3455
3456         editor->prepare_for_cleanup ();
3457
3458         /* do not allow flush until a session is reloaded */
3459
3460         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Main"), X_("FlushWastebasket"));
3461         if (act) {
3462                 act->set_sensitive (false);
3463         }
3464
3465         if (_session->cleanup_sources (rep)) {
3466                 editor->finish_cleanup ();
3467                 return;
3468         }
3469
3470         editor->finish_cleanup ();
3471
3472         checker.hide();
3473         display_cleanup_results (rep, _("Cleaned Files"), false);
3474 }
3475
3476 void
3477 ARDOUR_UI::flush_trash ()
3478 {
3479         if (_session == 0) {
3480                 /* shouldn't happen: menu item is insensitive */
3481                 return;
3482         }
3483
3484         ARDOUR::CleanupReport rep;
3485
3486         if (_session->cleanup_trash_sources (rep)) {
3487                 return;
3488         }
3489
3490         display_cleanup_results (rep, _("deleted file"), true);
3491 }
3492
3493 void
3494 ARDOUR_UI::setup_order_hint (AddRouteDialog::InsertAt place)
3495 {
3496         uint32_t order_hint = 0;
3497
3498         /*
3499           we want the new routes to have their order keys set starting from 
3500           the highest order key in the selection + 1 (if available).
3501         */
3502         if (place == AddRouteDialog::MixerSelection) {
3503                 for (RouteUISelection::iterator s = mixer->selection().routes.begin(); s != mixer->selection().routes.end(); ++s) {
3504                         if ((*s)->route()->order_key() > order_hint) {
3505                                 order_hint = (*s)->route()->order_key();
3506                         }
3507                 }
3508
3509                 if (!mixer->selection().routes.empty()) {
3510                         order_hint++;
3511                 } else {
3512                         return;
3513                 }
3514
3515         } else if (place == AddRouteDialog::EditorSelection){
3516                 for (TrackSelection::iterator s = editor->get_selection().tracks.begin(); s != editor->get_selection().tracks.end(); ++s) {
3517                         RouteTimeAxisView* tav = dynamic_cast<RouteTimeAxisView*> (*s);
3518                         if (tav && tav->route() && tav->route()->order_key() > order_hint) {
3519                                 order_hint = tav->route()->order_key();
3520                         }
3521                 }
3522
3523                 if (!editor->get_selection().tracks.empty()) {
3524                         order_hint++;
3525                 } else {
3526                         return;
3527                 }
3528
3529         } else if (place == AddRouteDialog::First) {
3530                 order_hint = 0;
3531         } else {
3532                 /** AddRouteDialog::Last
3533                  * not setting an order hint will place new routes last.
3534                  */
3535                 return;
3536         }
3537
3538         _session->set_order_hint (order_hint);
3539
3540         /* create a gap in the existing route order keys to accomodate new routes.*/
3541         boost::shared_ptr <RouteList> rd = _session->get_routes();
3542         for (RouteList::iterator ri = rd->begin(); ri != rd->end(); ++ri) {
3543                 boost::shared_ptr<Route> rt (*ri);
3544
3545                 if (rt->is_monitor()) {
3546                         continue;
3547                 }
3548
3549                 if (rt->order_key () >= order_hint) {
3550                         rt->set_order_key (rt->order_key () + add_route_dialog->count());
3551                 }
3552         }
3553 }
3554
3555 void
3556 ARDOUR_UI::add_route (Gtk::Window* /* ignored */)
3557 {
3558         int count;
3559
3560         if (!_session) {
3561                 return;
3562         }
3563
3564         if (add_route_dialog->is_visible()) {
3565                 /* we're already doing this */
3566                 return;
3567         }
3568
3569         ResponseType r = (ResponseType) add_route_dialog->run ();
3570
3571         add_route_dialog->hide();
3572
3573         switch (r) {
3574                 case RESPONSE_ACCEPT:
3575                         break;
3576                 default:
3577                         return;
3578                         break;
3579         }
3580
3581         if ((count = add_route_dialog->count()) <= 0) {
3582                 return;
3583         }
3584
3585         setup_order_hint(add_route_dialog->insert_at());
3586
3587         string template_path = add_route_dialog->track_template();
3588         DisplaySuspender ds;
3589
3590         if (!template_path.empty()) {
3591                 if (add_route_dialog->name_template_is_default())  {
3592                         _session->new_route_from_template (count, template_path, string());
3593                 } else {
3594                         _session->new_route_from_template (count, template_path, add_route_dialog->name_template());
3595                 }
3596                 return;
3597         }
3598
3599         ChanCount input_chan= add_route_dialog->channels ();
3600         ChanCount output_chan;
3601         string name_template = add_route_dialog->name_template ();
3602         PluginInfoPtr instrument = add_route_dialog->requested_instrument ();
3603         RouteGroup* route_group = add_route_dialog->route_group ();
3604         AutoConnectOption oac = Config->get_output_auto_connect();
3605
3606         if (oac & AutoConnectMaster) {
3607                 output_chan.set (DataType::AUDIO, (_session->master_out() ? _session->master_out()->n_inputs().n_audio() : input_chan.n_audio()));
3608                 output_chan.set (DataType::MIDI, 0);
3609         } else {
3610                 output_chan = input_chan;
3611         }
3612
3613         /* XXX do something with name template */
3614
3615         switch (add_route_dialog->type_wanted()) {
3616         case AddRouteDialog::AudioTrack:
3617                 session_add_audio_track (input_chan.n_audio(), output_chan.n_audio(), add_route_dialog->mode(), route_group, count, name_template);
3618                 break;
3619         case AddRouteDialog::MidiTrack:
3620                 session_add_midi_track (route_group, count, name_template, instrument);
3621                 break;
3622         case AddRouteDialog::MixedTrack:
3623                 session_add_mixed_track (input_chan, output_chan, route_group, count, name_template, instrument);
3624                 break;
3625         case AddRouteDialog::AudioBus:
3626                 session_add_audio_bus (input_chan.n_audio(), output_chan.n_audio(), route_group, count, name_template);
3627                 break;
3628         }
3629 }
3630
3631 void
3632 ARDOUR_UI::stop_video_server (bool ask_confirm)
3633 {
3634         if (!video_server_process && ask_confirm) {
3635                 warning << string_compose (_("Video-Server was not launched by %1. The request to stop it is ignored."), PROGRAM_NAME) << endmsg;
3636         }
3637         if (video_server_process) {
3638                 if(ask_confirm) {
3639                         ArdourDialog confirm (_("Stop Video-Server"), true);
3640                         Label m (_("Do you really want to stop the Video Server?"));
3641                         confirm.get_vbox()->pack_start (m, true, true);
3642                         confirm.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
3643                         confirm.add_button (_("Yes, Stop It"), Gtk::RESPONSE_ACCEPT);
3644                         confirm.show_all ();
3645                         if (confirm.run() == RESPONSE_CANCEL) {
3646                                 return;
3647                         }
3648                 }
3649                 delete video_server_process;
3650                 video_server_process =0;
3651         }
3652 }
3653
3654 void
3655 ARDOUR_UI::start_video_server_menu (Gtk::Window* float_window)
3656 {
3657   ARDOUR_UI::start_video_server( float_window, true);
3658 }
3659
3660 bool
3661 ARDOUR_UI::start_video_server (Gtk::Window* float_window, bool popup_msg)
3662 {
3663         if (!_session) {
3664                 return false;
3665         }
3666         if (popup_msg) {
3667                 if (ARDOUR_UI::instance()->video_timeline->check_server()) {
3668                         if (video_server_process) {
3669                                 popup_error(_("The Video Server is already started."));
3670                         } else {
3671                                 popup_error(_("An external Video Server is configured and can be reached. Not starting a new instance."));
3672                         }
3673                 }
3674         }
3675
3676         int firsttime = 0;
3677         while (!ARDOUR_UI::instance()->video_timeline->check_server()) {
3678                 if (firsttime++) {
3679                         warning << _("Could not connect to the Video Server. Start it or configure its access URL in Preferences.") << endmsg;
3680                 }
3681                 VideoServerDialog *video_server_dialog = new VideoServerDialog (_session);
3682                 if (float_window) {
3683                         video_server_dialog->set_transient_for (*float_window);
3684                 }
3685
3686                 if (!Config->get_show_video_server_dialog() && firsttime < 2) {
3687                         video_server_dialog->hide();
3688                 } else {
3689                         ResponseType r = (ResponseType) video_server_dialog->run ();
3690                         video_server_dialog->hide();
3691                         if (r != RESPONSE_ACCEPT) { return false; }
3692                         if (video_server_dialog->show_again()) {
3693                                 Config->set_show_video_server_dialog(false);
3694                         }
3695                 }
3696
3697                 std::string icsd_exec = video_server_dialog->get_exec_path();
3698                 std::string icsd_docroot = video_server_dialog->get_docroot();
3699                 if (icsd_docroot.empty()) {
3700 #ifndef PLATFORM_WINDOWS
3701                         icsd_docroot = X_("/");
3702 #else
3703                         icsd_docroot = X_("C:\\");
3704 #endif
3705                 }
3706
3707                 GStatBuf sb;
3708                 if (g_lstat (icsd_docroot.c_str(), &sb) != 0 || !S_ISDIR(sb.st_mode)) {
3709                         warning << _("Specified docroot is not an existing directory.") << endmsg;
3710                         continue;
3711                 }
3712 #ifndef PLATFORM_WINDOWS
3713                 if ( (g_lstat (icsd_exec.c_str(), &sb) != 0)
3714                      || (sb.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH)) == 0 ) {
3715                         warning << _("Given Video Server is not an executable file.") << endmsg;
3716                         continue;
3717                 }
3718 #else
3719                 if ( (g_lstat (icsd_exec.c_str(), &sb) != 0)
3720                      || (sb.st_mode & (S_IXUSR)) == 0 ) {
3721                         warning << _("Given Video Server is not an executable file.") << endmsg;
3722                         continue;
3723                 }
3724 #endif
3725
3726                 char **argp;
3727                 argp=(char**) calloc(9,sizeof(char*));
3728                 argp[0] = strdup(icsd_exec.c_str());
3729                 argp[1] = strdup("-P");
3730                 argp[2] = (char*) calloc(16,sizeof(char)); snprintf(argp[2], 16, "%s", video_server_dialog->get_listenaddr().c_str());
3731                 argp[3] = strdup("-p");
3732                 argp[4] = (char*) calloc(6,sizeof(char)); snprintf(argp[4], 6, "%i", video_server_dialog->get_listenport());
3733                 argp[5] = strdup("-C");
3734                 argp[6] = (char*) calloc(6,sizeof(char)); snprintf(argp[6], 6, "%i", video_server_dialog->get_cachesize());
3735                 argp[7] = strdup(icsd_docroot.c_str());
3736                 argp[8] = 0;
3737                 stop_video_server();
3738
3739                 if (icsd_docroot == X_("/") || icsd_docroot == X_("C:\\")) {
3740                         Config->set_video_advanced_setup(false);
3741                 } else {
3742                         std::ostringstream osstream;
3743                         osstream << "http://localhost:" << video_server_dialog->get_listenport() << "/";
3744                         Config->set_video_server_url(osstream.str());
3745                         Config->set_video_server_docroot(icsd_docroot);
3746                         Config->set_video_advanced_setup(true);
3747                 }
3748
3749                 if (video_server_process) {
3750                         delete video_server_process;
3751                 }
3752
3753                 video_server_process = new ARDOUR::SystemExec(icsd_exec, argp);
3754                 if (video_server_process->start()) {
3755                         warning << _("Cannot launch the video-server") << endmsg;
3756                         continue;
3757                 }
3758                 int timeout = 120; // 6 sec
3759                 while (!ARDOUR_UI::instance()->video_timeline->check_server()) {
3760                         Glib::usleep (50000);
3761                         gui_idle_handler();
3762                         if (--timeout <= 0 || !video_server_process->is_running()) break;
3763                 }
3764                 if (timeout <= 0) {
3765                         warning << _("Video-server was started but does not respond to requests...") << endmsg;
3766                 } else {
3767                         if (!ARDOUR_UI::instance()->video_timeline->check_server_docroot()) {
3768                                 delete video_server_process;
3769                                 video_server_process = 0;
3770                         }
3771                 }
3772         }
3773         return true;
3774 }
3775
3776 void
3777 ARDOUR_UI::add_video (Gtk::Window* float_window)
3778 {
3779         if (!_session) {
3780                 return;
3781         }
3782
3783         if (!start_video_server(float_window, false)) {
3784                 warning << _("Could not connect to the Video Server. Start it or configure its access URL in Preferences.") << endmsg;
3785                 return;
3786         }
3787
3788         if (float_window) {
3789                 add_video_dialog->set_transient_for (*float_window);
3790         }
3791
3792         if (add_video_dialog->is_visible()) {
3793                 /* we're already doing this */
3794                 return;
3795         }
3796
3797         ResponseType r = (ResponseType) add_video_dialog->run ();
3798         add_video_dialog->hide();
3799         if (r != RESPONSE_ACCEPT) { return; }
3800
3801         bool local_file, orig_local_file;
3802         std::string path = add_video_dialog->file_name(local_file);
3803
3804         std::string orig_path = path;
3805         orig_local_file = local_file;
3806
3807         bool auto_set_session_fps = add_video_dialog->auto_set_session_fps();
3808
3809         if (local_file && !Glib::file_test(path, Glib::FILE_TEST_EXISTS)) {
3810                 warning << string_compose(_("could not open %1"), path) << endmsg;
3811                 return;
3812         }
3813         if (!local_file && path.length() == 0) {
3814                 warning << _("no video-file selected") << endmsg;
3815                 return;
3816         }
3817
3818         switch (add_video_dialog->import_option()) {
3819                 case VTL_IMPORT_TRANSCODE:
3820                         {
3821                                 TranscodeVideoDialog *transcode_video_dialog;
3822                                 transcode_video_dialog = new TranscodeVideoDialog (_session, path);
3823                                 ResponseType r = (ResponseType) transcode_video_dialog->run ();
3824                                 transcode_video_dialog->hide();
3825                                 if (r != RESPONSE_ACCEPT) {
3826                                         delete transcode_video_dialog;
3827                                         return;
3828                                 }
3829                                 if (!transcode_video_dialog->get_audiofile().empty()) {
3830                                         editor->embed_audio_from_video(
3831                                                         transcode_video_dialog->get_audiofile(),
3832                                                         video_timeline->get_offset(),
3833                                                         (transcode_video_dialog->import_option() != VTL_IMPORT_NO_VIDEO)
3834                                                         );
3835                                 }
3836                                 switch (transcode_video_dialog->import_option()) {
3837                                         case VTL_IMPORT_TRANSCODED:
3838                                                 path = transcode_video_dialog->get_filename();
3839                                                 local_file = true;
3840                                                 break;
3841                                         case VTL_IMPORT_REFERENCE:
3842                                                 break;
3843                                         default:
3844                                                 delete transcode_video_dialog;
3845                                                 return;
3846                                 }
3847                                 delete transcode_video_dialog;
3848                         }
3849                         break;
3850                 default:
3851                 case VTL_IMPORT_NONE:
3852                         break;
3853         }
3854
3855         /* strip _session->session_directory().video_path() from video file if possible */
3856         if (local_file && !path.compare(0, _session->session_directory().video_path().size(), _session->session_directory().video_path())) {
3857                  path=path.substr(_session->session_directory().video_path().size());
3858                  if (path.at(0) == G_DIR_SEPARATOR) {
3859                          path=path.substr(1);
3860                  }
3861         }
3862
3863         video_timeline->set_update_session_fps(auto_set_session_fps);
3864         if (video_timeline->video_file_info(path, local_file)) {
3865                 XMLNode* node = new XMLNode(X_("Videotimeline"));
3866                 node->add_property (X_("Filename"), path);
3867                 node->add_property (X_("AutoFPS"), auto_set_session_fps?X_("1"):X_("0"));
3868                 node->add_property (X_("LocalFile"), local_file?X_("1"):X_("0"));
3869                 if (orig_local_file) {
3870                         node->add_property (X_("OriginalVideoFile"), orig_path);
3871                 } else {
3872                         node->remove_property (X_("OriginalVideoFile"));
3873                 }
3874                 _session->add_extra_xml (*node);
3875                 _session->set_dirty ();
3876
3877                 _session->maybe_update_session_range(
3878                         std::max(video_timeline->get_offset(), (ARDOUR::frameoffset_t) 0),
3879                         std::max(video_timeline->get_offset() + video_timeline->get_duration(), (ARDOUR::frameoffset_t) 0));
3880
3881
3882                 if (add_video_dialog->launch_xjadeo() && local_file) {
3883                         editor->set_xjadeo_sensitive(true);
3884                         editor->toggle_xjadeo_proc(1);
3885                 } else {
3886                         editor->toggle_xjadeo_proc(0);
3887                 }
3888                 editor->toggle_ruler_video(true);
3889         }
3890 }
3891
3892 void
3893 ARDOUR_UI::remove_video ()
3894 {
3895         video_timeline->close_session();
3896         editor->toggle_ruler_video(false);
3897
3898         /* reset state */
3899         video_timeline->set_offset_locked(false);
3900         video_timeline->set_offset(0);
3901
3902         /* delete session state */
3903         XMLNode* node = new XMLNode(X_("Videotimeline"));
3904         _session->add_extra_xml(*node);
3905         node = new XMLNode(X_("Videomonitor"));
3906         _session->add_extra_xml(*node);
3907         node = new XMLNode(X_("Videoexport"));
3908         _session->add_extra_xml(*node);
3909         stop_video_server();
3910 }
3911
3912 void
3913 ARDOUR_UI::flush_videotimeline_cache (bool localcacheonly)
3914 {
3915         if (localcacheonly) {
3916                 video_timeline->vmon_update();
3917         } else {
3918                 video_timeline->flush_cache();
3919         }
3920         editor->queue_visual_videotimeline_update();
3921 }
3922
3923 void
3924 ARDOUR_UI::export_video (bool range)
3925 {
3926         if (ARDOUR::Config->get_show_video_export_info()) {
3927                 ExportVideoInfobox infobox (_session);
3928                 Gtk::ResponseType rv = (Gtk::ResponseType) infobox.run();
3929                 if (infobox.show_again()) {
3930                         ARDOUR::Config->set_show_video_export_info(false);
3931                 }
3932                 switch (rv) {
3933                         case GTK_RESPONSE_YES:
3934                                 PBD::open_uri (ARDOUR::Config->get_reference_manual_url() + "/video-timeline/operations/#export");
3935                                 break;
3936                         default:
3937                                 break;
3938                 }
3939         }
3940         export_video_dialog->set_session (_session);
3941         export_video_dialog->apply_state(editor->get_selection().time, range);
3942         export_video_dialog->run ();
3943         export_video_dialog->hide ();
3944 }
3945
3946 XMLNode*
3947 ARDOUR_UI::mixer_settings () const
3948 {
3949         XMLNode* node = 0;
3950
3951         if (_session) {
3952                 node = _session->instant_xml(X_("Mixer"));
3953         } else {
3954                 node = Config->instant_xml(X_("Mixer"));
3955         }
3956
3957         if (!node) {
3958                 node = new XMLNode (X_("Mixer"));
3959         }
3960
3961         return node;
3962 }
3963
3964 XMLNode*
3965 ARDOUR_UI::editor_settings () const
3966 {
3967         XMLNode* node = 0;
3968
3969         if (_session) {
3970                 node = _session->instant_xml(X_("Editor"));
3971         } else {
3972                 node = Config->instant_xml(X_("Editor"));
3973         }
3974
3975         if (!node) {
3976                 if (getenv("ARDOUR_INSTANT_XML_PATH")) {
3977                         node = Config->instant_xml(getenv("ARDOUR_INSTANT_XML_PATH"));
3978                 }
3979         }
3980
3981         if (!node) {
3982                 node = new XMLNode (X_("Editor"));
3983         }
3984
3985         return node;
3986 }
3987
3988 XMLNode*
3989 ARDOUR_UI::keyboard_settings () const
3990 {
3991         XMLNode* node = 0;
3992
3993         node = Config->extra_xml(X_("Keyboard"));
3994
3995         if (!node) {
3996                 node = new XMLNode (X_("Keyboard"));
3997         }
3998
3999         return node;
4000 }
4001
4002 void
4003 ARDOUR_UI::create_xrun_marker (framepos_t where)
4004 {
4005         editor->mouse_add_new_marker (where, false, true);
4006 }
4007
4008 void
4009 ARDOUR_UI::halt_on_xrun_message ()
4010 {
4011         cerr << "HALT on xrun\n";
4012         MessageDialog msg (*editor, _("Recording was stopped because your system could not keep up."));
4013         msg.run ();
4014 }
4015
4016 void
4017 ARDOUR_UI::xrun_handler (framepos_t where)
4018 {
4019         if (!_session) {
4020                 return;
4021         }
4022
4023         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::xrun_handler, where)
4024
4025         if (_session && Config->get_create_xrun_marker() && _session->actively_recording()) {
4026                 create_xrun_marker(where);
4027         }
4028
4029         if (_session && Config->get_stop_recording_on_xrun() && _session->actively_recording()) {
4030                 halt_on_xrun_message ();
4031         }
4032 }
4033
4034 void
4035 ARDOUR_UI::disk_overrun_handler ()
4036 {
4037         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::disk_overrun_handler)
4038
4039         if (!have_disk_speed_dialog_displayed) {
4040                 have_disk_speed_dialog_displayed = true;
4041                 MessageDialog* msg = new MessageDialog (*editor, string_compose (_("\
4042 The disk system on your computer\n\
4043 was not able to keep up with %1.\n\
4044 \n\
4045 Specifically, it failed to write data to disk\n\
4046 quickly enough to keep up with recording.\n"), PROGRAM_NAME));
4047                 msg->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::disk_speed_dialog_gone), msg));
4048                 msg->show ();
4049         }
4050 }
4051
4052
4053 /* TODO: this is getting elaborate enough to warrant being split into a dedicated class */
4054 static MessageDialog *scan_dlg = NULL;
4055 static ProgressBar   *scan_pbar = NULL;
4056 static HBox          *scan_tbox = NULL;
4057
4058 void
4059 ARDOUR_UI::cancel_plugin_scan ()
4060 {
4061         PluginManager::instance().cancel_plugin_scan();
4062 }
4063
4064 void
4065 ARDOUR_UI::cancel_plugin_timeout ()
4066 {
4067         PluginManager::instance().cancel_plugin_timeout();
4068         scan_tbox->hide();
4069 }
4070
4071 void
4072 ARDOUR_UI::plugin_scan_timeout (int timeout)
4073 {
4074         if (!scan_dlg || !scan_dlg->is_mapped() || !scan_pbar) {
4075                 return;
4076         }
4077         if (timeout > 0) {
4078                 scan_pbar->set_fraction ((float) timeout / (float) Config->get_vst_scan_timeout());
4079                 scan_tbox->show();
4080         } else {
4081                 scan_tbox->hide();
4082         }
4083         gui_idle_handler();
4084 }
4085
4086 void
4087 ARDOUR_UI::plugin_scan_dialog (std::string type, std::string plugin, bool can_cancel)
4088 {
4089         if (type == X_("closeme") && !(scan_dlg && scan_dlg->is_mapped())) {
4090                 return;
4091         }
4092
4093         const bool cancelled = PluginManager::instance().cancelled();
4094         if (type != X_("closeme") && !ui_config->get_show_plugin_scan_window()) {
4095                 if (cancelled && scan_dlg->is_mapped()) {
4096                         scan_dlg->hide();
4097                         gui_idle_handler();
4098                         return;
4099                 }
4100                 if (cancelled || !can_cancel) {
4101                         return;
4102                 }
4103         }
4104
4105         static Gtk::Button *cancel_button;
4106         static Gtk::Button *timeout_button;
4107         if (!scan_dlg) {
4108                 scan_dlg = new MessageDialog("", false, MESSAGE_INFO, BUTTONS_NONE); // TODO manage
4109                 VBox* vbox = scan_dlg->get_vbox();
4110                 vbox->set_size_request(400,-1);
4111                 scan_dlg->set_title (_("Scanning for plugins"));
4112
4113                 cancel_button = manage(new Gtk::Button(_("Cancel plugin scan")));
4114                 cancel_button->set_name ("EditorGTKButton");
4115                 cancel_button->signal_clicked().connect ( mem_fun (*this, &ARDOUR_UI::cancel_plugin_scan) );
4116                 cancel_button->show();
4117
4118                 scan_dlg->get_vbox()->pack_start ( *cancel_button, PACK_SHRINK);
4119
4120                 scan_tbox = manage( new HBox() );
4121
4122                 timeout_button = manage(new Gtk::Button(_("Stop Timeout")));
4123                 timeout_button->set_name ("EditorGTKButton");
4124                 timeout_button->signal_clicked().connect ( mem_fun (*this, &ARDOUR_UI::cancel_plugin_timeout) );
4125                 timeout_button->show();
4126
4127                 scan_pbar = manage(new ProgressBar());
4128                 scan_pbar->set_orientation(Gtk::PROGRESS_RIGHT_TO_LEFT);
4129                 scan_pbar->set_text(_("Scan Timeout"));
4130                 scan_pbar->show();
4131
4132                 scan_tbox->pack_start (*scan_pbar, PACK_EXPAND_WIDGET, 4);
4133                 scan_tbox->pack_start (*timeout_button, PACK_SHRINK, 4);
4134
4135                 scan_dlg->get_vbox()->pack_start (*scan_tbox, PACK_SHRINK, 4);
4136         }
4137
4138         assert(scan_dlg && scan_tbox && cancel_button);
4139
4140         if (type == X_("closeme")) {
4141                 scan_dlg->hide();
4142         } else {
4143                 scan_dlg->set_message(type + ": " + Glib::path_get_basename(plugin));
4144                 scan_dlg->show();
4145         }
4146         if (!can_cancel || !cancelled) {
4147                 scan_tbox->hide();
4148         }
4149         cancel_button->set_sensitive(can_cancel && !cancelled);
4150
4151         gui_idle_handler();
4152 }
4153
4154 void
4155 ARDOUR_UI::gui_idle_handler ()
4156 {
4157         int timeout = 30;
4158         /* due to idle calls, gtk_events_pending() may always return true */
4159         while (gtk_events_pending() && --timeout) {
4160                 gtk_main_iteration ();
4161         }
4162 }
4163
4164 void
4165 ARDOUR_UI::disk_underrun_handler ()
4166 {
4167         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::disk_underrun_handler)
4168
4169         if (!have_disk_speed_dialog_displayed) {
4170                 have_disk_speed_dialog_displayed = true;
4171                 MessageDialog* msg = new MessageDialog (
4172                         *editor, string_compose (_("The disk system on your computer\n\
4173 was not able to keep up with %1.\n\
4174 \n\
4175 Specifically, it failed to read data from disk\n\
4176 quickly enough to keep up with playback.\n"), PROGRAM_NAME));
4177                 msg->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::disk_speed_dialog_gone), msg));
4178                 msg->show ();
4179         }
4180 }
4181
4182 void
4183 ARDOUR_UI::disk_speed_dialog_gone (int /*ignored_response*/, MessageDialog* msg)
4184 {
4185         have_disk_speed_dialog_displayed = false;
4186         delete msg;
4187 }
4188
4189 void
4190 ARDOUR_UI::session_dialog (std::string msg)
4191 {
4192         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::session_dialog, msg)
4193
4194         MessageDialog* d;
4195
4196         if (editor) {
4197                 d = new MessageDialog (*editor, msg, false, MESSAGE_INFO, BUTTONS_OK, true);
4198         } else {
4199                 d = new MessageDialog (msg, false, MESSAGE_INFO, BUTTONS_OK, true);
4200         }
4201
4202         d->show_all ();
4203         d->run ();
4204         delete d;
4205 }
4206
4207 int
4208 ARDOUR_UI::pending_state_dialog ()
4209 {
4210         HBox* hbox = manage (new HBox());
4211         Image* image = manage (new Image (Stock::DIALOG_QUESTION, ICON_SIZE_DIALOG));
4212         ArdourDialog dialog (_("Crash Recovery"), true);
4213         Label  message (string_compose (_("\
4214 This session appears to have been in the\n\
4215 middle of recording when %1 or\n\
4216 the computer was shutdown.\n\
4217 \n\
4218 %1 can recover any captured audio for\n\
4219 you, or it can ignore it. Please decide\n\
4220 what you would like to do.\n"), PROGRAM_NAME));
4221         image->set_alignment(ALIGN_CENTER, ALIGN_TOP);
4222         hbox->pack_start (*image, PACK_EXPAND_WIDGET, 12);
4223         hbox->pack_end (message, PACK_EXPAND_PADDING, 12);
4224         dialog.get_vbox()->pack_start(*hbox, PACK_EXPAND_PADDING, 6);
4225         dialog.add_button (_("Ignore crash data"), RESPONSE_REJECT);
4226         dialog.add_button (_("Recover from crash"), RESPONSE_ACCEPT);
4227         dialog.set_default_response (RESPONSE_ACCEPT);
4228         dialog.set_position (WIN_POS_CENTER);
4229         message.show();
4230         image->show();
4231         hbox->show();
4232
4233         switch (dialog.run ()) {
4234         case RESPONSE_ACCEPT:
4235                 return 1;
4236         default:
4237                 return 0;
4238         }
4239 }
4240
4241 int
4242 ARDOUR_UI::sr_mismatch_dialog (framecnt_t desired, framecnt_t actual)
4243 {
4244         HBox* hbox = new HBox();
4245         Image* image = new Image (Stock::DIALOG_WARNING, ICON_SIZE_DIALOG);
4246         ArdourDialog dialog (_("Sample Rate Mismatch"), true);
4247         Label  message (string_compose (_("\
4248 This session was created with a sample rate of %1 Hz, but\n\
4249 %2 is currently running at %3 Hz.  If you load this session,\n\
4250 audio may be played at the wrong sample rate.\n"), desired, PROGRAM_NAME, actual));
4251
4252         image->set_alignment(ALIGN_CENTER, ALIGN_TOP);
4253         hbox->pack_start (*image, PACK_EXPAND_WIDGET, 12);
4254         hbox->pack_end (message, PACK_EXPAND_PADDING, 12);
4255         dialog.get_vbox()->pack_start(*hbox, PACK_EXPAND_PADDING, 6);
4256         dialog.add_button (_("Do not load session"), RESPONSE_REJECT);
4257         dialog.add_button (_("Load session anyway"), RESPONSE_ACCEPT);
4258         dialog.set_default_response (RESPONSE_ACCEPT);
4259         dialog.set_position (WIN_POS_CENTER);
4260         message.show();
4261         image->show();
4262         hbox->show();
4263
4264         switch (dialog.run()) {
4265         case RESPONSE_ACCEPT:
4266                 return 0;
4267         default:
4268                 break;
4269         }
4270
4271         return 1;
4272 }
4273
4274 int
4275 ARDOUR_UI::disconnect_from_engine ()
4276 {
4277         /* drop connection to AudioEngine::Halted so that we don't act
4278          *  as if the engine unexpectedly shut down
4279          */
4280
4281         halt_connection.disconnect ();
4282         
4283         if (AudioEngine::instance()->stop ()) {
4284                 MessageDialog msg (*editor, _("Could not disconnect from Audio/MIDI engine"));
4285                 msg.run ();
4286                 return -1;
4287         } else {
4288                 AudioEngine::instance()->Halted.connect_same_thread (halt_connection, boost::bind (&ARDOUR_UI::engine_halted, this, _1, false));
4289         }
4290         
4291         update_sample_rate (0);
4292         return 0;
4293 }
4294
4295 int
4296 ARDOUR_UI::reconnect_to_engine ()
4297 {
4298         if (AudioEngine::instance()->start ()) {
4299                 // TODO somehow make this the topmost window (above any dialogs currently visible)
4300                 if (editor) {
4301                         MessageDialog msg (*editor,  _("Could not reconnect to the Audio/MIDI engine"));
4302                         msg.run ();
4303                 } else {
4304                         MessageDialog msg (_("Could not reconnect to the Audio/MIDI engine"));
4305                         msg.run ();
4306                 }
4307                 return -1;
4308         }
4309         
4310         update_sample_rate (0);
4311         return 0;
4312 }
4313
4314 void
4315 ARDOUR_UI::use_config ()
4316 {
4317         XMLNode* node = Config->extra_xml (X_("TransportControllables"));
4318         if (node) {
4319                 set_transport_controllable_state (*node);
4320         }
4321 }
4322
4323 void
4324 ARDOUR_UI::update_transport_clocks (framepos_t pos)
4325 {
4326         if (ui_config->get_primary_clock_delta_edit_cursor()) {
4327                 primary_clock->set (pos, false, editor->get_preferred_edit_position());
4328         } else {
4329                 primary_clock->set (pos);
4330         }
4331
4332         if (ui_config->get_secondary_clock_delta_edit_cursor()) {
4333                 secondary_clock->set (pos, false, editor->get_preferred_edit_position());
4334         } else {
4335                 secondary_clock->set (pos);
4336         }
4337
4338         if (big_clock_window) {
4339                 big_clock->set (pos);
4340         }
4341         ARDOUR_UI::instance()->video_timeline->manual_seek_video_monitor(pos);
4342 }
4343
4344 void
4345 ARDOUR_UI::step_edit_status_change (bool yn)
4346 {
4347         // XXX should really store pre-step edit status of things
4348         // we make insensitive
4349
4350         if (yn) {
4351                 rec_button.set_active_state (Gtkmm2ext::ImplicitActive);
4352                 rec_button.set_sensitive (false);
4353         } else {
4354                 rec_button.unset_active_state ();;
4355                 rec_button.set_sensitive (true);
4356         }
4357 }
4358
4359 void
4360 ARDOUR_UI::record_state_changed ()
4361 {
4362         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::record_state_changed);
4363
4364         if (!_session || !big_clock_window) {
4365                 /* why bother - the clock isn't visible */
4366                 return;
4367         }
4368
4369         if (_session->record_status () == Session::Recording && _session->have_rec_enabled_track ()) {
4370                 big_clock->set_active (true);
4371         } else {
4372                 big_clock->set_active (false);
4373         }
4374 }
4375
4376 bool
4377 ARDOUR_UI::first_idle ()
4378 {
4379         if (_session) {
4380                 _session->allow_auto_play (true);
4381         }
4382
4383         if (editor) {
4384                 editor->first_idle();
4385         }
4386
4387         Keyboard::set_can_save_keybindings (true);
4388         return false;
4389 }
4390
4391 void
4392 ARDOUR_UI::store_clock_modes ()
4393 {
4394         XMLNode* node = new XMLNode(X_("ClockModes"));
4395
4396         for (vector<AudioClock*>::iterator x = AudioClock::clocks.begin(); x != AudioClock::clocks.end(); ++x) {
4397                 XMLNode* child = new XMLNode (X_("Clock"));
4398                 
4399                 child->add_property (X_("name"), (*x)->name());
4400                 child->add_property (X_("mode"), enum_2_string ((*x)->mode()));
4401                 child->add_property (X_("on"), ((*x)->off() ? X_("no") : X_("yes")));
4402
4403                 node->add_child_nocopy (*child);
4404         }
4405
4406         _session->add_extra_xml (*node);
4407         _session->set_dirty ();
4408 }
4409
4410 ARDOUR_UI::TransportControllable::TransportControllable (std::string name, ARDOUR_UI& u, ToggleType tp)
4411         : Controllable (name), ui (u), type(tp)
4412 {
4413
4414 }
4415
4416 void
4417 ARDOUR_UI::TransportControllable::set_value (double val)
4418 {
4419         if (val < 0.5) {
4420                 /* do nothing: these are radio-style actions */
4421                 return;
4422         }
4423
4424         const char *action = 0;
4425
4426         switch (type) {
4427         case Roll:
4428                 action = X_("Roll");
4429                 break;
4430         case Stop:
4431                 action = X_("Stop");
4432                 break;
4433         case GotoStart:
4434                 action = X_("GotoStart");
4435                 break;
4436         case GotoEnd:
4437                 action = X_("GotoEnd");
4438                 break;
4439         case AutoLoop:
4440                 action = X_("Loop");
4441                 break;
4442         case PlaySelection:
4443                 action = X_("PlaySelection");
4444                 break;
4445         case RecordEnable:
4446                 action = X_("Record");
4447                 break;
4448         default:
4449                 break;
4450         }
4451
4452         if (action == 0) {
4453                 return;
4454         }
4455
4456         Glib::RefPtr<Action> act = ActionManager::get_action ("Transport", action);
4457
4458         if (act) {
4459                 act->activate ();
4460         }
4461 }
4462
4463 double
4464 ARDOUR_UI::TransportControllable::get_value (void) const
4465 {
4466         float val = 0.0;
4467
4468         switch (type) {
4469         case Roll:
4470                 break;
4471         case Stop:
4472                 break;
4473         case GotoStart:
4474                 break;
4475         case GotoEnd:
4476                 break;
4477         case AutoLoop:
4478                 break;
4479         case PlaySelection:
4480                 break;
4481         case RecordEnable:
4482                 break;
4483         default:
4484                 break;
4485         }
4486
4487         return val;
4488 }
4489
4490 void
4491 ARDOUR_UI::setup_profile ()
4492 {
4493         if (gdk_screen_width() < 1200 || getenv ("ARDOUR_NARROW_SCREEN")) {
4494                 Profile->set_small_screen ();
4495         }
4496
4497         if (g_getenv ("ARDOUR_SAE")) {
4498                 Profile->set_sae ();
4499                 Profile->set_single_package ();
4500         }
4501
4502         if (g_getenv ("TRX")) {
4503                 Profile->set_trx ();
4504         }
4505
4506         if (g_getenv ("MIXBUS")) {
4507                 Profile->set_mixbus ();
4508         }
4509 }
4510
4511 int
4512 ARDOUR_UI::missing_file (Session*s, std::string str, DataType type)
4513 {
4514         MissingFileDialog dialog (s, str, type);
4515
4516         dialog.show ();
4517         dialog.present ();
4518
4519         int result = dialog.run ();
4520         dialog.hide ();
4521
4522         switch (result) {
4523         case RESPONSE_OK:
4524                 break;
4525         default:
4526                 return 1; // quit entire session load
4527         }
4528
4529         result = dialog.get_action ();
4530
4531         return result;
4532 }
4533
4534 int
4535 ARDOUR_UI::ambiguous_file (std::string file, std::vector<std::string> hits)
4536 {
4537         AmbiguousFileDialog dialog (file, hits);
4538
4539         dialog.show ();
4540         dialog.present ();
4541
4542         dialog.run ();
4543         return dialog.get_which ();
4544 }
4545
4546 /** Allocate our thread-local buffers */
4547 void
4548 ARDOUR_UI::get_process_buffers ()
4549 {
4550         _process_thread->get_buffers ();
4551 }
4552
4553 /** Drop our thread-local buffers */
4554 void
4555 ARDOUR_UI::drop_process_buffers ()
4556 {
4557         _process_thread->drop_buffers ();
4558 }
4559
4560 void
4561 ARDOUR_UI::feedback_detected ()
4562 {
4563         _feedback_exists = true;
4564 }
4565
4566 void
4567 ARDOUR_UI::successful_graph_sort ()
4568 {
4569         _feedback_exists = false;
4570 }
4571
4572 void
4573 ARDOUR_UI::midi_panic ()
4574 {
4575         if (_session) {
4576                 _session->midi_panic();
4577         }
4578 }
4579
4580 void
4581 ARDOUR_UI::session_format_mismatch (std::string xml_path, std::string backup_path)
4582 {
4583         const char* start_big = "<span size=\"x-large\" weight=\"bold\">";
4584         const char* end_big = "</span>";
4585         const char* start_mono = "<tt>";
4586         const char* end_mono = "</tt>";
4587
4588         MessageDialog msg (string_compose (_("%4This is a session from an older version of %3%5\n\n"
4589                                              "%3 has copied the old session file\n\n%6%1%7\n\nto\n\n%6%2%7\n\n"
4590                                              "From now on, use the -2000 version with older versions of %3"),
4591                                            xml_path, backup_path, PROGRAM_NAME,
4592                                            start_big, end_big,
4593                                            start_mono, end_mono), true);
4594
4595         msg.run ();
4596 }
4597
4598
4599 void
4600 ARDOUR_UI::reset_peak_display ()
4601 {
4602         if (!_session || !_session->master_out() || !editor_meter) return;
4603         editor_meter->clear_meters();
4604         editor_meter_max_peak = -INFINITY;
4605         editor_meter_peak_display.set_active_state ( Gtkmm2ext::Off );
4606 }
4607
4608 void
4609 ARDOUR_UI::reset_group_peak_display (RouteGroup* group)
4610 {
4611         if (!_session || !_session->master_out()) return;
4612         if (group == _session->master_out()->route_group()) {
4613                 reset_peak_display ();
4614         }
4615 }
4616
4617 void
4618 ARDOUR_UI::reset_route_peak_display (Route* route)
4619 {
4620         if (!_session || !_session->master_out()) return;
4621         if (_session->master_out().get() == route) {
4622                 reset_peak_display ();
4623         }
4624 }
4625
4626 int
4627 ARDOUR_UI::do_audio_midi_setup (uint32_t desired_sample_rate)
4628 {
4629         audio_midi_setup->set_desired_sample_rate (desired_sample_rate);
4630         audio_midi_setup->set_position (WIN_POS_CENTER);
4631
4632         switch (audio_midi_setup->run()) {
4633         case Gtk::RESPONSE_OK:
4634                 return 0;
4635         case Gtk::RESPONSE_APPLY:
4636                 return 0;
4637         default:
4638                 return -1;
4639         }
4640 }
4641
4642
4643 gint
4644 ARDOUR_UI::transport_numpad_timeout ()
4645 {
4646         _numpad_locate_happening = false;
4647         if (_numpad_timeout_connection.connected() )
4648                 _numpad_timeout_connection.disconnect();
4649         return 1;
4650 }
4651
4652 void
4653 ARDOUR_UI::transport_numpad_decimal ()
4654 {
4655         _numpad_timeout_connection.disconnect();
4656
4657         if (_numpad_locate_happening) {
4658                 if (editor) editor->goto_nth_marker(_pending_locate_num - 1);
4659                 _numpad_locate_happening = false;
4660         } else {
4661                 _pending_locate_num = 0;
4662                 _numpad_locate_happening = true;
4663                 _numpad_timeout_connection = Glib::signal_timeout().connect (mem_fun(*this, &ARDOUR_UI::transport_numpad_timeout), 2*1000);
4664         }
4665 }
4666
4667 void
4668 ARDOUR_UI::transport_numpad_event (int num)
4669 {
4670         if ( _numpad_locate_happening ) {
4671                 _pending_locate_num = _pending_locate_num*10 + num;
4672         } else {
4673                 switch (num) {          
4674                         case 0:  toggle_roll(false, false);             break;
4675                         case 1:  transport_rewind(1);                           break;
4676                         case 2:  transport_forward(1);                          break;
4677                         case 3:  transport_record(true);                        break;
4678                         case 4:  toggle_session_auto_loop();            break;
4679                         case 5:  transport_record(false); toggle_session_auto_loop();   break;
4680                         case 6:  toggle_punch();                                        break;
4681                         case 7:  toggle_click();                                break;
4682                         case 8:  toggle_auto_return();                  break;
4683                         case 9:  toggle_follow_edits();         break;
4684                 }
4685         }
4686 }
4687
4688 void
4689 ARDOUR_UI::set_flat_buttons ()
4690 {
4691         CairoWidget::set_flat_buttons( config()->get_flat_buttons() );
4692 }