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