Project
Loading...
Searching...
No Matches
DirectoryLoader.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
15
17#include <filesystem>
18#include <algorithm>
19#include <climits>
20#include <map>
21#include <iostream>
22#include <forward_list>
23#include <regex>
24#include <fairlogger/Logger.h>
25
26using namespace std;
27using namespace o2::event_visualisation;
28
29deque<string> DirectoryLoader::load(const std::string& path, const std::string& marker, const std::vector<std::string>& ext)
30{
31 deque<string> result;
32 for (const auto& entry : std::filesystem::directory_iterator(path)) {
33 if (std::find(ext.begin(), ext.end(), entry.path().extension()) != ext.end()) {
34 result.push_back(entry.path().filename());
35 }
36 }
37 // comparison with safety if marker not in the filename (-1+1 gives 0)
38 std::sort(result.begin(), result.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);
41 });
42
43 return result;
44}
45
46bool DirectoryLoader::canCreateNextFile(const std::vector<std::string>& paths, const std::string& marker, const std::vector<std::string>& ext, long long millisec, long capacityAllowed)
47{
48 deque<string> result;
49 std::map<std::string, std::string> fullPath;
50 for (const auto& path : paths) {
51 try {
52 for (const auto& entry : std::filesystem::directory_iterator(path)) {
53 if (std::find(ext.begin(), ext.end(), entry.path().extension()) != ext.end()) {
54 result.push_back(entry.path().filename());
55 fullPath[entry.path().filename()] = entry.path();
56 }
57 }
58 } catch (std::filesystem::filesystem_error const& ex) {
59 LOGF(info, "filesystem problem: %s", ex.what());
60 }
61 }
62
63 // comparison with safety if marker not in the filename (-1+1 gives 0)
64 std::ranges::sort(result.begin(), result.end(),
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);
67 });
68 unsigned long accumulatedSize = 0L;
69 const std::regex delimiter{"_"};
70 for (auto const& file : result) {
71 std::vector<std::string> c(std::sregex_token_iterator(file.begin(), file.end(), delimiter, -1), {});
72 if (std::stoll(c[1]) < millisec) {
73 break;
74 }
75 try {
76 accumulatedSize += filesystem::file_size(fullPath[file]);
77 } catch (std::filesystem::filesystem_error const& ex) {
78 LOGF(info, "problem scanning folder: %s", ex.what());
79 }
80 if (accumulatedSize > capacityAllowed) {
81 return false;
82 }
83 }
84 return true;
85}
86
87deque<string> DirectoryLoader::load(const std::vector<std::string>& paths, const std::string& marker, const std::vector<std::string>& ext)
88{
89 deque<string> result;
90 for (const auto& path : paths) {
91 for (const auto& entry : std::filesystem::directory_iterator(path)) {
92 if (std::find(ext.begin(), ext.end(), entry.path().extension()) != ext.end()) {
93 result.push_back(entry.path().filename());
94 }
95 }
96 }
97 // comparison with safety if marker not in the filename (-1+1 gives 0)
98 std::sort(result.begin(), result.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);
101 });
102
103 return result;
104}
105
106std::vector<std::string> DirectoryLoader::allFolders(const std::string& location)
107{
108 auto const pos = location.find_last_of('_');
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");
113 return folders;
114}
115
116void DirectoryLoader::reduceNumberOfFiles(const std::string& path, const std::deque<std::string>& files, std::size_t filesInFolder)
117{
118 if (filesInFolder == -1) {
119 return; // do not reduce
120 }
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()); // delete file
124 }
125}
126
127template <typename TP>
128std::time_t to_time_t(TP tp)
129{
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);
133}
134
135int DirectoryLoader::getNumberOfFiles(const std::string& path, std::vector<std::string>& ext)
136{
137 int res = 0;
138 for (const auto& entry : std::filesystem::directory_iterator(path)) {
139 if (std::find(ext.begin(), ext.end(), entry.path().extension()) != ext.end()) {
140 res++;
141 }
142 }
143 return res;
144}
145std::string DirectoryLoader::getLatestFile(const std::string& path, std::vector<std::string>& ext)
146{
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();
155 }
156 }
157 }
158 return oldest_file_name;
159}
160
161void DirectoryLoader::removeOldestFiles(const std::string& path, std::vector<std::string>& ext, const int remaining)
162{
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));
166 }
167}
std::time_t to_time_t(TP tp)
Loading content of the Folder and returning sorted.
int32_t i
uint16_t pos
Definition RawData.h:3
uint32_t res
Definition RawData.h:0
uint32_t c
Definition RawData.h:2
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)
GLuint64EXT * result
Definition glcorearb.h:5662
GLuint entry
Definition glcorearb.h:5735
GLboolean GLboolean GLboolean b
Definition glcorearb.h:1233
GLsizei const GLuint * paths
Definition glcorearb.h:5475
GLsizei const GLchar *const * path
Definition glcorearb.h:3591
GLboolean GLboolean GLboolean GLboolean a
Definition glcorearb.h:1233
Defining DataPointCompositeObject explicitly as copiable.