JDATASRC.c
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:9k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * jdatasrc.c
  22.  *
  23.  * Copyright (C) 1994-1996, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This file contains decompression data source routines for the case of
  28.  * reading JPEG data from a file (or any stdio stream).  While these routines
  29.  * are sufficient for most applications, some will want to use a different
  30.  * source manager.
  31.  * IMPORTANT: we assume that fread() will correctly transcribe an array of
  32.  * JOCTETs from 8-bit-wide elements on external storage.  If char is wider
  33.  * than 8 bits on your machine, you may need to do some tweaking.
  34.  */
  35. /* this is not a core library module, so it doesn't define JPEG_INTERNALS */
  36. #include "jinclude.h"
  37. #include "jpeglib.h"
  38. #include "jerror.h"
  39. //#include <winbase.h>
  40. /* Expanded data source object for stdio input */
  41. typedef struct {
  42.   struct jpeg_source_mgr pub; /* public fields */
  43.   FILE * infile; /* source stream */
  44.   JOCTET * buffer; /* start of buffer */
  45.   unsigned int start_of_file; /* have we gotten any data yet? */
  46. } my_source_mgr;
  47. typedef my_source_mgr * my_src_ptr;
  48. #define INPUT_BUF_SIZE  4096 /* choose an efficiently fread'able size */
  49. /*
  50.  * Initialize source --- called by jpeg_read_header
  51.  * before any data is actually read.
  52.  */
  53. METHODDEF(void)
  54. init_source (j_decompress_ptr cinfo)
  55. {
  56.   my_src_ptr src = (my_src_ptr) cinfo->src;
  57.   /* We reset the empty-input-file flag for each image,
  58.    * but we don't clear the input buffer.
  59.    * This is correct behavior for reading a series of images from one source.
  60.    */
  61.   src->start_of_file = TRUE;
  62. }
  63. /*
  64.  * Fill the input buffer --- called whenever buffer is emptied.
  65.  *
  66.  * In typical applications, this should read fresh data into the buffer
  67.  * (ignoring the current state of next_input_byte & bytes_in_buffer),
  68.  * reset the pointer & count to the start of the buffer, and return TRUE
  69.  * indicating that the buffer has been reloaded.  It is not necessary to
  70.  * fill the buffer entirely, only to obtain at least one more byte.
  71.  *
  72.  * There is no such thing as an EOF return.  If the end of the file has been
  73.  * reached, the routine has a choice of ERREXIT() or inserting fake data into
  74.  * the buffer.  In most cases, generating a warning message and inserting a
  75.  * fake EOI marker is the best course of action --- this will allow the
  76.  * decompressor to output however much of the image is there.  However,
  77.  * the resulting error message is misleading if the real problem is an empty
  78.  * input file, so we handle that case specially.
  79.  *
  80.  * In applications that need to be able to suspend compression due to input
  81.  * not being available yet, a FALSE return indicates that no more data can be
  82.  * obtained right now, but more may be forthcoming later.  In this situation,
  83.  * the decompressor will return to its caller (with an indication of the
  84.  * number of scanlines it has read, if any).  The application should resume
  85.  * decompression after it has loaded more data into the input buffer.  Note
  86.  * that there are substantial restrictions on the use of suspension --- see
  87.  * the documentation.
  88.  *
  89.  * When suspending, the decompressor will back up to a convenient restart point
  90.  * (typically the start of the current MCU). next_input_byte & bytes_in_buffer
  91.  * indicate where the restart point will be if the current call returns FALSE.
  92.  * Data beyond this point must be rescanned after resumption, so move it to
  93.  * the front of the buffer rather than discarding it.
  94.  */
  95. METHODDEF(unsigned int)
  96. fill_input_buffer (j_decompress_ptr cinfo)
  97. {
  98.   my_src_ptr src = (my_src_ptr) cinfo->src;
  99.   size_t nbytes;
  100.   unsigned long l;
  101. //DEL  nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE);
  102.   if (!cinfo->i_stream)
  103.   {
  104.     nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE);
  105.   }
  106.   else
  107.   {
  108.  if (cinfo->l_size >= cinfo->l_point + INPUT_BUF_SIZE)
  109.    nbytes = INPUT_BUF_SIZE;
  110.  else
  111.    nbytes = cinfo->l_size - cinfo->l_point;
  112. //  lstrcpyn(src->buffer,cinfo->buffer+cinfo->l_point, 
  113. //  nbytes);
  114.  for (l  = 0; l < nbytes; l++)
  115.  src->buffer[l] = cinfo->buffer[cinfo->l_point + l];
  116.  cinfo->l_point += nbytes;
  117.   }
  118.   if (nbytes <= 0) {
  119.     if (src->start_of_file) /* Treat empty input file as fatal error */
  120.       ERREXIT(cinfo, JERR_INPUT_EMPTY);
  121.     WARNMS(cinfo, JWRN_JPEG_EOF);
  122.     /* Insert a fake EOI marker */
  123.     src->buffer[0] = (JOCTET) 0xFF;
  124.     src->buffer[1] = (JOCTET) JPEG_EOI;
  125.     nbytes = 2;
  126.   }
  127.   src->pub.next_input_byte = src->buffer;
  128.   src->pub.bytes_in_buffer = nbytes;
  129.   src->start_of_file = FALSE;
  130.   return TRUE;
  131. }
  132. /*
  133.  * Skip data --- used to skip over a potentially large amount of
  134.  * uninteresting data (such as an APPn marker).
  135.  *
  136.  * Writers of suspendable-input applications must note that skip_input_data
  137.  * is not granted the right to give a suspension return.  If the skip extends
  138.  * beyond the data currently in the buffer, the buffer can be marked empty so
  139.  * that the next read will cause a fill_input_buffer call that can suspend.
  140.  * Arranging for additional bytes to be discarded before reloading the input
  141.  * buffer is the application writer's problem.
  142.  */
  143. METHODDEF(void)
  144. skip_input_data (j_decompress_ptr cinfo, long num_bytes)
  145. {
  146.   my_src_ptr src = (my_src_ptr) cinfo->src;
  147.   /* Just a dumb implementation for now.  Could use fseek() except
  148.    * it doesn't work on pipes.  Not clear that being smart is worth
  149.    * any trouble anyway --- large skips are infrequent.
  150.    */
  151.   if (num_bytes > 0) {
  152.     while (num_bytes > (long) src->pub.bytes_in_buffer) {
  153.       num_bytes -= (long) src->pub.bytes_in_buffer;
  154.       (void) fill_input_buffer(cinfo);
  155.       /* note we assume that fill_input_buffer will never return FALSE,
  156.        * so suspension need not be handled.
  157.        */
  158.     }
  159.     src->pub.next_input_byte += (size_t) num_bytes;
  160.     src->pub.bytes_in_buffer -= (size_t) num_bytes;
  161.   }
  162. }
  163. /*
  164.  * An additional method that can be provided by data source modules is the
  165.  * resync_to_restart method for error recovery in the presence of RST markers.
  166.  * For the moment, this source module just uses the default resync method
  167.  * provided by the JPEG library.  That method assumes that no backtracking
  168.  * is possible.
  169.  */
  170. /*
  171.  * Terminate source --- called by jpeg_finish_decompress
  172.  * after all data has been read.  Often a no-op.
  173.  *
  174.  * NB: *not* called by jpeg_abort or jpeg_destroy; surrounding
  175.  * application must deal with any cleanup that should happen even
  176.  * for error exit.
  177.  */
  178. METHODDEF(void)
  179. term_source (j_decompress_ptr cinfo)
  180. {
  181.   /* no work necessary here */
  182. }
  183. /*
  184.  * Prepare for input from a stdio stream.
  185.  * The caller must have already opened the stream, and is responsible
  186.  * for closing it after finishing decompression.
  187.  */
  188. GLOBAL(void)
  189. jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile)
  190. {
  191.   my_src_ptr src;
  192.   /* The source object and input buffer are made permanent so that a series
  193.    * of JPEG images can be read from the same file by calling jpeg_stdio_src
  194.    * only before the first one.  (If we discarded the buffer at the end of
  195.    * one image, we'd likely lose the start of the next one.)
  196.    * This makes it unsafe to use this manager and a different source
  197.    * manager serially with the same JPEG object.  Caveat programmer.
  198.    */
  199.   if (cinfo->src == NULL) { /* first time for this JPEG object? */
  200.     cinfo->src = (struct jpeg_source_mgr *)
  201.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
  202.   SIZEOF(my_source_mgr));
  203.     src = (my_src_ptr) cinfo->src;
  204.     src->buffer = (JOCTET *)
  205.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
  206.   INPUT_BUF_SIZE * SIZEOF(JOCTET));
  207.   }
  208.   src = (my_src_ptr) cinfo->src;
  209.   src->pub.init_source = init_source;
  210.   src->pub.fill_input_buffer = fill_input_buffer;
  211.   src->pub.skip_input_data = skip_input_data;
  212.   src->pub.resync_to_restart = jpeg_resync_to_restart; /* use default method */
  213.   src->pub.term_source = term_source;
  214.   src->infile = infile;
  215.   src->pub.bytes_in_buffer = 0; /* forces fill_input_buffer on first read */
  216.   src->pub.next_input_byte = NULL; /* until buffer loaded */
  217. }