blob: cd3098da78d8b3819b4884724735fd187f4685cd [file] [log] [blame]
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001/*
2 * jerror.c
3 *
DRC5033f3e2014-05-18 18:33:44 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00005 * Copyright (C) 1991-1998, Thomas G. Lane.
DRC5033f3e2014-05-18 18:33:44 +00006 * It was modified by The libjpeg-turbo Project to include only code relevant
7 * to libjpeg-turbo.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00008 * For conditions of distribution and use, see the accompanying README file.
9 *
10 * This file contains simple error-reporting and trace-message routines.
11 * These are suitable for Unix-like systems and others where writing to
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000012 * stderr is the right thing to do. Many applications will want to replace
13 * some or all of these routines.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000014 *
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000015 * If you define USE_WINDOWS_MESSAGEBOX in jconfig.h or in the makefile,
16 * you get a Windows-specific hack to display error messages in a dialog box.
17 * It ain't much, but it beats dropping error messages into the bit bucket,
18 * which is what happens to output to stderr under most Windows C compilers.
19 *
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000020 * These routines are used by both the compression and decompression code.
21 */
22
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000023/* this is not a core library module, so it doesn't define JPEG_INTERNALS */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000024#include "jinclude.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000025#include "jpeglib.h"
26#include "jversion.h"
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000027#include "jerror.h"
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000028
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000029#ifdef USE_WINDOWS_MESSAGEBOX
30#include <windows.h>
31#endif
32
DRCe5eaf372014-05-09 18:00:32 +000033#ifndef EXIT_FAILURE /* define exit() codes if not provided */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000034#define EXIT_FAILURE 1
35#endif
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000036
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000037
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000038/*
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000039 * Create the message string table.
40 * We do this from the master message list in jerror.h by re-reading
41 * jerror.h with a suitable definition for macro JMESSAGE.
42 * The message table is made an external symbol just in case any applications
43 * want to refer to it directly.
44 */
45
DRCe5eaf372014-05-09 18:00:32 +000046#define JMESSAGE(code,string) string ,
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000047
48const char * const jpeg_std_message_table[] = {
49#include "jerror.h"
50 NULL
51};
52
53
54/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000055 * Error exit handler: must not return to caller.
56 *
57 * Applications may override this if they want to get control back after
58 * an error. Typically one would longjmp somewhere instead of exiting.
59 * The setjmp buffer can be made a private field within an expanded error
60 * handler object. Note that the info needed to generate an error message
61 * is stored in the error object, so you can generate the message now or
62 * later, at your convenience.
63 * You should make sure that the JPEG object is cleaned up (with jpeg_abort
64 * or jpeg_destroy) at some point.
65 */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000066
Thomas G. Lane489583f1996-02-07 00:00:00 +000067METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000068error_exit (j_common_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000069{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000070 /* Always display the message */
71 (*cinfo->err->output_message) (cinfo);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000072
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000073 /* Let the memory manager delete any temp files before we die */
74 jpeg_destroy(cinfo);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000075
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000076 exit(EXIT_FAILURE);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000077}
78
79
80/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000081 * Actual output of an error or trace message.
82 * Applications may override this method to send JPEG messages somewhere
83 * other than stderr.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000084 *
85 * On Windows, printing to stderr is generally completely useless,
86 * so we provide optional code to produce an error-dialog popup.
87 * Most Windows applications will still prefer to override this routine,
88 * but if they don't, it'll do something at least marginally useful.
89 *
90 * NOTE: to use the library in an environment that doesn't support the
91 * C stdio library, you may have to delete the call to fprintf() entirely,
92 * not just not use this routine.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000093 */
94
Thomas G. Lane489583f1996-02-07 00:00:00 +000095METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000096output_message (j_common_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000097{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000098 char buffer[JMSG_LENGTH_MAX];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000099
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000100 /* Create the message */
101 (*cinfo->err->format_message) (cinfo, buffer);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000102
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000103#ifdef USE_WINDOWS_MESSAGEBOX
104 /* Display it in a message dialog box */
105 MessageBox(GetActiveWindow(), buffer, "JPEG Library Error",
DRCe5eaf372014-05-09 18:00:32 +0000106 MB_OK | MB_ICONERROR);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000107#else
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000108 /* Send it to stderr, adding a newline */
109 fprintf(stderr, "%s\n", buffer);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000110#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000111}
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000112
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000113
114/*
115 * Decide whether to emit a trace or warning message.
116 * msg_level is one of:
117 * -1: recoverable corrupt-data warning, may want to abort.
118 * 0: important advisory messages (always display to user).
119 * 1: first level of tracing detail.
120 * 2,3,...: successively more detailed tracing messages.
121 * An application might override this method if it wanted to abort on warnings
122 * or change the policy about which messages to display.
123 */
124
Thomas G. Lane489583f1996-02-07 00:00:00 +0000125METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000126emit_message (j_common_ptr cinfo, int msg_level)
127{
128 struct jpeg_error_mgr * err = cinfo->err;
129
130 if (msg_level < 0) {
131 /* It's a warning message. Since corrupt files may generate many warnings,
132 * the policy implemented here is to show only the first warning,
133 * unless trace_level >= 3.
134 */
135 if (err->num_warnings == 0 || err->trace_level >= 3)
136 (*err->output_message) (cinfo);
137 /* Always count warnings in num_warnings. */
138 err->num_warnings++;
139 } else {
140 /* It's a trace message. Show it if trace_level >= msg_level. */
141 if (err->trace_level >= msg_level)
142 (*err->output_message) (cinfo);
143 }
144}
145
146
147/*
148 * Format a message string for the most recent JPEG error or message.
149 * The message is stored into buffer, which should be at least JMSG_LENGTH_MAX
150 * characters. Note that no '\n' character is added to the string.
151 * Few applications should need to override this method.
152 */
153
Thomas G. Lane489583f1996-02-07 00:00:00 +0000154METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000155format_message (j_common_ptr cinfo, char * buffer)
156{
157 struct jpeg_error_mgr * err = cinfo->err;
158 int msg_code = err->msg_code;
159 const char * msgtext = NULL;
160 const char * msgptr;
161 char ch;
162 boolean isstring;
163
164 /* Look up message string in proper table */
165 if (msg_code > 0 && msg_code <= err->last_jpeg_message) {
166 msgtext = err->jpeg_message_table[msg_code];
167 } else if (err->addon_message_table != NULL &&
DRCe5eaf372014-05-09 18:00:32 +0000168 msg_code >= err->first_addon_message &&
169 msg_code <= err->last_addon_message) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000170 msgtext = err->addon_message_table[msg_code - err->first_addon_message];
171 }
172
173 /* Defend against bogus message number */
174 if (msgtext == NULL) {
175 err->msg_parm.i[0] = msg_code;
176 msgtext = err->jpeg_message_table[0];
177 }
178
179 /* Check for string parameter, as indicated by %s in the message text */
180 isstring = FALSE;
181 msgptr = msgtext;
182 while ((ch = *msgptr++) != '\0') {
183 if (ch == '%') {
184 if (*msgptr == 's') isstring = TRUE;
185 break;
186 }
187 }
188
189 /* Format the message into the passed buffer */
190 if (isstring)
191 sprintf(buffer, msgtext, err->msg_parm.s);
192 else
193 sprintf(buffer, msgtext,
DRCe5eaf372014-05-09 18:00:32 +0000194 err->msg_parm.i[0], err->msg_parm.i[1],
195 err->msg_parm.i[2], err->msg_parm.i[3],
196 err->msg_parm.i[4], err->msg_parm.i[5],
197 err->msg_parm.i[6], err->msg_parm.i[7]);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000198}
199
200
201/*
202 * Reset error state variables at start of a new image.
203 * This is called during compression startup to reset trace/error
204 * processing to default state, without losing any application-specific
205 * method pointers. An application might possibly want to override
206 * this method if it has additional error processing state.
207 */
208
Thomas G. Lane489583f1996-02-07 00:00:00 +0000209METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000210reset_error_mgr (j_common_ptr cinfo)
211{
212 cinfo->err->num_warnings = 0;
213 /* trace_level is not reset since it is an application-supplied parameter */
DRCe5eaf372014-05-09 18:00:32 +0000214 cinfo->err->msg_code = 0; /* may be useful as a flag for "no error" */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000215}
216
217
218/*
219 * Fill in the standard error-handling methods in a jpeg_error_mgr object.
220 * Typical call is:
DRCe5eaf372014-05-09 18:00:32 +0000221 * struct jpeg_compress_struct cinfo;
222 * struct jpeg_error_mgr err;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000223 *
DRCe5eaf372014-05-09 18:00:32 +0000224 * cinfo.err = jpeg_std_error(&err);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000225 * after which the application may override some of the methods.
226 */
227
Thomas G. Lane489583f1996-02-07 00:00:00 +0000228GLOBAL(struct jpeg_error_mgr *)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000229jpeg_std_error (struct jpeg_error_mgr * err)
230{
231 err->error_exit = error_exit;
232 err->emit_message = emit_message;
233 err->output_message = output_message;
234 err->format_message = format_message;
235 err->reset_error_mgr = reset_error_mgr;
236
DRCe5eaf372014-05-09 18:00:32 +0000237 err->trace_level = 0; /* default = no tracing */
238 err->num_warnings = 0; /* no warnings emitted yet */
239 err->msg_code = 0; /* may be useful as a flag for "no error" */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000240
241 /* Initialize message table pointers */
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000242 err->jpeg_message_table = jpeg_std_message_table;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000243 err->last_jpeg_message = (int) JMSG_LASTMSGCODE - 1;
244
245 err->addon_message_table = NULL;
DRCe5eaf372014-05-09 18:00:32 +0000246 err->first_addon_message = 0; /* for safety */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000247 err->last_addon_message = 0;
248
249 return err;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000250}