2023-07-21 21:32:24 +00:00
|
|
|
#include "taskmanager.h"
|
|
|
|
|
|
|
|
#include "flactomp3.h"
|
|
|
|
|
2023-07-23 12:04:26 +00:00
|
|
|
constexpr const std::array<std::string_view, Loggable::fatal + 1> logSettings({
|
|
|
|
/*debug*/ "\e[90m",
|
|
|
|
/*info*/ "\e[32m",
|
|
|
|
/*minor*/ "\e[34m",
|
|
|
|
/*major*/ "\e[94m",
|
|
|
|
/*warning*/ "\e[33m",
|
|
|
|
/*error*/ "\e[31m",
|
|
|
|
/*fatal*/ "\e[91m"
|
|
|
|
});
|
|
|
|
|
|
|
|
constexpr const std::array<std::string_view, Loggable::fatal + 1> logHeaders({
|
|
|
|
/*debug*/ "DEBUG: ",
|
|
|
|
/*info*/ "INFO: ",
|
|
|
|
/*minor*/ "MINOR: ",
|
|
|
|
/*major*/ "MAJOR: ",
|
|
|
|
/*warning*/ "WARNING: ",
|
|
|
|
/*error*/ "ERROR: ",
|
|
|
|
/*fatal*/ "FATAL: "
|
|
|
|
});
|
|
|
|
|
2023-07-21 21:32:24 +00:00
|
|
|
TaskManager::TaskManager():
|
|
|
|
busyThreads(0),
|
|
|
|
maxTasks(0),
|
|
|
|
completeTasks(0),
|
|
|
|
terminate(false),
|
2023-07-23 12:04:26 +00:00
|
|
|
printMutex(),
|
2023-07-21 21:32:24 +00:00
|
|
|
queueMutex(),
|
|
|
|
busyMutex(),
|
|
|
|
loopConditional(),
|
|
|
|
waitConditional(),
|
|
|
|
threads(),
|
|
|
|
jobs(),
|
|
|
|
boundLoopCondition(std::bind(&TaskManager::loopCondition, this)),
|
|
|
|
boundWaitCondition(std::bind(&TaskManager::waitCondition, this))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TaskManager::~TaskManager() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void TaskManager::queueJob(const std::string& source, const std::string& destination) {
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(queueMutex);
|
|
|
|
jobs.emplace(source, destination);
|
|
|
|
}
|
|
|
|
++maxTasks;
|
|
|
|
loopConditional.notify_one();
|
|
|
|
waitConditional.notify_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TaskManager::busy() const {
|
|
|
|
bool result;
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(queueMutex);
|
|
|
|
result = !jobs.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TaskManager::start() {
|
|
|
|
const uint32_t num_threads = std::thread::hardware_concurrency();
|
|
|
|
for (uint32_t ii = 0; ii < num_threads; ++ii)
|
|
|
|
threads.emplace_back(std::thread(&TaskManager::loop, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
void TaskManager::loop() {
|
|
|
|
while (true) {
|
|
|
|
std::pair<std::string, std::string> pair;
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(queueMutex);
|
|
|
|
loopConditional.wait(lock, boundLoopCondition);
|
|
|
|
if (terminate)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pair = jobs.front();
|
|
|
|
++busyThreads;
|
|
|
|
waitConditional.notify_all();
|
|
|
|
jobs.pop();
|
|
|
|
}
|
|
|
|
|
2023-07-23 12:04:26 +00:00
|
|
|
JobResult result = job(pair.first, pair.second);
|
2023-07-21 21:32:24 +00:00
|
|
|
++completeTasks;
|
2023-07-23 12:04:26 +00:00
|
|
|
printProgress(result, pair.first, pair.second);
|
2023-07-21 21:32:24 +00:00
|
|
|
--busyThreads;
|
|
|
|
waitConditional.notify_all();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TaskManager::loopCondition() const {
|
|
|
|
return !jobs.empty() || terminate;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TaskManager::waitCondition() const {
|
|
|
|
return busyThreads == 0 && !busy();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TaskManager::stop() {
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(queueMutex);
|
|
|
|
terminate = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
loopConditional.notify_all();
|
|
|
|
for (std::thread& thread : threads)
|
|
|
|
thread.join();
|
|
|
|
|
|
|
|
threads.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TaskManager::wait() {
|
|
|
|
std::unique_lock<std::mutex> lock(busyMutex);
|
|
|
|
waitConditional.wait(lock, boundWaitCondition);
|
|
|
|
}
|
|
|
|
|
2023-07-23 12:04:26 +00:00
|
|
|
TaskManager::JobResult TaskManager::job(const std::string& source, const std::string& destination) {
|
2023-07-21 21:32:24 +00:00
|
|
|
FLACtoMP3 convertor;
|
|
|
|
convertor.setInputFile(source);
|
|
|
|
convertor.setOutputFile(destination);
|
2023-07-23 12:04:26 +00:00
|
|
|
bool result = convertor.run();
|
|
|
|
return {result, convertor.getHistory()};
|
2023-07-21 21:32:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TaskManager::printProgress() const {
|
2023-07-23 12:04:26 +00:00
|
|
|
std::unique_lock<std::mutex> lock(printMutex);
|
2023-07-21 21:32:24 +00:00
|
|
|
std::cout << "\r" << completeTasks << "/" << maxTasks << std::flush;
|
|
|
|
}
|
2023-07-23 12:04:26 +00:00
|
|
|
|
|
|
|
void TaskManager::printProgress(const TaskManager::JobResult& result, const std::string& source, const std::string& destination) const {
|
|
|
|
std::unique_lock<std::mutex> lock(printMutex);
|
|
|
|
if (result.first) {
|
|
|
|
if (result.second.size() > 0) {
|
|
|
|
std::cout << "\r\e[1m" << "Encoding complete but there are messages about it" << "\e[0m" << std::endl;
|
|
|
|
printLog(result, source, destination);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
std::cout << "\r\e[1m" << "Encoding failed!" << "\e[0m" << std::endl;
|
|
|
|
printLog(result, source, destination);
|
|
|
|
}
|
|
|
|
std::cout << "\r" << completeTasks << "/" << maxTasks << std::flush;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TaskManager::printLog(const TaskManager::JobResult& result, const std::string& source, const std::string& destination) {
|
|
|
|
std::cout << "Source: \t" << source << std::endl;
|
|
|
|
std::cout << "Destination: \t" << destination << std::endl;
|
|
|
|
for (const Loggable::Message& msg : result.second) {
|
|
|
|
std::cout << "\t" << logSettings[msg.first] << "\e[1m" << logHeaders[msg.first] << "\e[22m" << msg.second << std::endl;
|
|
|
|
}
|
|
|
|
std::cout << "\e[0m" << std::endl;
|
|
|
|
}
|