blob: 35e10f07a17b729aaef019b117502c838074d2f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "winapi-common" project.
// For details, see https://github.com/egor-tensin/winapi-common.
// Distributed under the MIT License.
/**
* @file
* @brief Make `std::system_error` work with `GetLastError()`.
*/
#pragma once
#include <windows.h>
#include <cstdint>
#include <sstream>
#include <stdexcept>
#include <string>
#include <system_error>
namespace winapi {
namespace error {
class CategoryWindows : public std::error_category {
public:
CategoryWindows() = default;
const char* name() const noexcept { return "Windows"; }
std::string message(int32_t) const;
};
inline const CategoryWindows& category_windows() {
static const CategoryWindows instance;
return instance;
}
/**
* Build a `std::system_error` from the value of `GetLastError()`.
* @param code Value of `GetLastError()`.
* @param function Name of the function that failed, like "CreateFile".
*/
std::system_error windows(DWORD code, const char* function);
template <typename Ret>
std::runtime_error custom(Ret ret, const char* function) {
std::ostringstream oss;
oss << "Function " << function << " failed with error code " << ret;
return std::runtime_error{oss.str()};
}
} // namespace error
} // namespace winapi
|