jmemsys.h 7.7 KB

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