22#include <forward_list>
24#include <fairlogger/Logger.h>
32 for (
const auto&
entry : std::filesystem::directory_iterator(
path)) {
33 if (std::find(ext.begin(), ext.end(),
entry.path().extension()) != ext.end()) {
39 [
marker](
const std::string&
a,
const std::string&
b) {
40 return a.substr(a.find_first_of(marker) + 1) < b.substr(b.find_first_of(marker) + 1);
49 std::map<std::string, std::string> fullPath;
52 for (
const auto&
entry : std::filesystem::directory_iterator(
path)) {
53 if (std::find(ext.begin(), ext.end(),
entry.path().extension()) != ext.end()) {
55 fullPath[
entry.path().filename()] =
entry.path();
58 }
catch (std::filesystem::filesystem_error
const& ex) {
59 LOGF(info,
"filesystem problem: %s", ex.what());
65 [
marker](
const std::string&
a,
const std::string&
b) {
66 return a.substr(a.find_first_of(marker) + 1) > b.substr(b.find_first_of(marker) + 1);
68 unsigned long accumulatedSize = 0L;
69 const std::regex delimiter{
"_"};
71 std::vector<std::string>
c(std::sregex_token_iterator(
file.begin(),
file.end(), delimiter, -1), {});
72 if (std::stoll(
c[1]) < millisec) {
76 accumulatedSize += filesystem::file_size(fullPath[
file]);
77 }
catch (std::filesystem::filesystem_error
const& ex) {
78 LOGF(info,
"problem scanning folder: %s", ex.what());
80 if (accumulatedSize > capacityAllowed) {
91 for (
const auto&
entry : std::filesystem::directory_iterator(
path)) {
92 if (std::find(ext.begin(), ext.end(),
entry.path().extension()) != ext.end()) {
99 [
marker](
const std::string&
a,
const std::string&
b) {
100 return a.substr(a.find_first_of(marker) + 1) < b.substr(b.find_first_of(marker) + 1);
109 std::vector<std::string> folders;
110 folders.push_back(
location.substr(0,
pos) +
"_PHYSICS");
111 folders.push_back(
location.substr(0,
pos) +
"_COSMICS");
112 folders.push_back(
location.substr(0,
pos) +
"_SYNTHETIC");
118 if (filesInFolder == -1) {
121 const auto items = files.size() - std::min(files.size(), filesInFolder);
122 for (
int i = 0;
i < items;
i++) {
123 std::remove((
path +
"/" + files[
i]).c_str());
127template <
typename TP>
130 using namespace std::chrono;
131 auto sctp = time_point_cast<system_clock::duration>(tp - TP::clock::now() + system_clock::now());
132 return system_clock::to_time_t(sctp);
135int DirectoryLoader::getNumberOfFiles(
const std::string&
path, std::vector<std::string>& ext)
138 for (
const auto&
entry :
std::filesystem::directory_iterator(
path)) {
139 if (std::find(ext.begin(), ext.end(),
entry.path().extension()) != ext.end()) {
145std::string DirectoryLoader::getLatestFile(
const std::string&
path, std::vector<std::string>& ext)
147 std::string oldest_file_name =
"";
148 std::time_t oldest_file_time = LONG_MAX;
149 for (
const auto&
entry :
std::filesystem::directory_iterator(
path)) {
150 if (std::find(ext.begin(), ext.end(),
entry.path().extension()) != ext.end()) {
151 const auto file_time =
entry.last_write_time();
152 if (
const std::time_t
tt =
to_time_t(file_time);
tt < oldest_file_time) {
153 oldest_file_time =
tt;
154 oldest_file_name =
entry.path().filename().string();
158 return oldest_file_name;
163 while (getNumberOfFiles(
path, ext) > remaining) {
164 LOGF(info,
"removing oldest file in folder: %s : %s",
path, getLatestFile(
path, ext));
165 filesystem::remove(
path +
"/" + getLatestFile(
path, ext));
std::time_t to_time_t(TP tp)
Loading content of the Folder and returning sorted.
static void removeOldestFiles(const std::string &path, std::vector< std::string > &ext, int remaining)
static bool canCreateNextFile(const std::vector< std::string > &paths, const std::string &marker, const std::vector< std::string > &ext, long long millisec, long capacityAllowed)
static void reduceNumberOfFiles(const std::string &path, const std::deque< std::string > &files, std::size_t filesInFolder)
static std::vector< std::string > allFolders(const std::string &location)
static std::deque< std::string > load(const std::string &path, const std::string &marker, const std::vector< std::string > &ext)
GLboolean GLboolean GLboolean b
GLsizei const GLuint * paths
GLsizei const GLchar *const * path
GLboolean GLboolean GLboolean GLboolean a
Defining DataPointCompositeObject explicitly as copiable.