Error.cxx 4.23 KB
Newer Older
1
/*
2
 * Copyright (C) 2013 Max Kellermann <max@duempel.org>
3
 *
4 5 6
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
7
 *
8 9
 * - Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
10
 *
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * - 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.
28 29 30 31 32 33
 */

#include "config.h"
#include "Error.hxx"
#include "Domain.hxx"

34 35
#include <system_error>

36
#ifdef WIN32
37
#include <windows.h>
38
#endif
39 40 41 42

#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
43
#include <string.h>
44

45 46
const Domain exception_domain("exception");

47 48
const Domain errno_domain("errno");

49 50 51 52
#ifdef WIN32
const Domain win32_domain("win32");
#endif

53 54
Error::~Error() {}

55
void
56
Error::Set(std::exception_ptr src)
57 58 59
{
	try {
		/* classify the exception */
60
		std::rethrow_exception(src);
61 62 63 64 65 66 67 68
	} catch (const std::system_error &se) {
		if (se.code().category() == std::system_category()) {
#ifdef WIN32
			Set(win32_domain, se.code().value(), se.what());
#else
			Set(errno_domain, se.code().value(), se.what());
#endif
		} else
69 70 71
			Set(exception_domain, se.what());
	} catch (const std::exception &e) {
		Set(exception_domain, e.what());
72
	} catch (...) {
73
		Set(exception_domain, "Unknown exception");
74 75 76
	}
}

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
void
Error::Set(const Domain &_domain, int _code, const char *_message)
{
	domain = &_domain;
	code = _code;
	message.assign(_message);
}

void
Error::Format2(const Domain &_domain, int _code, const char *fmt, ...)
{
	char buffer[1024];
	va_list ap;
	va_start(ap, fmt);
	vsnprintf(buffer, sizeof(buffer), fmt, ap);
	va_end(ap);

	Set(_domain, _code, buffer);
}

void
Error::FormatPrefix(const char *fmt, ...)
{
	char buffer[1024];
	va_list ap;
	va_start(ap, fmt);
	vsnprintf(buffer, sizeof(buffer), fmt, ap);
	va_end(ap);

	AddPrefix(buffer);
}

void
Error::SetErrno(int e)
{
112
	Set(errno_domain, e, strerror(e));
113 114 115 116 117 118 119 120 121 122 123
}

void
Error::SetErrno()
{
	SetErrno(errno);
}

void
Error::SetErrno(int e, const char *prefix)
{
124
	Format(errno_domain, e, "%s: %s", prefix, strerror(e));
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
}

void
Error::SetErrno(const char *prefix)
{
	SetErrno(errno, prefix);
}

void
Error::FormatErrno(int e, const char *fmt, ...)
{
	char buffer[1024];
	va_list ap;
	va_start(ap, fmt);
	vsnprintf(buffer, sizeof(buffer), fmt, ap);
	va_end(ap);

	SetErrno(e, buffer);
}

void
Error::FormatErrno(const char *fmt, ...)
{
	const int e = errno;

	char buffer[1024];
	va_list ap;
	va_start(ap, fmt);
	vsnprintf(buffer, sizeof(buffer), fmt, ap);
	va_end(ap);

	SetErrno(e, buffer);
}
158 159 160 161

#ifdef WIN32

void
162
Error::SetLastError(DWORD _code, const char *prefix)
163
{
164 165 166 167 168
	char msg[256];
	FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM |
		       FORMAT_MESSAGE_IGNORE_INSERTS,
		       nullptr, _code, 0, msg, sizeof(msg), nullptr);

169 170 171
	Format(win32_domain, int(_code), "%s: %s", prefix, msg);
}

172 173 174 175 176 177
void
Error::SetLastError(const char *prefix)
{
	SetLastError(GetLastError(), prefix);
}

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
void
Error::FormatLastError(DWORD _code, const char *fmt, ...)
{
	char buffer[1024];
	va_list ap;
	va_start(ap, fmt);
	vsnprintf(buffer, sizeof(buffer), fmt, ap);
	va_end(ap);

	SetLastError(_code, buffer);
}

void
Error::FormatLastError(const char *fmt, ...)
{
	DWORD _code = GetLastError();

	char buffer[1024];
	va_list ap;
	va_start(ap, fmt);
	vsnprintf(buffer, sizeof(buffer), fmt, ap);
	va_end(ap);

	SetLastError(_code, buffer);
}

204
#endif