5cfe83e9448af1bf79476f5a8edfb5b10884b602
[ardour.git] / libs / ardour / globals.cc
1 /*
2     Copyright (C) 2000 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     $Id$
19 */
20
21 #include <cstdio> // Needed so that libraptor (included in lrdf) won't complain
22 #include <sys/stat.h>
23 #include <sys/types.h>
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <locale.h>
27
28 #ifdef VST_SUPPORT
29 #include <fst.h>
30 #endif
31
32 #include <lrdf.h>
33
34 #include <pbd/error.h>
35 #include <pbd/strsplit.h>
36
37 #include <midi++/port.h>
38 #include <midi++/port_request.h>
39 #include <midi++/manager.h>
40 #include <midi++/mmc.h>
41
42 #include <ardour/ardour.h>
43 #include <ardour/audio_library.h>
44 #include <ardour/configuration.h>
45 #include <ardour/plugin_manager.h>
46 #include <ardour/source.h>
47 #include <ardour/utils.h>
48 #include <ardour/session.h>
49
50 #include <ardour/mix.h>
51
52 #if defined (__APPLE__)
53        #include <Carbon/Carbon.h> // For Gestalt
54 #endif
55        
56 #include "i18n.h"
57
58 ARDOUR::Configuration* ARDOUR::Config = 0;
59 ARDOUR::AudioLibrary* ARDOUR::Library = 0;
60
61 using namespace ARDOUR;
62 using namespace std;
63
64 MIDI::Port *default_mmc_port = 0;
65 MIDI::Port *default_mtc_port = 0;
66 MIDI::Port *default_midi_port = 0;
67
68 Change ARDOUR::StartChanged = ARDOUR::new_change ();
69 Change ARDOUR::LengthChanged = ARDOUR::new_change ();
70 Change ARDOUR::PositionChanged = ARDOUR::new_change ();
71 Change ARDOUR::NameChanged = ARDOUR::new_change ();
72 Change ARDOUR::BoundsChanged = Change (0); // see init(), below
73
74
75 static int 
76 setup_midi ()
77 {
78         std::map<string,Configuration::MidiPortDescriptor*>::iterator i;
79         int nports;
80
81         if ((nports = Config->midi_ports.size()) == 0) {
82                 warning << _("no MIDI ports specified: no MMC or MTC control possible") << endmsg;
83                 return 0;
84         }
85
86         for (i = Config->midi_ports.begin(); i != Config->midi_ports.end(); ++i) {
87                 Configuration::MidiPortDescriptor* port_descriptor;
88
89                 port_descriptor = (*i).second;
90
91                 MIDI::PortRequest request (port_descriptor->device, 
92                                            port_descriptor->tag, 
93                                            port_descriptor->mode, 
94                                            port_descriptor->type);
95
96                 if (request.status != MIDI::PortRequest::OK) {
97                         error << string_compose(_("MIDI port specifications for \"%1\" are not understandable."), port_descriptor->tag) << endmsg;
98                         continue;
99                 }
100                 
101                 MIDI::Manager::instance()->add_port (request);
102         }
103
104         if (nports > 1) {
105
106                 /* More than one port, so try using specific names for each port */
107
108                 map<string,Configuration::MidiPortDescriptor *>::iterator i;
109
110                 if (Config->get_mmc_port_name() != N_("default")) {
111                         default_mmc_port =  MIDI::Manager::instance()->port (Config->get_mmc_port_name());
112                 } 
113
114                 if (Config->get_mtc_port_name() != N_("default")) {
115                         default_mtc_port =  MIDI::Manager::instance()->port (Config->get_mtc_port_name());
116                 } 
117
118                 if (Config->get_midi_port_name() != N_("default")) {
119                         default_midi_port =  MIDI::Manager::instance()->port (Config->get_midi_port_name());
120                 } 
121                 
122                 /* If that didn't work, just use the first listed port */
123
124                 if (default_mmc_port == 0) {
125                         default_mmc_port = MIDI::Manager::instance()->port (0);
126                 }
127
128                 if (default_mtc_port == 0) {
129                         default_mtc_port = MIDI::Manager::instance()->port (0);
130                 }
131
132                 if (default_midi_port == 0) {
133                         default_midi_port = MIDI::Manager::instance()->port (0);
134                 }
135                 
136         } else {
137
138                 /* Only one port described, so use it for both MTC and MMC */
139
140                 default_mmc_port = MIDI::Manager::instance()->port (0);
141                 default_mtc_port = default_mmc_port;
142                 default_midi_port = default_mmc_port;
143         }
144
145         if (default_mmc_port == 0) {
146                 warning << string_compose (_("No MMC control (MIDI port \"%1\" not available)"), Config->get_mmc_port_name()) 
147                         << endmsg;
148                 return 0;
149         } 
150
151         if (default_mtc_port == 0) {
152                 warning << string_compose (_("No MTC support (MIDI port \"%1\" not available)"), Config->get_mtc_port_name()) 
153                         << endmsg;
154         }
155
156         if (default_midi_port == 0) {
157                 warning << string_compose (_("No MIDI parameter support (MIDI port \"%1\" not available)"), Config->get_midi_port_name()) 
158                         << endmsg;
159         }
160
161         return 0;
162 }
163
164 int
165 ARDOUR::init (AudioEngine& engine, bool use_vst, bool try_optimization, void (*sighandler)(int,siginfo_t*,void*))
166 {
167         bool generic_mix_functions = true;
168
169         (void) bindtextdomain(PACKAGE, LOCALEDIR);
170
171         Config = new Configuration;
172
173         if (Config->load_state ()) {
174                 return -1;
175         }
176
177         Config->set_use_vst (use_vst);
178
179         if (setup_midi ()) {
180                 return -1;
181         }
182
183 #ifdef VST_SUPPORT
184         if (Config->get_use_vst() && fst_init (sighandler)) {
185                 return -1;
186         }
187 #endif
188
189         if (try_optimization) {
190
191 #if defined (ARCH_X86) && defined (BUILD_SSE_OPTIMIZATIONS)
192         
193                 unsigned int use_sse = 0;
194
195 #ifndef USE_X86_64_ASM
196                 asm volatile (
197                                  "mov $1, %%eax\n"
198                                  "pushl %%ebx\n"
199                                  "cpuid\n"
200                                  "popl %%ebx\n"
201                                  "andl $33554432, %%edx\n"
202                                  "movl %%edx, %0\n"
203                              : "=m" (use_sse)
204                              : 
205                          : "%eax", "%ecx", "%edx", "memory");
206 #else
207
208                 asm volatile (
209                                  "movq $1, %%rax\n"
210                                  "pushq %%rbx\n"
211                                  "cpuid\n"
212                                  "popq %%rbx\n"
213                                  "andq $33554432, %%rdx\n"
214                                  "movq %%rdx, %0\n"
215                              : "=m" (use_sse)
216                              : 
217                          : "%rax", "%rcx", "%rdx", "memory");
218
219 #endif /* USE_X86_64_ASM */
220                 
221                 if (use_sse) {
222                         cerr << "Enabling SSE optimized routines" << endl;
223         
224                         // SSE SET
225                         Session::compute_peak                   = x86_sse_compute_peak;
226                         Session::apply_gain_to_buffer   = x86_sse_apply_gain_to_buffer;
227                         Session::mix_buffers_with_gain  = x86_sse_mix_buffers_with_gain;
228                         Session::mix_buffers_no_gain    = x86_sse_mix_buffers_no_gain;
229
230                         generic_mix_functions = false;
231
232                 }
233
234 #elif defined (__APPLE__) && defined (BUILD_VECLIB_OPTIMIZATIONS)
235                 long sysVersion = 0;
236
237                 if (noErr != Gestalt(gestaltSystemVersion, &sysVersion))
238                         sysVersion = 0;
239
240                 if (sysVersion >= 0x00001040) { // Tiger at least
241                         Session::compute_peak           = veclib_compute_peak;
242                         Session::apply_gain_to_buffer   = veclib_apply_gain_to_buffer;
243                         Session::mix_buffers_with_gain  = veclib_mix_buffers_with_gain;
244                         Session::mix_buffers_no_gain    = veclib_mix_buffers_no_gain;
245
246                         generic_mix_functions = false;
247
248                         info << "Apple VecLib H/W specific optimizations in use" << endmsg;
249                 }
250 #endif
251         }
252
253         if (generic_mix_functions) {
254
255                 Session::compute_peak                   = compute_peak;
256                 Session::apply_gain_to_buffer   = apply_gain_to_buffer;
257                 Session::mix_buffers_with_gain  = mix_buffers_with_gain;
258                 Session::mix_buffers_no_gain    = mix_buffers_no_gain;
259                 
260                 info << "No H/W specific optimizations in use" << endmsg;
261         }
262         
263         lrdf_init();
264         Library = new AudioLibrary;
265
266         /* singleton - first object is "it" */
267         new PluginManager (engine);
268         
269         BoundsChanged = Change (StartChanged|PositionChanged|LengthChanged);
270
271         return 0;
272 }
273
274 int
275 ARDOUR::cleanup ()
276 {
277         delete Library;
278         lrdf_cleanup ();
279         return 0;
280 }
281
282 ARDOUR::id_t
283 ARDOUR::new_id ()
284 {
285         return get_uid();
286 }
287
288 ARDOUR::Change
289 ARDOUR::new_change ()
290 {
291         Change c;
292         static uint32_t change_bit = 1;
293
294         /* XXX catch out-of-range */
295
296         c = Change (change_bit);
297         change_bit <<= 1;
298
299         return c;
300 }
301
302 string
303 ARDOUR::get_user_ardour_path ()
304 {
305         string path;
306         char* envvar;
307         
308         if ((envvar = getenv ("HOME")) == 0 || strlen (envvar) == 0) {
309                 return "/";
310         }
311                 
312         path = envvar;
313         path += "/.ardour2/";
314
315         /* create it if necessary */
316
317         mkdir (path.c_str (), 0755);
318
319         return path;
320 }
321
322 string
323 ARDOUR::get_system_ardour_path ()
324 {
325         string path;
326
327         path += DATA_DIR;
328         path += "/ardour2/";
329         
330         return path;
331 }
332
333 static string
334 find_file (string name, string dir, string subdir = "")
335 {
336         string path;
337         char* envvar = getenv("ARDOUR_PATH");
338
339         /* stop A: any directory in ARDOUR_PATH */
340         
341         if (envvar != 0) {
342
343                 vector<string> split_path;
344         
345                 split (envvar, split_path, ':');
346                 
347                 for (vector<string>::iterator i = split_path.begin(); i != split_path.end(); ++i) {
348                         path = *i;
349                         path += "/" + name;
350                         if (access (path.c_str(), R_OK) == 0) {
351                                 cerr << "Using file " << path << " found in ARDOUR_PATH." << endl;
352                                 return path;
353                         }
354                 }
355         }
356
357         /* stop B: ~/.ardour/ */
358
359         path = get_user_ardour_path();
360                 
361         if (subdir.length()) {
362                 path += subdir + "/";
363         }
364                 
365         path += name;
366         if (access (path.c_str(), R_OK) == 0) {
367                 return path;
368         }
369
370         /* C: dir/... */
371         
372         path = dir;
373         path += "/ardour2/";
374         
375         if (subdir.length()) {
376                 path += subdir + "/";
377         }
378         
379         path += name;
380         
381         if (access (path.c_str(), R_OK) == 0) {
382                 return path;
383         }
384
385         return "";
386 }
387
388 string
389 ARDOUR::find_config_file (string name)
390 {
391         char* envvar;
392
393         if ((envvar = getenv("ARDOUR_CONFIG_PATH")) == 0) {
394                 envvar = CONFIG_DIR;
395         }
396
397         return find_file (name, envvar);
398 }
399
400 string
401 ARDOUR::find_data_file (string name, string subdir)
402 {
403         char* envvar;
404         if ((envvar = getenv("ARDOUR_DATA_PATH")) == 0) {
405                 envvar = DATA_DIR;
406         }
407
408         return find_file (name, envvar, subdir);
409 }
410
411 ARDOUR::LocaleGuard::LocaleGuard (const char* str)
412 {
413         old = strdup (setlocale (LC_NUMERIC, NULL));
414         if (strcmp (old, str)) {
415                 setlocale (LC_NUMERIC, str);
416         } 
417 }
418
419 ARDOUR::LocaleGuard::~LocaleGuard ()
420 {
421         setlocale (LC_NUMERIC, old);
422         free ((char*)old);
423 }
424
425 ARDOUR::OverlapType
426 ARDOUR::coverage (jack_nframes_t sa, jack_nframes_t ea, 
427                   jack_nframes_t sb, jack_nframes_t eb)
428 {
429         /* OverlapType returned reflects how the second (B)
430            range overlaps the first (A).
431
432            The diagrams show various relative placements
433            of A and B for each OverlapType.
434
435            Notes:
436               Internal: the start points cannot coincide
437               External: the start and end points can coincide
438               Start: end points can coincide
439               End: start points can coincide
440
441            XXX Logically, Internal should disallow end
442            point equality.
443         */
444
445         /*
446              |--------------------|   A
447                   |------|            B
448                 |-----------------|   B
449
450
451              "B is internal to A"               
452
453         */
454 #ifdef OLD_COVERAGE
455         if ((sb >= sa) && (eb <= ea)) {
456 #else
457         if ((sb > sa) && (eb <= ea)) {
458 #endif
459                 return OverlapInternal;
460         }
461
462         /*
463              |--------------------|   A
464            ----|                      B
465            -----------------------|   B
466            --|                        B
467            
468              "B overlaps the start of A"
469
470         */
471
472         if ((eb >= sa) && (eb <= ea)) {
473                 return OverlapStart;
474         }
475         /* 
476              |---------------------|  A
477                    |----------------- B
478              |----------------------- B    
479                                    |- B
480
481             "B overlaps the end of A"                              
482
483         */
484         if ((sb >= sa) && (sb <= ea)) {
485                 return OverlapEnd;
486         }
487         /*
488              |--------------------|     A
489            --------------------------  B   
490              |-----------------------  B
491             ----------------------|    B
492              |--------------------|    B
493
494
495            "B overlaps all of A"
496         */
497         if ((sa >= sb) && (sa <= eb) && (ea <= eb)) {
498                 return OverlapExternal;
499         }
500
501         return OverlapNone;
502 }
503
504 /* not sure where to put these */
505
506 std::istream& operator>>(std::istream& o, HeaderFormat hf) {
507         int val;
508         o >> val;
509         hf = (HeaderFormat) val;
510         return o;
511 }
512
513 std::istream& operator>>(std::istream& o, SampleFormat sf) {
514         int val;
515         o >> val;
516         sf = (SampleFormat) val;
517         return o;
518 }