Error.cxx 3.65 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
#ifdef WIN32
35
#include <windows.h>
36
#endif
37 38 39 40

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

const Domain errno_domain("errno");

45 46 47 48
#ifdef WIN32
const Domain win32_domain("win32");
#endif

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
Error::~Error() {}

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)
{
86
	Set(errno_domain, e, strerror(e));
87 88 89 90 91 92 93 94 95 96 97
}

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

void
Error::SetErrno(int e, const char *prefix)
{
98
	Format(errno_domain, e, "%s: %s", prefix, strerror(e));
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
}

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);
}
132 133 134 135

#ifdef WIN32

void
136
Error::SetLastError(DWORD _code, const char *prefix)
137
{
138 139 140 141 142
	char msg[256];
	FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM |
		       FORMAT_MESSAGE_IGNORE_INSERTS,
		       nullptr, _code, 0, msg, sizeof(msg), nullptr);

143 144 145
	Format(win32_domain, int(_code), "%s: %s", prefix, msg);
}

146 147 148 149 150 151
void
Error::SetLastError(const char *prefix)
{
	SetLastError(GetLastError(), prefix);
}

152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
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);
}

178
#endif