win32_code.hpp 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /* Proposed SG14 status_code
  2. (C) 2018-2019 Niall Douglas <http://www.nedproductions.biz/> (5 commits)
  3. File Created: Feb 2018
  4. Boost Software License - Version 1.0 - August 17th, 2003
  5. Permission is hereby granted, free of charge, to any person or organization
  6. obtaining a copy of the software and accompanying documentation covered by
  7. this license (the "Software") to use, reproduce, display, distribute,
  8. execute, and transmit the Software, and to prepare derivative works of the
  9. Software, and to permit third-parties to whom the Software is furnished to
  10. do so, all subject to the following:
  11. The copyright notices in the Software and this entire statement, including
  12. the above license grant, this restriction and the following disclaimer,
  13. must be included in all copies of the Software, in whole or in part, and
  14. all derivative works of the Software, unless such copies or derivative
  15. works are solely in the form of machine-executable object code generated by
  16. a source language processor.
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
  20. SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
  21. FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
  22. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  23. DEALINGS IN THE SOFTWARE.
  24. */
  25. #ifndef BOOST_OUTCOME_SYSTEM_ERROR2_WIN32_CODE_HPP
  26. #define BOOST_OUTCOME_SYSTEM_ERROR2_WIN32_CODE_HPP
  27. #if !defined(_WIN32) && !defined(BOOST_OUTCOME_STANDARDESE_IS_IN_THE_HOUSE)
  28. #error This file should only be included on Windows
  29. #endif
  30. #include "generic_code.hpp"
  31. BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE_BEGIN
  32. //! \exclude
  33. namespace win32
  34. {
  35. // A Win32 DWORD
  36. using DWORD = unsigned long;
  37. // Used to retrieve the current Win32 error code
  38. extern DWORD __stdcall GetLastError();
  39. // Used to retrieve a locale-specific message string for some error code
  40. extern DWORD __stdcall FormatMessageW(DWORD dwFlags, const void *lpSource, DWORD dwMessageId, DWORD dwLanguageId, wchar_t *lpBuffer, DWORD nSize, void /*va_list*/ *Arguments);
  41. // Converts UTF-16 message string to UTF-8
  42. extern int __stdcall WideCharToMultiByte(unsigned int CodePage, DWORD dwFlags, const wchar_t *lpWideCharStr, int cchWideChar, char *lpMultiByteStr, int cbMultiByte, const char *lpDefaultChar, int *lpUsedDefaultChar);
  43. #pragma comment(lib, "kernel32.lib")
  44. #pragma comment(linker, "/alternatename:?GetLastError@win32@system_error2@@YAKXZ=GetLastError")
  45. #pragma comment(linker, "/alternatename:?FormatMessageW@win32@system_error2@@YAKKPEBXKKPEA_WKPEAX@Z=FormatMessageW")
  46. #pragma comment(linker, "/alternatename:?WideCharToMultiByte@win32@system_error2@@YAHIKPEB_WHPEADHPEBDPEAH@Z=WideCharToMultiByte")
  47. } // namespace win32
  48. class _win32_code_domain;
  49. class _com_code_domain;
  50. //! (Windows only) A Win32 error code, those returned by `GetLastError()`.
  51. using win32_code = status_code<_win32_code_domain>;
  52. //! (Windows only) A specialisation of `status_error` for the Win32 error code domain.
  53. using win32_error = status_error<_win32_code_domain>;
  54. /*! (Windows only) The implementation of the domain for Win32 error codes, those returned by `GetLastError()`.
  55. */
  56. class _win32_code_domain : public status_code_domain
  57. {
  58. template <class DomainType> friend class status_code;
  59. template <class StatusCode> friend class detail::indirecting_domain;
  60. friend class _com_code_domain;
  61. using _base = status_code_domain;
  62. static int _win32_code_to_errno(win32::DWORD c)
  63. {
  64. switch(c)
  65. {
  66. case 0:
  67. return 0;
  68. #include "detail/win32_code_to_generic_code.ipp"
  69. }
  70. return -1;
  71. }
  72. //! Construct from a Win32 error code
  73. static _base::string_ref _make_string_ref(win32::DWORD c) noexcept
  74. {
  75. wchar_t buffer[32768];
  76. win32::DWORD wlen = win32::FormatMessageW(0x00001000 /*FORMAT_MESSAGE_FROM_SYSTEM*/ | 0x00000200 /*FORMAT_MESSAGE_IGNORE_INSERTS*/, nullptr, c, 0, buffer, 32768, nullptr);
  77. size_t allocation = wlen + (wlen >> 1);
  78. win32::DWORD bytes;
  79. if(wlen == 0)
  80. {
  81. return _base::string_ref("failed to get message from system");
  82. }
  83. for(;;)
  84. {
  85. auto *p = static_cast<char *>(malloc(allocation)); // NOLINT
  86. if(p == nullptr)
  87. {
  88. return _base::string_ref("failed to get message from system");
  89. }
  90. bytes = win32::WideCharToMultiByte(65001 /*CP_UTF8*/, 0, buffer, (int) (wlen + 1), p, (int) allocation, nullptr, nullptr);
  91. if(bytes != 0)
  92. {
  93. char *end = strchr(p, 0);
  94. while(end[-1] == 10 || end[-1] == 13)
  95. {
  96. --end;
  97. }
  98. *end = 0; // NOLINT
  99. return _base::atomic_refcounted_string_ref(p, end - p);
  100. }
  101. free(p); // NOLINT
  102. if(win32::GetLastError() == 0x7a /*ERROR_INSUFFICIENT_BUFFER*/)
  103. {
  104. allocation += allocation >> 2;
  105. continue;
  106. }
  107. return _base::string_ref("failed to get message from system");
  108. }
  109. }
  110. public:
  111. //! The value type of the win32 code, which is a `win32::DWORD`
  112. using value_type = win32::DWORD;
  113. using _base::string_ref;
  114. public:
  115. //! Default constructor
  116. constexpr explicit _win32_code_domain(typename _base::unique_id_type id = 0x8cd18ee72d680f1b) noexcept : _base(id) {}
  117. _win32_code_domain(const _win32_code_domain &) = default;
  118. _win32_code_domain(_win32_code_domain &&) = default;
  119. _win32_code_domain &operator=(const _win32_code_domain &) = default;
  120. _win32_code_domain &operator=(_win32_code_domain &&) = default;
  121. ~_win32_code_domain() = default;
  122. //! Constexpr singleton getter. Returns the constexpr win32_code_domain variable.
  123. static inline constexpr const _win32_code_domain &get();
  124. virtual string_ref name() const noexcept override { return string_ref("win32 domain"); } // NOLINT
  125. protected:
  126. virtual bool _do_failure(const status_code<void> &code) const noexcept override // NOLINT
  127. {
  128. assert(code.domain() == *this);
  129. return static_cast<const win32_code &>(code).value() != 0; // NOLINT
  130. }
  131. virtual bool _do_equivalent(const status_code<void> &code1, const status_code<void> &code2) const noexcept override // NOLINT
  132. {
  133. assert(code1.domain() == *this);
  134. const auto &c1 = static_cast<const win32_code &>(code1); // NOLINT
  135. if(code2.domain() == *this)
  136. {
  137. const auto &c2 = static_cast<const win32_code &>(code2); // NOLINT
  138. return c1.value() == c2.value();
  139. }
  140. if(code2.domain() == generic_code_domain)
  141. {
  142. const auto &c2 = static_cast<const generic_code &>(code2); // NOLINT
  143. if(static_cast<int>(c2.value()) == _win32_code_to_errno(c1.value()))
  144. {
  145. return true;
  146. }
  147. }
  148. return false;
  149. }
  150. virtual generic_code _generic_code(const status_code<void> &code) const noexcept override // NOLINT
  151. {
  152. assert(code.domain() == *this);
  153. const auto &c = static_cast<const win32_code &>(code); // NOLINT
  154. return generic_code(static_cast<errc>(_win32_code_to_errno(c.value())));
  155. }
  156. virtual string_ref _do_message(const status_code<void> &code) const noexcept override // NOLINT
  157. {
  158. assert(code.domain() == *this);
  159. const auto &c = static_cast<const win32_code &>(code); // NOLINT
  160. return _make_string_ref(c.value());
  161. }
  162. #if defined(_CPPUNWIND) || defined(__EXCEPTIONS) || defined(BOOST_OUTCOME_STANDARDESE_IS_IN_THE_HOUSE)
  163. BOOST_OUTCOME_SYSTEM_ERROR2_NORETURN virtual void _do_throw_exception(const status_code<void> &code) const override // NOLINT
  164. {
  165. assert(code.domain() == *this);
  166. const auto &c = static_cast<const win32_code &>(code); // NOLINT
  167. throw status_error<_win32_code_domain>(c);
  168. }
  169. #endif
  170. };
  171. //! (Windows only) A constexpr source variable for the win32 code domain, which is that of `GetLastError()` (Windows). Returned by `_win32_code_domain::get()`.
  172. constexpr _win32_code_domain win32_code_domain;
  173. inline constexpr const _win32_code_domain &_win32_code_domain::get()
  174. {
  175. return win32_code_domain;
  176. }
  177. BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE_END
  178. #endif