90 lines
3.3 KiB
C++
90 lines
3.3 KiB
C++
/*
|
|
This file contains the implementation of the thread control functions. And houses the start functions of the scheduler
|
|
|
|
Functions:
|
|
- start_thread(): This function starts a new thread with the specified command.
|
|
|
|
*/
|
|
|
|
#ifndef THREAD_CTRL_CPP
|
|
#define THREAD_CTRL_CPP
|
|
|
|
#include "thread_ctrl.h"
|
|
#include "log.h"
|
|
#include "well_known.h"
|
|
#include "scan.h"
|
|
#include "deepscan.h"
|
|
#include "app_ctrl.h"
|
|
#include "update.h"
|
|
#include "utils.h"
|
|
|
|
//this function is the function that starts threads on behalf of the scheduler and the desktop app
|
|
int start_thread(const std::string& command) {
|
|
if (can_run_thread()) {
|
|
bool has_run = 0;
|
|
std::string out1, out2;
|
|
split(command, ';', out1, out2);
|
|
log(LOGLEVEL::INFO_NOSEND, "[start_thread()]: command: ", out1, " arguments: ",out2, " call: ",command);
|
|
// Determine what should be executed
|
|
if (out1 == "scanfile") {
|
|
log(LOGLEVEL::INFO, "[start_thread()]: starting scanfile with arguments: ", out2);
|
|
// Start a new thread with the scanfile function
|
|
std::thread t1(action_scanfile, out2);
|
|
t1.detach();
|
|
has_run = 1;
|
|
}
|
|
if (out1 == "deepscanfile") {
|
|
log(LOGLEVEL::INFO, "[start_thread()]: starting deepscanfile with arguments: ", out2);
|
|
// Start a new thread with the scanfile function
|
|
std::thread t1(action_deepscanfile, out2);
|
|
t1.detach();
|
|
has_run = 1;
|
|
}
|
|
else if (out1 == "scanfolder") {
|
|
// Start a new thread with the scanfolder function
|
|
log(LOGLEVEL::INFO, "[start_thread()]: starting scanfolder with arguments: ", out2);
|
|
std::thread t1(action_scanfolder, out2);
|
|
t1.detach();
|
|
has_run = 1;
|
|
}
|
|
else if (out1 == "deepscanfolder") {
|
|
// Start a new thread with the scanfolder function
|
|
log(LOGLEVEL::INFO, "[start_thread()]: starting deepscanfolder with arguments: ", out2);
|
|
std::thread t1(action_deepscanfolder, out2);
|
|
t1.detach();
|
|
has_run = 1;
|
|
}
|
|
else if (out1 == "update_settings") {
|
|
// Start a new thread with the update_settings function
|
|
log(LOGLEVEL::INFO, "[start_thread()]: starting update_settings with arguments: ", out2);
|
|
std::thread t1(action_update_settings);
|
|
t1.detach();
|
|
has_run = 1;
|
|
}
|
|
else if (out1 == "update_db") {
|
|
// Start a new thread with the update_db function
|
|
log(LOGLEVEL::INFO, "[start_thread()]: starting update_db with arguments: ", out2);
|
|
std::thread t1(action_update_db);
|
|
t1.detach();
|
|
has_run = 1;
|
|
}
|
|
else if (out1 == "update_system") {
|
|
// Start a new thread with the update_db function
|
|
log(LOGLEVEL::INFO, "[start_thread()]: starting update_system with arguments: ", out2);
|
|
std::thread t1(update_system);
|
|
t1.detach();
|
|
has_run = 1;
|
|
}
|
|
else if (out1 == "quick_scan"){
|
|
log(LOGLEVEL::INFO, "[start_thread()]: starting quickscan");
|
|
std::thread t1(do_quickscan);
|
|
t1.detach();
|
|
has_run = 1;
|
|
}
|
|
Sleep(10); // Sleep for 10 ms to give the thread time to start
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
#endif // THREAD_CTRL_CPP
|