Commit 56428eb9 authored by Davis King's avatar Davis King

Added last_modified() method to dlib::file.

parent 48c68f21
...@@ -62,6 +62,12 @@ namespace dlib ...@@ -62,6 +62,12 @@ namespace dlib
else else
{ {
state.file_size = static_cast<uint64>(buffer.st_size); state.file_size = static_cast<uint64>(buffer.st_size);
state.last_modified = std::chrono::system_clock::from_time_t(buffer.st_mtime);
#ifdef _BSD_SOURCE
state.last_modified += std::chrono::nanoseconds(buffer.st_atim.tv_nsec);
#endif
} }
} }
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <errno.h> #include <errno.h>
#include <stdlib.h> #include <stdlib.h>
#include <chrono>
#if !defined(__USE_LARGEFILE64 ) && !defined(_LARGEFILE64_SOURCE) #if !defined(__USE_LARGEFILE64 ) && !defined(_LARGEFILE64_SOURCE)
#define stat64 stat #define stat64 stat
...@@ -63,6 +64,7 @@ namespace dlib ...@@ -63,6 +64,7 @@ namespace dlib
uint64 file_size; uint64 file_size;
std::string name; std::string name;
std::string full_name; std::string full_name;
std::chrono::time_point<std::chrono::system_clock> last_modified;
}; };
void init(const std::string& name); void init(const std::string& name);
...@@ -74,12 +76,14 @@ namespace dlib ...@@ -74,12 +76,14 @@ namespace dlib
const std::string& name, const std::string& name,
const std::string& full_name, const std::string& full_name,
const uint64 file_size, const uint64 file_size,
const std::chrono::time_point<std::chrono::system_clock>& last_modified,
private_constructor private_constructor
) )
{ {
state.file_size = file_size; state.file_size = file_size;
state.name = name; state.name = name;
state.full_name = full_name; state.full_name = full_name;
state.last_modified = last_modified;
} }
...@@ -110,6 +114,9 @@ namespace dlib ...@@ -110,6 +114,9 @@ namespace dlib
inline uint64 size ( inline uint64 size (
) const { return state.file_size; } ) const { return state.file_size; }
inline std::chrono::time_point<std::chrono::system_clock> last_modified (
) const { return state.last_modified; }
operator std::string ( operator std::string (
) const { return full_name(); } ) const { return full_name(); }
...@@ -383,6 +390,10 @@ namespace dlib ...@@ -383,6 +390,10 @@ namespace dlib
{ {
file_size = static_cast<uint64>(buffer.st_size); file_size = static_cast<uint64>(buffer.st_size);
} }
auto last_modified = std::chrono::system_clock::from_time_t(buffer.st_mtime);
#ifdef _BSD_SOURCE
last_modified += std::chrono::nanoseconds(buffer.st_atim.tv_nsec);
#endif
if (S_ISDIR(buffer.st_mode) == 0) if (S_ISDIR(buffer.st_mode) == 0)
{ {
...@@ -391,6 +402,7 @@ namespace dlib ...@@ -391,6 +402,7 @@ namespace dlib
data->d_name, data->d_name,
path+data->d_name, path+data->d_name,
file_size, file_size,
last_modified,
file::private_constructor() file::private_constructor()
); );
files.enqueue(temp); files.enqueue(temp);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment