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 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 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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
* Copyright (C) 2016 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "error.h"
// To get vasprintf
#define _GNU_SOURCE
#include "utils.h"
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
static sc_error *sc_error_initv(const char *domain, int code, const char *msgfmt, va_list ap) {
// Set errno in case we die.
errno = 0;
sc_error *err = calloc(1, sizeof *err);
if (err == NULL) {
die("cannot allocate memory for error object");
}
err->domain = domain;
err->code = code;
if (vasprintf(&err->msg, msgfmt, ap) == -1) {
die("cannot format error message");
}
return err;
}
sc_error *sc_error_init(const char *domain, int code, const char *msgfmt, ...) {
va_list ap;
va_start(ap, msgfmt);
sc_error *err = sc_error_initv(domain, code, msgfmt, ap);
va_end(ap);
return err;
}
sc_error *sc_error_init_from_errno(int errno_copy, const char *msgfmt, ...) {
va_list ap;
va_start(ap, msgfmt);
sc_error *err = sc_error_initv(SC_ERRNO_DOMAIN, errno_copy, msgfmt, ap);
va_end(ap);
return err;
}
sc_error *sc_error_init_simple(const char *msgfmt, ...) {
va_list ap;
va_start(ap, msgfmt);
sc_error *err = sc_error_initv(SC_LIBSNAP_DOMAIN, SC_UNSPECIFIED_ERROR, msgfmt, ap);
va_end(ap);
return err;
}
sc_error *sc_error_init_api_misuse(const char *msgfmt, ...) {
va_list ap;
va_start(ap, msgfmt);
sc_error *err = sc_error_initv(SC_LIBSNAP_DOMAIN, SC_API_MISUSE, msgfmt, ap);
va_end(ap);
return err;
}
const char *sc_error_domain(sc_error *err) {
// Set errno in case we die.
errno = 0;
if (err == NULL) {
die("cannot obtain error domain from NULL error");
}
return err->domain;
}
int sc_error_code(sc_error *err) {
// Set errno in case we die.
errno = 0;
if (err == NULL) {
die("cannot obtain error code from NULL error");
}
return err->code;
}
const char *sc_error_msg(sc_error *err) {
// Set errno in case we die.
errno = 0;
if (err == NULL) {
die("cannot obtain error message from NULL error");
}
return err->msg;
}
void sc_error_free(sc_error *err) {
if (err != NULL) {
free(err->msg);
err->msg = NULL;
free(err);
}
}
void sc_cleanup_error(sc_error **ptr) {
sc_error_free(*ptr);
*ptr = NULL;
}
void sc_die_on_error(sc_error *error) {
if (error != NULL) {
if (strcmp(sc_error_domain(error), SC_ERRNO_DOMAIN) == 0) {
fprintf(stderr, "%s: %s\n", sc_error_msg(error), strerror(sc_error_code(error)));
} else {
fprintf(stderr, "%s\n", sc_error_msg(error));
}
sc_error_free(error);
exit(1);
}
}
int sc_error_forward(sc_error **recipient, sc_error *error) {
if (recipient != NULL) {
*recipient = error;
} else {
sc_die_on_error(error);
}
return error != NULL ? -1 : 0;
}
bool sc_error_match(sc_error *error, const char *domain, int code) {
// Set errno in case we die.
errno = 0;
if (domain == NULL) {
die("cannot match error to a NULL domain");
}
if (error == NULL) {
return false;
}
return strcmp(sc_error_domain(error), domain) == 0 && sc_error_code(error) == code;
}
|