filesystem.cpp 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //---------------------------------------------------------------------------------------
  2. //
  3. // ghc::filesystem - A C++17-like filesystem implementation for C++11/C++14
  4. //
  5. //---------------------------------------------------------------------------------------
  6. //
  7. // Copyright (c) 2018, Steffen Schümann <[email protected]>
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining a copy
  10. // of this software and associated documentation files (the "Software"), to deal
  11. // in the Software without restriction, including without limitation the rights
  12. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. // copies of the Software, and to permit persons to whom the Software is
  14. // furnished to do so, subject to the following conditions:
  15. //
  16. // The above copyright notice and this permission notice shall be included in all
  17. // copies or substantial portions of the Software.
  18. //
  19. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  22. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  23. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  24. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  25. // SOFTWARE.
  26. //
  27. //---------------------------------------------------------------------------------------
  28. // fs_std_impl.hpp - The implementation header for the header/implementation separated usage of
  29. // ghc::filesystem that does nothing if std::filesystem is detected.
  30. // This file can be used to hide the implementation of ghc::filesystem into a single cpp.
  31. // The cpp has to include this before including fs_std_fwd.hpp directly or via a different
  32. // header to work.
  33. //---------------------------------------------------------------------------------------
  34. #if defined(_MSVC_LANG) && _MSVC_LANG >= 201703L || __cplusplus >= 201703L && defined(__has_include)
  35. // ^ Supports MSVC prior to 15.7 without setting /Zc:__cplusplus to fix __cplusplus
  36. // _MSVC_LANG works regardless. But without the switch, the compiler always reported 199711L: https://blogs.msdn.microsoft.com/vcblog/2018/04/09/msvc-now-correctly-reports-__cplusplus/
  37. #if __has_include(<filesystem>) // Two stage __has_include needed for MSVC 2015 and per https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005finclude.html
  38. #define GHC_USE_STD_FS
  39. // Old Apple OSs don't support std::filesystem, though the header is available at compile
  40. // time. In particular, std::filesystem is unavailable before macOS 10.15, iOS/tvOS 13.0,
  41. // and watchOS 6.0.
  42. #ifdef __APPLE__
  43. #include <Availability.h>
  44. // Note: This intentionally uses std::filesystem on any new Apple OS, like visionOS
  45. // released after std::filesystem, where std::filesystem is always available.
  46. // (All other __<platform>_VERSION_MIN_REQUIREDs will be undefined and thus 0.)
  47. #if defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101500 \
  48. || defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130000 \
  49. || defined(__TV_OS_VERSION_MIN_REQUIRED) && __TV_OS_VERSION_MIN_REQUIRED < 130000 \
  50. || defined(__WATCH_OS_VERSION_MAX_ALLOWED) && __WATCH_OS_VERSION_MAX_ALLOWED < 60000
  51. #undef GHC_USE_STD_FS
  52. #endif
  53. #endif
  54. #endif
  55. #endif
  56. #ifndef GHC_USE_STD_FS
  57. #define GHC_FILESYSTEM_IMPLEMENTATION
  58. #include "ghc_filesystem.h"
  59. #endif