Remove unused and uncompiled panner code.
[ardour.git] / gtk2_ardour / main.cc
index a512af74a3dd771b576179140390960585ecf59f..0d2eb23ef06c74b7de0328904bd1149f8c8ec700 100644 (file)
 
 #include <cstdlib>
 #include <signal.h>
+#include <cerrno>
+#include <fstream>
 
 #include <sigc++/bind.h>
 #include <gtkmm/settings.h>
 
 #include "pbd/error.h"
+#include "pbd/epa.h"
 #include "pbd/file_utils.h"
 #include "pbd/textreceiver.h"
 #include "pbd/failed_constructor.h"
 #include "pbd/pthread_utils.h"
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
+#include "pbd/boost_debug.h"
+#endif
 
 #include <jack/jack.h>
 
@@ -39,6 +45,7 @@
 #include "ardour/filesystem_paths.h"
 
 #include <gtkmm/main.h>
+#include <gtkmm2ext/application.h>
 #include <gtkmm2ext/popup.h>
 #include <gtkmm2ext/utils.h>
 
@@ -98,17 +105,18 @@ Please consider the possibilities, and perhaps (re)start JACK."));
 
 #include <mach-o/dyld.h>
 #include <sys/param.h>
-#include <fstream>
 
 extern void set_language_preference (); // cocoacarbon.mm
 
 void
-fixup_bundle_environment ()
+fixup_bundle_environment (int, char* [])
 {
        if (!getenv ("ARDOUR_BUNDLED")) {
                return;
        }
 
+        EnvironmentalProtectionAgency::set_global_epa (new EnvironmentalProtectionAgency (true, "PREBUNDLE_ENV"));
+
        set_language_preference ();
 
        char execpath[MAXPATHLEN+1];
@@ -116,9 +124,9 @@ fixup_bundle_environment ()
 
        _NSGetExecutablePath (execpath, &pathsz);
 
-       Glib::ustring exec_path (execpath);
-       Glib::ustring dir_path = Glib::path_get_dirname (exec_path);
-       Glib::ustring path;
+       std::string exec_path (execpath);
+       std::string dir_path = Glib::path_get_dirname (exec_path);
+       std::string path;
        const char *cstr = getenv ("PATH");
 
        /* ensure that we find any bundled executables (e.g. JACK),
@@ -127,6 +135,15 @@ fixup_bundle_environment ()
        */
 
        path = dir_path;
+
+       /* JACK is often in /usr/local/bin and since Info.plist refuses to 
+          set PATH, we have to force this in order to discover a running
+          instance of JACK ...
+       */
+       
+       path += ':';
+       path += "/usr/local/bin";
+
        if (cstr) {
                path += ':';
                path += cstr;
@@ -142,7 +159,9 @@ fixup_bundle_environment ()
 
        setenv ("ARDOUR_MODULE_PATH", path.c_str(), 1);
 
-       path = dir_path;
+        path = user_config_directory().to_string();
+        path += ':';
+       path += dir_path;
        path += "/../Resources/icons:";
        path += dir_path;
        path += "/../Resources/pixmaps:";
@@ -153,7 +172,6 @@ fixup_bundle_environment ()
 
        setenv ("ARDOUR_PATH", path.c_str(), 1);
        setenv ("ARDOUR_CONFIG_PATH", path.c_str(), 1);
-       setenv ("ARDOUR_DATA_PATH", path.c_str(), 1);
 
        path = dir_path;
        path += "/../Resources";
@@ -195,7 +213,7 @@ fixup_bundle_environment ()
 
        setenv ("ARDOUR_CONTROL_SURFACE_PATH", path.c_str(), 1);
 
-       cstr = getenv ("LV2_PATH");
+       cstr = getenv ("ARDOUR_PANNER_PATH");
        if (cstr) {
                path = cstr;
                path += ':';
@@ -203,15 +221,20 @@ fixup_bundle_environment ()
                path = "";
        }
        path += dir_path;
-       path += "/../Plugins";
-
-       setenv ("LV2_PATH", path.c_str(), 1);
+       path += "/lib/panners";
+       
+       setenv ("ARDOUR_PANNER_PATH", path.c_str(), 1);
 
        path = dir_path;
        path += "/../Frameworks/clearlooks";
 
        setenv ("GTK_PATH", path.c_str(), 1);
 
+        /* unset GTK_RC_FILES so that we only load the RC files that we define
+         */
+
+        unsetenv ("GTK_RC_FILES");
+
        if (!ARDOUR::translations_are_disabled ()) {
 
                path = dir_path;
@@ -287,6 +310,164 @@ fixup_bundle_environment ()
        }
 }
 
+#else
+
+void
+fixup_bundle_environment (int /*argc*/, char* argv[])
+{
+       if (!getenv ("ARDOUR_BUNDLED")) {
+               return;
+       }
+       
+        EnvironmentalProtectionAgency::set_global_epa (new EnvironmentalProtectionAgency (true, "PREBUNDLE_ENV"));
+
+       Glib::ustring exec_path = argv[0];
+       Glib::ustring dir_path = Glib::path_get_dirname (Glib::path_get_dirname (exec_path));
+       Glib::ustring path;
+       const char *cstr = getenv ("PATH");
+        Glib::ustring userconfigdir = user_config_directory().to_string();
+
+       /* ensure that we find any bundled executables (e.g. JACK),
+          and find them before any instances of the same name
+          elsewhere in PATH
+       */
+
+        /* note that this function is POSIX/Linux specific, so using / as 
+           a dir separator in this context is just fine.
+        */
+
+       path = dir_path;
+       path += "/etc:";
+       path += dir_path;
+       path += "/lib/surfaces:";
+       path += dir_path;
+       path += "/lib/panners:";
+
+       setenv ("ARDOUR_MODULE_PATH", path.c_str(), 1);
+
+        path = userconfigdir;
+        path += ':';
+       path += dir_path;
+       path += "/etc/icons:";
+       path += dir_path;
+       path += "/etc/pixmaps:";
+       path += dir_path;
+       path += "/share:";
+       path += dir_path;
+       path += "/etc";
+
+       setenv ("ARDOUR_PATH", path.c_str(), 1);
+       setenv ("ARDOUR_CONFIG_PATH", path.c_str(), 1);
+
+       path = dir_path;
+       path += "/etc";
+       setenv ("ARDOUR_INSTANT_XML_PATH", path.c_str(), 1);
+
+       cstr = getenv ("LADSPA_PATH");
+       if (cstr) {
+               path = cstr;
+               path += ':';
+       } else {
+               path = "";
+       }
+       path += dir_path;
+       path += "/lib/plugins";
+       
+       setenv ("LADSPA_PATH", path.c_str(), 1);
+
+       cstr = getenv ("VAMP_PATH");
+       if (cstr) {
+               path = cstr;
+               path += ':';
+       } else {
+               path = "";
+       }
+       path += dir_path;
+       path += "/lib";
+       
+       setenv ("VAMP_PATH", path.c_str(), 1);
+
+       cstr = getenv ("ARDOUR_CONTROL_SURFACE_PATH");
+       if (cstr) {
+               path = cstr;
+               path += ':';
+       } else {
+               path = "";
+       }
+       path += dir_path;
+       path += "/lib/surfaces";
+       
+       setenv ("ARDOUR_CONTROL_SURFACE_PATH", path.c_str(), 1);
+
+       cstr = getenv ("ARDOUR_PANNER_PATH");
+       if (cstr) {
+               path = cstr;
+               path += ':';
+       } else {
+               path = "";
+       }
+       path += dir_path;
+       path += "/lib/panners";
+       
+       setenv ("ARDOUR_PANNER_PATH", path.c_str(), 1);
+
+       path = dir_path;
+       path += "/lib/clearlooks";
+
+       setenv ("GTK_PATH", path.c_str(), 1);
+
+        /* unset GTK_RC_FILES so that we only load the RC files that we define
+         */
+
+        unsetenv ("GTK_RC_FILES");
+
+       if (!ARDOUR::translations_are_disabled ()) {
+                path = dir_path;
+                path += "/share/locale";
+                
+                localedir = strdup (path.c_str());
+                setenv ("GTK_LOCALEDIR", localedir, 1);
+        }
+
+       /* 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 ... 
+
+          we also have to make sure that the user ardour directory
+          actually exists ...
+       */
+
+       if (g_mkdir_with_parents (userconfigdir.c_str(), 0755) < 0) {
+               error << string_compose (_("cannot create user ardour folder %1 (%2)"), userconfigdir, strerror (errno))
+                     << endmsg;
+       } else {
+
+                Glib::ustring mpath;
+
+               path = Glib::build_filename (userconfigdir, "pango.rc");
+
+               std::ofstream pangorc (path.c_str());
+               if (!pangorc) {
+                       error << string_compose (_("cannot open pango.rc file %1") , path) << endmsg;
+                } else {
+                        mpath = Glib::build_filename (userconfigdir, "pango.modules");
+                        
+                       pangorc << "[Pango]\nModuleFiles=";
+                       pangorc << mpath << endl;
+                       pangorc.close ();
+                }
+
+                setenv ("PANGO_RC_FILE", path.c_str(), 1);
+
+                /* similar for GDK pixbuf loaders, but there's no RC file required
+                   to specify where it lives.
+                */
+
+                mpath = Glib::build_filename (userconfigdir, "gdk-pixbuf.loaders");
+                setenv ("GDK_PIXBUF_MODULE_FILE", mpath.c_str(), 1);
+       }
+}
+
 #endif
 
 static gboolean
@@ -323,7 +504,7 @@ session at this time, because we would lose your connection information.\n"), PR
 }
 
 static void
-sigpipe_handler (int sig)
+sigpipe_handler (int /*signal*/)
 {
         /* XXX fix this so that we do this again after a reconnect to JACK
          */
@@ -355,14 +536,11 @@ int ardour_main (int argc, char *argv[])
 int main (int argc, char *argv[])
 #endif
 {
-       vector<Glib::ustring> null_file_list;
+       fixup_bundle_environment (argc, argv);
 
-#ifdef __APPLE__
-       fixup_bundle_environment ();
-#endif
-
-       if (!Glib::thread_supported())
+       if (!Glib::thread_supported()) {
                Glib::thread_init();
+        }
 
        gtk_set_locale ();
 
@@ -390,6 +568,12 @@ int main (int argc, char *argv[])
        text_receiver.listen_to (fatal);
        text_receiver.listen_to (warning);
 
+#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
+        if (getenv ("BOOST_DEBUG")) {
+                boost_debug_shared_ptr_show_live_debugging (true);
+        }
+#endif
+
        if (parse_opts (argc, argv)) {
                exit (1);
        }
@@ -428,7 +612,7 @@ int main (int argc, char *argv[])
        PBD::ID::init ();
 
        if (::signal (SIGPIPE, sigpipe_handler)) {
-               cerr << _("Cannot install SIGPIPE error handler") << endl;
+               cerr << _("Cannot xinstall SIGPIPE error handler") << endl;
        }
 
        try {
@@ -439,6 +623,7 @@ int main (int argc, char *argv[])
        }
 
        ui->run (text_receiver);
+        Gtkmm2ext::Application::instance()->cleanup();
        ui = 0;
 
        ARDOUR::cleanup ();