#include #include #include #include #include #include "input_folder.h" namespace Mist { inputFolder::inputFolder(Util::Config * cfg) : Input(cfg) { capa["name"] = "Folder"; capa["desc"] = "Folder input, re-starts itself as the appropriate input."; capa["source_match"] = "/*/"; capa["priority"] = 9ll; capa["morphic"] = 1ll; } int inputFolder::boot(int argc, char * argv[]){ if (!config->parseArgs(argc, argv)){return 1;} if (config->getBool("json")){return Input::boot(argc,argv);} streamName = config->getString("streamname"); if (streamName.find_first_of("+ ") == std::string::npos){ FAIL_MSG("Folder input requires a + or space in the stream name."); return 1; } std::string folder = config->getString("input"); if (folder[folder.size() - 1] != '/'){ FAIL_MSG("Input path must end in a forward slash."); return 1; } std::string folder_noslash = folder.substr(0, folder.size() - 1); struct stat fileCheck; if (stat(folder_noslash.c_str(), &fileCheck) != 0 || !S_ISDIR(fileCheck.st_mode)){ FAIL_MSG("Folder input requires a folder as input."); return 1; } std::string path = folder + streamName.substr(streamName.find_first_of("+ ")+1); if (stat(path.c_str(), &fileCheck) != 0 || S_ISDIR(fileCheck.st_mode)){ FAIL_MSG("File not found: %s", path.c_str()); return 1; } Util::startInput(streamName, path, false); return 1; } }