forked from pocoproject/poco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhpdf_error.c
114 lines (91 loc) · 2.45 KB
/
hpdf_error.c
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
/*
* << Haru Free PDF Library 2.0.0 >> -- hpdf_error.c
*
* Copyright (c) 1999-2006 Takeshi Kanno <[email protected]>
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation.
* It is provided "as is" without express or implied warranty.
*
*/
#include "hpdf_conf.h"
#include "hpdf_utils.h"
#include "hpdf_error.h"
#include "hpdf_consts.h"
#ifndef HPDF_STDCALL
#ifdef HPDF_DLL_MAKE
#define HPDF_STDCALL __stdcall
#else
#ifdef HPDF_DLL
#define HPDF_STDCALL __stdcall
#else
#define HPDF_STDCALL
#endif
#endif
#endif
void
HPDF_CopyError (HPDF_Error dst,
HPDF_Error src);
void
HPDF_Error_Init (HPDF_Error error,
void *user_data)
{
HPDF_MemSet(error, 0, sizeof(HPDF_Error_Rec));
error->user_data = user_data;
}
HPDF_STATUS
HPDF_Error_GetCode (HPDF_Error error)
{
return error->error_no;
}
HPDF_STATUS
HPDF_Error_GetDetailCode (HPDF_Error error)
{
return error->detail_no;
}
void
HPDF_CopyError (HPDF_Error dst,
HPDF_Error src)
{
dst->error_no = src->error_no;
dst->detail_no = src->detail_no;
dst->error_fn = src->error_fn;
dst->user_data = src->user_data;
}
HPDF_STATUS
HPDF_SetError (HPDF_Error error,
HPDF_STATUS error_no,
HPDF_STATUS detail_no)
{
HPDF_PTRACE((" HPDF_SetError: error_no=0x%04X "
"detail_no=0x%04X\n", (HPDF_UINT)error_no, (HPDF_UINT)detail_no));
error->error_no = error_no;
error->detail_no = detail_no;
return error_no;
}
HPDF_STATUS
HPDF_CheckError (HPDF_Error error)
{
HPDF_PTRACE((" HPDF_CheckError: error_no=0x%04X detail_no=0x%04X\n",
(HPDF_UINT)error->error_no, (HPDF_UINT)error->detail_no));
if (error->error_no != HPDF_OK && error->error_fn)
error->error_fn (error->error_no, error->detail_no, error->user_data);
return error->error_no;
}
HPDF_STATUS
HPDF_RaiseError (HPDF_Error error,
HPDF_STATUS error_no,
HPDF_STATUS detail_no)
{
HPDF_SetError (error, error_no, detail_no);
return HPDF_CheckError (error);
}
void
HPDF_Error_Reset (HPDF_Error error)
{
error->error_no = HPDF_NOERROR;
error->detail_no = HPDF_NOERROR;
}