filesystem.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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_fwd.hpp - The forwarding header for the header/implementation separated usage of
  29. // ghc::filesystem that uses std::filesystem if it detects it.
  30. // This file can be include at any place, where fs::filesystem api is needed while
  31. // not bleeding implementation details (e.g. system includes) into the global namespace,
  32. // as long as one cpp includes fs_std_impl.hpp to deliver the matching implementations.
  33. //---------------------------------------------------------------------------------------
  34. #ifndef GHC_FILESYSTEM_STD_FWD_H
  35. #define GHC_FILESYSTEM_STD_FWD_H
  36. #if defined(_MSVC_LANG) && _MSVC_LANG >= 201703L || __cplusplus >= 201703L && defined(__has_include)
  37. // ^ Supports MSVC prior to 15.7 without setting /Zc:__cplusplus to fix __cplusplus
  38. // _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/
  39. #if __has_include(<filesystem>) // Two stage __has_include needed for MSVC 2015 and per https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005finclude.html
  40. #define GHC_USE_STD_FS
  41. // Old Apple OSs don't support std::filesystem, though the header is available at compile
  42. // time. In particular, std::filesystem is unavailable before macOS 10.15, iOS/tvOS 13.0,
  43. // and watchOS 6.0.
  44. #ifdef __APPLE__
  45. #include <Availability.h>
  46. // Note: This intentionally uses std::filesystem on any new Apple OS, like visionOS
  47. // released after std::filesystem, where std::filesystem is always available.
  48. // (All other __<platform>_VERSION_MIN_REQUIREDs will be undefined and thus 0.)
  49. #if defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101500 \
  50. || defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130000 \
  51. || defined(__TV_OS_VERSION_MIN_REQUIRED) && __TV_OS_VERSION_MIN_REQUIRED < 130000 \
  52. || defined(__WATCH_OS_VERSION_MAX_ALLOWED) && __WATCH_OS_VERSION_MAX_ALLOWED < 60000
  53. #undef GHC_USE_STD_FS
  54. #endif
  55. #endif
  56. #endif
  57. #endif
  58. #ifdef GHC_USE_STD_FS
  59. #include <filesystem>
  60. namespace fs {
  61. using namespace std::filesystem;
  62. using ifstream = std::ifstream;
  63. using ofstream = std::ofstream;
  64. using fstream = std::fstream;
  65. }
  66. #else
  67. #define GHC_FILESYSTEM_FWD
  68. #include "ghc_filesystem.h"
  69. namespace fs {
  70. using namespace ghc::filesystem;
  71. using ifstream = ghc::filesystem::ifstream;
  72. using ofstream = ghc::filesystem::ofstream;
  73. using fstream = ghc::filesystem::fstream;
  74. }
  75. #endif
  76. #endif // GHC_FILESYSTEM_STD_FWD_H