X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fopts.cc;h=d0657abe8b69c2a3755316adec9ef9e27bdccc24;hb=dc4f730ac95837590e8305f69778d1049e4a545e;hp=ee198cab2262363ea050b779ba23a3de784a7b06;hpb=de5e463904de7b58218a5bb1e9080ba5353bb985;p=ardour.git diff --git a/gtk2_ardour/opts.cc b/gtk2_ardour/opts.cc index ee198cab22..d0657abe8b 100644 --- a/gtk2_ardour/opts.cc +++ b/gtk2_ardour/opts.cc @@ -25,117 +25,89 @@ #include "ardour/debug.h" #include "ardour/session.h" +#ifndef NDEBUG // "-H" +#include "processor_box.h" +#endif + #include "opts.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace std; string ARDOUR_COMMAND_LINE::session_name = ""; -string ARDOUR_COMMAND_LINE::jack_client_name = "ardour"; +string ARDOUR_COMMAND_LINE::backend_client_name = "ardour"; +string ARDOUR_COMMAND_LINE::backend_session_uuid; bool ARDOUR_COMMAND_LINE::show_key_actions = false; -bool ARDOUR_COMMAND_LINE::no_splash = true; +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::use_vst = true; bool ARDOUR_COMMAND_LINE::new_session = false; char* ARDOUR_COMMAND_LINE::curvetest_file = 0; 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 */ -Glib::ustring ARDOUR_COMMAND_LINE::menus_file = "ardour.menus"; +std::string ARDOUR_COMMAND_LINE::menus_file = "ardour.menus"; bool ARDOUR_COMMAND_LINE::finder_invoked_ardour = false; string ARDOUR_COMMAND_LINE::immediate_save; +string ARDOUR_COMMAND_LINE::load_template; +bool ARDOUR_COMMAND_LINE::check_announcements = true; using namespace ARDOUR_COMMAND_LINE; int print_help (const char *execname) { - cout << _("Usage: ") << execname << " [OPTION]... [SESSION_NAME]\n\n" - << _(" [SESSION_NAME] Name of session to load\n") - << _(" -v, --version Show version information\n") - << _(" -h, --help Print this message\n") - << _(" -b, --bindings Print all possible keyboard binding names\n") - << _(" -c, --name Use a specific jack client name, default is ardour\n") - << _(" -d, --disable-plugins Disable all plugins in an existing session\n") - << _(" -D, --debug Set debug flags. Use \"-D list\" to see available options\n") - << _(" -n, --show-splash Show splash screen\n") - << _(" -m, --menus file Use \"file\" for Ardour menus\n") - << _(" -N, --new session-name Create a new session from the command line\n") - << _(" -O, --no-hw-optimizations Disable h/w specific optimizations\n") - << _(" -S, --sync Draw the gui synchronously \n") -#ifdef VST_SUPPORT - << _(" -V, --novst Do not use VST support\n") + // 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 Use a specific backend client name, default is ardour\n") +#ifndef NDEBUG + << _(" -C, --curvetest filename Curve algorithm debugger\n") +#endif + << _(" -d, --disable-plugins Disable all plugins (safe mode)\n") +#ifndef NDEBUG + << _(" -D, --debug Set debug flags. Use \"-D list\" to see available options\n") #endif - << _(" -E, --save Load the specified session, save it to and then quit\n") - << _(" -C, --curvetest filename Curve algorithm debugger\n") - << _(" -k, --keybindings filename Name of key bindings to load (default is ~/.ardour3/ardour.bindings)\n") + << _(" -E, --save Load the specified session, save it to and then quit\n") + << _(" -h, --help Print this message\n") + << _(" -k, --keybindings Name of key bindings 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, --sync Draw the GUI synchronously\n") + << _(" -T, --template Use given template for new session\n") + << _(" -U, --uuid Set (jack) backend UUID\n") + << _(" -v, --version Print version and exit\n") +#ifdef WINDOWS_VST_SUPPORT + << _(" -V, --novst Disable WindowsVST support\n") +#endif + << "\n\n" + << _("Report bugs to http://tracker.ardour.org\n") + << _("Website http://ardour.org\n") ; return 1; } -static void -list_debug_options () -{ - cerr << _("The following debug options are available. Separate multipe options with commas. Names are case-insensitive.") << "\n\n"; - cerr << "\tMidiSourceIO\n"; - cerr << "\tMidiPlaylistIO\n"; - cerr << "\tMidiDiskstreamIO\n"; -} - -static int -parse_debug_options (const char* str) -{ - char* p; - char* sp; - uint64_t bits = 0; - char* copy = strdup (str); - - p = strtok_r (copy, ",", &sp); - - while (p) { - if (strcasecmp (p, "list") == 0) { - list_debug_options (); - free (copy); - return 1; - } - - if (strcasecmp (p, "all") == 0) { - ARDOUR::set_debug_bits (~0ULL); - free (copy); - return 0; - } - - if (strcasecmp (p, "midisourceio") == 0) { - bits |= ARDOUR::DEBUG::MidiSourceIO; - } - if (strcasecmp (p, "midiplaylistio") == 0) { - bits |= ARDOUR::DEBUG::MidiPlaylistIO; - } - if (strcasecmp (p, "mididiskstreamio") == 0) { - bits |= ARDOUR::DEBUG::MidiDiskstreamIO; - } - - p = strtok_r (0, ",", &sp); - } - - free (copy); - ARDOUR::set_debug_bits (bits); - return 0; -} - - int ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[]) { - const char *optstring = "bc:C:dD:hk:E:m:N:nOp:SU:vV"; + const char *optstring = "aAbBc:C:dD:hHk:E:m:N:nOp:PST:U:vV"; const char *execname = strrchr (argv[0], '/'); - if (getenv ("ARDOUR_SAE")) { - menus_file = "ardour-sae.menus"; - keybindings_path = "SAE"; - } - if (execname == 0) { execname = argv[0]; } else { @@ -145,9 +117,13 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[]) 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' }, - { "show-splash", 0, 0, 'n' }, + { "no-splash", 0, 0, 'n' }, { "menus", 1, 0, 'm' }, { "name", 1, 0, 'c' }, { "novst", 0, 0, 'V' }, @@ -156,6 +132,9 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[]) { "sync", 0, 0, 'S' }, { "curvetest", 1, 0, 'C' }, { "save", 1, 0, 'E' }, + { "uuid", 1, 0, 'U' }, + { "template", 1, 0, 'T' }, + { "no-connect-ports", 0, 0, 'P' }, { 0, 0, 0, 0 } }; @@ -181,26 +160,43 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[]) print_help (execname); exit (0); 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': - if (parse_debug_options (optarg)) { + if (PBD::parse_debug_options (optarg)) { exit (0); } break; - + case 'm': menus_file = optarg; break; case 'n': - no_splash = false; + no_splash = true; break; case 'p': @@ -211,6 +207,9 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[]) 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; @@ -221,14 +220,18 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[]) try_hw_optimization = false; break; + case 'P': + no_connect_ports = true; + break; + case 'V': -#ifdef VST_SUPPORT +#ifdef WINDOWS_VST_SUPPORT use_vst = false; -#endif /* VST_SUPPORT */ +#endif /* WINDOWS_VST_SUPPORT */ break; case 'c': - jack_client_name = optarg; + backend_client_name = optarg; break; case 'C': @@ -243,6 +246,10 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[]) immediate_save = optarg; break; + case 'U': + backend_session_uuid = optarg; + break; + default: return print_help(execname); }