move fixup_bundle_environment() code into per-platform files
[ardour.git] / gtk2_ardour / main.cc
1 /*
2     Copyright (C) 2001-2012 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 #include <cstdlib>
21 #include <signal.h>
22 #include <cerrno>
23 #include <fstream>
24 #include <vector>
25
26 #include <sigc++/bind.h>
27 #include <gtkmm/settings.h>
28
29 #include "pbd/error.h"
30 #include "pbd/file_utils.h"
31 #include "pbd/textreceiver.h"
32 #include "pbd/failed_constructor.h"
33 #include "pbd/pathexpand.h"
34 #include "pbd/pthread_utils.h"
35 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
36 #include "pbd/boost_debug.h"
37 #endif
38
39 #include "ardour/revision.h"
40 #include "ardour/version.h"
41 #include "ardour/ardour.h"
42 #include "ardour/audioengine.h"
43 #include "ardour/session_utils.h"
44 #include "ardour/filesystem_paths.h"
45
46 #include <gtkmm/main.h>
47 #include <gtkmm2ext/application.h>
48 #include <gtkmm2ext/popup.h>
49 #include <gtkmm2ext/utils.h>
50
51 #include "version.h"
52 #include "utils.h"
53 #include "ardour_ui.h"
54 #include "opts.h"
55 #include "enums.h"
56 #include "bundle_env.h"
57
58 #include "i18n.h"
59
60
61 using namespace std;
62 using namespace Gtk;
63 using namespace ARDOUR_COMMAND_LINE;
64 using namespace ARDOUR;
65 using namespace PBD;
66
67 TextReceiver text_receiver ("ardour");
68
69 extern int curvetest (string);
70
71 static ARDOUR_UI  *ui = 0;
72 static const char* localedir = LOCALEDIR;
73
74 void
75 gui_jack_error ()
76 {
77         MessageDialog win (string_compose (_("%1 could not connect to the audio backend."), PROGRAM_NAME),
78                            false,
79                            Gtk::MESSAGE_INFO,
80                            Gtk::BUTTONS_NONE);
81
82         win.add_button (Stock::QUIT, RESPONSE_CLOSE);
83         win.set_default_response (RESPONSE_CLOSE);
84
85         win.show_all ();
86         win.set_position (Gtk::WIN_POS_CENTER);
87
88         if (!no_splash) {
89                 ui->hide_splash ();
90         }
91
92         /* we just don't care about the result, but we want to block */
93
94         win.run ();
95 }
96
97 static gboolean
98 tell_about_backend_death (void* /* ignored */)
99 {
100         if (AudioEngine::instance()->processed_frames() == 0) {
101                 /* died during startup */
102                 MessageDialog msg (string_compose (_("The audio backend (%1) has failed, or terminated"), AudioEngine::instance()->current_backend_name()), false);
103                 msg.set_position (Gtk::WIN_POS_CENTER);
104                 msg.set_secondary_text (string_compose (_(
105 "%2 exited unexpectedly, and without notifying %1.\n\
106 \n\
107 This could be due to misconfiguration or to an error inside %2.\n\
108 \n\
109 Click OK to exit %1."), PROGRAM_NAME, AudioEngine::instance()->current_backend_name()));
110
111                 msg.run ();
112                 _exit (0);
113
114         } else {
115
116                 /* engine has already run, so this is a mid-session backend death */
117                         
118                 MessageDialog msg (string_compose (_("The audio backend (%1) has failed, or terminated"), AudioEngine::instance()->current_backend_name()), false);
119                 msg.set_secondary_text (string_compose (_("%2 exited unexpectedly, and without notifying %1."),
120                                                          PROGRAM_NAME, AudioEngine::instance()->current_backend_name()));
121                 msg.present ();
122         }
123         return false; /* do not call again */
124 }
125
126 static void
127 sigpipe_handler (int /*signal*/)
128 {
129         /* XXX fix this so that we do this again after a reconnect to the backend
130          */
131
132         static bool done_the_backend_thing = false;
133
134         if (!done_the_backend_thing) {
135                 AudioEngine::instance()->died ();
136                 g_idle_add (tell_about_backend_death, 0);
137                 done_the_backend_thing =  true;
138         }
139 }
140
141 #ifdef WINDOWS_VST_SUPPORT
142
143 extern int windows_vst_gui_init (int* argc, char** argv[]);
144
145 /* this is called from the entry point of a wine-compiled
146    executable that is linked against gtk2_ardour built
147    as a shared library.
148 */
149 extern "C" {
150 int ardour_main (int argc, char *argv[])
151 #else
152 int main (int argc, char *argv[])
153 #endif
154 {
155         fixup_bundle_environment (argc, argv, &localedir);
156
157         load_custom_fonts(); /* needs to happend before any gtk and pango init calls */
158
159         if (!Glib::thread_supported()) {
160                 Glib::thread_init();
161         }
162
163 #ifdef ENABLE_NLS
164         gtk_set_locale ();
165 #endif
166
167 #ifdef WINDOWS_VST_SUPPORT
168         /* this does some magic that is needed to make GTK and Wine's own
169            X11 client interact properly.
170         */
171         windows_vst_gui_init (&argc, &argv);
172 #endif
173
174 #ifdef ENABLE_NLS
175         cerr << "bnd txt domain [" << PACKAGE << "] to " << localedir << endl;
176
177         (void) bindtextdomain (PACKAGE, localedir);
178         /* our i18n translations are all in UTF-8, so make sure
179            that even if the user locale doesn't specify UTF-8,
180            we use that when handling them.
181         */
182         (void) bind_textdomain_codeset (PACKAGE,"UTF-8");
183 #endif
184
185         pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, 0);
186
187         // catch error message system signals ();
188
189         text_receiver.listen_to (error);
190         text_receiver.listen_to (info);
191         text_receiver.listen_to (fatal);
192         text_receiver.listen_to (warning);
193
194 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
195         if (g_getenv ("BOOST_DEBUG")) {
196                 boost_debug_shared_ptr_show_live_debugging (true);
197         }
198 #endif
199
200         if (parse_opts (argc, argv)) {
201                 exit (1);
202         }
203
204         cout << PROGRAM_NAME
205              << VERSIONSTRING
206              << _(" (built using ")
207              << revision
208 #ifdef __GNUC__
209              << _(" and GCC version ") << __VERSION__
210 #endif
211              << ')'
212              << endl;
213
214         if (just_version) {
215                 exit (0);
216         }
217
218         if (no_splash) {
219                 cerr << _("Copyright (C) 1999-2012 Paul Davis") << endl
220                      << _("Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel Baker, Robin Gareus") << endl
221                      << endl
222                      << string_compose (_("%1 comes with ABSOLUTELY NO WARRANTY"), PROGRAM_NAME) << endl
223                      << _("not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.") << endl
224                      << _("This is free software, and you are welcome to redistribute it ") << endl
225                      << _("under certain conditions; see the source for copying conditions.")
226                      << endl;
227         }
228
229         /* some GUI objects need this */
230
231         if (!ARDOUR::init (ARDOUR_COMMAND_LINE::use_vst, ARDOUR_COMMAND_LINE::try_hw_optimization, localedir)) {
232                 error << string_compose (_("could not initialize %1."), PROGRAM_NAME) << endmsg;
233                 exit (1);
234         }
235
236         if (curvetest_file) {
237                 return curvetest (curvetest_file);
238         }
239
240 #ifndef PLATFORM_WINDOWS
241         if (::signal (SIGPIPE, sigpipe_handler)) {
242                 cerr << _("Cannot xinstall SIGPIPE error handler") << endl;
243         }
244 #endif
245
246         try {
247                 ui = new ARDOUR_UI (&argc, &argv, localedir);
248         } catch (failed_constructor& err) {
249                 error << string_compose (_("could not create %1 GUI"), PROGRAM_NAME) << endmsg;
250                 exit (1);
251         }
252
253         ui->run (text_receiver);
254         Gtkmm2ext::Application::instance()->cleanup();
255         delete ui;
256         ui = 0;
257
258         ARDOUR::cleanup ();
259         pthread_cancel_all ();
260
261         return 0;
262 }
263 #ifdef WINDOWS_VST_SUPPORT
264 } // end of extern C block
265 #endif
266