Error.hxx 5.36 KB
Newer Older
1
/*
2
 * Copyright 2013-2015 Max Kellermann <max.kellermann@gmail.com>
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
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * - Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 * - Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the
 * distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
 * FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef SYSTEM_ERROR_HXX
#define SYSTEM_ERROR_HXX

33
#include "util/Compiler.h"
34

Max Kellermann's avatar
Max Kellermann committed
35
#include <system_error> // IWYU pragma: export
36 37
#include <utility>

38 39
#include <stdio.h>

40 41
template<typename... Args>
static inline std::system_error
42 43
FormatSystemError(std::error_code code, const char *fmt,
		  Args&&... args) noexcept
44 45 46 47 48 49
{
	char buffer[1024];
	snprintf(buffer, sizeof(buffer), fmt, std::forward<Args>(args)...);
	return std::system_error(code, buffer);
}

50
#ifdef _WIN32
51 52 53

#include <windows.h>

54
static inline std::system_error
55
MakeLastError(DWORD code, const char *msg) noexcept
56 57 58 59 60 61
{
	return std::system_error(std::error_code(code, std::system_category()),
				 msg);
}

static inline std::system_error
62
MakeLastError(const char *msg) noexcept
63 64 65 66
{
	return MakeLastError(GetLastError(), msg);
}

67 68
template<typename... Args>
static inline std::system_error
69
FormatLastError(DWORD code, const char *fmt, Args&&... args) noexcept
70 71 72 73 74 75 76 77 78 79 80 81
{
	char buffer[512];
	const auto end = buffer + sizeof(buffer);
	size_t length = snprintf(buffer, sizeof(buffer) - 128,
				 fmt, std::forward<Args>(args)...);
	char *p = buffer + length;
	*p++ = ':';
	*p++ = ' ';

	FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM |
		       FORMAT_MESSAGE_IGNORE_INSERTS,
		       nullptr, code, 0, p, end - p, nullptr);
82
	return MakeLastError(code, buffer);
83 84 85 86
}

template<typename... Args>
static inline std::system_error
87
FormatLastError(const char *fmt, Args&&... args) noexcept
88 89 90 91 92
{
	return FormatLastError(GetLastError(), fmt,
			       std::forward<Args>(args)...);
}

93
#endif /* _WIN32 */
94

Max Kellermann's avatar
Max Kellermann committed
95
#include <cerrno> // IWYU pragma: export
Rosen Penev's avatar
Rosen Penev committed
96

97 98
#include <string.h>

99 100 101 102 103 104 105 106 107
/**
 * Returns the error_category to be used to wrap errno values.  The
 * C++ standard does not define this well, so this code is based on
 * observations what C++ standard library implementations actually
 * use.
 *
 * @see https://stackoverflow.com/questions/28746372/system-error-categories-and-standard-system-error-codes
 */
static inline const std::error_category &
108
ErrnoCategory() noexcept
109
{
110
#ifdef _WIN32
111 112 113 114 115 116 117 118 119 120
	/* on Windows, the generic_category() is used for errno
	   values */
	return std::generic_category();
#else
	/* on POSIX, system_category() appears to be the best
	   choice */
	return std::system_category();
#endif
}

121
static inline std::system_error
122
MakeErrno(int code, const char *msg) noexcept
123
{
124
	return std::system_error(std::error_code(code, ErrnoCategory()),
125 126 127 128
				 msg);
}

static inline std::system_error
129
MakeErrno(const char *msg) noexcept
130 131 132 133
{
	return MakeErrno(errno, msg);
}

134 135
template<typename... Args>
static inline std::system_error
136
FormatErrno(int code, const char *fmt, Args&&... args) noexcept
137 138
{
	char buffer[512];
139 140
	snprintf(buffer, sizeof(buffer),
		 fmt, std::forward<Args>(args)...);
141
	return MakeErrno(code, buffer);
142 143 144 145
}

template<typename... Args>
static inline std::system_error
146
FormatErrno(const char *fmt, Args&&... args) noexcept
147 148 149 150
{
	return FormatErrno(errno, fmt, std::forward<Args>(args)...);
}

151 152 153 154 155 156 157 158 159 160 161 162
template<typename... Args>
static inline std::system_error
FormatFileNotFound(const char *fmt, Args&&... args) noexcept
{
#ifdef _WIN32
	return FormatLastError(ERROR_FILE_NOT_FOUND, fmt,
			       std::forward<Args>(args)...);
#else
	return FormatErrno(ENOENT, fmt, std::forward<Args>(args)...);
#endif
}

163 164 165 166 167 168 169 170
gcc_pure
inline bool
IsErrno(const std::system_error &e, int code) noexcept
{
	return e.code().category() == ErrnoCategory() &&
		e.code().value() == code;
}

171 172
gcc_pure
static inline bool
173
IsFileNotFound(const std::system_error &e) noexcept
174
{
175
#ifdef _WIN32
176 177 178
	return e.code().category() == std::system_category() &&
		e.code().value() == ERROR_FILE_NOT_FOUND;
#else
179
	return IsErrno(e, ENOENT);
180 181 182
#endif
}

183 184
gcc_pure
static inline bool
185
IsPathNotFound(const std::system_error &e) noexcept
186
{
187
#ifdef _WIN32
188 189 190
	return e.code().category() == std::system_category() &&
		e.code().value() == ERROR_PATH_NOT_FOUND;
#else
191
	return IsErrno(e, ENOTDIR);
192 193 194
#endif
}

195 196
gcc_pure
static inline bool
197
IsAccessDenied(const std::system_error &e) noexcept
198
{
199
#ifdef _WIN32
200 201 202
	return e.code().category() == std::system_category() &&
		e.code().value() == ERROR_ACCESS_DENIED;
#else
203
	return IsErrno(e, EACCES);
204 205 206
#endif
}

207
#endif