about summary refs log tree commit diff
path: root/converter/other/fiasco/lib/error.c
blob: ee3afe1f77ba2d3e5a1457f15e2a461299708b32 (plain) (blame)
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/*
 *  error.c:		Error handling
 *
 *  Written by:		Stefan Frank
 *			Ullrich Hafner
 *  
 *  Credits:	Modelled after variable argument routines from Jef
 *		Poskanzer's pbmplus package. 
 *
 *  This file is part of FIASCO («F»ractal «I»mage «A»nd «S»equence «CO»dec)
 *  Copyright (C) 1994-2000 Ullrich Hafner <hafner@bigfoot.de>

    "int dummy = " change to int dummy; dummy =" for Netpbm to avoid 
    unused variable warning.

 */

/*
 *  $Date: 2000/06/14 20:49:37 $
 *  $Author: hafner $
 *  $Revision: 5.1 $
 *  $State: Exp $
 */

#define _ERROR_C

#include "config.h"

#include <stdio.h>
#include <errno.h>

#include <stdarg.h>
#define VA_START(args, lastarg) va_start(args, lastarg)
#include <string.h>

#if HAVE_SETJMP_H
#	include <setjmp.h>
#endif /* HAVE_SETJMP_H */

#include "types.h"
#include "macros.h"
#include "error.h"

#include "misc.h"
#include "fiasco.h"

/*****************************************************************************

			     local variables
  
*****************************************************************************/

static fiasco_verbosity_e  verboselevel  = FIASCO_SOME_VERBOSITY;
static char 	      	  *error_message = NULL;

#if HAVE_SETJMP_H
jmp_buf env;
#endif /* HAVE_SETJMP_H */

/*****************************************************************************

			       public code
  
*****************************************************************************/

void
set_error (const char *format, ...)
/*
 *  Set error text to given string.
 */
{
   va_list     args;
   unsigned    len = 0;
   const char *str = format;
   
   VA_START (args, format);

   len = strlen (format);
   while ((str = strchr (str, '%')))
   {
      str++;
      if (*str == 's')
      {
	 char *vstring = va_arg (args, char *);
	 len += strlen (vstring);
      }
      else if (*str == 'd')
      {
	 int dummy;
     dummy = va_arg (args, int);
	 len += 10;
      }
      else if (*str == 'c')
      {
	 int dummy;
     dummy = va_arg (args, int);
	 len += 1;
      }
      else
	 return;
      str++;
   }
   va_end(args);

   VA_START (args, format);

   if (error_message)
      Free (error_message);
   error_message = Calloc (len, sizeof (char));
   
   vsprintf (error_message, format, args);

   va_end (args);
}

void
error (const char *format, ...)
/*
 *  Set error text to given string.
 */
{
   va_list     args;
   unsigned    len = 0;
   const char *str = format;
   
   VA_START (args, format);

   len = strlen (format);
   while ((str = strchr (str, '%')))
   {
      str++;
      if (*str == 's')
      {
	 char *vstring = va_arg (args, char *);
	 len += strlen (vstring);
      }
      else if (*str == 'd')
      {
	 int dummy;
     dummy = va_arg (args, int);
	 len += 10;
      }
      else if (*str == 'c')
      {
	 int dummy;
     dummy = va_arg (args, int);
	 len += 1;
      }
      else
      {
#if HAVE_SETJMP_H
	 longjmp (env, 1);
#else /* not HAVE_SETJMP_H */
	 exit (1);
#endif /* HAVE_SETJMP_H */
      };
      
      str++;
   }
   va_end(args);

   VA_START (args, format);

   if (error_message)
      Free (error_message);
   error_message = Calloc (len, sizeof (char));
   
   vsprintf (error_message, format, args);

   va_end (args);
   
#if HAVE_SETJMP_H
   longjmp (env, 1);
#else /* not HAVE_SETJMP_H */
   exit (1);
#endif /* HAVE_SETJMP_H */
}

const char *
fiasco_get_error_message (void)
/*
 *  Return value:
 *	Last error message of FIASCO library.
 */
{
   return error_message ? error_message : "";
}

const char *
get_system_error (void)
{
   return strerror (errno);
}

void
file_error (const char *filename)
/*
 *  Print file error message and exit.
 *
 *  No return value.
 */
{
   error ("File `%s': I/O Error - %s.", filename, get_system_error ());
}

void 
warning (const char *format, ...)
/*
 *  Issue a warning and continue execution.
 *
 *  No return value.
 */
{
   va_list	args;

   VA_START (args, format);

   if (verboselevel == FIASCO_NO_VERBOSITY)
      return;
	
   fprintf (stderr, "Warning: ");
   vfprintf (stderr, format, args);
   fputc ('\n', stderr);

   va_end (args);
}

void 
message (const char *format, ...)
/*
 *  Print a message to stderr.
 */
{
   va_list args;

   VA_START (args, format);

   if (verboselevel == FIASCO_NO_VERBOSITY)
      return;

   vfprintf (stderr, format, args);
   fputc ('\n', stderr);
   va_end (args);
}

void 
debug_message (const char *format, ...)
/*
 *  Print a message to stderr.
 */
{
   va_list args;

   VA_START (args, format);

   if (verboselevel < FIASCO_ULTIMATE_VERBOSITY)
      return;

   fprintf (stderr, "*** ");
   vfprintf (stderr, format, args);
   fputc ('\n', stderr);
   va_end (args);
}

void
info (const char *format, ...)
/*
 *  Print a message to stderr. Do not append a newline.
 */
{
   va_list args;

   VA_START (args, format);

   if (verboselevel == FIASCO_NO_VERBOSITY)
      return;

   vfprintf (stderr, format, args);
   fflush (stderr);
   va_end (args);
}

void
fiasco_set_verbosity (fiasco_verbosity_e level)
{
   verboselevel = level;
}

fiasco_verbosity_e
fiasco_get_verbosity (void)
{
   return verboselevel;
}