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
|
/*
* Error functions
*
* Copyright (C) 2008-2024, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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 Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#if !defined( _LIBCERROR_INTERNAL_ERROR_H )
#define _LIBCERROR_INTERNAL_ERROR_H
#include <common.h>
#include <types.h>
#include <stdio.h>
#include "libcerror_extern.h"
#include "libcerror_types.h"
#if defined( __cplusplus )
extern "C" {
#endif
typedef struct libcerror_internal_error libcerror_internal_error_t;
struct libcerror_internal_error
{
/* The error domain
*/
int domain;
/* The error code
*/
int code;
/* The number of messages
*/
int number_of_messages;
/* A dynamic array containing the message strings
*/
system_character_t **messages;
/* A dynamic array containing the message string sizes
* without the end-of-string character
*/
size_t *sizes;
};
int libcerror_error_initialize(
libcerror_error_t **error,
int error_domain,
int error_code );
LIBCERROR_EXTERN \
void libcerror_error_free(
libcerror_error_t **error );
int libcerror_error_resize(
libcerror_internal_error_t *internal_error );
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
void libcerror_error_get_system_format_string(
const char *format_string,
size_t format_string_length,
system_character_t **system_format_string );
#endif /* defined( HAVE_WIDE_SYSTEM_CHARACTER ) */
LIBCERROR_EXTERN \
void libcerror_error_set(
libcerror_error_t **error,
int error_domain,
int error_code,
const char *format_string,
... );
LIBCERROR_EXTERN \
int libcerror_error_matches(
libcerror_error_t *error,
int error_domain,
int error_code );
LIBCERROR_EXTERN \
int libcerror_error_fprint(
libcerror_error_t *error,
FILE *stream );
LIBCERROR_EXTERN \
int libcerror_error_sprint(
libcerror_error_t *error,
char *string,
size_t size );
LIBCERROR_EXTERN \
int libcerror_error_backtrace_fprint(
libcerror_error_t *error,
FILE *stream );
LIBCERROR_EXTERN \
int libcerror_error_backtrace_sprint(
libcerror_error_t *error,
char *string,
size_t size );
#if defined( __cplusplus )
}
#endif
#endif /* !defined( _LIBCERROR_INTERNAL_ERROR_H ) */
|