OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
file_delete.h File Reference

shared utility for the db server and string dictionary server to remove old files More...

+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void file_delete (std::atomic< bool > &program_is_running, const unsigned int wait_interval_seconds, const std::string base_path)
 

Detailed Description

shared utility for the db server and string dictionary server to remove old files

Definition in file file_delete.h.

Function Documentation

void file_delete ( std::atomic< bool > &  program_is_running,
const unsigned int  wait_interval_seconds,
const std::string  base_path 
)

Definition at line 304 of file File.cpp.

References gpu_enabled::copy(), logger::ERROR, logger::INFO, and LOG.

Referenced by startHeavyDBServer().

306  {
307  const auto wait_duration = std::chrono::seconds(wait_interval_seconds);
308  const boost::filesystem::path path(base_path);
309  while (program_is_running) {
310  using vec = std::vector<boost::filesystem::path>; // store paths,
311  vec v;
312  boost::system::error_code ec;
313 
314  // copy vector from iterator as was getting weird random errors if
315  // removed direct from iterator
316  copy(boost::filesystem::directory_iterator(path),
317  boost::filesystem::directory_iterator(),
318  back_inserter(v));
319  for (vec::const_iterator it(v.begin()); it != v.end(); ++it) {
320  std::string object_name(it->string());
321 
322  if (boost::algorithm::ends_with(object_name, "DELETE_ME")) {
323  LOG(INFO) << " removing object " << object_name;
324  boost::filesystem::remove_all(*it, ec);
325  if (ec.value() != boost::system::errc::success) {
326  LOG(ERROR) << "Failed to remove object " << object_name << " error was " << ec;
327  }
328  }
329  }
330 
331  std::this_thread::sleep_for(wait_duration);
332  }
333 }
#define LOG(tag)
Definition: Logger.h:285
DEVICE auto copy(ARGS &&...args)
Definition: gpu_enabled.h:51

+ Here is the call graph for this function:

+ Here is the caller graph for this function: