rhubarb-lip-sync/src/main.cpp

167 lines
5.7 KiB
C++
Raw Normal View History

2015-09-28 19:19:39 +00:00
#include <iostream>
2015-11-25 21:00:24 +00:00
#include <format.h>
2015-12-29 10:44:55 +00:00
#include <tclap/CmdLine.h>
#include "appInfo.h"
#include "NiceCmdLineOutput.h"
2016-01-08 09:53:35 +00:00
#include "ProgressBar.h"
#include "logging.h"
#include <gsl_util.h>
#include "Exporter.h"
#include "ContinuousTimeline.h"
#include <boost/filesystem/operations.hpp>
#include "stringTools.h"
2016-06-14 15:38:11 +00:00
#include <boost/range/adaptor/transformed.hpp>
#include <boost/filesystem/fstream.hpp>
#include "parallel.h"
#include "exceptions.h"
#include "textFiles.h"
#include "rhubarbLib.h"
2016-11-16 10:35:27 +00:00
#include "ExportFormat.h"
#include "TsvExporter.h"
#include "XmlExporter.h"
#include "JsonExporter.h"
2015-09-28 19:19:39 +00:00
using std::exception;
using std::string;
using std::u32string;
2016-03-08 21:59:44 +00:00
using std::vector;
using std::unique_ptr;
using std::make_unique;
using std::shared_ptr;
using std::make_shared;
2015-11-25 21:00:24 +00:00
using std::map;
using std::chrono::duration;
using std::chrono::duration_cast;
using boost::filesystem::path;
2016-06-14 15:38:11 +00:00
using boost::adaptors::transformed;
2016-03-08 21:59:44 +00:00
namespace tclap = TCLAP;
// Tell TCLAP how to handle our types
namespace TCLAP {
template<>
struct ArgTraits<logging::Level> {
2016-03-08 21:59:44 +00:00
typedef ValueLike ValueCategory;
};
template<>
struct ArgTraits<ExportFormat> {
typedef ValueLike ValueCategory;
};
}
shared_ptr<logging::PausableSink> addPausableStdErrSink(logging::Level minLevel) {
auto stdErrSink = make_shared<logging::StdErrSink>(make_shared<logging::SimpleConsoleFormatter>());
auto pausableSink = make_shared<logging::PausableSink>(stdErrSink);
auto levelFilter = make_shared<logging::LevelFilter>(pausableSink, minLevel);
logging::addSink(levelFilter);
return pausableSink;
}
void addFileSink(path path, logging::Level minLevel) {
auto file = make_shared<boost::filesystem::ofstream>();
file->exceptions(std::ifstream::failbit | std::ifstream::badbit);
file->open(path);
auto FileSink = make_shared<logging::StreamSink>(file, make_shared<logging::SimpleFileFormatter>());
auto levelFilter = make_shared<logging::LevelFilter>(FileSink, minLevel);
logging::addSink(levelFilter);
}
unique_ptr<Exporter> createExporter(ExportFormat exportFormat) {
switch (exportFormat) {
case ExportFormat::Tsv:
return make_unique<TsvExporter>();
case ExportFormat::Xml:
return make_unique<XmlExporter>();
case ExportFormat::Json:
return make_unique<JsonExporter>();
default:
throw std::runtime_error("Unknown export format.");
}
}
int main(int argc, char *argv[]) {
#ifdef _DEBUG
auto pausableStderrSink = addPausableStdErrSink(logging::Level::Warn);
2016-03-08 21:59:44 +00:00
pausableStderrSink->pause();
#endif
2015-12-29 10:44:55 +00:00
// Define command-line parameters
const char argumentValueSeparator = ' ';
2016-03-08 21:59:44 +00:00
tclap::CmdLine cmd(appName, argumentValueSeparator, appVersion);
2015-12-29 10:44:55 +00:00
cmd.setExceptionHandling(false);
cmd.setOutput(new NiceCmdLineOutput());
auto logLevels = vector<logging::Level>(logging::LevelConverter::get().getValues());
tclap::ValuesConstraint<logging::Level> logLevelConstraint(logLevels);
tclap::ValueArg<logging::Level> logLevel("", "logLevel", "The minimum log level to log", false, logging::Level::Debug, &logLevelConstraint, cmd);
2016-03-08 21:59:44 +00:00
tclap::ValueArg<string> logFileName("", "logFile", "The log file path.", false, string(), "string", cmd);
tclap::ValueArg<int> maxThreadCount("", "threads", "The maximum number of worker threads to use.", false, getProcessorCoreCount(), "number", cmd);
tclap::ValueArg<string> dialogFile("d", "dialogFile", "A file containing the text of the dialog.", false, string(), "string", cmd);
auto exportFormats = vector<ExportFormat>(ExportFormatConverter::get().getValues());
tclap::ValuesConstraint<ExportFormat> exportFormatConstraint(exportFormats);
tclap::ValueArg<ExportFormat> exportFormat("f", "exportFormat", "The export format.", false, ExportFormat::Tsv, &exportFormatConstraint, cmd);
2016-03-08 21:59:44 +00:00
tclap::UnlabeledValueArg<string> inputFileName("inputFile", "The input file. Must be a sound file in WAVE format.", true, "", "string", cmd);
2015-12-29 10:44:55 +00:00
try {
auto resumeLogging = gsl::finally([&]() {
std::cerr << std::endl << std::endl;
#ifdef _DEBUG
2016-03-08 21:59:44 +00:00
pausableStderrSink->resume();
#endif
std::cerr << std::endl;
});
2015-12-29 10:44:55 +00:00
// Parse command line
cmd.parse(argc, argv);
if (maxThreadCount.getValue() < 1) {
throw std::runtime_error("Thread count must be 1 or higher.");
}
2016-03-08 21:59:44 +00:00
// Set up log file
if (logFileName.isSet()) {
addFileSink(path(logFileName.getValue()), logLevel.getValue());
}
2016-06-14 15:38:11 +00:00
logging::infoFormat("Application startup. Command line: {}", join(
vector<char*>(argv, argv + argc) | transformed([](char* arg) { return fmt::format("\"{}\"", arg); }), " "));
std::cerr << "Processing input file. ";
JoiningContinuousTimeline<Shape> animation(TimeRange::zero(), Shape::X);
2016-01-08 09:53:35 +00:00
{
ProgressBar progressBar;
// Animate the recording
animation = animateWaveFile(
inputFileName.getValue(),
dialogFile.isSet() ? readUtf8File(path(dialogFile.getValue())) : boost::optional<u32string>(),
maxThreadCount.getValue(),
progressBar);
2016-01-08 09:53:35 +00:00
}
std::cerr << "Done." << std::endl << std::endl;
// Export animation
unique_ptr<Exporter> exporter = createExporter(exportFormat.getValue());
exporter->exportShapes(path(inputFileName.getValue()), animation, std::cout);
2016-01-08 09:53:35 +00:00
2016-06-14 15:38:11 +00:00
logging::info("Exiting application normally.");
return 0;
2016-03-08 21:59:44 +00:00
} catch (tclap::ArgException& e) {
// Error parsing command-line args.
cmd.getOutput()->failure(cmd, e);
std::cerr << std::endl;
2016-06-14 15:38:11 +00:00
logging::error("Invalid command line. Exiting application with error code.");
2015-12-29 10:44:55 +00:00
return 1;
2016-03-08 21:59:44 +00:00
} catch (tclap::ExitException&) {
// A built-in TCLAP command (like --help) has finished. Exit application.
std::cerr << std::endl;
2016-06-14 15:38:11 +00:00
logging::info("Exiting application after help-like command.");
return 0;
} catch (const exception& e) {
// Generic error
2016-06-14 15:38:11 +00:00
string message = getMessage(e);
std::cerr << "An error occurred.\n" << message << std::endl;
logging::errorFormat("Exiting application with error: {}", message);
return 1;
}
2015-11-25 21:00:24 +00:00
}