aboutsummaryrefslogtreecommitdiff
path: root/src/operations.cc
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@mit.edu>2016-02-21 19:22:26 -0500
committerGravatar Benjamin Barenblat <bbaren@mit.edu>2016-02-21 20:38:02 -0500
commit384f7c422acca2f3658393abfc16ea57cd74caa6 (patch)
tree97b225ee9a78141e4c1bedb63ec0e44f9f56f34c /src/operations.cc
parent05cafc5002360015a79484e6ee40c159b1c80958 (diff)
Implement utimens
Diffstat (limited to 'src/operations.cc')
-rw-r--r--src/operations.cc23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/operations.cc b/src/operations.cc
index df12738..355ffc3 100644
--- a/src/operations.cc
+++ b/src/operations.cc
@@ -30,6 +30,7 @@
#include <glog/logging.h>
#include <sys/stat.h>
#include <sys/types.h>
+#include <time.h>
#include "fuse.h"
#include "posix_extras.h"
@@ -130,6 +131,27 @@ int Open(const char* const path, fuse_file_info* const file_info) noexcept {
return OpenResource<File>(path, file_info->flags, &file_info->fh);
}
+int Utimens(const char* const path, const timespec times[2]) noexcept {
+ try {
+ root_->UTimeNs(
+ std::strcmp(path, "/") == 0
+ ?
+ // Update the times on the mount point.
+ "."
+ :
+ // Trim the leading slash so UTimeNs will treat it relative to
+ // root_.
+ path + 1,
+ times[0], times[1]);
+ return 0;
+ } catch (const std::system_error& e) {
+ return -e.code().value();
+ } catch (...) {
+ LOG(ERROR) << "utimens: caught unexpected value";
+ return -ENOTRECOVERABLE;
+ }
+}
+
int Release(const char*, fuse_file_info* const file_info) noexcept {
return ReleaseResource<File>(file_info->fh);
}
@@ -211,6 +233,7 @@ fuse_operations FuseOperations(File* const root) {
result.mknod = &Mknod;
result.open = &Open;
+ result.utimens = &Utimens;
result.release = &Release;
result.unlink = &Unlink;