significant extensions to tranzport support
[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 #include <ardour/control_protocol_manager.h>
50
51 #include <ardour/mix.h>
52
53 #if defined (__APPLE__)
54        #include <Carbon/Carbon.h> // For Gestalt
55 #endif
56        
57 #include "i18n.h"
58
59 ARDOUR::Configuration* ARDOUR::Config = 0;
60 ARDOUR::AudioLibrary* ARDOUR::Library = 0;
61
62 using namespace ARDOUR;
63 using namespace std;
64
65 MIDI::Port *default_mmc_port = 0;
66 MIDI::Port *default_mtc_port = 0;
67 MIDI::Port *default_midi_port = 0;
68
69 Change ARDOUR::StartChanged = ARDOUR::new_change ();
70 Change ARDOUR::LengthChanged = ARDOUR::new_change ();
71 Change ARDOUR::PositionChanged = ARDOUR::new_change ();
72 Change ARDOUR::NameChanged = ARDOUR::new_change ();
73 Change ARDOUR::BoundsChanged = Change (0); // see init(), below
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         /* singleton - first object is "it" */
270         new ControlProtocolManager ();
271         ControlProtocolManager::instance().discover_control_protocols (Session::control_protocol_path());
272         
273         BoundsChanged = Change (StartChanged|PositionChanged|LengthChanged);
274
275         return 0;
276 }
277
278 int
279 ARDOUR::cleanup ()
280 {
281         delete Library;
282         lrdf_cleanup ();
283         delete &ControlProtocolManager::instance();
284         return 0;
285 }
286
287 ARDOUR::id_t
288 ARDOUR::new_id ()
289 {
290         return get_uid();
291 }
292
293 ARDOUR::Change
294 ARDOUR::new_change ()
295 {
296         Change c;
297         static uint32_t change_bit = 1;
298
299         /* XXX catch out-of-range */
300
301         c = Change (change_bit);
302         change_bit <<= 1;
303
304         return c;
305 }
306
307 string
308 ARDOUR::get_user_ardour_path ()
309 {
310         string path;
311         char* envvar;
312         
313         if ((envvar = getenv ("HOME")) == 0 || strlen (envvar) == 0) {
314                 return "/";
315         }
316                 
317         path = envvar;
318         path += "/.ardour2/";
319
320         /* create it if necessary */
321
322         mkdir (path.c_str (), 0755);
323
324         return path;
325 }
326
327 string
328 ARDOUR::get_system_ardour_path ()
329 {
330         string path;
331
332         path += DATA_DIR;
333         path += "/ardour2/";
334         
335         return path;
336 }
337
338 static string
339 find_file (string name, string dir, string subdir = "")
340 {
341         string path;
342         char* envvar = getenv("ARDOUR_PATH");
343
344         /* 1st attempt: any directory in ARDOUR_PATH */
345         
346         if (envvar != 0) {
347
348                 vector<string> split_path;
349         
350                 split (envvar, split_path, ':');
351                 
352                 for (vector<string>::iterator i = split_path.begin(); i != split_path.end(); ++i) {
353                         path = *i;
354                         path += "/" + name;
355                         if (access (path.c_str(), R_OK) == 0) {
356                                 cerr << "Using file " << path << " found in ARDOUR_PATH." << endl;
357                                 return path;
358                         }
359                 }
360         }
361
362         /* 2nd attempt: ~/.ardour/ */
363
364         path = get_user_ardour_path();
365                 
366         if (subdir.length()) {
367                 path += subdir + "/";
368         }
369                 
370         path += name;
371         if (access (path.c_str(), R_OK) == 0) {
372                 return path;
373         }
374
375         /* 3rd attempt: dir/... */
376         
377         path = dir;
378         path += "/ardour2/";
379         
380         if (subdir.length()) {
381                 path += subdir + "/";
382         }
383         
384         path += name;
385         
386         if (access (path.c_str(), R_OK) == 0) {
387                 return path;
388         }
389
390         return "";
391 }
392
393 string
394 ARDOUR::find_config_file (string name)
395 {
396         char* envvar;
397
398         if ((envvar = getenv("ARDOUR_CONFIG_PATH")) == 0) {
399                 envvar = CONFIG_DIR;
400         }
401
402         return find_file (name, envvar);
403 }
404
405 string
406 ARDOUR::find_data_file (string name, string subdir)
407 {
408         char* envvar;
409         if ((envvar = getenv("ARDOUR_DATA_PATH")) == 0) {
410                 envvar = DATA_DIR;
411         }
412
413         return find_file (name, envvar, subdir);
414 }
415
416 ARDOUR::LocaleGuard::LocaleGuard (const char* str)
417 {
418         old = strdup (setlocale (LC_NUMERIC, NULL));
419         if (strcmp (old, str)) {
420                 setlocale (LC_NUMERIC, str);
421         } 
422 }
423
424 ARDOUR::LocaleGuard::~LocaleGuard ()
425 {
426         setlocale (LC_NUMERIC, old);
427         free ((char*)old);
428 }
429
430 ARDOUR::OverlapType
431 ARDOUR::coverage (jack_nframes_t sa, jack_nframes_t ea, 
432                   jack_nframes_t sb, jack_nframes_t eb)
433 {
434         /* OverlapType returned reflects how the second (B)
435            range overlaps the first (A).
436
437            The diagrams show various relative placements
438            of A and B for each OverlapType.
439
440            Notes:
441               Internal: the start points cannot coincide
442               External: the start and end points can coincide
443               Start: end points can coincide
444               End: start points can coincide
445
446            XXX Logically, Internal should disallow end
447            point equality.
448         */
449
450         /*
451              |--------------------|   A
452                   |------|            B
453                 |-----------------|   B
454
455
456              "B is internal to A"               
457
458         */
459 #ifdef OLD_COVERAGE
460         if ((sb >= sa) && (eb <= ea)) {
461 #else
462         if ((sb > sa) && (eb <= ea)) {
463 #endif
464                 return OverlapInternal;
465         }
466
467         /*
468              |--------------------|   A
469            ----|                      B
470            -----------------------|   B
471            --|                        B
472            
473              "B overlaps the start of A"
474
475         */
476
477         if ((eb >= sa) && (eb <= ea)) {
478                 return OverlapStart;
479         }
480         /* 
481              |---------------------|  A
482                    |----------------- B
483              |----------------------- B    
484                                    |- B
485
486             "B overlaps the end of A"                              
487
488         */
489         if ((sb >= sa) && (sb <= ea)) {
490                 return OverlapEnd;
491         }
492         /*
493              |--------------------|     A
494            --------------------------  B   
495              |-----------------------  B
496             ----------------------|    B
497              |--------------------|    B
498
499
500            "B overlaps all of A"
501         */
502         if ((sa >= sb) && (sa <= eb) && (ea <= eb)) {
503                 return OverlapExternal;
504         }
505
506         return OverlapNone;
507 }
508
509 /* not sure where to put these */
510
511 std::istream& operator>>(std::istream& o, HeaderFormat hf) {
512         int val;
513         o >> val;
514         hf = (HeaderFormat) val;
515         return o;
516 }
517
518 std::istream& operator>>(std::istream& o, SampleFormat sf) {
519         int val;
520         o >> val;
521         sf = (SampleFormat) val;
522         return o;
523 }