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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
/*
* Copyright (C) 2019 Robin Gareus <robin@gareus.org>
*
* 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 <cstdlib>
#include <getopt.h>
#include <iostream>
#include <glibmm.h>
#include "ardour/audioengine.h"
#include "ardour/filename_extensions.h"
#include "ardour/template_utils.h"
#include "common.h"
using namespace std;
using namespace ARDOUR;
using namespace SessionUtils;
static void usage ()
{
// help2man compatible format (standard GNU help-text)
printf (UTILNAME " - create a new session from the commandline.\n\n");
printf ("Usage: " UTILNAME " [ OPTIONS ] <session-dir> [session-name]\n\n");
printf ("Options:\n\
-L, --list-templates List available templates and exit\n\
-h, --help Display this help and exit\n\
-m, --master-channels <chn> Master-bus channel count (default 2)\n\
-s, --samplerate <rate> Samplerate to use (default 48000)\n\
-t, --template <template> Use given template for new session\n\
-V, --version Print version information and exit\n\
\n");
printf ("\n\
This tool creates a new Ardour session, optionally based on a\n\
session-template.\n\
\n\
If the session-name is unspecified, the sesion-dir-name is used.\n\
If specified, the tool expects a session-name without .ardour\n\
file-name extension.\n\
\n\
If no template is specified, an empty session with a stereo master\n\
bus is created. The -m option allows one to specify the master-bus channel\n\
count. If zero is used as channel count, no master-bus is created.\n\
\n\
Note: this tool can only use static session templates.\n\
Interactive Lua init-scripts or dynamic templates are not supported.\n\
\n");
printf ("\n\
Examples:\n\
" UTILNAME " -s 44100 -m 4 /tmp/NewSession\n\
\n");
printf ("Report bugs to <https://tracker.ardour.org/>\n"
"Website: <https://ardour.org/>\n");
::exit (EXIT_SUCCESS);
}
static void
list_templates ()
{
vector<TemplateInfo> templates;
find_session_templates (templates, false);
cout << "---- List of Session Templates ----\n";
for (vector<TemplateInfo>::iterator x = templates.begin (); x != templates.end (); ++x) {
cout << "[TPL] " << (*x).name << "\n";
}
cout << "----\n";
}
static std::string
template_path_from_name (std::string const& name)
{
vector<TemplateInfo> templates;
find_session_templates (templates, false);
for (vector<TemplateInfo>::iterator x = templates.begin (); x != templates.end (); ++x) {
if ((*x).name == name) {
return (*x).path;
}
}
return "";
}
static Session*
create_new_session (string const& dir, string const& state, float sample_rate, int master_bus_chn, string const& template_path)
{
AudioEngine* engine = AudioEngine::create ();
if (!engine->set_backend ("None (Dummy)", "Unit-Test", "")) {
cerr << "Cannot create Audio/MIDI engine\n";
::exit (EXIT_FAILURE);
}
engine->set_input_channels (256);
engine->set_output_channels (256);
if (engine->set_sample_rate (sample_rate)) {
cerr << "Cannot set session's samplerate.\n";
return 0;
}
if (engine->start () != 0) {
cerr << "Cannot start Audio/MIDI engine\n";
return 0;
}
string s = Glib::build_filename (dir, state + statefile_suffix);
if (Glib::file_test (dir, Glib::FILE_TEST_EXISTS)) {
cerr << "Session folder already exists '" << dir << "'\n";
}
if (Glib::file_test (s, Glib::FILE_TEST_EXISTS)) {
cerr << "Session file exists '" << s << "'\n";
return 0;
}
BusProfile bus_profile;
BusProfile* bus_profile_ptr = NULL;
if (master_bus_chn > 0) {
bus_profile_ptr = &bus_profile;
bus_profile.master_out_channels = master_bus_chn;
}
if (!template_path.empty ()) {
bus_profile_ptr = NULL;
}
Session* session = new Session (*engine, dir, state, bus_profile_ptr, template_path);
engine->set_session (session);
return session;
}
int
main (int argc, char* argv[])
{
int sample_rate = 48000;
int master_bus_chn = 2;
string template_path;
const char* optstring = "Lm:hs:t:V";
/* clang-format off */
const struct option longopts[] = {
{ "list-templates", no_argument, 0, 'L' },
{ "help", no_argument, 0, 'h' },
{ "master-channels", no_argument, 0, 'm' },
{ "samplerate", required_argument, 0, 's' },
{ "template", required_argument, 0, 't' },
{ "version", no_argument, 0, 'V' },
};
/* clang-format on */
int c = 0;
while (EOF != (c = getopt_long (argc, argv,
optstring, longopts, (int*)0))) {
switch (c) {
case 'L':
list_templates ();
exit (EXIT_SUCCESS);
break;
case 'm': {
const int mc = atoi (optarg);
if (mc >= 0 && mc < 128) {
master_bus_chn = mc;
} else {
cerr << "Invalid master bus channel count\n";
}
} break;
case 's': {
const int sr = atoi (optarg);
if (sr >= 8000 && sr <= 192000) {
sample_rate = sr;
} else {
cerr << "Invalid Samplerate\n";
}
} break;
case 't':
template_path = template_path_from_name (optarg);
if (template_path.empty ()) {
cerr << "Invalid (non-existent) template:" << optarg << "\n";
::exit (EXIT_FAILURE);
}
break;
case 'V':
printf ("ardour-utils version %s\n\n", VERSIONSTRING);
printf ("Copyright (C) GPL 2019 Robin Gareus <robin@gareus.org>\n");
exit (EXIT_SUCCESS);
break;
case 'h':
usage ();
break;
default:
cerr << "Error: unrecognized option. See --help for usage information.\n";
::exit (EXIT_FAILURE);
break;
}
}
string snapshot_name;
if (optind + 2 == argc) {
snapshot_name = argv[optind + 1];
} else if (optind + 1 == argc) {
snapshot_name = Glib::path_get_basename (argv[optind]);
} else {
cerr << "Error: Missing parameter. See --help for usage information.\n";
::exit (EXIT_FAILURE);
}
if (snapshot_name.empty ()) {
cerr << "Error: Invalid empty session/snapshot name.\n";
::exit (EXIT_FAILURE);
}
/* all systems go */
SessionUtils::init ();
Session* s = 0;
try {
s = create_new_session (argv[optind], snapshot_name, sample_rate, master_bus_chn, template_path);
} catch (ARDOUR::SessionException& e) {
cerr << "Error: " << e.what () << "\n";
} catch (...) {
cerr << "Error: unknown exception.\n";
}
/* save is implicit when creating a new session */
if (s) {
cout << "Created session in '" << s->path () << "'" << endl;
}
SessionUtils::unload_session (s);
SessionUtils::cleanup ();
return 0;
}
|