home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / include / jlib / jdatasrc.cpp < prev    next >
C/C++ Source or Header  |  2000-05-16  |  9KB  |  288 lines

  1. //-------------------------------------------------------------------------//
  2. //          Windows Graphics Programming: Win32 GDI and DirectDraw         //
  3. //                        ISBN  0-13-086985-6                              //
  4. //                                                                         //
  5. //  Modified by: Yuan, Feng                             www.fengyuan.com   //
  6. //  Changes    : C++, exception, in-memory source, BGR byte order          //
  7. //  Version    : 1.00.000, May 31, 2000                                    //
  8. //-------------------------------------------------------------------------//
  9.  
  10. /*
  11.  * jdatasrc.c
  12.  *
  13.  * Copyright (C) 1994-1996, Thomas G. Lane.
  14.  * This file is part of the Independent JPEG Group's software.
  15.  * For conditions of distribution and use, see the accompanying README file.
  16.  *
  17.  * This file contains decompression data source routines for the case of
  18.  * reading JPEG data from a file (or any stdio stream).  While these routines
  19.  * are sufficient for most applications, some will want to use a different
  20.  * source manager.
  21.  * IMPORTANT: we assume that fread() will correctly transcribe an array of
  22.  * JOCTETs from 8-bit-wide elements on external storage.  If char is wider
  23.  * than 8 bits on your machine, you may need to do some tweaking.
  24.  */
  25.  
  26. /* this is not a core library module, so it doesn't define JPEG_INTERNALS */
  27. #include "jinclude.h"
  28. #include "jpeglib.h"
  29. #include "jerror.h"
  30.  
  31. #define INPUT_BUF_SIZE  4096    /* choose an efficiently fread'able size */
  32.  
  33. // Expanded data source object for stdio input 
  34. class my_source_mgr : public jpeg_source_mgr
  35. {
  36.     FILE *  infile;                        /* source stream */
  37.     JOCTET  buffer[INPUT_BUF_SIZE];
  38.     boolean start_of_file;                /* have we gotten any data yet? */
  39.  
  40. public:
  41.  
  42.     void Reset(FILE * inf)
  43.     {
  44.         infile = inf;
  45.         bytes_in_buffer = 0; /* forces fill_input_buffer on first read */
  46.         next_input_byte = NULL; /* until buffer loaded */
  47.     }
  48.  
  49.     virtual void     init_source(j_decompress_ptr cinfo);
  50.     virtual boolean  fill_input_buffer(j_decompress_ptr cinfo);
  51.     virtual void     skip_input_data(j_decompress_ptr cinfo, long num_bytes);
  52.     virtual void     term_source(j_decompress_ptr cinfo);
  53.  
  54. };
  55.  
  56.  
  57.  
  58. /*
  59.  * Initialize source --- called by jpeg_read_header
  60.  * before any data is actually read.
  61.  */
  62.  
  63. void my_source_mgr::init_source(j_decompress_ptr cinfo)
  64. {
  65.     /* We reset the empty-input-file flag for each image,
  66.     * but we don't clear the input buffer.
  67.     * This is correct behavior for reading a series of images from one source.
  68.     */
  69.     start_of_file = TRUE;
  70. }
  71.  
  72.  
  73. /*
  74.  * Fill the input buffer --- called whenever buffer is emptied.
  75.  *
  76.  * In typical applications, this should read fresh data into the buffer
  77.  * (ignoring the current state of next_input_byte & bytes_in_buffer),
  78.  * reset the pointer & count to the start of the buffer, and return TRUE
  79.  * indicating that the buffer has been reloaded.  It is not necessary to
  80.  * fill the buffer entirely, only to obtain at least one more byte.
  81.  *
  82.  * There is no such thing as an EOF return.  If the end of the file has been
  83.  * reached, the routine has a choice of ERREXIT() or inserting fake data into
  84.  * the buffer.  In most cases, generating a warning message and inserting a
  85.  * fake EOI marker is the best course of action --- this will allow the
  86.  * decompressor to output however much of the image is there.  However,
  87.  * the resulting error message is misleading if the real problem is an empty
  88.  * input file, so we handle that case specially.
  89.  *
  90.  * In applications that need to be able to suspend compression due to input
  91.  * not being available yet, a FALSE return indicates that no more data can be
  92.  * obtained right now, but more may be forthcoming later.  In this situation,
  93.  * the decompressor will return to its caller (with an indication of the
  94.  * number of scanlines it has read, if any).  The application should resume
  95.  * decompression after it has loaded more data into the input buffer.  Note
  96.  * that there are substantial restrictions on the use of suspension --- see
  97.  * the documentation.
  98.  *
  99.  * When suspending, the decompressor will back up to a convenient restart point
  100.  * (typically the start of the current MCU). next_input_byte & bytes_in_buffer
  101.  * indicate where the restart point will be if the current call returns FALSE.
  102.  * Data beyond this point must be rescanned after resumption, so move it to
  103.  * the front of the buffer rather than discarding it.
  104.  */
  105.  
  106. boolean my_source_mgr::fill_input_buffer(j_decompress_ptr cinfo)
  107. {
  108.     size_t nbytes = JFREAD(infile, buffer, INPUT_BUF_SIZE);
  109.  
  110.     if (nbytes <= 0) 
  111.     {
  112.         if ( start_of_file )    /* Treat empty input file as fatal error */
  113.             cinfo->ERREXIT(JERR_INPUT_EMPTY);
  114.         cinfo->WARNMS(JWRN_JPEG_EOF);
  115.         /* Insert a fake EOI marker */
  116.     
  117.         buffer[0] = (JOCTET) 0xFF;
  118.         buffer[1] = (JOCTET) JPEG_EOI;
  119.         nbytes = 2;
  120.     }
  121.  
  122.     next_input_byte = buffer;
  123.     bytes_in_buffer = nbytes;
  124.     start_of_file   = FALSE;
  125.  
  126.     return TRUE;
  127. }
  128.  
  129.  
  130. /*
  131.  * Skip data --- used to skip over a potentially large amount of
  132.  * uninteresting data (such as an APPn marker).
  133.  *
  134.  * Writers of suspendable-input applications must note that skip_input_data
  135.  * is not granted the right to give a suspension return.  If the skip extends
  136.  * beyond the data currently in the buffer, the buffer can be marked empty so
  137.  * that the next read will cause a fill_input_buffer call that can suspend.
  138.  * Arranging for additional bytes to be discarded before reloading the input
  139.  * buffer is the application writer's problem.
  140.  */
  141.  
  142. void my_source_mgr::skip_input_data (j_decompress_ptr cinfo, long num_bytes)
  143. {
  144.     /* Just a dumb implementation for now.  Could use fseek() except
  145.     * it doesn't work on pipes.  Not clear that being smart is worth
  146.     * any trouble anyway --- large skips are infrequent.
  147.     */
  148.     if (num_bytes > 0) 
  149.     {
  150.         while (num_bytes > (long) bytes_in_buffer) 
  151.         {
  152.             num_bytes -= (long) bytes_in_buffer;
  153.             fill_input_buffer(cinfo);
  154.             /* note we assume that fill_input_buffer will never return FALSE,
  155.             * so suspension need not be handled.
  156.             */
  157.         }
  158.         next_input_byte += (size_t) num_bytes;
  159.         bytes_in_buffer -= (size_t) num_bytes;
  160.     }
  161. }
  162.  
  163.  
  164. /*
  165.  * An additional method that can be provided by data source modules is the
  166.  * resync_to_restart method for error recovery in the presence of RST markers.
  167.  * For the moment, this source module just uses the default resync method
  168.  * provided by the JPEG library.  That method assumes that no backtracking
  169.  * is possible.
  170.  */
  171.  
  172.  
  173. /*
  174.  * Terminate source --- called by jpeg_finish_decompress
  175.  * after all data has been read.  Often a no-op.
  176.  *
  177.  * NB: *not* called by jpeg_abort or jpeg_destroy; surrounding
  178.  * application must deal with any cleanup that should happen even
  179.  * for error exit.
  180.  */
  181.  
  182. void my_source_mgr::term_source (j_decompress_ptr cinfo)
  183. {
  184.     if (cinfo->src)
  185.     {        
  186.         delete (my_source_mgr *) cinfo->src;
  187.         cinfo->src = NULL;
  188.     }
  189. }
  190.  
  191.  
  192. /*
  193.  * Prepare for input from a stdio stream.
  194.  * The caller must have already opened the stream, and is responsible
  195.  * for closing it after finishing decompression.
  196.  */
  197.  
  198. GLOBAL(void) jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile)
  199. {
  200.     my_source_mgr * src;
  201.  
  202.     /* The source object and input buffer are made permanent so that a series
  203.     * of JPEG images can be read from the same file by calling jpeg_stdio_src
  204.     * only before the first one.  (If we discarded the buffer at the end of
  205.     * one image, we'd likely lose the start of the next one.)
  206.     * This makes it unsafe to use this manager and a different source
  207.     * manager serially with the same JPEG object.  Caveat programmer.
  208.     */
  209.     if (cinfo->src == NULL) // first time for this JPEG object? 
  210.         cinfo->src = new my_source_mgr;
  211.  
  212.     src = (my_source_mgr *) cinfo->src;
  213.  
  214.     src->Reset(infile);
  215. }
  216.  
  217.  
  218. void jpeg_source_mgr::init_source(j_decompress_ptr cinfo)
  219. {
  220.     next_input_byte = NULL;
  221.     bytes_in_buffer = 0;
  222. }
  223.  
  224. boolean  jpeg_source_mgr::fill_input_buffer(j_decompress_ptr cinfo)
  225. {
  226.     return FALSE;
  227. }
  228.  
  229. void jpeg_source_mgr::skip_input_data(j_decompress_ptr cinfo, long num_bytes)
  230. {
  231.     next_input_byte += num_bytes;
  232.     bytes_in_buffer -= num_bytes;
  233. }
  234.  
  235. void jpeg_source_mgr::term_source(j_decompress_ptr cinfo)
  236. {
  237. }
  238.  
  239.  
  240. ////////////////////////////////////
  241. //   READ FROM A CONST BUFFER     //
  242. ////////////////////////////////////
  243.  
  244. class const_source_mgr : public jpeg_source_mgr
  245. {
  246.  
  247. public :
  248.  
  249.     void Reset(const unsigned char * buffer, int len )
  250.     {
  251.         bytes_in_buffer = len; 
  252.         next_input_byte = buffer;
  253.     }
  254.     
  255.     void init_source(j_decompress_ptr cinfo)
  256.     {
  257.     }
  258.  
  259.     virtual void term_source(j_decompress_ptr cinfo)
  260.     {
  261.         if (cinfo->src)
  262.         {        
  263.             delete (const_source_mgr *) cinfo->src;
  264.             cinfo->src = NULL;
  265.         }
  266.     }
  267. };
  268.  
  269.  
  270. /*
  271.  * Prepare for input from a stdio stream.
  272.  * The caller must have already opened the stream, and is responsible
  273.  * for closing it after finishing decompression.
  274.  */
  275.  
  276. GLOBAL(void) jpeg_const_src (j_decompress_ptr cinfo, const unsigned char * buffer, int len)
  277. {
  278.     const_source_mgr * src;
  279.  
  280.     if (cinfo->src == NULL) // first time for this JPEG object? 
  281.         cinfo->src = new const_source_mgr;
  282.  
  283.     src = (const_source_mgr *) cinfo->src;
  284.  
  285.     src->Reset(buffer, len);
  286. }
  287.  
  288.