filesystem_error.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. // -*- C++ -*-
  2. //===----------------------------------------------------------------------===//
  3. //
  4. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  5. // See https://llvm.org/LICENSE.txt for license information.
  6. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef _LIBCPP___FILESYSTEM_FILESYSTEM_ERROR_H
  10. #define _LIBCPP___FILESYSTEM_FILESYSTEM_ERROR_H
  11. #include <__availability>
  12. #include <__config>
  13. #include <__filesystem/path.h>
  14. #include <__memory/shared_ptr.h>
  15. #include <__system_error/error_code.h>
  16. #include <__system_error/system_error.h>
  17. #include <__utility/forward.h>
  18. #include <__verbose_abort>
  19. #include <string>
  20. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  21. # pragma GCC system_header
  22. #endif
  23. #if _LIBCPP_STD_VER >= 17
  24. _LIBCPP_BEGIN_NAMESPACE_FILESYSTEM
  25. class _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY _LIBCPP_EXPORTED_FROM_ABI filesystem_error : public system_error {
  26. public:
  27. _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, error_code __ec)
  28. : system_error(__ec, __what), __storage_(make_shared<_Storage>(path(), path())) {
  29. __create_what(0);
  30. }
  31. _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, error_code __ec)
  32. : system_error(__ec, __what), __storage_(make_shared<_Storage>(__p1, path())) {
  33. __create_what(1);
  34. }
  35. _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, const path& __p2, error_code __ec)
  36. : system_error(__ec, __what), __storage_(make_shared<_Storage>(__p1, __p2)) {
  37. __create_what(2);
  38. }
  39. _LIBCPP_HIDE_FROM_ABI const path& path1() const noexcept { return __storage_->__p1_; }
  40. _LIBCPP_HIDE_FROM_ABI const path& path2() const noexcept { return __storage_->__p2_; }
  41. _LIBCPP_HIDE_FROM_ABI filesystem_error(const filesystem_error&) = default;
  42. ~filesystem_error() override; // key function
  43. _LIBCPP_HIDE_FROM_ABI_VIRTUAL
  44. const char* what() const noexcept override { return __storage_->__what_.c_str(); }
  45. void __create_what(int __num_paths);
  46. private:
  47. struct _LIBCPP_HIDDEN _Storage {
  48. _LIBCPP_HIDE_FROM_ABI _Storage(const path& __p1, const path& __p2) : __p1_(__p1), __p2_(__p2) {}
  49. path __p1_;
  50. path __p2_;
  51. string __what_;
  52. };
  53. shared_ptr<_Storage> __storage_;
  54. };
  55. # ifndef _LIBCPP_HAS_NO_EXCEPTIONS
  56. template <class... _Args>
  57. _LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY void
  58. __throw_filesystem_error(_Args&&... __args) {
  59. throw filesystem_error(std::forward<_Args>(__args)...);
  60. }
  61. # else
  62. template <class... _Args>
  63. _LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY void
  64. __throw_filesystem_error(_Args&&...) {
  65. _LIBCPP_VERBOSE_ABORT("filesystem_error was thrown in -fno-exceptions mode");
  66. }
  67. # endif
  68. _LIBCPP_END_NAMESPACE_FILESYSTEM
  69. #endif // _LIBCPP_STD_VER >= 17
  70. #endif // _LIBCPP___FILESYSTEM_FILESYSTEM_ERROR_H