Skip to content

Latest commit

 

History

History
672 lines (583 loc) · 18.3 KB

SDL_rwops.c

File metadata and controls

672 lines (583 loc) · 18.3 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 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
Jun 24, 2007
Jun 24, 2007
32
#if defined(__WIN32__) && !defined(__SYMBIAN32__)
Apr 26, 2001
Apr 26, 2001
33
Feb 27, 2006
Feb 27, 2006
34
/* Functions to read/write Win32 API file pointers */
Mar 4, 2006
Mar 4, 2006
35
36
37
/* Will not use it on WinCE because stdio is buffered, it means
faster, and all stdio functions anyway are embedded in coredll.dll -
the main wince dll*/
Apr 26, 2001
Apr 26, 2001
38
Feb 27, 2006
Feb 27, 2006
39
40
41
#define WINDOWS_LEAN_AND_MEAN
#include <windows.h>
Mar 4, 2006
Mar 4, 2006
42
43
44
45
#ifndef INVALID_SET_FILE_POINTER
#define INVALID_SET_FILE_POINTER 0xFFFFFFFF
#endif
Jul 10, 2007
Jul 10, 2007
46
47
#define READAHEAD_BUFFER_SIZE 1024
May 7, 2006
May 7, 2006
48
static int SDLCALL win32_file_open(SDL_RWops *context, const char *filename, const char *mode)
Mar 4, 2006
Mar 4, 2006
49
50
{
#ifndef _WIN32_WCE
Feb 27, 2006
Feb 27, 2006
51
UINT old_error_mode;
Mar 4, 2006
Mar 4, 2006
52
#endif
Feb 27, 2006
Feb 27, 2006
53
54
55
56
57
HANDLE h;
DWORD r_right, w_right;
DWORD must_exist, truncate;
int a_mode;
Feb 27, 2006
Feb 27, 2006
58
if (!context)
Jul 10, 2007
Jul 10, 2007
59
return -1; /* failed (invalid call) */
Jul 10, 2007
Jul 10, 2007
60
61
62
63
64
context->hidden.win32io.h = INVALID_HANDLE_VALUE; /* mark this as unusable */
context->hidden.win32io.buffer.data = NULL;
context->hidden.win32io.buffer.size = 0;
context->hidden.win32io.buffer.left = 0;
Jul 10, 2007
Jul 10, 2007
65
Feb 27, 2006
Feb 27, 2006
66
67
68
69
70
71
72
73
74
75
/* "r" = reading, file must exist */
/* "w" = writing, truncate existing, file may not exist */
/* "r+"= reading or writing, file must exist */
/* "a" = writing, append file may not exist */
/* "a+"= append + read, file may not exist */
/* "w+" = read, write, truncate. file may not exist */
must_exist = ( SDL_strchr(mode,'r') != NULL ) ? OPEN_EXISTING : 0;
truncate = ( SDL_strchr(mode,'w') != NULL ) ? CREATE_ALWAYS : 0;
r_right = ( SDL_strchr(mode,'+') != NULL || must_exist ) ? GENERIC_READ : 0;
Feb 27, 2006
Feb 27, 2006
76
77
a_mode = ( SDL_strchr(mode,'a') != NULL ) ? OPEN_ALWAYS : 0;
w_right = ( a_mode || SDL_strchr(mode,'+') || truncate ) ? GENERIC_WRITE : 0;
Feb 27, 2006
Feb 27, 2006
78
79
if (!r_right && !w_right) /* inconsistent mode */
Jul 10, 2007
Jul 10, 2007
80
return -1; /* failed (invalid call) */
Jul 10, 2007
Jul 10, 2007
81
Jul 10, 2007
Jul 10, 2007
82
83
84
85
86
87
context->hidden.win32io.buffer.data = (char *)SDL_malloc(READAHEAD_BUFFER_SIZE);
if (!context->hidden.win32io.buffer.data) {
SDL_OutOfMemory();
return -1;
}
Mar 4, 2006
Mar 4, 2006
88
89
90
91
92
93
94
#ifdef _WIN32_WCE
{
size_t size = SDL_strlen(filename)+1;
wchar_t *filenameW = SDL_stack_alloc(wchar_t, size);
if ( MultiByteToWideChar(CP_UTF8, 0, filename, -1, filenameW, size) == 0 ) {
SDL_stack_free(filenameW);
Jul 10, 2007
Jul 10, 2007
95
96
SDL_free(context->hidden.win32io.buffer.data);
context->hidden.win32io.buffer.data = NULL;
Jul 10, 2007
Jul 10, 2007
97
SDL_SetError("Unable to convert filename to Unicode");
Mar 4, 2006
Mar 4, 2006
98
99
100
101
102
103
104
return -1;
}
h = CreateFile(filenameW, (w_right|r_right), (w_right)? 0 : FILE_SHARE_READ,
NULL, (must_exist|truncate|a_mode), FILE_ATTRIBUTE_NORMAL,NULL);
SDL_stack_free(filenameW);
}
#else
Oct 8, 2009
Oct 8, 2009
105
{
Mar 4, 2006
Mar 4, 2006
106
Oct 8, 2009
Oct 8, 2009
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* handle Unicode filenames. We do some tapdancing here to make sure this
works on Win9x, which doesn't support anything but 1-byte codepages. */
const size_t size = SDL_strlen(filename)+1;
static int unicode_support = -1;
if (unicode_support == -1) {
OSVERSIONINFO osVerInfo; /* Information about the OS */
osVerInfo.dwOSVersionInfoSize = sizeof(osVerInfo);
if (!GetVersionEx(&osVerInfo)) {
unicode_support = 0;
} else if (osVerInfo.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS) {
unicode_support = 1; /* Not Win95/98/ME. */
} else {
unicode_support = 0;
}
}
Mar 4, 2006
Mar 4, 2006
123
Oct 8, 2009
Oct 8, 2009
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
if (unicode_support) { /* everything but Win95/98/ME. */
wchar_t *filenameW = SDL_stack_alloc(wchar_t, size);
if ( MultiByteToWideChar(CP_UTF8, 0, filename, -1, filenameW, size) == 0 ) {
SDL_stack_free(filenameW);
SDL_free(context->hidden.win32io.buffer.data);
context->hidden.win32io.buffer.data = NULL;
SDL_SetError("Unable to convert filename to Unicode");
return -1;
}
/* Do not open a dialog box if failure */
old_error_mode = SetErrorMode(SEM_NOOPENFILEERRORBOX|SEM_FAILCRITICALERRORS);
h = CreateFileW(filenameW, (w_right|r_right), (w_right)? 0 : FILE_SHARE_READ,
NULL, (must_exist|truncate|a_mode), FILE_ATTRIBUTE_NORMAL,NULL);
/* restore old behaviour */
SetErrorMode(old_error_mode);
SDL_stack_free(filenameW);
} else {
/* CP_UTF8 might not be supported (Win95), so use SDL_iconv to get wchars. */
/* Use UCS2: no UTF-16 support here. Try again in SDL 1.3. :) */
char *utf16 = SDL_iconv_string("UCS2", "UTF8", filename, SDL_strlen(filename) + 1);
char *filenameA = SDL_stack_alloc(char, size * 6); /* 6, just in case. */
BOOL bDefCharUsed = FALSE;
/* Dither down to a codepage and hope for the best. */
if (!utf16 ||
!WideCharToMultiByte(CP_ACP, 0, (LPCWSTR)utf16, -1, filenameA, size*6, 0, &bDefCharUsed) ||
bDefCharUsed) {
SDL_stack_free(filenameA);
SDL_free(utf16);
SDL_free(context->hidden.win32io.buffer.data);
context->hidden.win32io.buffer.data = NULL;
SDL_SetError("Unable to convert filename to Unicode");
return -1;
}
/* Do not open a dialog box if failure */
old_error_mode = SetErrorMode(SEM_NOOPENFILEERRORBOX|SEM_FAILCRITICALERRORS);
h = CreateFile(filenameA, (w_right|r_right), (w_right)? 0 : FILE_SHARE_READ,
NULL, (must_exist|truncate|a_mode), FILE_ATTRIBUTE_NORMAL,NULL);
/* restore old behaviour */
SetErrorMode(old_error_mode);
SDL_stack_free(filenameA);
SDL_free(utf16);
}
}
Mar 4, 2006
Mar 4, 2006
173
#endif /* _WIN32_WCE */
Feb 27, 2006
Feb 27, 2006
174
175
if (h==INVALID_HANDLE_VALUE) {
Jul 10, 2007
Jul 10, 2007
176
177
SDL_free(context->hidden.win32io.buffer.data);
context->hidden.win32io.buffer.data = NULL;
Jul 10, 2007
Jul 10, 2007
178
SDL_SetError("Couldn't open %s",filename);
Feb 27, 2006
Feb 27, 2006
179
180
181
182
return -2; /* failed (CreateFile) */
}
context->hidden.win32io.h = h;
context->hidden.win32io.append = a_mode;
Jul 10, 2007
Jul 10, 2007
183
Feb 27, 2006
Feb 27, 2006
184
185
return 0; /* ok */
}
May 7, 2006
May 7, 2006
186
static int SDLCALL win32_file_seek(SDL_RWops *context, int offset, int whence)
Mar 4, 2006
Mar 4, 2006
187
{
Feb 27, 2006
Feb 27, 2006
188
189
190
191
192
193
194
DWORD win32whence;
int file_pos;
if (!context || context->hidden.win32io.h == INVALID_HANDLE_VALUE) {
SDL_SetError("win32_file_seek: invalid context/file not opened");
return -1;
}
Jul 10, 2007
Jul 10, 2007
195
196
197
198
199
200
201
/* FIXME: We may be able to satisfy the seek within buffered data */
if (whence == RW_SEEK_CUR && context->hidden.win32io.buffer.left) {
offset -= context->hidden.win32io.buffer.left;
}
context->hidden.win32io.buffer.left = 0;
Feb 27, 2006
Feb 27, 2006
202
203
204
205
206
207
208
209
210
211
212
switch (whence) {
case RW_SEEK_SET:
win32whence = FILE_BEGIN; break;
case RW_SEEK_CUR:
win32whence = FILE_CURRENT; break;
case RW_SEEK_END:
win32whence = FILE_END; break;
default:
SDL_SetError("win32_file_seek: Unknown value for 'whence'");
return -1;
}
Jul 10, 2007
Jul 10, 2007
213
Feb 27, 2006
Feb 27, 2006
214
215
216
217
218
219
220
221
file_pos = SetFilePointer(context->hidden.win32io.h,offset,NULL,win32whence);
if ( file_pos != INVALID_SET_FILE_POINTER )
return file_pos; /* success */
SDL_Error(SDL_EFSEEK);
return -1; /* error */
}
May 7, 2006
May 7, 2006
222
static int SDLCALL win32_file_read(SDL_RWops *context, void *ptr, int size, int maxnum)
Mar 4, 2006
Mar 4, 2006
223
{
Jul 10, 2007
Jul 10, 2007
224
225
226
227
int total_need;
int total_read = 0;
int read_ahead;
DWORD byte_read;
Feb 27, 2006
Feb 27, 2006
228
Jul 10, 2007
Jul 10, 2007
229
total_need = size*maxnum;
Feb 27, 2006
Feb 27, 2006
230
Jul 10, 2007
Jul 10, 2007
231
if (!context || context->hidden.win32io.h == INVALID_HANDLE_VALUE || total_need<=0 || !size)
Feb 27, 2006
Feb 27, 2006
232
return 0;
Jul 10, 2007
Jul 10, 2007
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
if (context->hidden.win32io.buffer.left > 0) {
void *data = (char *)context->hidden.win32io.buffer.data +
context->hidden.win32io.buffer.size -
context->hidden.win32io.buffer.left;
read_ahead = SDL_min(total_need, context->hidden.win32io.buffer.left);
SDL_memcpy(ptr, data, read_ahead);
context->hidden.win32io.buffer.left -= read_ahead;
if (read_ahead == total_need) {
return maxnum;
}
ptr = (char *)ptr + read_ahead;
total_need -= read_ahead;
total_read += read_ahead;
}
if (total_need < READAHEAD_BUFFER_SIZE) {
if (!ReadFile(context->hidden.win32io.h,context->hidden.win32io.buffer.data,READAHEAD_BUFFER_SIZE,&byte_read,NULL)) {
SDL_Error(SDL_EFREAD);
return 0;
}
Jul 10, 2007
Jul 10, 2007
255
read_ahead = SDL_min(total_need, (int)byte_read);
Jul 10, 2007
Jul 10, 2007
256
257
258
259
260
261
262
263
264
265
266
267
SDL_memcpy(ptr, context->hidden.win32io.buffer.data, read_ahead);
context->hidden.win32io.buffer.size = byte_read;
context->hidden.win32io.buffer.left = byte_read-read_ahead;
total_read += read_ahead;
} else {
if (!ReadFile(context->hidden.win32io.h,ptr,total_need,&byte_read,NULL)) {
SDL_Error(SDL_EFREAD);
return 0;
}
total_read += byte_read;
}
return (total_read/size);
Feb 27, 2006
Feb 27, 2006
268
}
May 7, 2006
May 7, 2006
269
static int SDLCALL win32_file_write(SDL_RWops *context, const void *ptr, int size, int num)
Mar 4, 2006
Mar 4, 2006
270
{
Feb 27, 2006
Feb 27, 2006
271
272
273
274
275
276
277
278
279
int total_bytes;
DWORD byte_written,nwritten;
total_bytes = size*num;
if (!context || context->hidden.win32io.h==INVALID_HANDLE_VALUE || total_bytes<=0 || !size)
return 0;
Jul 10, 2007
Jul 10, 2007
280
281
282
283
284
if (context->hidden.win32io.buffer.left) {
SetFilePointer(context->hidden.win32io.h,-context->hidden.win32io.buffer.left,NULL,FILE_CURRENT);
context->hidden.win32io.buffer.left = 0;
}
Feb 27, 2006
Feb 27, 2006
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/* if in append mode, we must go to the EOF before write */
if (context->hidden.win32io.append) {
if ( SetFilePointer(context->hidden.win32io.h,0L,NULL,FILE_END) == INVALID_SET_FILE_POINTER ) {
SDL_Error(SDL_EFWRITE);
return 0;
}
}
if (!WriteFile(context->hidden.win32io.h,ptr,total_bytes,&byte_written,NULL)) {
SDL_Error(SDL_EFWRITE);
return 0;
}
nwritten = byte_written/size;
return nwritten;
}
May 7, 2006
May 7, 2006
301
static int SDLCALL win32_file_close(SDL_RWops *context)
Mar 4, 2006
Mar 4, 2006
302
{
Feb 27, 2006
Feb 27, 2006
303
304
305
306
307
308
if ( context ) {
if (context->hidden.win32io.h != INVALID_HANDLE_VALUE) {
CloseHandle(context->hidden.win32io.h);
context->hidden.win32io.h = INVALID_HANDLE_VALUE; /* to be sure */
}
Jul 10, 2007
Jul 10, 2007
309
310
311
312
if (context->hidden.win32io.buffer.data) {
SDL_free(context->hidden.win32io.buffer.data);
context->hidden.win32io.buffer.data = NULL;
}
Feb 27, 2006
Feb 27, 2006
313
314
315
316
SDL_FreeRW(context);
}
return(0);
}
Feb 27, 2006
Feb 27, 2006
317
#endif /* __WIN32__ */
Feb 27, 2006
Feb 27, 2006
318
Feb 27, 2006
Feb 27, 2006
319
#ifdef HAVE_STDIO_H
Feb 27, 2006
Feb 27, 2006
320
Feb 27, 2006
Feb 27, 2006
321
/* Functions to read/write stdio file pointers */
Feb 27, 2006
Feb 27, 2006
322
May 7, 2006
May 7, 2006
323
static int SDLCALL stdio_seek(SDL_RWops *context, int offset, int whence)
Feb 27, 2006
Feb 27, 2006
324
325
326
327
328
329
330
331
{
if ( fseek(context->hidden.stdio.fp, offset, whence) == 0 ) {
return(ftell(context->hidden.stdio.fp));
} else {
SDL_Error(SDL_EFSEEK);
return(-1);
}
}
May 7, 2006
May 7, 2006
332
static int SDLCALL stdio_read(SDL_RWops *context, void *ptr, int size, int maxnum)
Feb 27, 2006
Feb 27, 2006
333
334
335
336
337
338
339
340
341
{
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);
}
May 7, 2006
May 7, 2006
342
static int SDLCALL stdio_write(SDL_RWops *context, const void *ptr, int size, int num)
Feb 27, 2006
Feb 27, 2006
343
344
345
346
347
348
349
350
351
{
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);
}
May 7, 2006
May 7, 2006
352
static int SDLCALL stdio_close(SDL_RWops *context)
Feb 27, 2006
Feb 27, 2006
353
354
355
356
357
358
359
360
361
362
{
if ( context ) {
if ( context->hidden.stdio.autoclose ) {
/* WARNING: Check the return value here! */
fclose(context->hidden.stdio.fp);
}
SDL_FreeRW(context);
}
return(0);
}
Feb 27, 2006
Feb 27, 2006
363
#endif /* !HAVE_STDIO_H */
Feb 6, 2006
Feb 6, 2006
364
Apr 26, 2001
Apr 26, 2001
365
366
/* Functions to read/write memory pointers */
May 7, 2006
May 7, 2006
367
static int SDLCALL mem_seek(SDL_RWops *context, int offset, int whence)
Apr 26, 2001
Apr 26, 2001
368
369
370
371
{
Uint8 *newpos;
switch (whence) {
Feb 6, 2006
Feb 6, 2006
372
case RW_SEEK_SET:
Apr 26, 2001
Apr 26, 2001
373
374
newpos = context->hidden.mem.base+offset;
break;
Feb 6, 2006
Feb 6, 2006
375
case RW_SEEK_CUR:
Apr 26, 2001
Apr 26, 2001
376
377
newpos = context->hidden.mem.here+offset;
break;
Feb 6, 2006
Feb 6, 2006
378
case RW_SEEK_END:
Apr 26, 2001
Apr 26, 2001
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
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);
}
May 7, 2006
May 7, 2006
394
static int SDLCALL mem_read(SDL_RWops *context, void *ptr, int size, int maxnum)
Apr 26, 2001
Apr 26, 2001
395
{
Mar 1, 2006
Mar 1, 2006
396
397
size_t total_bytes;
size_t mem_available;
Apr 26, 2001
Apr 26, 2001
398
Jun 24, 2005
Jun 24, 2005
399
total_bytes = (maxnum * size);
Mar 4, 2006
Mar 4, 2006
400
if ( (maxnum <= 0) || (size <= 0) || ((total_bytes / maxnum) != (size_t) size) ) {
Jun 24, 2005
Jun 24, 2005
401
return 0;
Apr 26, 2001
Apr 26, 2001
402
}
Jun 24, 2005
Jun 24, 2005
403
404
405
406
407
408
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
409
SDL_memcpy(ptr, context->hidden.mem.here, total_bytes);
Jun 24, 2005
Jun 24, 2005
410
411
412
context->hidden.mem.here += total_bytes;
return (total_bytes / size);
Apr 26, 2001
Apr 26, 2001
413
}
May 7, 2006
May 7, 2006
414
static int SDLCALL mem_write(SDL_RWops *context, const void *ptr, int size, int num)
Apr 26, 2001
Apr 26, 2001
415
416
417
418
{
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
419
SDL_memcpy(context->hidden.mem.here, ptr, num*size);
Apr 26, 2001
Apr 26, 2001
420
421
422
context->hidden.mem.here += num*size;
return(num);
}
May 7, 2006
May 7, 2006
423
static int SDLCALL mem_writeconst(SDL_RWops *context, const void *ptr, int size, int num)
Jan 4, 2004
Jan 4, 2004
424
425
426
427
{
SDL_SetError("Can't write to read-only memory");
return(-1);
}
May 7, 2006
May 7, 2006
428
static int SDLCALL mem_close(SDL_RWops *context)
Apr 26, 2001
Apr 26, 2001
429
430
{
if ( context ) {
Dec 12, 2005
Dec 12, 2005
431
SDL_FreeRW(context);
Apr 26, 2001
Apr 26, 2001
432
433
434
435
}
return(0);
}
Feb 27, 2006
Feb 27, 2006
436
Apr 26, 2001
Apr 26, 2001
437
438
/* Functions to create SDL_RWops structures from various data sources */
Feb 21, 2006
Feb 21, 2006
439
#ifdef __MACOS__
Apr 26, 2001
Apr 26, 2001
440
441
442
443
444
445
/*
* 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
446
447
int flen = SDL_strlen(file);
char *path = SDL_malloc(flen + 2);
Apr 26, 2001
Apr 26, 2001
448
449
450
451
452
453
454
455
456
457
458
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
459
const char *end = SDL_strchr(src, '/');
Apr 26, 2001
Apr 26, 2001
460
461
462
463
464
465
466
467
468
469
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
470
SDL_memcpy(dst, src, len);
Apr 26, 2001
Apr 26, 2001
471
472
473
474
475
476
477
478
479
480
dst += len;
}
if(end < file + flen)
*dst++ = ':';
}
src = end + 1;
}
*dst++ = '\0';
return path;
}
Feb 21, 2006
Feb 21, 2006
481
#endif /* __MACOS__ */
Apr 26, 2001
Apr 26, 2001
482
483
484
SDL_RWops *SDL_RWFromFile(const char *file, const char *mode)
{
Feb 6, 2006
Feb 6, 2006
485
SDL_RWops *rwops = NULL;
Mar 4, 2006
Mar 4, 2006
486
487
488
#ifdef HAVE_STDIO_H
FILE *fp = NULL;
#endif
Feb 27, 2006
Feb 27, 2006
489
490
491
492
493
if ( !file || !*file || !mode || !*mode ) {
SDL_SetError("SDL_RWFromFile(): No file or no mode specified");
return NULL;
}
Jun 24, 2007
Jun 24, 2007
494
#if defined(__WIN32__) && !defined(__SYMBIAN32__)
Feb 27, 2006
Feb 27, 2006
495
rwops = SDL_AllocRW();
Feb 27, 2006
Feb 27, 2006
496
497
if (!rwops)
return NULL; /* SDL_SetError already setup by SDL_AllocRW() */
Jul 10, 2007
Jul 10, 2007
498
if (win32_file_open(rwops,file,mode) < 0) {
Feb 27, 2006
Feb 27, 2006
499
500
501
502
503
504
505
506
507
SDL_FreeRW(rwops);
return NULL;
}
rwops->seek = win32_file_seek;
rwops->read = win32_file_read;
rwops->write = win32_file_write;
rwops->close = win32_file_close;
#elif HAVE_STDIO_H
Apr 26, 2001
Apr 26, 2001
508
Feb 21, 2006
Feb 21, 2006
509
#ifdef __MACOS__
Apr 26, 2001
Apr 26, 2001
510
511
512
{
char *mpath = unix_to_mac(file);
fp = fopen(mpath, mode);
Feb 7, 2006
Feb 7, 2006
513
SDL_free(mpath);
Apr 26, 2001
Apr 26, 2001
514
515
516
517
518
519
520
521
522
}
#else
fp = fopen(file, mode);
#endif
if ( fp == NULL ) {
SDL_SetError("Couldn't open %s", file);
} else {
rwops = SDL_RWFromFP(fp, 1);
}
Feb 27, 2006
Feb 27, 2006
523
524
#else
SDL_SetError("SDL not compiled with stdio support");
Feb 27, 2006
Feb 27, 2006
525
#endif /* !HAVE_STDIO_H */
Feb 27, 2006
Feb 27, 2006
526
Apr 26, 2001
Apr 26, 2001
527
528
529
return(rwops);
}
Feb 6, 2006
Feb 6, 2006
530
#ifdef HAVE_STDIO_H
Apr 26, 2001
Apr 26, 2001
531
532
SDL_RWops *SDL_RWFromFP(FILE *fp, int autoclose)
{
Feb 6, 2006
Feb 6, 2006
533
SDL_RWops *rwops = NULL;
Apr 26, 2001
Apr 26, 2001
534
535
536
537
538
539
540
541
542
543
544
545
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
546
#endif /* HAVE_STDIO_H */
Apr 26, 2001
Apr 26, 2001
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
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
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
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
582
583
584
585
SDL_RWops *SDL_AllocRW(void)
{
SDL_RWops *area;
Feb 7, 2006
Feb 7, 2006
586
area = (SDL_RWops *)SDL_malloc(sizeof *area);
Apr 26, 2001
Apr 26, 2001
587
588
589
590
591
592
593
594
if ( area == NULL ) {
SDL_OutOfMemory();
}
return(area);
}
void SDL_FreeRW(SDL_RWops *area)
{
Feb 7, 2006
Feb 7, 2006
595
SDL_free(area);
Apr 26, 2001
Apr 26, 2001
596
}
Feb 9, 2006
Feb 9, 2006
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
/* 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));
}