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