aboutsummaryrefslogtreecommitdiff
path: root/libqcdm/src/errors.h
blob: a5507bb1cf57ce15b64a849242d1879b402ac9ac (plain)
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
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * Copyright (C) 2010 Red Hat, Inc.
 *
 * This program is free software: you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License 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/>.
 */

#ifndef LIBQCDM_ERROR_H
#define LIBQCDM_ERROR_H

#include <config.h>
#include <sys/types.h>
#include <assert.h>
#include <stdio.h>
#include <stdarg.h>

enum {
	QCDM_LOGL_ERR   = 0x00000001,
	QCDM_LOGL_WARN  = 0x00000002,
	QCDM_LOGL_INFO  = 0x00000004,
	QCDM_LOGL_DEBUG = 0x00000008
};

enum {
    QCDM_SUCCESS = 0,
    QCDM_ERROR_INVALID_ARGUMENTS = 1,
    QCDM_ERROR_SERIAL_CONFIG_FAILED = 2,
    QCDM_ERROR_VALUE_NOT_FOUND = 3,
    QCDM_ERROR_RESPONSE_UNEXPECTED = 4,
    QCDM_ERROR_RESPONSE_BAD_LENGTH = 5,
    QCDM_ERROR_RESPONSE_MALFORMED = 6,
    QCDM_ERROR_RESPONSE_BAD_COMMAND = 7,
    QCDM_ERROR_RESPONSE_BAD_PARAMETER = 8,
    QCDM_ERROR_RESPONSE_NOT_ACCEPTED = 9,
    QCDM_ERROR_RESPONSE_BAD_MODE = 10,
    QCDM_ERROR_NVCMD_FAILED = 11,
    QCDM_ERROR_SPC_LOCKED = 12,
    QCDM_ERROR_NV_ERROR_BUSY = 13,
    QCDM_ERROR_NV_ERROR_BAD_COMMAND = 14,
    QCDM_ERROR_NV_ERROR_MEMORY_FULL = 15,
    QCDM_ERROR_NV_ERROR_FAILED = 16,
    QCDM_ERROR_NV_ERROR_INACTIVE = 17,  /* NV location is not active */
    QCDM_ERROR_NV_ERROR_BAD_PARAMETER = 18,
    QCDM_ERROR_NV_ERROR_READ_ONLY = 19, /* NV location is read-only */
    QCDM_ERROR_RESPONSE_FAILED = 20,    /* command-specific failure */
};

#define qcdm_assert assert
#define qcdm_assert_not_reached() assert(0)

#define qcdm_return_if_fail(e) \
{ \
    if (!(e)) { \
        qcdm_warn (0, "failed: " #e "\n"); \
        return; \
    } \
}

#define qcdm_return_val_if_fail(e, v) \
{ \
    if (!(e)) { \
        qcdm_warn (0, "failed: " #e "\n"); \
        return v; \
    } \
}

#define qcdm_warn_if_fail(e) \
{ \
    if (!(e)) { \
        qcdm_warn (0, "failed: " #e "\n"); \
    } \
}

void _qcdm_log (const char *file,
                int line,
                const char *func,
                int domain,
                int level,
                const char *format,
                ...) __attribute__((__format__ (__printf__, 6, 7)));

#define qcdm_dbg(domain, ...) \
	_qcdm_log (__FILE__, __LINE__, __func__, domain, QCDM_LOGL_DEBUG, ## __VA_ARGS__ )

#define qcdm_warn(domain, ...) \
	_qcdm_log (__FILE__, __LINE__, __func__, domain, QCDM_LOGL_WARN, ## __VA_ARGS__ )

#define qcdm_err(domain, ...) \
	_qcdm_log (__FILE__, __LINE__, __func__, domain, QCDM_LOGL_ERR, ## __VA_ARGS__ )

#endif  /* LIBQCDM_ERROR_H */