jerror.c
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:8k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. /*
  2.  * jerror.c
  3.  *
  4.  * Copyright (C) 1991-1998, Thomas G. Lane.
  5.  * This file is part of the Independent JPEG Group's software.
  6.  * For conditions of distribution and use, see the accompanying README file.
  7.  *
  8.  * This file contains simple error-reporting and trace-message routines.
  9.  * These are suitable for Unix-like systems and others where writing to
  10.  * stderr is the right thing to do.  Many applications will want to replace
  11.  * some or all of these routines.
  12.  *
  13.  * If you define USE_WINDOWS_MESSAGEBOX in jconfig.h or in the makefile,
  14.  * you get a Windows-specific hack to display error messages in a dialog box.
  15.  * It ain't much, but it beats dropping error messages into the bit bucket,
  16.  * which is what happens to output to stderr under most Windows C compilers.
  17.  *
  18.  * These routines are used by both the compression and decompression code.
  19.  */
  20. /* this is not a core library module, so it doesn't define JPEG_INTERNALS */
  21. #include "jinclude.h"
  22. #include "jpeglib.h"
  23. #include "jversion.h"
  24. #include "jerror.h"
  25. #ifdef USE_WINDOWS_MESSAGEBOX
  26. #include <windows.h>
  27. #endif
  28. #ifndef EXIT_FAILURE /* define exit() codes if not provided */
  29. #define EXIT_FAILURE  1
  30. #endif
  31. /*
  32.  * Create the message string table.
  33.  * We do this from the master message list in jerror.h by re-reading
  34.  * jerror.h with a suitable definition for macro JMESSAGE.
  35.  * The message table is made an external symbol just in case any applications
  36.  * want to refer to it directly.
  37.  */
  38. #ifdef NEED_SHORT_EXTERNAL_NAMES
  39. #define jpeg_std_message_table jMsgTable
  40. #endif
  41. #define JMESSAGE(code,string) string ,
  42. const char * const jpeg_std_message_table[] = {
  43. #include "jerror.h"
  44.   NULL
  45. };
  46. /*
  47.  * Error exit handler: must not return to caller.
  48.  *
  49.  * Applications may override this if they want to get control back after
  50.  * an error.  Typically one would longjmp somewhere instead of exiting.
  51.  * The setjmp buffer can be made a private field within an expanded error
  52.  * handler object.  Note that the info needed to generate an error message
  53.  * is stored in the error object, so you can generate the message now or
  54.  * later, at your convenience.
  55.  * You should make sure that the JPEG object is cleaned up (with jpeg_abort
  56.  * or jpeg_destroy) at some point.
  57.  */
  58. METHODDEF(void)
  59. error_exit (j_common_ptr cinfo)
  60. {
  61.   /* Always display the message */
  62.   (*cinfo->err->output_message) (cinfo);
  63.   /* Let the memory manager delete any temp files before we die */
  64.   jpeg_destroy(cinfo);
  65.   exit(EXIT_FAILURE);
  66. }
  67. /*
  68.  * Actual output of an error or trace message.
  69.  * Applications may override this method to send JPEG messages somewhere
  70.  * other than stderr.
  71.  *
  72.  * On Windows, printing to stderr is generally completely useless,
  73.  * so we provide optional code to produce an error-dialog popup.
  74.  * Most Windows applications will still prefer to override this routine,
  75.  * but if they don't, it'll do something at least marginally useful.
  76.  *
  77.  * NOTE: to use the library in an environment that doesn't support the
  78.  * C stdio library, you may have to delete the call to fprintf() entirely,
  79.  * not just not use this routine.
  80.  */
  81. METHODDEF(void)
  82. output_message (j_common_ptr cinfo)
  83. {
  84.   char buffer[JMSG_LENGTH_MAX];
  85.   /* Create the message */
  86.   (*cinfo->err->format_message) (cinfo, buffer);
  87. #ifdef USE_WINDOWS_MESSAGEBOX
  88.   /* Display it in a message dialog box */
  89.   MessageBox(GetActiveWindow(), buffer, "JPEG Library Error",
  90.      MB_OK | MB_ICONERROR);
  91. #else
  92. #if 0
  93.   /* Send it to stderr, adding a newline */
  94.   fprintf(stderr, "%sn", buffer);
  95. #endif
  96. #endif
  97. }
  98. /*
  99.  * Decide whether to emit a trace or warning message.
  100.  * msg_level is one of:
  101.  *   -1: recoverable corrupt-data warning, may want to abort.
  102.  *    0: important advisory messages (always display to user).
  103.  *    1: first level of tracing detail.
  104.  *    2,3,...: successively more detailed tracing messages.
  105.  * An application might override this method if it wanted to abort on warnings
  106.  * or change the policy about which messages to display.
  107.  */
  108. METHODDEF(void)
  109. emit_message (j_common_ptr cinfo, int msg_level)
  110. {
  111.   struct jpeg_error_mgr * err = cinfo->err;
  112.   if (msg_level < 0) {
  113.     /* It's a warning message.  Since corrupt files may generate many warnings,
  114.      * the policy implemented here is to show only the first warning,
  115.      * unless trace_level >= 3.
  116.      */
  117.     if (err->num_warnings == 0 || err->trace_level >= 3)
  118.       (*err->output_message) (cinfo);
  119.     /* Always count warnings in num_warnings. */
  120.     err->num_warnings++;
  121.   } else {
  122.     /* It's a trace message.  Show it if trace_level >= msg_level. */
  123.     if (err->trace_level >= msg_level)
  124.       (*err->output_message) (cinfo);
  125.   }
  126. }
  127. /*
  128.  * Format a message string for the most recent JPEG error or message.
  129.  * The message is stored into buffer, which should be at least JMSG_LENGTH_MAX
  130.  * characters.  Note that no 'n' character is added to the string.
  131.  * Few applications should need to override this method.
  132.  */
  133. METHODDEF(void)
  134. format_message (j_common_ptr cinfo, char * buffer)
  135. {
  136.   struct jpeg_error_mgr * err = cinfo->err;
  137.   int msg_code = err->msg_code;
  138.   const char * msgtext = NULL;
  139.   const char * msgptr;
  140.   char ch;
  141.   boolean isstring;
  142.   /* Look up message string in proper table */
  143.   if (msg_code > 0 && msg_code <= err->last_jpeg_message) {
  144.     msgtext = err->jpeg_message_table[msg_code];
  145.   } else if (err->addon_message_table != NULL &&
  146.      msg_code >= err->first_addon_message &&
  147.      msg_code <= err->last_addon_message) {
  148.     msgtext = err->addon_message_table[msg_code - err->first_addon_message];
  149.   }
  150.   /* Defend against bogus message number */
  151.   if (msgtext == NULL) {
  152.     err->msg_parm.i[0] = msg_code;
  153.     msgtext = err->jpeg_message_table[0];
  154.   }
  155.   /* Check for string parameter, as indicated by %s in the message text */
  156.   isstring = FALSE;
  157.   msgptr = msgtext;
  158.   while ((ch = *msgptr++) != '') {
  159.     if (ch == '%') {
  160.       if (*msgptr == 's') isstring = TRUE;
  161.       break;
  162.     }
  163.   }
  164.   /* Format the message into the passed buffer */
  165.   if (isstring)
  166.     sprintf(buffer, msgtext, err->msg_parm.s);
  167.   else
  168.     sprintf(buffer, msgtext,
  169.     err->msg_parm.i[0], err->msg_parm.i[1],
  170.     err->msg_parm.i[2], err->msg_parm.i[3],
  171.     err->msg_parm.i[4], err->msg_parm.i[5],
  172.     err->msg_parm.i[6], err->msg_parm.i[7]);
  173. }
  174. /*
  175.  * Reset error state variables at start of a new image.
  176.  * This is called during compression startup to reset trace/error
  177.  * processing to default state, without losing any application-specific
  178.  * method pointers.  An application might possibly want to override
  179.  * this method if it has additional error processing state.
  180.  */
  181. METHODDEF(void)
  182. reset_error_mgr (j_common_ptr cinfo)
  183. {
  184.   cinfo->err->num_warnings = 0;
  185.   /* trace_level is not reset since it is an application-supplied parameter */
  186.   cinfo->err->msg_code = 0; /* may be useful as a flag for "no error" */
  187. }
  188. /*
  189.  * Fill in the standard error-handling methods in a jpeg_error_mgr object.
  190.  * Typical call is:
  191.  * struct jpeg_compress_struct cinfo;
  192.  * struct jpeg_error_mgr err;
  193.  *
  194.  * cinfo.err = jpeg_std_error(&err);
  195.  * after which the application may override some of the methods.
  196.  */
  197. GLOBAL(struct jpeg_error_mgr *)
  198. jpeg_std_error (struct jpeg_error_mgr * err)
  199. {
  200.   err->error_exit = error_exit;
  201.   err->emit_message = emit_message;
  202.   err->output_message = output_message;
  203.   err->format_message = format_message;
  204.   err->reset_error_mgr = reset_error_mgr;
  205.   err->trace_level = 0; /* default = no tracing */
  206.   err->num_warnings = 0; /* no warnings emitted yet */
  207.   err->msg_code = 0; /* may be useful as a flag for "no error" */
  208.   /* Initialize message table pointers */
  209.   err->jpeg_message_table = jpeg_std_message_table;
  210.   err->last_jpeg_message = (int) JMSG_LASTMSGCODE - 1;
  211.   err->addon_message_table = NULL;
  212.   err->first_addon_message = 0; /* for safety */
  213.   err->last_addon_message = 0;
  214.   return err;
  215. }