try to fix async peaks issue; fix crasher caused by previous lock changes in AudioSou...
[ardour.git] / gtk2_ardour / opts.cc
1 /*
2     Copyright (C) 2001 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 <getopt.h>
21 #include <iostream>
22 #include <cstdlib>
23
24 #include "opts.h"
25
26 #include "i18n.h"
27
28 using namespace std;
29
30 Glib::ustring ARDOUR_COMMAND_LINE::session_name = "";
31 string ARDOUR_COMMAND_LINE::jack_client_name = "ardour";
32 bool  ARDOUR_COMMAND_LINE::show_key_actions = false;
33 bool ARDOUR_COMMAND_LINE::no_splash = true;
34 bool ARDOUR_COMMAND_LINE::just_version = false;
35 bool ARDOUR_COMMAND_LINE::use_vst = true;
36 bool ARDOUR_COMMAND_LINE::new_session = false;
37 char* ARDOUR_COMMAND_LINE::curvetest_file = 0;
38 bool ARDOUR_COMMAND_LINE::try_hw_optimization = true;
39 Glib::ustring ARDOUR_COMMAND_LINE::keybindings_path = ""; /* empty means use builtin default */
40 Glib::ustring ARDOUR_COMMAND_LINE::menus_file = "ardour.menus";
41
42 using namespace ARDOUR_COMMAND_LINE;
43
44 int
45 print_help (const char *execname)
46 {
47         cout << _("Usage: ") << execname << "\n"
48              << _("  -v, --version                    Show version information\n")
49              << _("  -h, --help                       Print this message\n")
50              << _("  -b, --bindings                   Print all possible keyboard binding names\n")
51              << _("  -n, --show-splash                Show splash screen\n")
52              << _("  -c, --name  name                 Use a specific jack client name, default is ardour\n")
53              << _("  -m, --menus file                 Use \"file\" for Ardour menus\n")                       
54              << _("  -N, --new session-name           Create a new session from the command line\n")
55              << _("  -O, --no-hw-optimizations        Disable h/w specific optimizations\n")
56              << _("  -S, --sync                       Draw the gui synchronously \n")
57 #ifdef VST_SUPPORT
58              << _("  -V, --novst                      Do not use VST support\n")
59 #endif
60              << _("  [session-name]                   Name of session to load\n")
61              << _("  -C, --curvetest filename         Curve algorithm debugger\n")
62              << _("  -k, --keybindings filename       Name of key bindings to load (default is ~/.ardour2/ardour.bindings)\n")
63                 ;
64         return 1;
65
66 }
67
68 int
69 ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
70 {
71         const char *optstring = "U:hSbvVnOc:C:m:N:k:p:";
72         const char *execname = strrchr (argv[0], '/');
73
74         if (getenv ("ARDOUR_SAE")) {
75                 menus_file = "ardour-sae.menus";
76         }
77
78         if (execname == 0) {
79                 execname = argv[0];
80         } else {
81                 execname++;
82         }
83
84         const struct option longopts[] = {
85                 { "version", 0, 0, 'v' },
86                 { "help", 0, 0, 'h' },
87                 { "bindings", 0, 0, 'b' },
88                 { "show-splash", 0, 0, 'n' },
89                 { "menus", 1, 0, 'm'} ,
90                 { "name", 1, 0, 'c' },
91                 { "novst", 0, 0, 'V' },
92                 { "new", 1, 0, 'N' },
93                 { "no-hw-optimizations", 0, 0, 'O' },
94                 { "sync", 0, 0, 'S' },
95                 { "curvetest", 1, 0, 'C' },
96                 { "sillyAppleUndocumentedFinderFeature", 1, 0, 'p' },
97                 { 0, 0, 0, 0 }
98         };
99
100         int option_index = 0;
101         int c = 0;
102
103         while (1) {
104                 c = getopt_long (argc, argv, optstring, longopts, &option_index);
105
106                 if (c == -1) {
107                         break;
108                 }
109
110                 switch (c) {
111                 case 0:
112                         break;
113                 
114                 case 'v':
115                         just_version = true;
116                         break;
117
118                 case 'h':
119                         print_help (execname);
120                         exit (0);
121                         break;
122
123                 case 'b':
124                         show_key_actions = true;
125                         break;
126
127                 case 'm':
128                         menus_file = optarg;
129                         break;
130
131                 case 'n':
132                         no_splash = false;
133                         break;
134
135                 case 'p':
136                         //undocumented OS X finder -psn_XXXXX argument
137                         break;
138                 
139                 case 'S':
140                         // just pass this through to gtk it will figure it out
141                         break;
142
143                 case 'N':
144                         new_session = true;
145                         session_name = optarg;
146                         break;
147
148                 case 'O':
149                         try_hw_optimization = false;
150                         break;
151
152                 case 'V':
153 #ifdef VST_SUPPORT
154                         use_vst = false;
155 #endif /* VST_SUPPORT */
156                         break;
157
158                 case 'c':
159                         jack_client_name = optarg;
160                         break;
161
162                 case 'C':
163                         curvetest_file = optarg;
164                         break;
165
166                 case 'k':
167                         keybindings_path = optarg;
168                         break;
169
170                 default:
171                         return print_help(execname);
172                 }
173         }
174
175         if (optind < argc) {
176                 if (new_session) {
177                         cerr << "Illogical combination: you can either create a new session, or a load an existing session but not both!" << endl;
178                         return print_help(execname);
179                 }
180                 session_name = argv[optind++];
181         }
182
183
184         return 0;
185 }
186