dnscrypto-proxy: Support files updated.
[tomato.git] / release / src / router / jpeg / jmemansi.c
blob2d93e496251c6c1ab0af020833d2d171f50b4e43
1 /*
2 * jmemansi.c
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.
8 * This file provides a simple generic implementation of the system-
9 * dependent portion of the JPEG memory manager. This implementation
10 * assumes that you have the ANSI-standard library routine tmpfile().
11 * Also, the problem of determining the amount of memory available
12 * is shoved onto the user.
15 #define JPEG_INTERNALS
16 #include "jinclude.h"
17 #include "jpeglib.h"
18 #include "jmemsys.h" /* import the system-dependent declarations */
20 #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
21 extern void * malloc JPP((size_t size));
22 extern void free JPP((void *ptr));
23 #endif
25 #ifndef SEEK_SET /* pre-ANSI systems may not define this; */
26 #define SEEK_SET 0 /* if not, assume 0 is correct */
27 #endif
31 * Memory allocation and freeing are controlled by the regular library
32 * routines malloc() and free().
35 GLOBAL(void *)
36 jpeg_get_small (j_common_ptr cinfo, size_t sizeofobject)
38 return (void *) malloc(sizeofobject);
41 GLOBAL(void)
42 jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject)
44 free(object);
49 * "Large" objects are treated the same as "small" ones.
50 * NB: although we include FAR keywords in the routine declarations,
51 * this file won't actually work in 80x86 small/medium model; at least,
52 * you probably won't be able to process useful-size images in only 64KB.
55 GLOBAL(void FAR *)
56 jpeg_get_large (j_common_ptr cinfo, size_t sizeofobject)
58 return (void FAR *) malloc(sizeofobject);
61 GLOBAL(void)
62 jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject)
64 free(object);
69 * This routine computes the total memory space available for allocation.
70 * It's impossible to do this in a portable way; our current solution is
71 * to make the user tell us (with a default value set at compile time).
72 * If you can actually get the available space, it's a good idea to subtract
73 * a slop factor of 5% or so.
76 #ifndef DEFAULT_MAX_MEM /* so can override from makefile */
77 #define DEFAULT_MAX_MEM 1000000L /* default: one megabyte */
78 #endif
80 GLOBAL(long)
81 jpeg_mem_available (j_common_ptr cinfo, long min_bytes_needed,
82 long max_bytes_needed, long already_allocated)
84 return cinfo->mem->max_memory_to_use - already_allocated;
89 * Backing store (temporary file) management.
90 * Backing store objects are only used when the value returned by
91 * jpeg_mem_available is less than the total space needed. You can dispense
92 * with these routines if you have plenty of virtual memory; see jmemnobs.c.
96 METHODDEF(void)
97 read_backing_store (j_common_ptr cinfo, backing_store_ptr info,
98 void FAR * buffer_address,
99 long file_offset, long byte_count)
101 if (fseek(info->temp_file, file_offset, SEEK_SET))
102 ERREXIT(cinfo, JERR_TFILE_SEEK);
103 if (JFREAD(info->temp_file, buffer_address, byte_count)
104 != (size_t) byte_count)
105 ERREXIT(cinfo, JERR_TFILE_READ);
109 METHODDEF(void)
110 write_backing_store (j_common_ptr cinfo, backing_store_ptr info,
111 void FAR * buffer_address,
112 long file_offset, long byte_count)
114 if (fseek(info->temp_file, file_offset, SEEK_SET))
115 ERREXIT(cinfo, JERR_TFILE_SEEK);
116 if (JFWRITE(info->temp_file, buffer_address, byte_count)
117 != (size_t) byte_count)
118 ERREXIT(cinfo, JERR_TFILE_WRITE);
122 METHODDEF(void)
123 close_backing_store (j_common_ptr cinfo, backing_store_ptr info)
125 fclose(info->temp_file);
126 /* Since this implementation uses tmpfile() to create the file,
127 * no explicit file deletion is needed.
133 * Initial opening of a backing-store object.
135 * This version uses tmpfile(), which constructs a suitable file name
136 * behind the scenes. We don't have to use info->temp_name[] at all;
137 * indeed, we can't even find out the actual name of the temp file.
140 GLOBAL(void)
141 jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,
142 long total_bytes_needed)
144 if ((info->temp_file = tmpfile()) == NULL)
145 ERREXITS(cinfo, JERR_TFILE_CREATE, "");
146 info->read_backing_store = read_backing_store;
147 info->write_backing_store = write_backing_store;
148 info->close_backing_store = close_backing_store;
153 * These routines take care of any system-dependent initialization and
154 * cleanup required.
157 GLOBAL(long)
158 jpeg_mem_init (j_common_ptr cinfo)
160 return DEFAULT_MAX_MEM; /* default for max_memory_to_use */
163 GLOBAL(void)
164 jpeg_mem_term (j_common_ptr cinfo)
166 /* no work */