#include #include #include #include "core/appInfo.h" #include "tools/NiceCmdLineOutput.h" #include "tools/ProgressBar.h" #include "logging/logging.h" #include "logging/sinks.h" #include "logging/formatters.h" #include #include "exporters/Exporter.h" #include "time/ContinuousTimeline.h" #include #include "tools/stringTools.h" #include #include #include "tools/parallel.h" #include "tools/exceptions.h" #include "tools/textFiles.h" #include "lib/rhubarbLib.h" #include "ExportFormat.h" #include "exporters/TsvExporter.h" #include "exporters/XmlExporter.h" #include "exporters/JsonExporter.h" #include "animation/targetShapeSet.h" #include #include "tools/platformTools.h" #include "sinks.h" #include "semanticEntries.h" using std::exception; using std::string; using std::string; using std::vector; using std::unique_ptr; using std::make_unique; using std::shared_ptr; using std::make_shared; using std::map; using std::chrono::duration; using std::chrono::duration_cast; using std::ofstream; using boost::filesystem::path; using boost::adaptors::transformed; using boost::optional; namespace tclap = TCLAP; // Tell TCLAP how to handle our types namespace TCLAP { template<> struct ArgTraits { typedef ValueLike ValueCategory; }; template<> struct ArgTraits { typedef ValueLike ValueCategory; }; } shared_ptr createFileSink(path path, logging::Level minLevel) { auto file = make_shared(); file->exceptions(std::ifstream::failbit | std::ifstream::badbit); file->open(path); auto FileSink = make_shared(file, make_shared()); return make_shared(FileSink, minLevel); } unique_ptr createExporter(ExportFormat exportFormat) { switch (exportFormat) { case ExportFormat::Tsv: return make_unique(); case ExportFormat::Xml: return make_unique(); case ExportFormat::Json: return make_unique(); default: throw std::runtime_error("Unknown export format."); } } ShapeSet getTargetShapeSet(const string& extendedShapesString) { // All basic shapes are mandatory ShapeSet result(ShapeConverter::get().getBasicShapes()); // Add any extended shapes for (char ch : extendedShapesString) { Shape shape = ShapeConverter::get().parse(string(1, ch)); result.insert(shape); } return result; } int main(int platformArgc, char *platformArgv[]) { // Set up default logging so early errors are printed to stdout const logging::Level defaultMinStderrLevel = logging::Level::Error; shared_ptr defaultSink = make_shared(defaultMinStderrLevel); logging::addSink(defaultSink); // Use UTF-8 throughout useUtf8ForConsole(); useUtf8ForBoostFilesystem(); // Convert command-line arguments to UTF-8 const vector args = argsToUtf8(platformArgc, platformArgv); // Define command-line parameters const char argumentValueSeparator = ' '; tclap::CmdLine cmd(appName, argumentValueSeparator, appVersion); cmd.setExceptionHandling(false); cmd.setOutput(new NiceCmdLineOutput()); tclap::ValueArg outputFileName("o", "output", "The output file path.", false, string(), "string", cmd); auto logLevels = vector(logging::LevelConverter::get().getValues()); tclap::ValuesConstraint logLevelConstraint(logLevels); tclap::ValueArg logLevel("", "logLevel", "The minimum log level that will be written to the log file", false, logging::Level::Debug, &logLevelConstraint, cmd); tclap::ValueArg logFileName("", "logFile", "The log file path.", false, string(), "string", cmd); tclap::ValueArg consoleLevel("", "consoleLevel", "The minimum log level that will be printed on the console (stderr)", false, defaultMinStderrLevel, &logLevelConstraint, cmd); tclap::SwitchArg machineReadableMode("", "machineReadable", "Formats all output to stderr in a structured JSON format.", cmd, false); tclap::SwitchArg quietMode("q", "quiet", "Suppresses all output to stderr except for warnings and error messages.", cmd, false); tclap::ValueArg maxThreadCount("", "threads", "The maximum number of worker threads to use.", false, getProcessorCoreCount(), "number", cmd); tclap::ValueArg extendedShapes("", "extendedShapes", "All extended, optional shapes to use.", false, "GHX", "string", cmd); tclap::ValueArg dialogFile("d", "dialogFile", "A file containing the text of the dialog.", false, string(), "string", cmd); auto exportFormats = vector(ExportFormatConverter::get().getValues()); tclap::ValuesConstraint exportFormatConstraint(exportFormats); tclap::ValueArg exportFormat("f", "exportFormat", "The export format.", false, ExportFormat::Tsv, &exportFormatConstraint, cmd); tclap::UnlabeledValueArg inputFileName("inputFile", "The input file. Must be a sound file in WAVE format.", true, "", "string", cmd); try { // Parse command line { // TCLAP mutates the function argument! Pass a copy. vector argsCopy(args); cmd.parse(argsCopy); } // Set up logging // ... to stderr if (quietMode.getValue()) { logging::addSink(make_shared(consoleLevel.getValue())); } else if (machineReadableMode.getValue()) { logging::addSink(make_shared(consoleLevel.getValue())); } else { logging::addSink(make_shared(consoleLevel.getValue())); } logging::removeSink(defaultSink); // ... to log file if (logFileName.isSet()) { auto fileSink = createFileSink(path(logFileName.getValue()), logLevel.getValue()); logging::addSink(fileSink); } // Validate and transform command line arguments if (maxThreadCount.getValue() < 1) { throw std::runtime_error("Thread count must be 1 or higher."); } path inputFilePath(inputFileName.getValue()); ShapeSet targetShapeSet = getTargetShapeSet(extendedShapes.getValue()); logging::log(StartEntry(inputFilePath)); logging::debugFormat("Command line: {}", join(args | transformed([](string arg) { return fmt::format("\"{}\"", arg); }), " ")); try { // On progress change: Create log message ProgressForwarder progressSink([](double progress) { logging::log(ProgressEntry(progress)); }); // Animate the recording JoiningContinuousTimeline animation = animateWaveFile( inputFilePath, dialogFile.isSet() ? readUtf8File(path(dialogFile.getValue())) : boost::optional(), targetShapeSet, maxThreadCount.getValue(), progressSink); // Export animation unique_ptr exporter = createExporter(exportFormat.getValue()); optional outputFile; if (outputFileName.isSet()) { outputFile = boost::in_place(outputFileName.getValue()); outputFile->exceptions(std::ifstream::failbit | std::ifstream::badbit); } ExporterInput exporterInput = ExporterInput(inputFilePath, animation, targetShapeSet); exporter->exportAnimation(exporterInput, outputFile ? *outputFile : std::cout); logging::log(SuccessEntry()); } catch (...) { std::throw_with_nested(std::runtime_error(fmt::format("Error processing file {}.", inputFilePath))); } return 0; } catch (tclap::ArgException& e) { // Error parsing command-line args. cmd.getOutput()->failure(cmd, e); logging::log(FailureEntry("Invalid command line.")); return 1; } catch (tclap::ExitException&) { // A built-in TCLAP command (like --help) has finished. Exit application. logging::info("Exiting application after help-like command."); return 0; } catch (const exception& e) { // Generic error string message = getMessage(e); logging::log(FailureEntry(message)); return 1; } }