]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/error.cc
42e01e9fe34e526df41b6167174bd6a411f03c18
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: error.cc,v 1.4 1998/09/12 02:46:26 jgg Exp $
4 /* ######################################################################
6 Global Erorr Class - Global error mechanism
8 We use a simple STL vector to store each error record. A PendingFlag
9 is kept which indicates when the vector contains a Sever error.
11 This source is placed in the Public Domain, do with it what you will
12 It was originally written by Jason Gunthorpe.
14 ##################################################################### */
16 // Include Files /*{{{*/
18 #pragma implementation "apt-pkg/error.h"
21 #include <apt-pkg/error.h>
31 // Global Error Object /*{{{*/
32 /* If the implementation supports posix threads then the accessor function
33 is compiled to be thread safe otherwise a non-safe version is used. A
34 Per-Thread error object is maintained in much the same manner as libc
36 #if _POSIX_THREADS == 1
39 static pthread_key_t ErrorKey
;
40 static void ErrorDestroy(void *Obj
) {delete (GlobalError
*)Obj
;};
41 static void KeyAlloc() {pthread_key_create(&ErrorKey
,ErrorDestroy
);};
43 GlobalError
*_GetErrorObj()
45 static pthread_once_t Once
= PTHREAD_ONCE_INIT
;
46 pthread_once(&Once
,KeyAlloc
);
48 void *Res
= pthread_getspecific(ErrorKey
);
50 pthread_setspecific(ErrorKey
,Res
= new GlobalError
);
51 return (GlobalError
*)Res
;
54 GlobalError
*_GetErrorObj()
56 static GlobalError
*Obj
= new GlobalError
;
62 // GlobalError::GlobalError - Constructor /*{{{*/
63 // ---------------------------------------------------------------------
65 GlobalError::GlobalError() : List(0), PendingFlag(false)
69 // GlobalError::Errno - Get part of the error string from errno /*{{{*/
70 // ---------------------------------------------------------------------
71 /* Function indicates the stdlib function that failed and Description is
72 a user string that leads the text. Form is:
73 Description - Function (errno: strerror)
74 Carefull of the buffer overrun, sprintf.
76 bool GlobalError::Errno(const char *Function
,const char *Description
,...)
79 va_start(args
,Description
);
81 // sprintf the description
83 vsprintf(S
,Description
,args
);
84 sprintf(S
+ strlen(S
)," - %s (%i %s)",Function
,errno
,strerror(errno
));
97 // GlobalError::Error - Add an error to the list /*{{{*/
98 // ---------------------------------------------------------------------
99 /* Just vsprintfs and pushes */
100 bool GlobalError::Error(const char *Description
,...)
103 va_start(args
,Description
);
105 // sprintf the description
107 vsprintf(S
,Description
,args
);
109 // Put it on the list
110 Item
*Itm
= new Item
;
120 // GlobalError::Warning - Add a warning to the list /*{{{*/
121 // ---------------------------------------------------------------------
122 /* This doesn't set the pending error flag */
123 bool GlobalError::Warning(const char *Description
,...)
126 va_start(args
,Description
);
128 // sprintf the description
130 vsprintf(S
,Description
,args
);
132 // Put it on the list
133 Item
*Itm
= new Item
;
141 // GlobalError::PopMessage - Pulls a single message out /*{{{*/
142 // ---------------------------------------------------------------------
143 /* This should be used in a loop checking empty() each cycle. It returns
144 true if the message is an error. */
145 bool GlobalError::PopMessage(string
&Text
)
150 bool Ret
= List
->Error
;
156 // This really should check the list to see if only warnings are left..
163 // GlobalError::DumpErrors - Dump all of the errors/warns to cerr /*{{{*/
164 // ---------------------------------------------------------------------
166 void GlobalError::DumpErrors()
168 // Print any errors or warnings found
170 while (empty() == false)
172 bool Type
= PopMessage(Err
);
174 cerr
<< "E: " << Err
<< endl
;
176 cerr
<< "W: " << Err
<< endl
;
180 // GlobalError::Discard - Discard /*{{{*/
181 // ---------------------------------------------------------------------
183 void GlobalError::Discard()
195 // GlobalError::Insert - Insert a new item at the end /*{{{*/
196 // ---------------------------------------------------------------------
198 void GlobalError::Insert(Item
*Itm
)
201 for (Item
*I
= List
; I
!= 0; I
= I
->Next
)