Allow markers to be glued to bar/beat time. Fixes #1815.
[ardour.git] / gtk2_ardour / main.cc
index 21bc398c861fbcd07676d326549c80a7b027b767..e8cf2ac69cf8cfda4f41ca819e3cc8473039995b 100644 (file)
@@ -1,6 +1,6 @@
 /*
     Copyright (C) 2001-2007 Paul Davis
-    
+
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
 
 #include "i18n.h"
 
+using namespace std;
 using namespace Gtk;
 using namespace ARDOUR_COMMAND_LINE;
 using namespace ARDOUR;
 using namespace PBD;
-using namespace sigc;
 
 TextReceiver text_receiver ("ardour");
 
@@ -66,7 +66,7 @@ static const char* localedir = LOCALEDIR;
 void
 gui_jack_error ()
 {
-       MessageDialog win (_("Ardour could not connect to JACK."),
+       MessageDialog win (string_compose (_("%1 could not connect to JACK."), PROGRAM_NAME),
                     false,
                     Gtk::MESSAGE_INFO,
                     (Gtk::ButtonsType)(Gtk::BUTTONS_NONE));
@@ -80,7 +80,7 @@ Please consider the possibilities, and perhaps (re)start JACK."));
 
        win.add_button (Stock::QUIT, RESPONSE_CLOSE);
        win.set_default_response (RESPONSE_CLOSE);
-       
+
        win.show_all ();
        win.set_position (Gtk::WIN_POS_CENTER);
 
@@ -164,7 +164,7 @@ fixup_bundle_environment ()
        }
        path += dir_path;
        path += "/../Plugins";
-       
+
        setenv ("LADSPA_PATH", path.c_str(), 1);
 
        cstr = getenv ("VAMP_PATH");
@@ -176,7 +176,7 @@ fixup_bundle_environment ()
        }
        path += dir_path;
        path += "/../Frameworks";
-       
+
        setenv ("VAMP_PATH", path.c_str(), 1);
 
        cstr = getenv ("ARDOUR_CONTROL_SURFACE_PATH");
@@ -188,7 +188,7 @@ fixup_bundle_environment ()
        }
        path += dir_path;
        path += "/../Surfaces";
-       
+
        setenv ("ARDOUR_CONTROL_SURFACE_PATH", path.c_str(), 1);
 
        cstr = getenv ("LV2_PATH");
@@ -200,7 +200,7 @@ fixup_bundle_environment ()
        }
        path += dir_path;
        path += "/../Plugins";
-       
+
        setenv ("LV2_PATH", path.c_str(), 1);
 
        path = dir_path;
@@ -210,12 +210,12 @@ fixup_bundle_environment ()
 
        path = dir_path;
        path += "/../Resources/locale";
-       
+
        localedir = strdup (path.c_str());
 
        /* write a pango.rc file and tell pango to use it. we'd love
           to put this into the Ardour.app bundle and leave it there,
-          but the user may not have write permission. so ... 
+          but the user may not have write permission. so ...
 
           we also have to make sure that the user ardour directory
           actually exists ...
@@ -227,7 +227,7 @@ fixup_bundle_environment ()
        catch (const sys::filesystem_error& ex) {
                error << _("Could not create user configuration directory") << endmsg;
        }
-       
+
        sys::path pangopath = user_config_directory();
        pangopath /= "pango.rc";
        path = pangopath.to_string();
@@ -243,7 +243,7 @@ fixup_bundle_environment ()
                pangopath /= "..";
                pangopath /= "Resources";
                pangopath /= "pango.modules";
-                       
+
                pangorc << pangopath.to_string() << endl;
 
                pangorc.close ();
@@ -256,7 +256,7 @@ fixup_bundle_environment ()
        setenv ("CHARSETALIASDIR", path.c_str(), 1);
 
        // font config
-       
+
        path = dir_path;
        path += "/../Resources/fonts.conf";
 
@@ -271,22 +271,68 @@ fixup_bundle_environment ()
 
        if (getenv ("ARDOUR_WITH_JACK")) {
                // JACK driver dir
-               
+
                path = dir_path;
                path += "/../Frameworks";
-               
+
                setenv ("JACK_DRIVER_DIR", path.c_str(), 1);
        }
 }
 
 #endif
 
+static gboolean
+tell_about_jack_death (void* /* ignored */)
+{
+       if (AudioEngine::instance()->processed_frames() == 0) {
+               /* died during startup */
+               MessageDialog msg (_("JACK exited"), false, Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK);
+               msg.set_position (Gtk::WIN_POS_CENTER);
+               msg.set_secondary_text (_(
+"JACK exited unexpectedly, and without notifying Ardour.\n\
+\n\
+This could be due to misconfiguration or to an error inside JACK.\n\
+\n\
+Click OK to exit Ardour."));
+    
+               msg.run ();
+               _exit (0);
+               
+       } else {
+
+               /* engine has already run, so this is a mid-session JACK death */
+               
+               MessageDialog* msg = manage (new MessageDialog (_("JACK exited"), false, Gtk::MESSAGE_INFO, Gtk::BUTTONS_NONE));
+               msg->set_secondary_text (_(
+"JACK exited unexpectedly, and without notifying Ardour.\n\
+\n\
+This is probably due to an error inside JACK. You should restart JACK\n\
+and reconnect Ardour to it, or exit Ardour now. You cannot save your\n\
+session at this time, because we would lose your connection information.\n"));
+               msg->present ();
+       }
+       return false; /* do not call again */
+}
+
 static void
 sigpipe_handler (int sig)
 {
-       cerr << _("SIGPIPE received - JACK has probably died") << endl;
+        /* XXX fix this so that we do this again after a reconnect to JACK
+         */
+
+        static bool done_the_jack_thing = false;
+       
+       if (!done_the_jack_thing) {
+               AudioEngine::instance()->died ();
+               g_idle_add (tell_about_jack_death, 0);
+               done_the_jack_thing =  true;
+       }
 }
 
+#ifdef HAVE_LV2
+void close_external_ui_windows();
+#endif
+
 #ifdef VST_SUPPORT
 
 extern int gui_init (int* argc, char** argv[]);
@@ -302,19 +348,21 @@ int main (int argc, char *argv[])
 #endif
 {
        vector<Glib::ustring> null_file_list;
-       
+
 #ifdef __APPLE__
        fixup_bundle_environment ();
 #endif
 
-        Glib::thread_init();
+       if (!Glib::thread_supported())
+               Glib::thread_init();
+
        gtk_set_locale ();
 
 #ifdef VST_SUPPORT
-       /* this does some magic that is needed to make GTK and Wine's own
-          X11 client interact properly.
-       */
-       gui_init (&argc, &argv);
+       /* this does some magic that is needed to make GTK and Wine's own
+          X11 client interact properly.
+       */
+       gui_init (&argc, &argv);
 #endif
 
        (void) bindtextdomain (PACKAGE, localedir);
@@ -341,26 +389,26 @@ int main (int argc, char *argv[])
        if (curvetest_file) {
                return curvetest (curvetest_file);
        }
-       
-       cout << _("Ardour/GTK ") 
+
+       cout << PROGRAM_NAME
             << VERSIONSTRING
-            << _("\n   (built using ")
+            << _(" (built using ")
             << svn_revision
 #ifdef __GNUC__
-            << _(" and GCC version ") << __VERSION__ 
+            << _(" and GCC version ") << __VERSION__
 #endif
             << ')'
             << endl;
-       
+
        if (just_version) {
                exit (0);
        }
 
        if (no_splash) {
-               cerr << _("Copyright (C) 1999-2008 Paul Davis") << endl
+               cerr << _("Copyright (C) 1999-2010 Paul Davis") << endl
                     << _("Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel Baker") << endl
                     << endl
-                    << _("Ardour comes with ABSOLUTELY NO WARRANTY") << endl
+                    << string_compose (_("%1 comes with ABSOLUTELY NO WARRANTY"), PROGRAM_NAME) << endl
                     << _("not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.") << endl
                     << _("This is free software, and you are welcome to redistribute it ") << endl
                     << _("under certain conditions; see the source for copying conditions.")
@@ -375,22 +423,22 @@ int main (int argc, char *argv[])
                cerr << _("Cannot install SIGPIPE error handler") << endl;
        }
 
-        try { 
+       try {
                ui = new ARDOUR_UI (&argc, &argv);
        } catch (failed_constructor& err) {
                error << _("could not create ARDOUR GUI") << endmsg;
                exit (1);
        }
 
-#ifdef SOMEBODY_WANTS_TO_FIX_THIS
-       ui->run_startup ();
-#endif
-
        ui->run (text_receiver);
        ui = 0;
 
        ARDOUR::cleanup ();
        pthread_cancel_all ();
+
+#ifdef HAVE_LV2
+       close_external_ui_windows();
+#endif
        return 0;
 }
 #ifdef VST_SUPPORT