There was no flag added for llvm-libc when picolibc and newlib were
provided in https://github.com/llvm/llvm-project/pull/147956 - the
missing flag breaks libc++ iostream support now because this check
9a8421fa61/libcxx/include/__config (L719)
fails unless an LLVM libc header is included.
80 lines
2.5 KiB
C++
80 lines
2.5 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include <__config>
|
|
#include <__system_error/throw_system_error.h>
|
|
#include <cerrno>
|
|
#include <chrono>
|
|
#include <filesystem>
|
|
#include <ratio>
|
|
#include <time.h>
|
|
|
|
#if defined(_LIBCPP_WIN32API)
|
|
# include "time_utils.h"
|
|
#endif
|
|
|
|
#if defined(_LIBCPP_WIN32API)
|
|
# define WIN32_LEAN_AND_MEAN
|
|
# define NOMINMAX
|
|
# include <windows.h>
|
|
#endif
|
|
|
|
#if __has_include(<unistd.h>)
|
|
# include <unistd.h> // _POSIX_TIMERS
|
|
#endif
|
|
|
|
#if __has_include(<sys/time.h>)
|
|
# include <sys/time.h> // for gettimeofday and timeval
|
|
#endif
|
|
|
|
#if _LIBCPP_LIBC_LLVM_LIBC
|
|
# define _LIBCPP_HAS_TIMESPEC_GET
|
|
#endif
|
|
|
|
#if defined(__APPLE__) || defined(__gnu_hurd__) || defined(__AMDGPU__) || defined(__NVPTX__) || \
|
|
(defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0)
|
|
# define _LIBCPP_HAS_CLOCK_GETTIME
|
|
#endif
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_FILESYSTEM
|
|
|
|
_LIBCPP_DIAGNOSTIC_PUSH
|
|
_LIBCPP_CLANG_DIAGNOSTIC_IGNORED("-Wdeprecated")
|
|
const bool _FilesystemClock::is_steady;
|
|
_LIBCPP_DIAGNOSTIC_POP
|
|
|
|
_FilesystemClock::time_point _FilesystemClock::now() noexcept {
|
|
typedef chrono::duration<rep> __secs;
|
|
#if defined(_LIBCPP_WIN32API)
|
|
typedef chrono::duration<rep, nano> __nsecs;
|
|
FILETIME time;
|
|
GetSystemTimeAsFileTime(&time);
|
|
detail::TimeSpec tp = detail::filetime_to_timespec(time);
|
|
return time_point(__secs(tp.tv_sec) + chrono::duration_cast<duration>(__nsecs(tp.tv_nsec)));
|
|
#elif defined(_LIBCPP_HAS_TIMESPEC_GET)
|
|
typedef chrono::duration<rep, nano> __nsecs;
|
|
struct timespec ts;
|
|
if (timespec_get(&ts, TIME_UTC) != TIME_UTC)
|
|
std::__throw_system_error(errno, "timespec_get(TIME_UTC) failed");
|
|
return time_point(__secs(ts.tv_sec) + chrono::duration_cast<duration>(__nsecs(ts.tv_nsec)));
|
|
#elif defined(_LIBCPP_HAS_CLOCK_GETTIME)
|
|
typedef chrono::duration<rep, nano> __nsecs;
|
|
struct timespec tp;
|
|
if (0 != clock_gettime(CLOCK_REALTIME, &tp))
|
|
std::__throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed");
|
|
return time_point(__secs(tp.tv_sec) + chrono::duration_cast<duration>(__nsecs(tp.tv_nsec)));
|
|
#else
|
|
typedef chrono::duration<rep, micro> __microsecs;
|
|
timeval tv;
|
|
gettimeofday(&tv, 0);
|
|
return time_point(__secs(tv.tv_sec) + __microsecs(tv.tv_usec));
|
|
#endif
|
|
}
|
|
|
|
_LIBCPP_END_NAMESPACE_FILESYSTEM
|