windows_error.hpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. // boost/system/windows_error.hpp ------------------------------------------//
  2. // Copyright Beman Dawes 2007
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See library home page at http://www.boost.org/libs/system
  6. #ifndef BOOST_WINDOWS_ERROR_HPP
  7. #define BOOST_WINDOWS_ERROR_HPP
  8. // This header is effectively empty for compiles on operating systems where
  9. // it is not applicable.
  10. #include <boost/system/config.hpp>
  11. #ifdef BOOST_WINDOWS_API
  12. #include <boost/system/error_code.hpp>
  13. // Neither MinGW or Cygwin versions of winerror.h work if used alone, so on
  14. // either of those platforms include the full windows.h
  15. #if defined(__MINGW32__) || defined(__CYGWIN__)
  16. #include <windows.h>
  17. #else
  18. #include <winerror.h>
  19. #endif
  20. namespace boost
  21. {
  22. namespace system
  23. {
  24. // Microsoft Windows ---------------------------------------------------//
  25. // To construct an error_code after a API error:
  26. //
  27. // error_code( ::GetLastError(), system_category() )
  28. namespace windows_error
  29. {
  30. enum windows_error_code
  31. {
  32. success = 0,
  33. // These names and values are based on Windows winerror.h
  34. invalid_function = ERROR_INVALID_FUNCTION,
  35. file_not_found = ERROR_FILE_NOT_FOUND,
  36. path_not_found = ERROR_PATH_NOT_FOUND,
  37. too_many_open_files = ERROR_TOO_MANY_OPEN_FILES,
  38. access_denied = ERROR_ACCESS_DENIED,
  39. invalid_handle = ERROR_INVALID_HANDLE,
  40. arena_trashed = ERROR_ARENA_TRASHED,
  41. not_enough_memory = ERROR_NOT_ENOUGH_MEMORY,
  42. invalid_block = ERROR_INVALID_BLOCK,
  43. bad_environment = ERROR_BAD_ENVIRONMENT,
  44. bad_format = ERROR_BAD_FORMAT,
  45. invalid_access = ERROR_INVALID_ACCESS,
  46. outofmemory = ERROR_OUTOFMEMORY,
  47. invalid_drive = ERROR_INVALID_DRIVE,
  48. current_directory = ERROR_CURRENT_DIRECTORY,
  49. not_same_device = ERROR_NOT_SAME_DEVICE,
  50. no_more_files = ERROR_NO_MORE_FILES,
  51. write_protect = ERROR_WRITE_PROTECT,
  52. bad_unit = ERROR_BAD_UNIT,
  53. not_ready = ERROR_NOT_READY,
  54. bad_command = ERROR_BAD_COMMAND,
  55. crc = ERROR_CRC,
  56. bad_length = ERROR_BAD_LENGTH,
  57. seek = ERROR_SEEK,
  58. not_dos_disk = ERROR_NOT_DOS_DISK,
  59. sector_not_found = ERROR_SECTOR_NOT_FOUND,
  60. out_of_paper = ERROR_OUT_OF_PAPER,
  61. write_fault = ERROR_WRITE_FAULT,
  62. read_fault = ERROR_READ_FAULT,
  63. gen_failure = ERROR_GEN_FAILURE,
  64. sharing_violation = ERROR_SHARING_VIOLATION,
  65. lock_violation = ERROR_LOCK_VIOLATION,
  66. wrong_disk = ERROR_WRONG_DISK,
  67. sharing_buffer_exceeded = ERROR_SHARING_BUFFER_EXCEEDED,
  68. handle_eof = ERROR_HANDLE_EOF,
  69. handle_disk_full= ERROR_HANDLE_DISK_FULL,
  70. rem_not_list = ERROR_REM_NOT_LIST,
  71. dup_name = ERROR_DUP_NAME,
  72. bad_net_path = ERROR_BAD_NETPATH,
  73. network_busy = ERROR_NETWORK_BUSY,
  74. // ...
  75. file_exists = ERROR_FILE_EXISTS,
  76. cannot_make = ERROR_CANNOT_MAKE,
  77. // ...
  78. broken_pipe = ERROR_BROKEN_PIPE,
  79. open_failed = ERROR_OPEN_FAILED,
  80. buffer_overflow = ERROR_BUFFER_OVERFLOW,
  81. disk_full= ERROR_DISK_FULL,
  82. // ...
  83. lock_failed = ERROR_LOCK_FAILED,
  84. busy = ERROR_BUSY,
  85. cancel_violation = ERROR_CANCEL_VIOLATION,
  86. already_exists = ERROR_ALREADY_EXISTS
  87. // ...
  88. // TODO: add more Windows errors
  89. };
  90. } // namespace windows
  91. # ifndef BOOST_SYSTEM_NO_DEPRECATED
  92. namespace windows = windows_error;
  93. # endif
  94. template<> struct is_error_code_enum<windows_error::windows_error_code>
  95. { static const bool value = true; };
  96. namespace windows_error
  97. {
  98. inline error_code make_error_code( windows_error_code e )
  99. { return error_code( e, system_category() ); }
  100. }
  101. } // namespace system
  102. } // namespace boost
  103. #endif // BOOST_WINDOWS_API
  104. #endif // BOOST_WINDOWS_ERROR_HPP