JMEMSYS.h
上传用户: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.  * jmemsys.h
  22.  *
  23.  * Copyright (C) 1992-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 include file defines the interface between the system-independent
  28.  * and system-dependent portions of the JPEG memory manager.  No other
  29.  * modules need include it.  (The system-independent portion is jmemmgr.c;
  30.  * there are several different versions of the system-dependent portion.)
  31.  *
  32.  * This file works as-is for the system-dependent memory managers supplied
  33.  * in the IJG distribution.  You may need to modify it if you write a
  34.  * custom memory manager.  If system-dependent changes are needed in
  35.  * this file, the best method is to #ifdef them based on a configuration
  36.  * symbol supplied in jconfig.h, as we have done with USE_MSDOS_MEMMGR.
  37.  */
  38. /* Short forms of external names for systems with brain-damaged linkers. */
  39. #ifdef NEED_SHORT_EXTERNAL_NAMES
  40. #define jpeg_get_small jGetSmall
  41. #define jpeg_free_small jFreeSmall
  42. #define jpeg_get_large jGetLarge
  43. #define jpeg_free_large jFreeLarge
  44. #define jpeg_mem_available jMemAvail
  45. #define jpeg_open_backing_store jOpenBackStore
  46. #define jpeg_mem_init jMemInit
  47. #define jpeg_mem_term jMemTerm
  48. #endif /* NEED_SHORT_EXTERNAL_NAMES */
  49. /*
  50.  * These two functions are used to allocate and release small chunks of
  51.  * memory.  (Typically the total amount requested through jpeg_get_small is
  52.  * no more than 20K or so; this will be requested in chunks of a few K each.)
  53.  * Behavior should be the same as for the standard library functions malloc
  54.  * and free; in particular, jpeg_get_small must return NULL on failure.
  55.  * On most systems, these ARE malloc and free.  jpeg_free_small is passed the
  56.  * size of the object being freed, just in case it's needed.
  57.  * On an 80x86 machine using small-data memory model, these manage near heap.
  58.  */
  59. EXTERN(void *) jpeg_get_small JPP((j_common_ptr cinfo, size_t sizeofobject));
  60. EXTERN(void) jpeg_free_small JPP((j_common_ptr cinfo, void * object,
  61.   size_t sizeofobject));
  62. /*
  63.  * These two functions are used to allocate and release large chunks of
  64.  * memory (up to the total free space designated by jpeg_mem_available).
  65.  * The interface is the same as above, except that on an 80x86 machine,
  66.  * far pointers are used.  On most other machines these are identical to
  67.  * the jpeg_get/free_small routines; but we keep them separate anyway,
  68.  * in case a different allocation strategy is desirable for large chunks.
  69.  */
  70. EXTERN(void FAR *) jpeg_get_large JPP((j_common_ptr cinfo,
  71.        size_t sizeofobject));
  72. EXTERN(void) jpeg_free_large JPP((j_common_ptr cinfo, void FAR * object,
  73.   size_t sizeofobject));
  74. /*
  75.  * The macro MAX_ALLOC_CHUNK designates the maximum number of bytes that may
  76.  * be requested in a single call to jpeg_get_large (and jpeg_get_small for that
  77.  * matter, but that case should never come into play).  This macro is needed
  78.  * to model the 64Kb-segment-size limit of far addressing on 80x86 machines.
  79.  * On those machines, we expect that jconfig.h will provide a proper value.
  80.  * On machines with 32-bit flat address spaces, any large constant may be used.
  81.  *
  82.  * NB: jmemmgr.c expects that MAX_ALLOC_CHUNK will be representable as type
  83.  * size_t and will be a multiple of sizeof(align_type).
  84.  */
  85. #ifndef MAX_ALLOC_CHUNK /* may be overridden in jconfig.h */
  86. #define MAX_ALLOC_CHUNK  1000000000L
  87. #endif
  88. /*
  89.  * This routine computes the total space still available for allocation by
  90.  * jpeg_get_large.  If more space than this is needed, backing store will be
  91.  * used.  NOTE: any memory already allocated must not be counted.
  92.  *
  93.  * There is a minimum space requirement, corresponding to the minimum
  94.  * feasible buffer sizes; jmemmgr.c will request that much space even if
  95.  * jpeg_mem_available returns zero.  The maximum space needed, enough to hold
  96.  * all working storage in memory, is also passed in case it is useful.
  97.  * Finally, the total space already allocated is passed.  If no better
  98.  * method is available, cinfo->mem->max_memory_to_use - already_allocated
  99.  * is often a suitable calculation.
  100.  *
  101.  * It is OK for jpeg_mem_available to underestimate the space available
  102.  * (that'll just lead to more backing-store access than is really necessary).
  103.  * However, an overestimate will lead to failure.  Hence it's wise to subtract
  104.  * a slop factor from the true available space.  5% should be enough.
  105.  *
  106.  * On machines with lots of virtual memory, any large constant may be returned.
  107.  * Conversely, zero may be returned to always use the minimum amount of memory.
  108.  */
  109. EXTERN(long) jpeg_mem_available JPP((j_common_ptr cinfo,
  110.      long min_bytes_needed,
  111.      long max_bytes_needed,
  112.      long already_allocated));
  113. /*
  114.  * This structure holds whatever state is needed to access a single
  115.  * backing-store object.  The read/write/close method pointers are called
  116.  * by jmemmgr.c to manipulate the backing-store object; all other fields
  117.  * are private to the system-dependent backing store routines.
  118.  */
  119. #define TEMP_NAME_LENGTH   64 /* max length of a temporary file's name */
  120. #ifdef USE_MSDOS_MEMMGR /* DOS-specific junk */
  121. typedef unsigned short XMSH; /* type of extended-memory handles */
  122. typedef unsigned short EMSH; /* type of expanded-memory handles */
  123. typedef union {
  124.   short file_handle; /* DOS file handle if it's a temp file */
  125.   XMSH xms_handle; /* handle if it's a chunk of XMS */
  126.   EMSH ems_handle; /* handle if it's a chunk of EMS */
  127. } handle_union;
  128. #endif /* USE_MSDOS_MEMMGR */
  129. typedef struct backing_store_struct * backing_store_ptr;
  130. typedef struct backing_store_struct {
  131.   /* Methods for reading/writing/closing this backing-store object */
  132.   JMETHOD(void, read_backing_store, (j_common_ptr cinfo,
  133.      backing_store_ptr info,
  134.      void FAR * buffer_address,
  135.      long file_offset, long byte_count));
  136.   JMETHOD(void, write_backing_store, (j_common_ptr cinfo,
  137.       backing_store_ptr info,
  138.       void FAR * buffer_address,
  139.       long file_offset, long byte_count));
  140.   JMETHOD(void, close_backing_store, (j_common_ptr cinfo,
  141.       backing_store_ptr info));
  142.   /* Private fields for system-dependent backing-store management */
  143. #ifdef USE_MSDOS_MEMMGR
  144.   /* For the MS-DOS manager (jmemdos.c), we need: */
  145.   handle_union handle; /* reference to backing-store storage object */
  146.   char temp_name[TEMP_NAME_LENGTH]; /* name if it's a file */
  147. #else
  148.   /* For a typical implementation with temp files, we need: */
  149.   FILE * temp_file; /* stdio reference to temp file */
  150.   char temp_name[TEMP_NAME_LENGTH]; /* name of temp file */
  151. #endif
  152. } backing_store_info;
  153. /*
  154.  * Initial opening of a backing-store object.  This must fill in the
  155.  * read/write/close pointers in the object.  The read/write routines
  156.  * may take an error exit if the specified maximum file size is exceeded.
  157.  * (If jpeg_mem_available always returns a large value, this routine can
  158.  * just take an error exit.)
  159.  */
  160. EXTERN(void) jpeg_open_backing_store JPP((j_common_ptr cinfo,
  161.   backing_store_ptr info,
  162.   long total_bytes_needed));
  163. /*
  164.  * These routines take care of any system-dependent initialization and
  165.  * cleanup required.  jpeg_mem_init will be called before anything is
  166.  * allocated (and, therefore, nothing in cinfo is of use except the error
  167.  * manager pointer).  It should return a suitable default value for
  168.  * max_memory_to_use; this may subsequently be overridden by the surrounding
  169.  * application.  (Note that max_memory_to_use is only important if
  170.  * jpeg_mem_available chooses to consult it ... no one else will.)
  171.  * jpeg_mem_term may assume that all requested memory has been freed and that
  172.  * all opened backing-store objects have been closed.
  173.  */
  174. EXTERN(long) jpeg_mem_init JPP((j_common_ptr cinfo));
  175. EXTERN(void) jpeg_mem_term JPP((j_common_ptr cinfo));