Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jmemsys.h 8.3KB

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