home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / include / jlib / jmemmgr.cpp < prev    next >
C/C++ Source or Header  |  2000-05-16  |  43KB  |  1,152 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.  * jmemmgr.c
  12.  *
  13.  * Copyright (C) 1991-1997, 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 the JPEG system-independent memory management
  18.  * routines.  This code is usable across a wide variety of machines; most
  19.  * of the system dependencies have been isolated in a separate file.
  20.  * The major functions provided here are:
  21.  *   * pool-based allocation and freeing of memory;
  22.  *   * policy decisions about how to divide available memory among the
  23.  *     virtual arrays;
  24.  *   * control logic for swapping virtual arrays between main memory and
  25.  *     backing storage.
  26.  * The separate system-dependent file provides the actual backing-storage
  27.  * access code, and it contains the policy decision about how much total
  28.  * main memory to use.
  29.  * This file is system-dependent in the sense that some of its functions
  30.  * are unnecessary in some systems.  For example, if there is enough virtual
  31.  * memory so that backing storage will never be used, much of the virtual
  32.  * array control logic could be removed.  (Of course, if you have that much
  33.  * memory then you shouldn't care about a little bit of unused code...)
  34.  */
  35.  
  36. #define JPEG_INTERNALS
  37. #define AM_MEMORY_MANAGER    /* we define jvirt_Xarray_control structs */
  38. #include "jinclude.h"
  39. #include "jpeglib.h"
  40. #include "jmemsys.h"        /* import the system-dependent declarations */
  41.  
  42. #ifndef NO_GETENV
  43. #ifndef HAVE_STDLIB_H        /* <stdlib.h> should declare getenv() */
  44. extern char * getenv (const char * name);
  45. #endif
  46. #endif
  47.  
  48.  
  49. /*
  50.  * Some important notes:
  51.  *   The allocation routines provided here must never return NULL.
  52.  *   They should exit to error_exit if unsuccessful.
  53.  *
  54.  *   It's not a good idea to try to merge the sarray and barray routines,
  55.  *   even though they are textually almost the same, because samples are
  56.  *   usually stored as bytes while coefficients are shorts or ints.  Thus,
  57.  *   in machines where byte pointers have a different representation from
  58.  *   word pointers, the resulting machine code could not be the same.
  59.  */
  60.  
  61.  
  62. /*
  63.  * Many machines require storage alignment: longs must start on 4-byte
  64.  * boundaries, doubles on 8-byte boundaries, etc.  On such machines, malloc()
  65.  * always returns pointers that are multiples of the worst-case alignment
  66.  * requirement, and we had better do so too.
  67.  * There isn't any really portable way to determine the worst-case alignment
  68.  * requirement.  This module assumes that the alignment requirement is
  69.  * multiples of sizeof(ALIGN_TYPE).
  70.  * By default, we define ALIGN_TYPE as double.  This is necessary on some
  71.  * workstations (where doubles really do need 8-byte alignment) and will work
  72.  * fine on nearly everything.  If your machine has lesser alignment needs,
  73.  * you can save a few bytes by making ALIGN_TYPE smaller.
  74.  * The only place I know of where this will NOT work is certain Macintosh
  75.  * 680x0 compilers that define double as a 10-byte IEEE extended float.
  76.  * Doing 10-byte alignment is counterproductive because longwords won't be
  77.  * aligned well.  Put "#define ALIGN_TYPE long" in jconfig.h if you have
  78.  * such a compiler.
  79.  */
  80.  
  81. #ifndef ALIGN_TYPE        /* so can override from jconfig.h */
  82. #define ALIGN_TYPE  double
  83. #endif
  84.  
  85.  
  86. /*
  87.  * We allocate objects from "pools", where each pool is gotten with a single
  88.  * request to jpeg_get_small() or jpeg_get_large().  There is no per-object
  89.  * overhead within a pool, except for alignment padding.  Each pool has a
  90.  * header with a link to the next pool of the same class.
  91.  * Small and large pool headers are identical except that the latter's
  92.  * link pointer must be FAR on 80x86 machines.
  93.  * Notice that the "real" header fields are union'ed with a dummy ALIGN_TYPE
  94.  * field.  This forces the compiler to make sizeof(small_pool_hdr) a multiple
  95.  * of the alignment requirement of ALIGN_TYPE.
  96.  */
  97.  
  98. typedef union small_pool_struct * small_pool_ptr;
  99.  
  100. typedef union small_pool_struct {
  101.   struct {
  102.     small_pool_ptr next;    /* next in list of pools */
  103.     size_t bytes_used;        /* how many bytes already used within pool */
  104.     size_t bytes_left;        /* bytes still available in this pool */
  105.   } hdr;
  106.   ALIGN_TYPE dummy;        /* included in union to ensure alignment */
  107. } small_pool_hdr;
  108.  
  109. typedef union large_pool_struct * large_pool_ptr;
  110.  
  111. typedef union large_pool_struct {
  112.   struct {
  113.     large_pool_ptr next;    /* next in list of pools */
  114.     size_t bytes_used;        /* how many bytes already used within pool */
  115.     size_t bytes_left;        /* bytes still available in this pool */
  116.   } hdr;
  117.   ALIGN_TYPE dummy;        /* included in union to ensure alignment */
  118. } large_pool_hdr;
  119.  
  120.  
  121. /*
  122.  * Here is the full definition of a memory manager object.
  123.  */
  124.  
  125. class my_memory_mgr : public jpeg_memory_mgr
  126. {  
  127.     j_common_ptr cinfo;
  128.  
  129. public:
  130.     
  131.     my_memory_mgr(j_common_ptr info)
  132.     {
  133.         cinfo = info;
  134.     }
  135.  
  136.     ~my_memory_mgr();
  137.  
  138.     virtual void * alloc_small(int pool_id, size_t sizeofobject);
  139.  
  140.     virtual void * alloc_large(int pool_id, size_t sizeofobject);
  141.  
  142.     virtual JSAMPARRAY alloc_sarray(int pool_id, JDIMENSION samplesperrow, JDIMENSION numrows);
  143.   
  144.     virtual JBLOCKARRAY alloc_barray(int pool_id, JDIMENSION blocksperrow, JDIMENSION numrows);
  145.   
  146.     virtual jvirt_sarray_ptr request_virt_sarray(
  147.                           int pool_id,
  148.                           boolean pre_zero,
  149.                           JDIMENSION samplesperrow,
  150.                           JDIMENSION numrows,
  151.                           JDIMENSION maxaccess);
  152.   
  153.     virtual jvirt_barray_ptr request_virt_barray (
  154.                           int pool_id,
  155.                           boolean pre_zero,
  156.                           JDIMENSION blocksperrow,
  157.                           JDIMENSION numrows,
  158.                           JDIMENSION maxaccess);
  159.   
  160.     virtual void realize_virt_arrays(void);
  161.   
  162.     virtual JSAMPARRAY access_virt_sarray(jvirt_sarray_ptr ptr,
  163.                        JDIMENSION start_row,
  164.                        JDIMENSION num_rows,
  165.                        boolean writable);
  166.   
  167.     virtual JBLOCKARRAY access_virt_barray(jvirt_barray_ptr ptr,
  168.                         JDIMENSION start_row,
  169.                         JDIMENSION num_rows,
  170.                         boolean writable);
  171.   
  172.     virtual void free_pool(int pool_id);
  173.  
  174.     /* Each pool identifier (lifetime class) names a linked list of pools. */
  175.     small_pool_ptr small_list[JPOOL_NUMPOOLS];
  176.     large_pool_ptr large_list[JPOOL_NUMPOOLS];
  177.  
  178.   /* Since we only have one lifetime class of virtual arrays, only one
  179.    * linked list is necessary (for each datatype).  Note that the virtual
  180.    * array control blocks being linked together are actually stored somewhere
  181.    * in the small-pool list.
  182.    */
  183.   jvirt_sarray_ptr virt_sarray_list;
  184.   jvirt_barray_ptr virt_barray_list;
  185.  
  186.   /* This counts total space obtained from jpeg_get_small/large */
  187.   long total_space_allocated;
  188.  
  189.   /* alloc_sarray and alloc_barray set this value for use by virtual
  190.    * array routines.
  191.    */
  192.   JDIMENSION last_rowsperchunk;    /* from most recent alloc_sarray/barray */
  193. };
  194.  
  195. typedef my_memory_mgr * my_mem_ptr;
  196.  
  197.  
  198. /*
  199.  * The control blocks for virtual arrays.
  200.  * Note that these blocks are allocated in the "small" pool area.
  201.  * System-dependent info for the associated backing store (if any) is hidden
  202.  * inside the backing_store_info struct.
  203.  */
  204.  
  205. struct jvirt_sarray_control {
  206.   JSAMPARRAY mem_buffer;    /* => the in-memory buffer */
  207.   JDIMENSION rows_in_array;    /* total virtual array height */
  208.   JDIMENSION samplesperrow;    /* width of array (and of memory buffer) */
  209.   JDIMENSION maxaccess;        /* max rows accessed by access_virt_sarray */
  210.   JDIMENSION rows_in_mem;    /* height of memory buffer */
  211.   JDIMENSION rowsperchunk;    /* allocation chunk size in mem_buffer */
  212.   JDIMENSION cur_start_row;    /* first logical row # in the buffer */
  213.   JDIMENSION first_undef_row;    /* row # of first uninitialized row */
  214.   boolean pre_zero;        /* pre-zero mode requested? */
  215.   boolean dirty;        /* do current buffer contents need written? */
  216.   boolean b_s_open;        /* is backing-store data valid? */
  217.   jvirt_sarray_ptr next;    /* link to next virtual sarray control block */
  218.   backing_store_info b_s_info;    /* System-dependent control info */
  219. };
  220.  
  221. struct jvirt_barray_control {
  222.   JBLOCKARRAY mem_buffer;    /* => the in-memory buffer */
  223.   JDIMENSION rows_in_array;    /* total virtual array height */
  224.   JDIMENSION blocksperrow;    /* width of array (and of memory buffer) */
  225.   JDIMENSION maxaccess;        /* max rows accessed by access_virt_barray */
  226.   JDIMENSION rows_in_mem;    /* height of memory buffer */
  227.   JDIMENSION rowsperchunk;    /* allocation chunk size in mem_buffer */
  228.   JDIMENSION cur_start_row;    /* first logical row # in the buffer */
  229.   JDIMENSION first_undef_row;    /* row # of first uninitialized row */
  230.   boolean pre_zero;        /* pre-zero mode requested? */
  231.   boolean dirty;        /* do current buffer contents need written? */
  232.   boolean b_s_open;        /* is backing-store data valid? */
  233.   jvirt_barray_ptr next;    /* link to next virtual barray control block */
  234.   backing_store_info b_s_info;    /* System-dependent control info */
  235. };
  236.  
  237.  
  238. #ifdef MEM_STATS        /* optional extra stuff for statistics */
  239.  
  240. LOCAL(void)
  241. print_mem_stats (j_common_ptr cinfo, int pool_id)
  242. {
  243.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  244.   small_pool_ptr shdr_ptr;
  245.   large_pool_ptr lhdr_ptr;
  246.  
  247.   /* Since this is only a debugging stub, we can cheat a little by using
  248.    * fprintf directly rather than going through the trace message code.
  249.    * This is helpful because message parm array can't handle longs.
  250.    */
  251.   fprintf(stderr, "Freeing pool %d, total space = %ld\n",
  252.       pool_id, mem->total_space_allocated);
  253.  
  254.   for (lhdr_ptr = mem->large_list[pool_id]; lhdr_ptr != NULL;
  255.        lhdr_ptr = lhdr_ptr->hdr.next) {
  256.     fprintf(stderr, "  Large chunk used %ld\n",
  257.         (long) lhdr_ptr->hdr.bytes_used);
  258.   }
  259.  
  260.   for (shdr_ptr = mem->small_list[pool_id]; shdr_ptr != NULL;
  261.        shdr_ptr = shdr_ptr->hdr.next) {
  262.     fprintf(stderr, "  Small chunk used %ld free %ld\n",
  263.         (long) shdr_ptr->hdr.bytes_used,
  264.         (long) shdr_ptr->hdr.bytes_left);
  265.   }
  266. }
  267.  
  268. #endif /* MEM_STATS */
  269.  
  270.  
  271. LOCAL(void)
  272. out_of_memory (j_common_ptr cinfo, int which)
  273. /* Report an out-of-memory error and stop execution */
  274. /* If we compiled MEM_STATS support, report alloc requests before dying */
  275. {
  276. #ifdef MEM_STATS
  277.   cinfo->err->trace_level = 2;    /* force self_destruct to report stats */
  278. #endif
  279.   cinfo->ERREXIT1(JERR_OUT_OF_MEMORY, which);
  280. }
  281.  
  282.  
  283. /*
  284.  * Allocation of "small" objects.
  285.  *
  286.  * For these, we use pooled storage.  When a new pool must be created,
  287.  * we try to get enough space for the current request plus a "slop" factor,
  288.  * where the slop will be the amount of leftover space in the new pool.
  289.  * The speed vs. space tradeoff is largely determined by the slop values.
  290.  * A different slop value is provided for each pool class (lifetime),
  291.  * and we also distinguish the first pool of a class from later ones.
  292.  * NOTE: the values given work fairly well on both 16- and 32-bit-int
  293.  * machines, but may be too small if longs are 64 bits or more.
  294.  */
  295.  
  296. static const size_t first_pool_slop[JPOOL_NUMPOOLS] = 
  297. {
  298.     1600,            /* first PERMANENT pool */
  299.     16000            /* first IMAGE pool */
  300. };
  301.  
  302. static const size_t extra_pool_slop[JPOOL_NUMPOOLS] = 
  303. {
  304.     0,            /* additional PERMANENT pools */
  305.     5000            /* additional IMAGE pools */
  306. };
  307.  
  308. #define MIN_SLOP  50        /* greater than 0 to avoid futile looping */
  309.  
  310. // Allocate a "small" object
  311. void * my_memory_mgr::alloc_small (int pool_id, size_t sizeofobject)
  312. {
  313.     small_pool_ptr hdr_ptr, prev_hdr_ptr;
  314.     char * data_ptr;
  315.     size_t odd_bytes, min_request, slop;
  316.  
  317.     /* Check for unsatisfiable request (do now to ensure no overflow below) */
  318.     if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-sizeof(small_pool_hdr)))
  319.         out_of_memory(cinfo, 1);    /* request exceeds malloc's ability */
  320.  
  321.     /* Round up the requested size to a multiple of sizeof(ALIGN_TYPE) */
  322.     odd_bytes = sizeofobject % sizeof(ALIGN_TYPE);
  323.     if (odd_bytes > 0)
  324.         sizeofobject += sizeof(ALIGN_TYPE) - odd_bytes;
  325.  
  326.     /* See if space is available in any existing pool */
  327.     if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
  328.         cinfo->ERREXIT1(JERR_BAD_POOL_ID, pool_id);    /* safety check */
  329.     prev_hdr_ptr = NULL;
  330.     hdr_ptr = small_list[pool_id];
  331.     while (hdr_ptr != NULL) {
  332.         if (hdr_ptr->hdr.bytes_left >= sizeofobject)
  333.             break;            /* found pool with enough space */
  334.         prev_hdr_ptr = hdr_ptr;
  335.         hdr_ptr = hdr_ptr->hdr.next;
  336.     }
  337.  
  338.     /* Time to make a new pool? */
  339.     if (hdr_ptr == NULL) {
  340.     /* min_request is what we need now, slop is what will be leftover */
  341.     min_request = sizeofobject + sizeof(small_pool_hdr);
  342.     if (prev_hdr_ptr == NULL)    /* first pool in class? */
  343.       slop = first_pool_slop[pool_id];
  344.     else
  345.       slop = extra_pool_slop[pool_id];
  346.     /* Don't ask for more than MAX_ALLOC_CHUNK */
  347.     if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
  348.       slop = (size_t) (MAX_ALLOC_CHUNK-min_request);
  349.     /* Try to get space, if fail reduce slop and try again */
  350.     for (;;) {
  351.       hdr_ptr = (small_pool_ptr) malloc(min_request + slop);
  352.       if (hdr_ptr != NULL)
  353.     break;
  354.       slop /= 2;
  355.       if (slop < MIN_SLOP)    /* give up when it gets real small */
  356.     out_of_memory(cinfo, 2); /* jpeg_get_small failed */
  357.     }
  358.     
  359.     total_space_allocated += min_request + slop;
  360.     /* Success, initialize the new pool header and add to end of list */
  361.     hdr_ptr->hdr.next = NULL;
  362.     hdr_ptr->hdr.bytes_used = 0;
  363.     hdr_ptr->hdr.bytes_left = sizeofobject + slop;
  364.     if (prev_hdr_ptr == NULL)    /* first pool in class? */
  365.         small_list[pool_id] = hdr_ptr;
  366.     else
  367.         prev_hdr_ptr->hdr.next = hdr_ptr;
  368.   }
  369.  
  370.   /* OK, allocate the object from the current pool */
  371.   data_ptr = (char *) (hdr_ptr + 1); /* point to first data byte in pool */
  372.   data_ptr += hdr_ptr->hdr.bytes_used; /* point to place for object */
  373.   hdr_ptr->hdr.bytes_used += sizeofobject;
  374.   hdr_ptr->hdr.bytes_left -= sizeofobject;
  375.  
  376.   return (void *) data_ptr;
  377. }
  378.  
  379.  
  380. /*
  381.  * Allocation of "large" objects.
  382.  *
  383.  * The external semantics of these are the same as "small" objects,
  384.  * except that FAR pointers are used on 80x86.  However the pool
  385.  * management heuristics are quite different.  We assume that each
  386.  * request is large enough that it may as well be passed directly to
  387.  * jpeg_get_large; the pool management just links everything together
  388.  * so that we can free it all on demand.
  389.  * Note: the major use of "large" objects is in JSAMPARRAY and JBLOCKARRAY
  390.  * structures.  The routines that create these structures (see below)
  391.  * deliberately bunch rows together to ensure a large request size.
  392.  */
  393.  
  394. void *my_memory_mgr::alloc_large(int pool_id, size_t sizeofobject)
  395. /* Allocate a "large" object */
  396. {
  397.     large_pool_ptr hdr_ptr;
  398.     size_t odd_bytes;
  399.  
  400.     /* Check for unsatisfiable request (do now to ensure no overflow below) */
  401.     if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-sizeof(large_pool_hdr)))
  402.         out_of_memory(cinfo, 3);    /* request exceeds malloc's ability */
  403.  
  404.     /* Round up the requested size to a multiple of sizeof(ALIGN_TYPE) */
  405.     odd_bytes = sizeofobject % sizeof(ALIGN_TYPE);
  406.     if (odd_bytes > 0)
  407.         sizeofobject += sizeof(ALIGN_TYPE) - odd_bytes;
  408.  
  409.     /* Always make a new pool */
  410.     if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
  411.         cinfo->ERREXIT1(JERR_BAD_POOL_ID, pool_id);    /* safety check */
  412.  
  413.     hdr_ptr = (large_pool_ptr) malloc(sizeofobject +
  414.                         sizeof(large_pool_hdr));
  415.     if (hdr_ptr == NULL)
  416.         out_of_memory(cinfo, 4);    /* jpeg_get_large failed */
  417.     total_space_allocated += sizeofobject + sizeof(large_pool_hdr);
  418.  
  419.     /* Success, initialize the new pool header and add to list */
  420.     hdr_ptr->hdr.next = large_list[pool_id];
  421.     /* We maintain space counts in each pool header for statistical purposes,
  422.     * even though they are not needed for allocation.
  423.     */
  424.     hdr_ptr->hdr.bytes_used = sizeofobject;
  425.     hdr_ptr->hdr.bytes_left = 0;
  426.     large_list[pool_id] = hdr_ptr;
  427.  
  428.   return (void *) (hdr_ptr + 1); /* point to first data byte in pool */
  429. }
  430.  
  431.  
  432. /*
  433.  * Creation of 2-D sample arrays.
  434.  * The pointers are in near heap, the samples themselves in FAR heap.
  435.  *
  436.  * To minimize allocation overhead and to allow I/O of large contiguous
  437.  * blocks, we allocate the sample rows in groups of as many rows as possible
  438.  * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request.
  439.  * NB: the virtual array control routines, later in this file, know about
  440.  * this chunking of rows.  The rowsperchunk value is left in the mem manager
  441.  * object so that it can be saved away if this sarray is the workspace for
  442.  * a virtual array.
  443.  */
  444.  
  445. JSAMPARRAY my_memory_mgr::alloc_sarray (int pool_id,
  446.           JDIMENSION samplesperrow, JDIMENSION numrows)
  447. /* Allocate a 2-D sample array */
  448. {
  449.   JSAMPARRAY result;
  450.   JSAMPROW workspace;
  451.   JDIMENSION rowsperchunk, currow, i;
  452.   long ltemp;
  453.  
  454.   /* Calculate max # of rows allowed in one allocation chunk */
  455.   ltemp = (MAX_ALLOC_CHUNK-sizeof(large_pool_hdr)) /
  456.       ((long) samplesperrow * sizeof(JSAMPLE));
  457.   if (ltemp <= 0)
  458.     cinfo->ERREXIT(JERR_WIDTH_OVERFLOW);
  459.   if (ltemp < (long) numrows)
  460.     rowsperchunk = (JDIMENSION) ltemp;
  461.   else
  462.     rowsperchunk = numrows;
  463.     last_rowsperchunk = rowsperchunk;
  464.  
  465.   /* Get space for row pointers (small object) */
  466.   result = (JSAMPARRAY) alloc_small(pool_id,
  467.                     (size_t) (numrows * sizeof(JSAMPROW)));
  468.  
  469.   /* Get the rows themselves (large objects) */
  470.   currow = 0;
  471.   while (currow < numrows) {
  472.     rowsperchunk = MIN(rowsperchunk, numrows - currow);
  473.     workspace = (JSAMPROW) alloc_large(pool_id,
  474.     (size_t) ((size_t) rowsperchunk * (size_t) samplesperrow
  475.           * sizeof(JSAMPLE)));
  476.     for (i = rowsperchunk; i > 0; i--) {
  477.       result[currow++] = workspace;
  478.       workspace += samplesperrow;
  479.     }
  480.   }
  481.  
  482.   return result;
  483. }
  484.  
  485.  
  486. /*
  487.  * Creation of 2-D coefficient-block arrays.
  488.  * This is essentially the same as the code for sample arrays, above.
  489.  */
  490.  
  491. JBLOCKARRAY my_memory_mgr::alloc_barray (int pool_id,
  492.           JDIMENSION blocksperrow, JDIMENSION numrows)
  493. /* Allocate a 2-D coefficient-block array */
  494. {
  495.   JBLOCKARRAY result;
  496.   JBLOCKROW workspace;
  497.   JDIMENSION rowsperchunk, currow, i;
  498.   long ltemp;
  499.  
  500.   /* Calculate max # of rows allowed in one allocation chunk */
  501.   ltemp = (MAX_ALLOC_CHUNK-sizeof(large_pool_hdr)) /
  502.       ((long) blocksperrow * sizeof(JBLOCK));
  503.   if (ltemp <= 0)
  504.     cinfo->ERREXIT(JERR_WIDTH_OVERFLOW);
  505.   if (ltemp < (long) numrows)
  506.     rowsperchunk = (JDIMENSION) ltemp;
  507.   else
  508.     rowsperchunk = numrows;
  509.     last_rowsperchunk = rowsperchunk;
  510.  
  511.   /* Get space for row pointers (small object) */
  512.   result = (JBLOCKARRAY) alloc_small(pool_id,
  513.                      (size_t) (numrows * sizeof(JBLOCKROW)));
  514.  
  515.   /* Get the rows themselves (large objects) */
  516.   currow = 0;
  517.   while (currow < numrows) {
  518.     rowsperchunk = MIN(rowsperchunk, numrows - currow);
  519.     workspace = (JBLOCKROW) alloc_large(pool_id,
  520.     (size_t) ((size_t) rowsperchunk * (size_t) blocksperrow
  521.           * sizeof(JBLOCK)));
  522.     for (i = rowsperchunk; i > 0; i--) {
  523.       result[currow++] = workspace;
  524.       workspace += blocksperrow;
  525.     }
  526.   }
  527.  
  528.   return result;
  529. }
  530.  
  531.  
  532. /*
  533.  * About virtual array management:
  534.  *
  535.  * The above "normal" array routines are only used to allocate strip buffers
  536.  * (as wide as the image, but just a few rows high).  Full-image-sized buffers
  537.  * are handled as "virtual" arrays.  The array is still accessed a strip at a
  538.  * time, but the memory manager must save the whole array for repeated
  539.  * accesses.  The intended implementation is that there is a strip buffer in
  540.  * memory (as high as is possible given the desired memory limit), plus a
  541.  * backing file that holds the rest of the array.
  542.  *
  543.  * The request_virt_array routines are told the total size of the image and
  544.  * the maximum number of rows that will be accessed at once.  The in-memory
  545.  * buffer must be at least as large as the maxaccess value.
  546.  *
  547.  * The request routines create control blocks but not the in-memory buffers.
  548.  * That is postponed until realize_virt_arrays is called.  At that time the
  549.  * total amount of space needed is known (approximately, anyway), so free
  550.  * memory can be divided up fairly.
  551.  *
  552.  * The access_virt_array routines are responsible for making a specific strip
  553.  * area accessible (after reading or writing the backing file, if necessary).
  554.  * Note that the access routines are told whether the caller intends to modify
  555.  * the accessed strip; during a read-only pass this saves having to rewrite
  556.  * data to disk.  The access routines are also responsible for pre-zeroing
  557.  * any newly accessed rows, if pre-zeroing was requested.
  558.  *
  559.  * In current usage, the access requests are usually for nonoverlapping
  560.  * strips; that is, successive access start_row numbers differ by exactly
  561.  * num_rows = maxaccess.  This means we can get good performance with simple
  562.  * buffer dump/reload logic, by making the in-memory buffer be a multiple
  563.  * of the access height; then there will never be accesses across bufferload
  564.  * boundaries.  The code will still work with overlapping access requests,
  565.  * but it doesn't handle bufferload overlaps very efficiently.
  566.  */
  567.  
  568.  
  569. jvirt_sarray_ptr my_memory_mgr::request_virt_sarray (int pool_id, boolean pre_zero,
  570.              JDIMENSION samplesperrow, JDIMENSION numrows,
  571.              JDIMENSION maxaccess)
  572. /* Request a virtual 2-D sample array */
  573. {
  574.   jvirt_sarray_ptr result;
  575.  
  576.   /* Only IMAGE-lifetime virtual arrays are currently supported */
  577.   if (pool_id != JPOOL_IMAGE)
  578.     cinfo->ERREXIT1(JERR_BAD_POOL_ID, pool_id);    /* safety check */
  579.  
  580.   /* get control block */
  581.   result = (jvirt_sarray_ptr) alloc_small(pool_id,
  582.                       sizeof(struct jvirt_sarray_control));
  583.  
  584.   result->mem_buffer = NULL;    /* marks array not yet realized */
  585.   result->rows_in_array = numrows;
  586.   result->samplesperrow = samplesperrow;
  587.   result->maxaccess = maxaccess;
  588.   result->pre_zero = pre_zero;
  589.   result->b_s_open = FALSE;    /* no associated backing-store object */
  590.   result->next = virt_sarray_list; /* add to list of virtual arrays */
  591.   virt_sarray_list = result;
  592.  
  593.   return result;
  594. }
  595.  
  596.  
  597. jvirt_barray_ptr my_memory_mgr::request_virt_barray (int pool_id, boolean pre_zero,
  598.              JDIMENSION blocksperrow, JDIMENSION numrows,
  599.              JDIMENSION maxaccess)
  600. /* Request a virtual 2-D coefficient-block array */
  601. {
  602.   jvirt_barray_ptr result;
  603.  
  604.   /* Only IMAGE-lifetime virtual arrays are currently supported */
  605.   if (pool_id != JPOOL_IMAGE)
  606.     cinfo->ERREXIT1(JERR_BAD_POOL_ID, pool_id);    /* safety check */
  607.  
  608.   /* get control block */
  609.   result = (jvirt_barray_ptr) alloc_small(pool_id,
  610.                       sizeof(struct jvirt_barray_control));
  611.  
  612.   result->mem_buffer = NULL;    /* marks array not yet realized */
  613.   result->rows_in_array = numrows;
  614.   result->blocksperrow = blocksperrow;
  615.   result->maxaccess = maxaccess;
  616.   result->pre_zero = pre_zero;
  617.   result->b_s_open = FALSE;    /* no associated backing-store object */
  618.   result->next = virt_barray_list; /* add to list of virtual arrays */
  619.   virt_barray_list = result;
  620.  
  621.   return result;
  622. }
  623.  
  624.  
  625. void my_memory_mgr::realize_virt_arrays (void)
  626. /* Allocate the in-memory buffers for any unrealized virtual arrays */
  627. {
  628.   long space_per_minheight, maximum_space, avail_mem;
  629.   long minheights, max_minheights;
  630.   jvirt_sarray_ptr sptr;
  631.   jvirt_barray_ptr bptr;
  632.  
  633.   /* Compute the minimum space needed (maxaccess rows in each buffer)
  634.    * and the maximum space needed (full image height in each buffer).
  635.    * These may be of use to the system-dependent jpeg_mem_available routine.
  636.    */
  637.   space_per_minheight = 0;
  638.   maximum_space = 0;
  639.   for (sptr = virt_sarray_list; sptr != NULL; sptr = sptr->next) {
  640.     if (sptr->mem_buffer == NULL) { /* if not realized yet */
  641.       space_per_minheight += (long) sptr->maxaccess *
  642.                  (long) sptr->samplesperrow * sizeof(JSAMPLE);
  643.       maximum_space += (long) sptr->rows_in_array *
  644.                (long) sptr->samplesperrow * sizeof(JSAMPLE);
  645.     }
  646.   }
  647.   for (bptr = virt_barray_list; bptr != NULL; bptr = bptr->next) {
  648.     if (bptr->mem_buffer == NULL) { /* if not realized yet */
  649.       space_per_minheight += (long) bptr->maxaccess *
  650.                  (long) bptr->blocksperrow * sizeof(JBLOCK);
  651.       maximum_space += (long) bptr->rows_in_array *
  652.                (long) bptr->blocksperrow * sizeof(JBLOCK);
  653.     }
  654.   }
  655.  
  656.   if (space_per_minheight <= 0)
  657.     return;            /* no unrealized arrays, no work */
  658.  
  659.   /* Determine amount of memory to actually use; this is system-dependent. */
  660.   avail_mem = jpeg_mem_available(cinfo, space_per_minheight, maximum_space,
  661.                  total_space_allocated);
  662.  
  663.   /* If the maximum space needed is available, make all the buffers full
  664.    * height; otherwise parcel it out with the same number of minheights
  665.    * in each buffer.
  666.    */
  667.   if (avail_mem >= maximum_space)
  668.     max_minheights = 1000000000L;
  669.   else {
  670.     max_minheights = avail_mem / space_per_minheight;
  671.     /* If there doesn't seem to be enough space, try to get the minimum
  672.      * anyway.  This allows a "stub" implementation of jpeg_mem_available().
  673.      */
  674.     if (max_minheights <= 0)
  675.       max_minheights = 1;
  676.   }
  677.  
  678.   /* Allocate the in-memory buffers and initialize backing store as needed. */
  679.  
  680.   for (sptr = virt_sarray_list; sptr != NULL; sptr = sptr->next) {
  681.     if (sptr->mem_buffer == NULL) { /* if not realized yet */
  682.       minheights = ((long) sptr->rows_in_array - 1L) / sptr->maxaccess + 1L;
  683.       if (minheights <= max_minheights) {
  684.     /* This buffer fits in memory */
  685.     sptr->rows_in_mem = sptr->rows_in_array;
  686.       } else {
  687.     /* It doesn't fit in memory, create backing store. */
  688.     sptr->rows_in_mem = (JDIMENSION) (max_minheights * sptr->maxaccess);
  689.     jpeg_open_backing_store(cinfo, & sptr->b_s_info,
  690.                 (long) sptr->rows_in_array *
  691.                 (long) sptr->samplesperrow *
  692.                 (long) sizeof(JSAMPLE));
  693.     sptr->b_s_open = TRUE;
  694.       }
  695.       sptr->mem_buffer = alloc_sarray(JPOOL_IMAGE,
  696.                       sptr->samplesperrow, sptr->rows_in_mem);
  697.       sptr->rowsperchunk = last_rowsperchunk;
  698.       sptr->cur_start_row = 0;
  699.       sptr->first_undef_row = 0;
  700.       sptr->dirty = FALSE;
  701.     }
  702.   }
  703.  
  704.   for (bptr = virt_barray_list; bptr != NULL; bptr = bptr->next) {
  705.     if (bptr->mem_buffer == NULL) { /* if not realized yet */
  706.       minheights = ((long) bptr->rows_in_array - 1L) / bptr->maxaccess + 1L;
  707.       if (minheights <= max_minheights) {
  708.     /* This buffer fits in memory */
  709.     bptr->rows_in_mem = bptr->rows_in_array;
  710.       } else {
  711.     /* It doesn't fit in memory, create backing store. */
  712.     bptr->rows_in_mem = (JDIMENSION) (max_minheights * bptr->maxaccess);
  713.     jpeg_open_backing_store(cinfo, & bptr->b_s_info,
  714.                 (long) bptr->rows_in_array *
  715.                 (long) bptr->blocksperrow *
  716.                 (long) sizeof(JBLOCK));
  717.     bptr->b_s_open = TRUE;
  718.       }
  719.       bptr->mem_buffer = alloc_barray(JPOOL_IMAGE,
  720.                       bptr->blocksperrow, bptr->rows_in_mem);
  721.       bptr->rowsperchunk = last_rowsperchunk;
  722.       bptr->cur_start_row = 0;
  723.       bptr->first_undef_row = 0;
  724.       bptr->dirty = FALSE;
  725.     }
  726.   }
  727. }
  728.  
  729.  
  730. LOCAL(void)
  731. do_sarray_io (j_common_ptr cinfo, jvirt_sarray_ptr ptr, boolean writing)
  732. /* Do backing store read or write of a virtual sample array */
  733. {
  734.   long bytesperrow, file_offset, byte_count, rows, thisrow, i;
  735.  
  736.   bytesperrow = (long) ptr->samplesperrow * sizeof(JSAMPLE);
  737.   file_offset = ptr->cur_start_row * bytesperrow;
  738.   /* Loop to read or write each allocation chunk in mem_buffer */
  739.   for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) {
  740.     /* One chunk, but check for short chunk at end of buffer */
  741.     rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
  742.     /* Transfer no more than is currently defined */
  743.     thisrow = (long) ptr->cur_start_row + i;
  744.     rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
  745.     /* Transfer no more than fits in file */
  746.     rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
  747.     if (rows <= 0)        /* this chunk might be past end of file! */
  748.       break;
  749.     byte_count = rows * bytesperrow;
  750.     if (writing)
  751.       (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info,
  752.                         (void *) ptr->mem_buffer[i],
  753.                         file_offset, byte_count);
  754.     else
  755.       (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info,
  756.                        (void *) ptr->mem_buffer[i],
  757.                        file_offset, byte_count);
  758.     file_offset += byte_count;
  759.   }
  760. }
  761.  
  762.  
  763. LOCAL(void)
  764. do_barray_io (j_common_ptr cinfo, jvirt_barray_ptr ptr, boolean writing)
  765. /* Do backing store read or write of a virtual coefficient-block array */
  766. {
  767.   long bytesperrow, file_offset, byte_count, rows, thisrow, i;
  768.  
  769.   bytesperrow = (long) ptr->blocksperrow * sizeof(JBLOCK);
  770.   file_offset = ptr->cur_start_row * bytesperrow;
  771.   /* Loop to read or write each allocation chunk in mem_buffer */
  772.   for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) {
  773.     /* One chunk, but check for short chunk at end of buffer */
  774.     rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
  775.     /* Transfer no more than is currently defined */
  776.     thisrow = (long) ptr->cur_start_row + i;
  777.     rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
  778.     /* Transfer no more than fits in file */
  779.     rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
  780.     if (rows <= 0)        /* this chunk might be past end of file! */
  781.       break;
  782.     byte_count = rows * bytesperrow;
  783.     if (writing)
  784.       (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info,
  785.                         (void *) ptr->mem_buffer[i],
  786.                         file_offset, byte_count);
  787.     else
  788.       (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info,
  789.                        (void *) ptr->mem_buffer[i],
  790.                        file_offset, byte_count);
  791.     file_offset += byte_count;
  792.   }
  793. }
  794.  
  795.  
  796. JSAMPARRAY my_memory_mgr::access_virt_sarray (jvirt_sarray_ptr ptr,
  797.             JDIMENSION start_row, JDIMENSION num_rows,
  798.             boolean writable)
  799. /* Access the part of a virtual sample array starting at start_row */
  800. /* and extending for num_rows rows.  writable is true if  */
  801. /* caller intends to modify the accessed area. */
  802. {
  803.   JDIMENSION end_row = start_row + num_rows;
  804.   JDIMENSION undef_row;
  805.  
  806.   /* debugging check */
  807.   if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
  808.       ptr->mem_buffer == NULL)
  809.     cinfo->ERREXIT(JERR_BAD_VIRTUAL_ACCESS);
  810.  
  811.   /* Make the desired part of the virtual array accessible */
  812.   if (start_row < ptr->cur_start_row ||
  813.       end_row > ptr->cur_start_row+ptr->rows_in_mem) {
  814.     if (! ptr->b_s_open)
  815.       cinfo->ERREXIT(JERR_VIRTUAL_BUG);
  816.     /* Flush old buffer contents if necessary */
  817.     if (ptr->dirty) {
  818.       do_sarray_io(cinfo, ptr, TRUE);
  819.       ptr->dirty = FALSE;
  820.     }
  821.     /* Decide what part of virtual array to access.
  822.      * Algorithm: if target address > current window, assume forward scan,
  823.      * load starting at target address.  If target address < current window,
  824.      * assume backward scan, load so that target area is top of window.
  825.      * Note that when switching from forward write to forward read, will have
  826.      * start_row = 0, so the limiting case applies and we load from 0 anyway.
  827.      */
  828.     if (start_row > ptr->cur_start_row) {
  829.       ptr->cur_start_row = start_row;
  830.     } else {
  831.       /* use long arithmetic here to avoid overflow & unsigned problems */
  832.       long ltemp;
  833.  
  834.       ltemp = (long) end_row - (long) ptr->rows_in_mem;
  835.       if (ltemp < 0)
  836.     ltemp = 0;        /* don't fall off front end of file */
  837.       ptr->cur_start_row = (JDIMENSION) ltemp;
  838.     }
  839.     /* Read in the selected part of the array.
  840.      * During the initial write pass, we will do no actual read
  841.      * because the selected part is all undefined.
  842.      */
  843.     do_sarray_io(cinfo, ptr, FALSE);
  844.   }
  845.   /* Ensure the accessed part of the array is defined; prezero if needed.
  846.    * To improve locality of access, we only prezero the part of the array
  847.    * that the caller is about to access, not the entire in-memory array.
  848.    */
  849.   if (ptr->first_undef_row < end_row) {
  850.     if (ptr->first_undef_row < start_row) {
  851.       if (writable)        /* writer skipped over a section of array */
  852.     cinfo->ERREXIT(JERR_BAD_VIRTUAL_ACCESS);
  853.       undef_row = start_row;    /* but reader is allowed to read ahead */
  854.     } else {
  855.       undef_row = ptr->first_undef_row;
  856.     }
  857.     if (writable)
  858.       ptr->first_undef_row = end_row;
  859.     if (ptr->pre_zero) {
  860.       size_t bytesperrow = (size_t) ptr->samplesperrow * sizeof(JSAMPLE);
  861.       undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */
  862.       end_row -= ptr->cur_start_row;
  863.       while (undef_row < end_row) {
  864.     jzero_far((void *) ptr->mem_buffer[undef_row], bytesperrow);
  865.     undef_row++;
  866.       }
  867.     } else {
  868.       if (! writable)        /* reader looking at undefined data */
  869.     cinfo->ERREXIT(JERR_BAD_VIRTUAL_ACCESS);
  870.     }
  871.   }
  872.   /* Flag the buffer dirty if caller will write in it */
  873.   if (writable)
  874.     ptr->dirty = TRUE;
  875.   /* Return address of proper part of the buffer */
  876.   return ptr->mem_buffer + (start_row - ptr->cur_start_row);
  877. }
  878.  
  879.  
  880. JBLOCKARRAY my_memory_mgr::access_virt_barray(jvirt_barray_ptr ptr,
  881.             JDIMENSION start_row, JDIMENSION num_rows,
  882.             boolean writable)
  883. /* Access the part of a virtual block array starting at start_row */
  884. /* and extending for num_rows rows.  writable is true if  */
  885. /* caller intends to modify the accessed area. */
  886. {
  887.   JDIMENSION end_row = start_row + num_rows;
  888.   JDIMENSION undef_row;
  889.  
  890.   /* debugging check */
  891.   if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
  892.       ptr->mem_buffer == NULL)
  893.     cinfo->ERREXIT(JERR_BAD_VIRTUAL_ACCESS);
  894.  
  895.   /* Make the desired part of the virtual array accessible */
  896.   if (start_row < ptr->cur_start_row ||
  897.       end_row > ptr->cur_start_row+ptr->rows_in_mem) {
  898.     if (! ptr->b_s_open)
  899.       cinfo->ERREXIT(JERR_VIRTUAL_BUG);
  900.     /* Flush old buffer contents if necessary */
  901.     if (ptr->dirty) {
  902.       do_barray_io(cinfo, ptr, TRUE);
  903.       ptr->dirty = FALSE;
  904.     }
  905.     /* Decide what part of virtual array to access.
  906.      * Algorithm: if target address > current window, assume forward scan,
  907.      * load starting at target address.  If target address < current window,
  908.      * assume backward scan, load so that target area is top of window.
  909.      * Note that when switching from forward write to forward read, will have
  910.      * start_row = 0, so the limiting case applies and we load from 0 anyway.
  911.      */
  912.     if (start_row > ptr->cur_start_row) {
  913.       ptr->cur_start_row = start_row;
  914.     } else {
  915.       /* use long arithmetic here to avoid overflow & unsigned problems */
  916.       long ltemp;
  917.  
  918.       ltemp = (long) end_row - (long) ptr->rows_in_mem;
  919.       if (ltemp < 0)
  920.     ltemp = 0;        /* don't fall off front end of file */
  921.       ptr->cur_start_row = (JDIMENSION) ltemp;
  922.     }
  923.     /* Read in the selected part of the array.
  924.      * During the initial write pass, we will do no actual read
  925.      * because the selected part is all undefined.
  926.      */
  927.     do_barray_io(cinfo, ptr, FALSE);
  928.   }
  929.   /* Ensure the accessed part of the array is defined; prezero if needed.
  930.    * To improve locality of access, we only prezero the part of the array
  931.    * that the caller is about to access, not the entire in-memory array.
  932.    */
  933.   if (ptr->first_undef_row < end_row) {
  934.     if (ptr->first_undef_row < start_row) {
  935.       if (writable)        /* writer skipped over a section of array */
  936.     cinfo->ERREXIT(JERR_BAD_VIRTUAL_ACCESS);
  937.       undef_row = start_row;    /* but reader is allowed to read ahead */
  938.     } else {
  939.       undef_row = ptr->first_undef_row;
  940.     }
  941.     if (writable)
  942.       ptr->first_undef_row = end_row;
  943.     if (ptr->pre_zero) {
  944.       size_t bytesperrow = (size_t) ptr->blocksperrow * sizeof(JBLOCK);
  945.       undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */
  946.       end_row -= ptr->cur_start_row;
  947.       while (undef_row < end_row) {
  948.     jzero_far((void *) ptr->mem_buffer[undef_row], bytesperrow);
  949.     undef_row++;
  950.       }
  951.     } else {
  952.       if (! writable)        /* reader looking at undefined data */
  953.     cinfo->ERREXIT(JERR_BAD_VIRTUAL_ACCESS);
  954.     }
  955.   }
  956.   /* Flag the buffer dirty if caller will write in it */
  957.   if (writable)
  958.     ptr->dirty = TRUE;
  959.   /* Return address of proper part of the buffer */
  960.   return ptr->mem_buffer + (start_row - ptr->cur_start_row);
  961. }
  962.  
  963.  
  964. /*
  965.  * Release all objects belonging to a specified pool.
  966.  */
  967.  
  968. void my_memory_mgr::free_pool(int pool_id)
  969. {
  970.   small_pool_ptr shdr_ptr;
  971.   large_pool_ptr lhdr_ptr;
  972.   size_t space_freed;
  973.  
  974.   if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
  975.     cinfo->ERREXIT1(JERR_BAD_POOL_ID, pool_id);    /* safety check */
  976.  
  977. #ifdef MEM_STATS
  978.   if (cinfo->err->trace_level > 1)
  979.     print_mem_stats(cinfo, pool_id); /* print pool's memory usage statistics */
  980. #endif
  981.  
  982.   /* If freeing IMAGE pool, close any virtual arrays first */
  983.   if (pool_id == JPOOL_IMAGE) {
  984.     jvirt_sarray_ptr sptr;
  985.     jvirt_barray_ptr bptr;
  986.  
  987.     for (sptr = virt_sarray_list; sptr != NULL; sptr = sptr->next) {
  988.       if (sptr->b_s_open) {    /* there may be no backing store */
  989.     sptr->b_s_open = FALSE;    /* prevent recursive close if error */
  990.     (*sptr->b_s_info.close_backing_store) (cinfo, & sptr->b_s_info);
  991.       }
  992.     }
  993.     virt_sarray_list = NULL;
  994.     for (bptr = virt_barray_list; bptr != NULL; bptr = bptr->next) {
  995.       if (bptr->b_s_open) {    /* there may be no backing store */
  996.     bptr->b_s_open = FALSE;    /* prevent recursive close if error */
  997.     (*bptr->b_s_info.close_backing_store) (cinfo, & bptr->b_s_info);
  998.       }
  999.     }
  1000.     virt_barray_list = NULL;
  1001.   }
  1002.  
  1003.   /* Release large objects */
  1004.   lhdr_ptr = large_list[pool_id];
  1005.   large_list[pool_id] = NULL;
  1006.  
  1007.   while (lhdr_ptr != NULL) {
  1008.     large_pool_ptr next_lhdr_ptr = lhdr_ptr->hdr.next;
  1009.     space_freed = lhdr_ptr->hdr.bytes_used +
  1010.           lhdr_ptr->hdr.bytes_left +
  1011.           sizeof(large_pool_hdr);
  1012.     free((void *) lhdr_ptr);
  1013.     total_space_allocated -= space_freed;
  1014.     lhdr_ptr = next_lhdr_ptr;
  1015.   }
  1016.  
  1017.   /* Release small objects */
  1018.   shdr_ptr = small_list[pool_id];
  1019.   small_list[pool_id] = NULL;
  1020.  
  1021.   while (shdr_ptr != NULL) {
  1022.     small_pool_ptr next_shdr_ptr = shdr_ptr->hdr.next;
  1023.     space_freed = shdr_ptr->hdr.bytes_used +
  1024.           shdr_ptr->hdr.bytes_left +
  1025.           sizeof(small_pool_hdr);
  1026.     free((void *) shdr_ptr);
  1027.     total_space_allocated -= space_freed;
  1028.     shdr_ptr = next_shdr_ptr;
  1029.   }
  1030. }
  1031.  
  1032.  
  1033. /*
  1034.  * Close up shop entirely.
  1035.  * Note that this cannot be called unless cinfo->mem is non-NULL.
  1036.  */
  1037.  
  1038. my_memory_mgr::~my_memory_mgr(void)
  1039. {
  1040.     /* Close all backing store, release all memory.
  1041.     * Releasing pools in reverse order might help avoid fragmentation
  1042.     * with some (brain-damaged) malloc libraries.
  1043.     */
  1044.     for (int pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) 
  1045.         free_pool(pool);
  1046.  
  1047.     /* Release the memory manager control block too. */
  1048.     // cinfo->mem = NULL;        /* ensures I will be called only once */
  1049.  
  1050.     jpeg_mem_term(cinfo);        /* system-dependent cleanup */
  1051. }
  1052.  
  1053.  
  1054. /*
  1055.  * Memory manager initialization.
  1056.  * When this is called, only the error manager pointer is valid in cinfo!
  1057.  */
  1058.  
  1059. GLOBAL(void)
  1060. jinit_memory_mgr (j_common_ptr cinfo)
  1061. {
  1062.   my_mem_ptr mem;
  1063.   long max_to_use;
  1064.   int pool;
  1065.   size_t test_mac;
  1066.  
  1067.   cinfo->mem = NULL;        /* for safety if init fails */
  1068.  
  1069.   /* Check for configuration errors.
  1070.    * sizeof(ALIGN_TYPE) should be a power of 2; otherwise, it probably
  1071.    * doesn't reflect any real hardware alignment requirement.
  1072.    * The test is a little tricky: for X>0, X and X-1 have no one-bits
  1073.    * in common if and only if X is a power of 2, ie has only one one-bit.
  1074.    * Some compilers may give an "unreachable code" warning here; ignore it.
  1075.    */
  1076.   if ((sizeof(ALIGN_TYPE) & (sizeof(ALIGN_TYPE)-1)) != 0)
  1077.     cinfo->ERREXIT(JERR_BAD_ALIGN_TYPE);
  1078.   /* MAX_ALLOC_CHUNK must be representable as type size_t, and must be
  1079.    * a multiple of sizeof(ALIGN_TYPE).
  1080.    * Again, an "unreachable code" warning may be ignored here.
  1081.    * But a "constant too large" warning means you need to fix MAX_ALLOC_CHUNK.
  1082.    */
  1083.   test_mac = (size_t) MAX_ALLOC_CHUNK;
  1084.   if ((long) test_mac != MAX_ALLOC_CHUNK ||
  1085.       (MAX_ALLOC_CHUNK % sizeof(ALIGN_TYPE)) != 0)
  1086.     cinfo->ERREXIT(JERR_BAD_ALLOC_CHUNK);
  1087.  
  1088.   max_to_use = jpeg_mem_init(cinfo); /* system-dependent initialization */
  1089.  
  1090.   /* Attempt to allocate memory manager's control block */
  1091.   mem = new my_memory_mgr(cinfo);
  1092.  
  1093.   if (mem == NULL) {
  1094.     jpeg_mem_term(cinfo);    /* system-dependent cleanup */
  1095.     cinfo->ERREXIT1(JERR_OUT_OF_MEMORY, 0);
  1096.   }
  1097.  
  1098.   /* OK, fill in the method pointers */
  1099. //  mem->pub.alloc_small = alloc_small;
  1100. //  mem->pub.alloc_large = alloc_large;
  1101. //  mem->pub.alloc_sarray = alloc_sarray;
  1102. //  mem->pub.alloc_barray = alloc_barray;
  1103. //  mem->pub.request_virt_sarray = request_virt_sarray;
  1104. //  mem->pub.request_virt_barray = request_virt_barray;
  1105. //  mem->pub.realize_virt_arrays = realize_virt_arrays;
  1106. //  mem->pub.access_virt_sarray = access_virt_sarray;
  1107. //  mem->pub.access_virt_barray = access_virt_barray;
  1108. //  mem->pub.free_pool = free_pool;
  1109. //  mem->pub.self_destruct = self_destruct;
  1110.  
  1111.   /* Make MAX_ALLOC_CHUNK accessible to other modules */
  1112.   mem->max_alloc_chunk = MAX_ALLOC_CHUNK;
  1113.  
  1114.   /* Initialize working state */
  1115.   mem->max_memory_to_use = max_to_use;
  1116.  
  1117.   for (pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) 
  1118.   {
  1119.     mem->small_list[pool] = NULL;
  1120.     mem->large_list[pool] = NULL;
  1121.   }
  1122.   mem->virt_sarray_list = NULL;
  1123.   mem->virt_barray_list = NULL;
  1124.  
  1125.   mem->total_space_allocated = sizeof(my_memory_mgr);
  1126.  
  1127.   /* Declare ourselves open for business */
  1128.   cinfo->mem = mem;
  1129.  
  1130.   /* Check for an environment variable JPEGMEM; if found, override the
  1131.    * default max_memory setting from jpeg_mem_init.  Note that the
  1132.    * surrounding application may again override this value.
  1133.    * If your system doesn't support getenv(), define NO_GETENV to disable
  1134.    * this feature.
  1135.    */
  1136. #ifndef NO_GETENV
  1137.   { char * memenv;
  1138.  
  1139.     if ((memenv = getenv("JPEGMEM")) != NULL) {
  1140.       char ch = 'x';
  1141.  
  1142.       if (sscanf(memenv, "%ld%c", &max_to_use, &ch) > 0) {
  1143.     if (ch == 'm' || ch == 'M')
  1144.       max_to_use *= 1000L;
  1145.     mem->max_memory_to_use = max_to_use * 1000L;
  1146.       }
  1147.     }
  1148.   }
  1149. #endif
  1150.  
  1151. }
  1152.