Skip to content

Latest commit

 

History

History
381 lines (339 loc) · 8.84 KB

SDL_rwops.c

File metadata and controls

381 lines (339 loc) · 8.84 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
/* This file provides a general interface for SDL to read and write
data sources. It can easily be extended to files, memory, etc.
*/
Feb 9, 2006
Feb 9, 2006
28
#include "SDL_endian.h"
Feb 7, 2006
Feb 7, 2006
29
#include "SDL_rwops.h"
Feb 6, 2006
Feb 6, 2006
30
Feb 9, 2006
Feb 9, 2006
31
Feb 6, 2006
Feb 6, 2006
32
#ifdef HAVE_STDIO_H
Apr 26, 2001
Apr 26, 2001
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Functions to read/write stdio file pointers */
static int stdio_seek(SDL_RWops *context, int offset, int whence)
{
if ( fseek(context->hidden.stdio.fp, offset, whence) == 0 ) {
return(ftell(context->hidden.stdio.fp));
} else {
SDL_Error(SDL_EFSEEK);
return(-1);
}
}
static int stdio_read(SDL_RWops *context, void *ptr, int size, int maxnum)
{
size_t nread;
nread = fread(ptr, size, maxnum, context->hidden.stdio.fp);
if ( nread == 0 && ferror(context->hidden.stdio.fp) ) {
SDL_Error(SDL_EFREAD);
}
return(nread);
}
static int stdio_write(SDL_RWops *context, const void *ptr, int size, int num)
{
size_t nwrote;
nwrote = fwrite(ptr, size, num, context->hidden.stdio.fp);
if ( nwrote == 0 && ferror(context->hidden.stdio.fp) ) {
SDL_Error(SDL_EFWRITE);
}
return(nwrote);
}
static int stdio_close(SDL_RWops *context)
{
if ( context ) {
if ( context->hidden.stdio.autoclose ) {
/* WARNING: Check the return value here! */
fclose(context->hidden.stdio.fp);
}
Dec 12, 2005
Dec 12, 2005
72
SDL_FreeRW(context);
Apr 26, 2001
Apr 26, 2001
73
74
75
76
}
return(0);
}
Feb 6, 2006
Feb 6, 2006
77
78
#endif /* HAVE_STDIO_H */
Apr 26, 2001
Apr 26, 2001
79
80
81
82
83
84
85
/* Functions to read/write memory pointers */
static int mem_seek(SDL_RWops *context, int offset, int whence)
{
Uint8 *newpos;
switch (whence) {
Feb 6, 2006
Feb 6, 2006
86
case RW_SEEK_SET:
Apr 26, 2001
Apr 26, 2001
87
88
newpos = context->hidden.mem.base+offset;
break;
Feb 6, 2006
Feb 6, 2006
89
case RW_SEEK_CUR:
Apr 26, 2001
Apr 26, 2001
90
91
newpos = context->hidden.mem.here+offset;
break;
Feb 6, 2006
Feb 6, 2006
92
case RW_SEEK_END:
Apr 26, 2001
Apr 26, 2001
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
newpos = context->hidden.mem.stop+offset;
break;
default:
SDL_SetError("Unknown value for 'whence'");
return(-1);
}
if ( newpos < context->hidden.mem.base ) {
newpos = context->hidden.mem.base;
}
if ( newpos > context->hidden.mem.stop ) {
newpos = context->hidden.mem.stop;
}
context->hidden.mem.here = newpos;
return(context->hidden.mem.here-context->hidden.mem.base);
}
static int mem_read(SDL_RWops *context, void *ptr, int size, int maxnum)
{
Jun 24, 2005
Jun 24, 2005
110
111
int total_bytes;
int mem_available;
Apr 26, 2001
Apr 26, 2001
112
Jun 24, 2005
Jun 24, 2005
113
114
115
total_bytes = (maxnum * size);
if ( (maxnum <= 0) || (size <= 0) || ((total_bytes / maxnum) != size) ) {
return 0;
Apr 26, 2001
Apr 26, 2001
116
}
Jun 24, 2005
Jun 24, 2005
117
118
119
120
121
122
mem_available = (context->hidden.mem.stop - context->hidden.mem.here);
if (total_bytes > mem_available) {
total_bytes = mem_available;
}
Feb 7, 2006
Feb 7, 2006
123
SDL_memcpy(ptr, context->hidden.mem.here, total_bytes);
Jun 24, 2005
Jun 24, 2005
124
125
126
context->hidden.mem.here += total_bytes;
return (total_bytes / size);
Apr 26, 2001
Apr 26, 2001
127
128
129
130
131
132
}
static int mem_write(SDL_RWops *context, const void *ptr, int size, int num)
{
if ( (context->hidden.mem.here + (num*size)) > context->hidden.mem.stop ) {
num = (context->hidden.mem.stop-context->hidden.mem.here)/size;
}
Feb 7, 2006
Feb 7, 2006
133
SDL_memcpy(context->hidden.mem.here, ptr, num*size);
Apr 26, 2001
Apr 26, 2001
134
135
136
context->hidden.mem.here += num*size;
return(num);
}
Jan 4, 2004
Jan 4, 2004
137
138
139
140
141
static int mem_writeconst(SDL_RWops *context, const void *ptr, int size, int num)
{
SDL_SetError("Can't write to read-only memory");
return(-1);
}
Apr 26, 2001
Apr 26, 2001
142
143
144
static int mem_close(SDL_RWops *context)
{
if ( context ) {
Dec 12, 2005
Dec 12, 2005
145
SDL_FreeRW(context);
Apr 26, 2001
Apr 26, 2001
146
147
148
149
150
}
return(0);
}
/* Functions to create SDL_RWops structures from various data sources */
Feb 21, 2006
Feb 21, 2006
151
#ifdef __WIN32__
Apr 26, 2001
Apr 26, 2001
152
153
154
155
156
157
/* Aggh. You can't (apparently) open a file in an application and
read from it in a DLL.
*/
static int in_sdl = 0;
#endif
Feb 21, 2006
Feb 21, 2006
158
#ifdef __MACOS__
Apr 26, 2001
Apr 26, 2001
159
160
161
162
163
164
/*
* translate unix-style slash-separated filename to mac-style colon-separated
* name; return malloced string
*/
static char *unix_to_mac(const char *file)
{
Feb 7, 2006
Feb 7, 2006
165
166
int flen = SDL_strlen(file);
char *path = SDL_malloc(flen + 2);
Apr 26, 2001
Apr 26, 2001
167
168
169
170
171
172
173
174
175
176
177
const char *src = file;
char *dst = path;
if(*src == '/') {
/* really depends on filesystem layout, hope for the best */
src++;
} else {
/* Check if this is a MacOS path to begin with */
if(*src != ':')
*dst++ = ':'; /* relative paths begin with ':' */
}
while(src < file + flen) {
Feb 7, 2006
Feb 7, 2006
178
const char *end = SDL_strchr(src, '/');
Apr 26, 2001
Apr 26, 2001
179
180
181
182
183
184
185
186
187
188
int len;
if(!end)
end = file + flen; /* last component */
len = end - src;
if(len == 0 || (len == 1 && src[0] == '.')) {
/* remove repeated slashes and . */
} else {
if(len == 2 && src[0] == '.' && src[1] == '.') {
/* replace .. with the empty string */
} else {
Feb 7, 2006
Feb 7, 2006
189
SDL_memcpy(dst, src, len);
Apr 26, 2001
Apr 26, 2001
190
191
192
193
194
195
196
197
198
199
dst += len;
}
if(end < file + flen)
*dst++ = ':';
}
src = end + 1;
}
*dst++ = '\0';
return path;
}
Feb 21, 2006
Feb 21, 2006
200
#endif /* __MACOS__ */
Apr 26, 2001
Apr 26, 2001
201
202
203
SDL_RWops *SDL_RWFromFile(const char *file, const char *mode)
{
Feb 6, 2006
Feb 6, 2006
204
205
SDL_RWops *rwops = NULL;
#ifdef HAVE_STDIO_H
Apr 26, 2001
Apr 26, 2001
206
207
FILE *fp;
Feb 21, 2006
Feb 21, 2006
208
#ifdef __MACOS__
Apr 26, 2001
Apr 26, 2001
209
210
211
{
char *mpath = unix_to_mac(file);
fp = fopen(mpath, mode);
Feb 7, 2006
Feb 7, 2006
212
SDL_free(mpath);
Apr 26, 2001
Apr 26, 2001
213
214
215
216
217
218
219
}
#else
fp = fopen(file, mode);
#endif
if ( fp == NULL ) {
SDL_SetError("Couldn't open %s", file);
} else {
Feb 21, 2006
Feb 21, 2006
220
#ifdef __WIN32__
Apr 26, 2001
Apr 26, 2001
221
222
223
224
225
226
227
in_sdl = 1;
rwops = SDL_RWFromFP(fp, 1);
in_sdl = 0;
#else
rwops = SDL_RWFromFP(fp, 1);
#endif
}
Feb 6, 2006
Feb 6, 2006
228
#endif /* HAVE_STDIO_H */
Apr 26, 2001
Apr 26, 2001
229
230
231
return(rwops);
}
Feb 6, 2006
Feb 6, 2006
232
#ifdef HAVE_STDIO_H
Apr 26, 2001
Apr 26, 2001
233
234
SDL_RWops *SDL_RWFromFP(FILE *fp, int autoclose)
{
Feb 6, 2006
Feb 6, 2006
235
SDL_RWops *rwops = NULL;
Apr 26, 2001
Apr 26, 2001
236
Feb 21, 2006
Feb 21, 2006
237
#ifdef __WIN32__
Apr 26, 2001
Apr 26, 2001
238
if ( ! in_sdl ) {
Jan 26, 2006
Jan 26, 2006
239
/* It's when SDL and the app are compiled with different C runtimes */
Nov 17, 2002
Nov 17, 2002
240
SDL_SetError("You can't pass a FILE pointer to a DLL (?)");
Apr 26, 2001
Apr 26, 2001
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/*return(NULL);*/
}
#endif
rwops = SDL_AllocRW();
if ( rwops != NULL ) {
rwops->seek = stdio_seek;
rwops->read = stdio_read;
rwops->write = stdio_write;
rwops->close = stdio_close;
rwops->hidden.stdio.fp = fp;
rwops->hidden.stdio.autoclose = autoclose;
}
return(rwops);
}
Feb 6, 2006
Feb 6, 2006
255
#endif /* HAVE_STDIO_H */
Apr 26, 2001
Apr 26, 2001
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
SDL_RWops *SDL_RWFromMem(void *mem, int size)
{
SDL_RWops *rwops;
rwops = SDL_AllocRW();
if ( rwops != NULL ) {
rwops->seek = mem_seek;
rwops->read = mem_read;
rwops->write = mem_write;
rwops->close = mem_close;
rwops->hidden.mem.base = (Uint8 *)mem;
rwops->hidden.mem.here = rwops->hidden.mem.base;
rwops->hidden.mem.stop = rwops->hidden.mem.base+size;
}
return(rwops);
}
Jan 4, 2004
Jan 4, 2004
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
SDL_RWops *SDL_RWFromConstMem(const void *mem, int size)
{
SDL_RWops *rwops;
rwops = SDL_AllocRW();
if ( rwops != NULL ) {
rwops->seek = mem_seek;
rwops->read = mem_read;
rwops->write = mem_writeconst;
rwops->close = mem_close;
rwops->hidden.mem.base = (Uint8 *)mem;
rwops->hidden.mem.here = rwops->hidden.mem.base;
rwops->hidden.mem.stop = rwops->hidden.mem.base+size;
}
return(rwops);
}
Apr 26, 2001
Apr 26, 2001
291
292
293
294
SDL_RWops *SDL_AllocRW(void)
{
SDL_RWops *area;
Feb 7, 2006
Feb 7, 2006
295
area = (SDL_RWops *)SDL_malloc(sizeof *area);
Apr 26, 2001
Apr 26, 2001
296
297
298
299
300
301
302
303
if ( area == NULL ) {
SDL_OutOfMemory();
}
return(area);
}
void SDL_FreeRW(SDL_RWops *area)
{
Feb 7, 2006
Feb 7, 2006
304
SDL_free(area);
Apr 26, 2001
Apr 26, 2001
305
}
Feb 9, 2006
Feb 9, 2006
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
/* Functions for dynamically reading and writing endian-specific values */
Uint16 SDL_ReadLE16 (SDL_RWops *src)
{
Uint16 value;
SDL_RWread(src, &value, (sizeof value), 1);
return(SDL_SwapLE16(value));
}
Uint16 SDL_ReadBE16 (SDL_RWops *src)
{
Uint16 value;
SDL_RWread(src, &value, (sizeof value), 1);
return(SDL_SwapBE16(value));
}
Uint32 SDL_ReadLE32 (SDL_RWops *src)
{
Uint32 value;
SDL_RWread(src, &value, (sizeof value), 1);
return(SDL_SwapLE32(value));
}
Uint32 SDL_ReadBE32 (SDL_RWops *src)
{
Uint32 value;
SDL_RWread(src, &value, (sizeof value), 1);
return(SDL_SwapBE32(value));
}
Uint64 SDL_ReadLE64 (SDL_RWops *src)
{
Uint64 value;
SDL_RWread(src, &value, (sizeof value), 1);
return(SDL_SwapLE64(value));
}
Uint64 SDL_ReadBE64 (SDL_RWops *src)
{
Uint64 value;
SDL_RWread(src, &value, (sizeof value), 1);
return(SDL_SwapBE64(value));
}
int SDL_WriteLE16 (SDL_RWops *dst, Uint16 value)
{
value = SDL_SwapLE16(value);
return(SDL_RWwrite(dst, &value, (sizeof value), 1));
}
int SDL_WriteBE16 (SDL_RWops *dst, Uint16 value)
{
value = SDL_SwapBE16(value);
return(SDL_RWwrite(dst, &value, (sizeof value), 1));
}
int SDL_WriteLE32 (SDL_RWops *dst, Uint32 value)
{
value = SDL_SwapLE32(value);
return(SDL_RWwrite(dst, &value, (sizeof value), 1));
}
int SDL_WriteBE32 (SDL_RWops *dst, Uint32 value)
{
value = SDL_SwapBE32(value);
return(SDL_RWwrite(dst, &value, (sizeof value), 1));
}
int SDL_WriteLE64 (SDL_RWops *dst, Uint64 value)
{
value = SDL_SwapLE64(value);
return(SDL_RWwrite(dst, &value, (sizeof value), 1));
}
int SDL_WriteBE64 (SDL_RWops *dst, Uint64 value)
{
value = SDL_SwapBE64(value);
return(SDL_RWwrite(dst, &value, (sizeof value), 1));
}