sapling/eden/fs/utils/StatTimes.h
Xavier Deguillard a29d465ee8 fs: fix license header
Summary:
With Facebook having been renamed Meta Platforms, we need to change the license
headers.

Reviewed By: fanzeyi

Differential Revision: D33407812

fbshipit-source-id: b11bfbbf13a48873f0cea75f212cc7b07a68fb2e
2022-01-04 15:00:07 -08:00

92 lines
2.4 KiB
C++

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <folly/chrono/Conv.h>
#include <stdint.h>
#include <time.h>
#include <chrono>
namespace facebook {
namespace eden {
/** Helper for accessing the `atime` field of a `struct stat` as a timespec.
* Linux and macOS have different names for this field. */
inline struct timespec stAtime(const struct stat& st) {
#ifdef __APPLE__
return st.st_atimespec;
#elif defined(_BSD_SOURCE) || defined(_SVID_SOURCE) || \
_POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700
return st.st_atim;
#else
struct timespec ts;
ts.tv_sec = st.st_atime;
ts.tv_nsec = 0;
return ts;
#endif
}
/** Helper for accessing the `mtime` field of a `struct stat` as a timespec.
* Linux and macOS have different names for this field. */
inline struct timespec stMtime(const struct stat& st) {
#ifdef __APPLE__
return st.st_mtimespec;
#elif defined(_BSD_SOURCE) || defined(_SVID_SOURCE) || \
_POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700
return st.st_mtim;
#else
struct timespec ts;
ts.tv_sec = st.st_mtime;
ts.tv_nsec = 0;
return ts;
#endif
}
/** Helper for accessing the `ctime` field of a `struct stat` as a timespec.
* Linux and macOS have different names for this field. */
inline struct timespec stCtime(const struct stat& st) {
#ifdef __APPLE__
return st.st_ctimespec;
#elif defined(_BSD_SOURCE) || defined(_SVID_SOURCE) || \
_POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700
return st.st_ctim;
#else
struct timespec ts;
ts.tv_sec = st.st_ctime;
ts.tv_nsec = 0;
return ts;
#endif
}
/**
* Access stat atime as a system_clock::time_point.
*/
inline std::chrono::system_clock::time_point stAtimepoint(
const struct stat& st) {
return folly::to<std::chrono::system_clock::time_point>(stAtime(st));
}
/**
* Access stat mtime as a system_clock::time_point.
*/
inline std::chrono::system_clock::time_point stCtimepoint(
const struct stat& st) {
return folly::to<std::chrono::system_clock::time_point>(stCtime(st));
}
/**
* Access stat ctime as a system_clock::time_point.
*/
inline std::chrono::system_clock::time_point stMtimepoint(
const struct stat& st) {
return folly::to<std::chrono::system_clock::time_point>(stMtime(st));
}
} // namespace eden
} // namespace facebook