-
Notifications
You must be signed in to change notification settings - Fork 716
/
Copy pathopts.cc
242 lines (207 loc) · 6.62 KB
/
opts.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/*
* Copyright (C) 2005-2006 Taybin Rutkin <[email protected]>
* Copyright (C) 2006-2007 Sampo Savolainen <[email protected]>
* Copyright (C) 2006-2019 Paul Davis <[email protected]>
* Copyright (C) 2008-2011 David Robillard <[email protected]>
* Copyright (C) 2009-2012 Carl Hetherington <[email protected]>
* Copyright (C) 2012-2019 Robin Gareus <[email protected]>
* Copyright (C) 2015-2017 Len Ovens <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <getopt.h>
#include <string.h>
#include <iostream>
#include <cstdlib>
#include "ardour/debug.h"
#include "ardour/session.h"
#ifndef NDEBUG // "-H"
#include "processor_box.h"
#endif
#include "opts.h"
#include "pbd/i18n.h"
using namespace std;
string ARDOUR_COMMAND_LINE::session_name = "";
string ARDOUR_COMMAND_LINE::backend_session_id = PBD::downcase(PROGRAM_NAME);
bool ARDOUR_COMMAND_LINE::show_key_actions = false;
bool ARDOUR_COMMAND_LINE::show_actions = false;
bool ARDOUR_COMMAND_LINE::no_splash = false;
bool ARDOUR_COMMAND_LINE::just_version = false;
bool ARDOUR_COMMAND_LINE::new_session = false;
bool ARDOUR_COMMAND_LINE::try_hw_optimization = true;
bool ARDOUR_COMMAND_LINE::no_connect_ports = false;
string ARDOUR_COMMAND_LINE::keybindings_path = ""; /* empty means use builtin default */
std::string ARDOUR_COMMAND_LINE::menus_file = "ardour.menus";
bool ARDOUR_COMMAND_LINE::finder_invoked_ardour = false;
string ARDOUR_COMMAND_LINE::load_template;
bool ARDOUR_COMMAND_LINE::check_announcements = true;
using namespace ARDOUR_COMMAND_LINE;
int
print_help (const char *execname)
{
// help2man format, http://docopt.org/
// https://www.gnu.org/prep/standards/standards.html#g_t_002d_002dhelp
cout
<< _("Usage: ") << PROGRAM_NAME << _(" [ OPTIONS ] [ SESSION-NAME ]")
<< "\n\n"
<< _("Ardour is a multichannel hard disk recorder (HDR) and digital audio workstation (DAW).")
<< "\n\n"
<< _("Options:\n")
<< _(" -a, --no-announcements Do not contact website for announcements\n")
<< _(" -A, --actions Print all possible menu action names\n")
<< _(" -b, --bindings Display all current key bindings\n")
<< _(" -B, --bypass-plugins Bypass all plugins in an existing session\n")
<< _(" -c, --name <session-id> Specify audio backend client session id, default is ardour\n")
<< _(" -d, --disable-plugins Disable all plugins (safe mode)\n")
#ifndef NDEBUG
<< _(" -D, --debug <options> Set debug flags. Use \"-D list\" to see available options\n")
#endif
<< _(" -h, --help Print this message\n")
<< _(" -k, --keybindings <file> Path to the key bindings file to load\n")
<< _(" -m, --menus file Use \"file\" to define menus\n")
<< _(" -n, --no-splash Do not show splash screen\n")
<< _(" -N, --new <session-name> Create a new session from the command line\n")
<< _(" -O, --no-hw-optimizations Disable h/w specific optimizations\n")
<< _(" -P, --no-connect-ports Do not connect any ports at startup\n")
<< _(" -s, --no-strobe Avoid \"strobe-like\" effects in GUI\n")
<< _(" -S, --sync Draw the GUI synchronously\n")
<< _(" -T, --template <name> Use given template for new session\n")
<< _(" -v, --version Print version and exit\n")
<< "\n\n"
<< _("Report bugs to http://tracker.ardour.org\n")
<< _("Website http://ardour.org\n")
;
return 1;
}
int
ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
{
const char *optstring = "aAbBc:C:dD:hHk:E:m:N:nOp:PST:U:v";
const char *execname = strrchr (argv[0], '/');
if (execname == 0) {
execname = argv[0];
} else {
execname++;
}
const struct option longopts[] = {
{ "version", 0, 0, 'v' },
{ "help", 0, 0, 'h' },
{ "no-announcements", 0, 0, 'a' },
{ "actions", 0, 0, 'A' },
{ "bindings", 0, 0, 'b' },
{ "bypass-plugins", 0, 0, 'B' },
{ "disable-plugins", 0, 0, 'd' },
{ "debug", 1, 0, 'D' },
{ "no-splash", 0, 0, 'n' },
{ "menus", 1, 0, 'm' },
{ "name", 1, 0, 'c' },
{ "new", 1, 0, 'N' },
{ "no-hw-optimizations", 0, 0, 'O' },
{ "sync", 0, 0, 'S' },
{ "template", 1, 0, 'T' },
{ "no-connect-ports", 0, 0, 'P' },
{ 0, 0, 0, 0 }
};
int option_index = 0;
int c = 0;
while (1) {
c = getopt_long (argc, argv, optstring, longopts, &option_index);
if (c == -1) {
break;
}
switch (c) {
case 0:
break;
case 'v':
just_version = true;
break;
case 'h':
print_help (execname);
exit (EXIT_SUCCESS);
break;
case 'H':
#ifndef NDEBUG
ProcessorBox::show_all_processors = true;
#endif
break;
case 'a':
check_announcements = false;
break;
case 'A':
show_actions = true;
break;
case 'b':
show_key_actions = true;
break;
case 'B':
ARDOUR::Session::set_bypass_all_loaded_plugins (true);
break;
case 'd':
ARDOUR::Session::set_disable_all_loaded_plugins (true);
break;
case 'D':
#ifndef NDEBUG
if (PBD::parse_debug_options (optarg)) {
exit (EXIT_SUCCESS);
}
#else
cerr << "This is not a debug build - igoring '-D " << optarg << "'" << endl;
#endif /* NDEBUG */
break;
case 'm':
menus_file = optarg;
break;
case 'n':
no_splash = true;
break;
case 'p':
//undocumented OS X finder -psn_XXXXX argument
finder_invoked_ardour = true;
break;
case 'S':
// ; just pass this through to gtk it will figure it out
break;
case 'T':
load_template = optarg;
break;
case 'N':
new_session = true;
session_name = optarg;
break;
case 'O':
try_hw_optimization = false;
break;
case 'P':
no_connect_ports = true;
break;
case 'c':
backend_session_id = optarg;
break;
case 'k':
keybindings_path = optarg;
break;
default:
return print_help(execname);
}
}
if (optind < argc) {
if (new_session) {
cerr << "Illogical combination: you can either create a new session, or a load an existing session but not both!" << endl;
return print_help(execname);
}
session_name = argv[optind++];
}
return 0;
}