This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPapyError3.h
156 lines (135 loc) · 7.75 KB
/
PapyError3.h
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
148
149
150
151
152
153
154
155
156
/********************************************************************************/
/* */
/* Papyrus 3 library. */
/* This library constitutes a DICOM file system which helps reading and writing */
/* DICOM files and DICOMDIR files. */
/* */
/* Copyright (C) 2004 - Service of Medical Informatics - */
/* University Hospitals of Geneva (HUG), Geneva, Switzerland */
/* */
/* This library is a 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 2.1 of the License, or */
/* (at your option) any later version. */
/* */
/* This library 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 Lesser General Public License for more details. */
/* */
/* You should have received a copy of the GNU Lesser General Public License */
/* along with this library; if not, write to */
/* the Free Software Foundation, Inc., */
/* 59 Temple Place, Suite 330, */
/* Boston, MA 02111-1307 USA */
/* */
/* You can contact us for more information at [email protected] */
/* or by writing to Papyrus, */
/* Unite d'Imagerie Numerique / Service d'Informatique Medicale / HUG, */
/* 24, Micheli-du-Crest street, 1211 Geneva 14, Switzerland. */
/* */
/* The University Hopitals of Geneva, hereby disclaims all copyright interest */
/* in the library `Papyrus' (a library for reading and writing DICOM files). */
/* */
/* Geneva, april 2004 */
/* Antoine Geissbuhler, head of the Service of Medical Informatics, */
/* University Hospitals of Geneva, Switzerland */
/* */
/********************************************************************************/
/********************************************************************************/
/* */
/* Project : P A P Y R U S Toolkit */
/* File : PapyError3.h */
/* Function : Error codes and macros for papyrus generated errors */
/* Authors : Jean-Francois Vurlod */
/* Christian Girard */
/* */
/* History : 12.1991 version 1.2 */
/* 06.1993 version 2.0 */
/* 06.1994 version 3.0 */
/* 06.1995 version 3.1 */
/* 02.1996 version 3.3 */
/* 02.1999 version 3.6 */
/* 04.2001 version 3.7 */
/* 09.2001 version 3.7 on CVS */
/* 10.2001 version 3.71 MAJ Dicom par CHG */
/* */
/********************************************************************************/
#ifndef PapyError3H
#define PapyError3H
#ifdef NDEBUG
#define NODEBUG
#endif
typedef enum {
papNoError = 0,
papErrorInPapyErrNo = -1,
papNotImplemented = -2,
/********************************************************/
/* System Errors */
/********************************************************/
papClib = -3, /* This is the code set for any unix
c-library call that returns a bad
value. The caller, if interested,
can check the global variable
errno.*/
papNoMemory = -4, /* Error in allocating heap memory. */
papUIDUnknow = -5, /* PapyRead */
papReadGroup = -6,
papWriteGroup = -7,
papTooMuchOverlays = -8, /* current overlay is > kMax_overlay */
papTooMuchUINOverlays = -9, /* current overlay is > kMax_UIN_overlay */
papElemOfTypeOneNotFilled = -10,
papMissingGr8 = -11,
papImageFileNameNotDefind = -12,
papLengthIsNotEven = -13,
papProblemInValue = -14,
papProblemInAscii = -15,
papProblemInDef = -16,
papTooManyImages = -17,
papEnumGroup = -18,
papIndexBigger = -19,
papNbImagesIsZero = -20,
papMaxOpenFile = -21,
papFileAlreadyExist = -22,
papFileCreationFailed = -23,
papReadingOpenFile = -24,
papNotFound = -29,
papOpenFile = -30, /* error opening file */
papCLOSE_FILE = -31, /* error closing file */
papReadFile = -32, /* error reading file */
papWriteFile = -33, /* error writing to file */
papFileName = -34, /* wrong filename */
papPositioning = -35, /* error positioning the file pointer */
papElemNumber = -36, /* wrong element number */
papElemSize = -37, /* wrong element size */
papGroupErr = -38, /* error in group */
papGroupNumber = -39, /* wrong group number */
papBadArgument = -40,
papListError = -41, /* pointer error in the list */
papSyntaxNotImplemented = -42, /* DICOM transfert syntax not implemented */
papCompressNotImplemented = -43, /* compression syntax not implemented */
papUnknownModality = -44, /* Imaging modality unknown in DICOM */
papMissingModule = -45, /* a mandatory module is missing */
papNotPapyrusFile = -46, /* this is not a Papyrus file */
papDeleteFile = -47,
papWrongValue = -48, /* a wrong value was found in the file */
papWrongPapVersion = -49, /* file version newer than version of the toolkit */
papLastErrorNb = -50
} EPapyError3;
/* --- variable definition --- */
extern EPapyError3 gPapyErrNo;
extern char *PapyErrorList [];
extern int gPapyErrLigne [];
extern char *gPapyErrFileP [];
/* --- function definition --- */
extern void Papy3CheckError (int, char *, int);
#ifdef NODEBUG
#define RETURN(CodeErr) return(CodeErr);
#else
#define RETURN(CodeErr)\
{\
Papy3CheckError(CodeErr,__FILE__,__LINE__);\
return(CodeErr);\
}
#endif
#endif /* PapyError3H */