12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022 |
- /*
- Simple DirectMedia Layer
- Copyright (C) 1997-2023 Sam Lantinga <[email protected]>
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
- 2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
- 3. This notice may not be removed or altered from any source distribution.
- */
- #include "SDL_internal.h"
- #if defined(__WIN32__) || defined(__GDK__) || defined(__WINRT__)
- #include "../core/windows/SDL_windows.h"
- #endif
- #ifdef HAVE_STDIO_H
- #include <stdio.h>
- #endif
- #ifdef HAVE_LIMITS_H
- #include <limits.h>
- #endif
- /* This file provides a general interface for SDL to read and write
- data sources. It can easily be extended to files, memory, etc.
- */
- #ifdef __APPLE__
- #include "cocoa/SDL_rwopsbundlesupport.h"
- #endif /* __APPLE__ */
- #ifdef __3DS__
- #include "n3ds/SDL_rwopsromfs.h"
- #endif /* __3DS__ */
- #ifdef __ANDROID__
- #include "../core/android/SDL_android.h"
- #endif
- #if defined(__WIN32__) || defined(__GDK__) || defined(__WINRT__)
- /* Functions to read/write Win32 API file pointers */
- #ifndef INVALID_SET_FILE_POINTER
- #define INVALID_SET_FILE_POINTER 0xFFFFFFFF
- #endif
- #define READAHEAD_BUFFER_SIZE 1024
- static int SDLCALL windows_file_open(SDL_RWops *context, const char *filename, const char *mode)
- {
- #if !defined(__XBOXONE__) && !defined(__XBOXSERIES__) && !defined(__WINRT__)
- UINT old_error_mode;
- #endif
- HANDLE h;
- DWORD r_right, w_right;
- DWORD must_exist, truncate;
- int a_mode;
- context->hidden.windowsio.h = INVALID_HANDLE_VALUE; /* mark this as unusable */
- context->hidden.windowsio.buffer.data = NULL;
- context->hidden.windowsio.buffer.size = 0;
- context->hidden.windowsio.buffer.left = 0;
- /* "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;
- a_mode = (SDL_strchr(mode, 'a') != NULL) ? OPEN_ALWAYS : 0;
- w_right = (a_mode || SDL_strchr(mode, '+') || truncate) ? GENERIC_WRITE : 0;
- if (!r_right && !w_right) {
- return -1; /* inconsistent mode */
- }
- /* failed (invalid call) */
- context->hidden.windowsio.buffer.data =
- (char *)SDL_malloc(READAHEAD_BUFFER_SIZE);
- if (!context->hidden.windowsio.buffer.data) {
- return SDL_OutOfMemory();
- }
- #if !defined(__XBOXONE__) && !defined(__XBOXSERIES__) && !defined(__WINRT__)
- /* Do not open a dialog box if failure */
- old_error_mode =
- SetErrorMode(SEM_NOOPENFILEERRORBOX | SEM_FAILCRITICALERRORS);
- #endif
- {
- LPTSTR tstr = WIN_UTF8ToString(filename);
- #if defined(__WINRT__)
- CREATEFILE2_EXTENDED_PARAMETERS extparams;
- SDL_zero(extparams);
- extparams.dwSize = sizeof(extparams);
- extparams.dwFileAttributes = FILE_ATTRIBUTE_NORMAL;
- h = CreateFile2(tstr,
- (w_right | r_right),
- (w_right) ? 0 : FILE_SHARE_READ,
- (must_exist | truncate | a_mode),
- &extparams);
- #else
- h = CreateFile(tstr,
- (w_right | r_right),
- (w_right) ? 0 : FILE_SHARE_READ,
- NULL,
- (must_exist | truncate | a_mode),
- FILE_ATTRIBUTE_NORMAL,
- NULL);
- #endif
- SDL_free(tstr);
- }
- #if !defined(__XBOXONE__) && !defined(__XBOXSERIES__) && !defined(__WINRT__)
- /* restore old behavior */
- SetErrorMode(old_error_mode);
- #endif
- if (h == INVALID_HANDLE_VALUE) {
- SDL_free(context->hidden.windowsio.buffer.data);
- context->hidden.windowsio.buffer.data = NULL;
- SDL_SetError("Couldn't open %s", filename);
- return -2; /* failed (CreateFile) */
- }
- context->hidden.windowsio.h = h;
- context->hidden.windowsio.append = a_mode ? SDL_TRUE : SDL_FALSE;
- return 0; /* ok */
- }
- static Sint64 SDLCALL windows_file_size(SDL_RWops *context)
- {
- LARGE_INTEGER size;
- if (!GetFileSizeEx(context->hidden.windowsio.h, &size)) {
- return WIN_SetError("windows_file_size");
- }
- return size.QuadPart;
- }
- static Sint64 SDLCALL windows_file_seek(SDL_RWops *context, Sint64 offset, int whence)
- {
- DWORD windowswhence;
- LARGE_INTEGER windowsoffset;
- /* FIXME: We may be able to satisfy the seek within buffered data */
- if (whence == SDL_RW_SEEK_CUR && context->hidden.windowsio.buffer.left) {
- offset -= context->hidden.windowsio.buffer.left;
- }
- context->hidden.windowsio.buffer.left = 0;
- switch (whence) {
- case SDL_RW_SEEK_SET:
- windowswhence = FILE_BEGIN;
- break;
- case SDL_RW_SEEK_CUR:
- windowswhence = FILE_CURRENT;
- break;
- case SDL_RW_SEEK_END:
- windowswhence = FILE_END;
- break;
- default:
- return SDL_SetError("windows_file_seek: Unknown value for 'whence'");
- }
- windowsoffset.QuadPart = offset;
- if (!SetFilePointerEx(context->hidden.windowsio.h, windowsoffset, &windowsoffset, windowswhence)) {
- return WIN_SetError("windows_file_seek");
- }
- return windowsoffset.QuadPart;
- }
- static size_t SDLCALL windows_file_read(SDL_RWops *context, void *ptr, size_t size)
- {
- size_t total_need = size;
- size_t total_read = 0;
- size_t read_ahead;
- DWORD bytes;
- if (context->hidden.windowsio.buffer.left > 0) {
- void *data = (char *)context->hidden.windowsio.buffer.data +
- context->hidden.windowsio.buffer.size -
- context->hidden.windowsio.buffer.left;
- read_ahead = SDL_min(total_need, context->hidden.windowsio.buffer.left);
- SDL_memcpy(ptr, data, read_ahead);
- context->hidden.windowsio.buffer.left -= read_ahead;
- if (read_ahead == total_need) {
- return size;
- }
- ptr = (char *)ptr + read_ahead;
- total_need -= read_ahead;
- total_read += read_ahead;
- }
- if (total_need < READAHEAD_BUFFER_SIZE) {
- if (!ReadFile(context->hidden.windowsio.h, context->hidden.windowsio.buffer.data,
- READAHEAD_BUFFER_SIZE, &bytes, NULL)) {
- SDL_Error(SDL_EFREAD);
- return 0;
- }
- read_ahead = SDL_min(total_need, bytes);
- SDL_memcpy(ptr, context->hidden.windowsio.buffer.data, read_ahead);
- context->hidden.windowsio.buffer.size = bytes;
- context->hidden.windowsio.buffer.left = bytes - read_ahead;
- total_read += read_ahead;
- } else {
- if (!ReadFile(context->hidden.windowsio.h, ptr, (DWORD)total_need, &bytes, NULL)) {
- SDL_Error(SDL_EFREAD);
- return 0;
- }
- total_read += bytes;
- }
- return total_read;
- }
- static size_t SDLCALL windows_file_write(SDL_RWops *context, const void *ptr, size_t size)
- {
- const size_t total_bytes = size;
- DWORD bytes;
- if (context->hidden.windowsio.buffer.left) {
- if (!SetFilePointer(context->hidden.windowsio.h,
- -(LONG)context->hidden.windowsio.buffer.left, NULL,
- FILE_CURRENT)) {
- SDL_Error(SDL_EFSEEK);
- return 0;
- }
- context->hidden.windowsio.buffer.left = 0;
- }
- /* if in append mode, we must go to the EOF before write */
- if (context->hidden.windowsio.append) {
- LARGE_INTEGER windowsoffset;
- windowsoffset.QuadPart = 0;
- if (!SetFilePointerEx(context->hidden.windowsio.h, windowsoffset, &windowsoffset, FILE_END)) {
- SDL_Error(SDL_EFSEEK);
- return 0;
- }
- }
- if (!WriteFile(context->hidden.windowsio.h, ptr, (DWORD)total_bytes, &bytes, NULL)) {
- SDL_Error(SDL_EFWRITE);
- return 0;
- }
- return bytes;
- }
- static int SDLCALL windows_file_close(SDL_RWops *context)
- {
- if (context->hidden.windowsio.h != INVALID_HANDLE_VALUE) {
- CloseHandle(context->hidden.windowsio.h);
- context->hidden.windowsio.h = INVALID_HANDLE_VALUE; /* to be sure */
- }
- if (context->hidden.windowsio.buffer.data) {
- SDL_free(context->hidden.windowsio.buffer.data);
- context->hidden.windowsio.buffer.data = NULL;
- }
- SDL_DestroyRW(context);
- return 0;
- }
- #endif /* defined(__WIN32__) || defined(__GDK__) */
- #if defined(HAVE_STDIO_H) && !(defined(__WIN32__) || defined(__GDK__))
- /* Functions to read/write stdio file pointers. Not used for windows. */
- #ifdef HAVE_FOPEN64
- #define fopen fopen64
- #endif
- #ifdef HAVE_FSEEKO64
- #define fseek_off_t off64_t
- #define fseek fseeko64
- #define ftell ftello64
- #elif defined(HAVE_FSEEKO)
- #if defined(OFF_MIN) && defined(OFF_MAX)
- #define FSEEK_OFF_MIN OFF_MIN
- #define FSEEK_OFF_MAX OFF_MAX
- #elif defined(HAVE_LIMITS_H)
- /* POSIX doesn't specify the minimum and maximum macros for off_t so
- * we have to improvise and dance around implementation-defined
- * behavior. This may fail if the off_t type has padding bits or
- * is not a two's-complement representation. The compilers will detect
- * and eliminate the dead code if off_t has 64 bits.
- */
- #define FSEEK_OFF_MAX (((((off_t)1 << (sizeof(off_t) * CHAR_BIT - 2)) - 1) << 1) + 1)
- #define FSEEK_OFF_MIN (-(FSEEK_OFF_MAX)-1)
- #endif
- #define fseek_off_t off_t
- #define fseek fseeko
- #define ftell ftello
- #elif defined(HAVE__FSEEKI64)
- #define fseek_off_t __int64
- #define fseek _fseeki64
- #define ftell _ftelli64
- #else
- #ifdef HAVE_LIMITS_H
- #define FSEEK_OFF_MIN LONG_MIN
- #define FSEEK_OFF_MAX LONG_MAX
- #endif
- #define fseek_off_t long
- #endif
- static Sint64 SDLCALL stdio_seek(SDL_RWops *context, Sint64 offset, int whence)
- {
- int stdiowhence;
- switch (whence) {
- case SDL_RW_SEEK_SET:
- stdiowhence = SEEK_SET;
- break;
- case SDL_RW_SEEK_CUR:
- stdiowhence = SEEK_CUR;
- break;
- case SDL_RW_SEEK_END:
- stdiowhence = SEEK_END;
- break;
- default:
- return SDL_SetError("Unknown value for 'whence'");
- }
- #if defined(FSEEK_OFF_MIN) && defined(FSEEK_OFF_MAX)
- if (offset < (Sint64)(FSEEK_OFF_MIN) || offset > (Sint64)(FSEEK_OFF_MAX)) {
- return SDL_SetError("Seek offset out of range");
- }
- #endif
- if (fseek((FILE *)context->hidden.stdio.fp, (fseek_off_t)offset, stdiowhence) == 0) {
- Sint64 pos = ftell((FILE *)context->hidden.stdio.fp);
- if (pos < 0) {
- return SDL_SetError("Couldn't get stream offset");
- }
- return pos;
- }
- return SDL_Error(SDL_EFSEEK);
- }
- static size_t SDLCALL stdio_read(SDL_RWops *context, void *ptr, size_t size)
- {
- size_t bytes;
- bytes = fread(ptr, 1, size, (FILE *)context->hidden.stdio.fp);
- if (bytes == 0 && ferror((FILE *)context->hidden.stdio.fp)) {
- SDL_Error(SDL_EFREAD);
- }
- return bytes;
- }
- static size_t SDLCALL stdio_write(SDL_RWops *context, const void *ptr, size_t size)
- {
- size_t bytes;
- bytes = fwrite(ptr, 1, size, (FILE *)context->hidden.stdio.fp);
- if (bytes == 0 && ferror((FILE *)context->hidden.stdio.fp)) {
- SDL_Error(SDL_EFWRITE);
- }
- return bytes;
- }
- static int SDLCALL stdio_close(SDL_RWops *context)
- {
- int status = 0;
- if (context->hidden.stdio.autoclose) {
- if (fclose((FILE *)context->hidden.stdio.fp) != 0) {
- status = SDL_Error(SDL_EFWRITE);
- }
- }
- SDL_DestroyRW(context);
- return status;
- }
- static SDL_RWops *SDL_RWFromFP(void *fp, SDL_bool autoclose)
- {
- SDL_RWops *rwops = NULL;
- rwops = SDL_CreateRW();
- 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;
- rwops->type = SDL_RWOPS_STDFILE;
- }
- return rwops;
- }
- #endif /* !HAVE_STDIO_H && !(__WIN32__ || __GDK__) */
- /* Functions to read/write memory pointers */
- static Sint64 SDLCALL mem_size(SDL_RWops *context)
- {
- return (context->hidden.mem.stop - context->hidden.mem.base);
- }
- static Sint64 SDLCALL mem_seek(SDL_RWops *context, Sint64 offset, int whence)
- {
- Uint8 *newpos;
- switch (whence) {
- case SDL_RW_SEEK_SET:
- newpos = context->hidden.mem.base + offset;
- break;
- case SDL_RW_SEEK_CUR:
- newpos = context->hidden.mem.here + offset;
- break;
- case SDL_RW_SEEK_END:
- newpos = context->hidden.mem.stop + offset;
- break;
- default:
- return SDL_SetError("Unknown value for 'whence'");
- }
- 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 (Sint64)(context->hidden.mem.here - context->hidden.mem.base);
- }
- static size_t mem_io(SDL_RWops *context, void *dst, const void *src, size_t size)
- {
- const size_t mem_available = (context->hidden.mem.stop - context->hidden.mem.here);
- if (size > mem_available) {
- size = mem_available;
- }
- SDL_memcpy(dst, src, size);
- context->hidden.mem.here += size;
- return size;
- }
- static size_t SDLCALL mem_read(SDL_RWops *context, void *ptr, size_t size)
- {
- return mem_io(context, ptr, context->hidden.mem.here, size);
- }
- static size_t SDLCALL mem_write(SDL_RWops *context, const void *ptr, size_t size)
- {
- return mem_io(context, context->hidden.mem.here, ptr, size);
- }
- /* Functions to create SDL_RWops structures from various data sources */
- SDL_RWops *SDL_RWFromFile(const char *file, const char *mode)
- {
- SDL_RWops *rwops = NULL;
- if (file == NULL || !*file || mode == NULL || !*mode) {
- SDL_SetError("SDL_RWFromFile(): No file or no mode specified");
- return NULL;
- }
- #ifdef __ANDROID__
- #ifdef HAVE_STDIO_H
- /* Try to open the file on the filesystem first */
- if (*file == '/') {
- FILE *fp = fopen(file, mode);
- if (fp) {
- return SDL_RWFromFP(fp, 1);
- }
- } else {
- /* Try opening it from internal storage if it's a relative path */
- char *path;
- FILE *fp;
- /* !!! FIXME: why not just "char path[PATH_MAX];" ? */
- path = SDL_stack_alloc(char, PATH_MAX);
- if (path) {
- SDL_snprintf(path, PATH_MAX, "%s/%s",
- SDL_AndroidGetInternalStoragePath(), file);
- fp = fopen(path, mode);
- SDL_stack_free(path);
- if (fp) {
- return SDL_RWFromFP(fp, 1);
- }
- }
- }
- #endif /* HAVE_STDIO_H */
- /* Try to open the file from the asset system */
- rwops = SDL_CreateRW();
- if (rwops == NULL) {
- return NULL; /* SDL_SetError already setup by SDL_CreateRW() */
- }
- if (Android_JNI_FileOpen(rwops, file, mode) < 0) {
- SDL_DestroyRW(rwops);
- return NULL;
- }
- rwops->size = Android_JNI_FileSize;
- rwops->seek = Android_JNI_FileSeek;
- rwops->read = Android_JNI_FileRead;
- rwops->write = Android_JNI_FileWrite;
- rwops->close = Android_JNI_FileClose;
- rwops->type = SDL_RWOPS_JNIFILE;
- #elif defined(__WIN32__) || defined(__GDK__) || defined(__WINRT__)
- rwops = SDL_CreateRW();
- if (rwops == NULL) {
- return NULL; /* SDL_SetError already setup by SDL_CreateRW() */
- }
- if (windows_file_open(rwops, file, mode) < 0) {
- SDL_DestroyRW(rwops);
- return NULL;
- }
- rwops->size = windows_file_size;
- rwops->seek = windows_file_seek;
- rwops->read = windows_file_read;
- rwops->write = windows_file_write;
- rwops->close = windows_file_close;
- rwops->type = SDL_RWOPS_WINFILE;
- #elif defined(HAVE_STDIO_H)
- {
- #if defined(__APPLE__) && !defined(SDL_FILE_DISABLED) // TODO: add dummy?
- FILE *fp = SDL_OpenFPFromBundleOrFallback(file, mode);
- #elif defined(__WINRT__)
- FILE *fp = NULL;
- fopen_s(&fp, file, mode);
- #elif defined(__3DS__)
- FILE *fp = N3DS_FileOpen(file, mode);
- #else
- FILE *fp = fopen(file, mode);
- #endif
- if (fp == NULL) {
- SDL_SetError("Couldn't open %s", file);
- } else {
- rwops = SDL_RWFromFP(fp, SDL_TRUE);
- }
- }
- #else
- SDL_SetError("SDL not compiled with stdio support");
- #endif /* !HAVE_STDIO_H */
- return rwops;
- }
- SDL_RWops *SDL_RWFromMem(void *mem, size_t size)
- {
- SDL_RWops *rwops = NULL;
- if (mem == NULL) {
- SDL_InvalidParamError("mem");
- return NULL;
- }
- if (!size) {
- SDL_InvalidParamError("size");
- return NULL;
- }
- rwops = SDL_CreateRW();
- if (rwops != NULL) {
- rwops->size = mem_size;
- rwops->seek = mem_seek;
- rwops->read = mem_read;
- rwops->write = mem_write;
- rwops->hidden.mem.base = (Uint8 *)mem;
- rwops->hidden.mem.here = rwops->hidden.mem.base;
- rwops->hidden.mem.stop = rwops->hidden.mem.base + size;
- rwops->type = SDL_RWOPS_MEMORY;
- }
- return rwops;
- }
- SDL_RWops *SDL_RWFromConstMem(const void *mem, size_t size)
- {
- SDL_RWops *rwops = NULL;
- if (mem == NULL) {
- SDL_InvalidParamError("mem");
- return NULL;
- }
- if (!size) {
- SDL_InvalidParamError("size");
- return NULL;
- }
- rwops = SDL_CreateRW();
- if (rwops != NULL) {
- rwops->size = mem_size;
- rwops->seek = mem_seek;
- rwops->read = mem_read;
- rwops->hidden.mem.base = (Uint8 *)mem;
- rwops->hidden.mem.here = rwops->hidden.mem.base;
- rwops->hidden.mem.stop = rwops->hidden.mem.base + size;
- rwops->type = SDL_RWOPS_MEMORY_RO;
- }
- return rwops;
- }
- SDL_RWops *SDL_CreateRW(void)
- {
- SDL_RWops *context;
- context = (SDL_RWops *)SDL_calloc(1, sizeof(*context));
- if (context == NULL) {
- SDL_OutOfMemory();
- } else {
- context->type = SDL_RWOPS_UNKNOWN;
- }
- return context;
- }
- void SDL_DestroyRW(SDL_RWops *context)
- {
- SDL_DestroyProperties(context->props);
- SDL_free(context);
- }
- /* Load all the data from an SDL data stream */
- void *SDL_LoadFile_RW(SDL_RWops *src, size_t *datasize, SDL_bool freesrc)
- {
- const int FILE_CHUNK_SIZE = 1024;
- Sint64 size, size_total;
- size_t size_read;
- char *data = NULL, *newdata;
- SDL_bool loading_chunks = SDL_FALSE;
- if (src == NULL) {
- SDL_InvalidParamError("src");
- return NULL;
- }
- size = SDL_RWsize(src);
- if (size < 0) {
- size = FILE_CHUNK_SIZE;
- loading_chunks = SDL_TRUE;
- }
- if (size >= SDL_SIZE_MAX) {
- SDL_OutOfMemory();
- goto done;
- }
- data = (char *)SDL_malloc((size_t)(size + 1));
- if (!data) {
- SDL_OutOfMemory();
- goto done;
- }
- size_total = 0;
- for (;;) {
- if (loading_chunks) {
- if ((size_total + FILE_CHUNK_SIZE) > size) {
- size = (size_total + FILE_CHUNK_SIZE);
- if (size >= SDL_SIZE_MAX) {
- newdata = NULL;
- } else {
- newdata = SDL_realloc(data, (size_t)(size + 1));
- }
- if (newdata == NULL) {
- SDL_free(data);
- data = NULL;
- SDL_OutOfMemory();
- goto done;
- }
- data = newdata;
- }
- }
- size_read = SDL_RWread(src, data + size_total, (size_t)(size - size_total));
- if (size_read > 0) {
- size_total += size_read;
- continue;
- }
- /* The stream status will remain set for the caller to check */
- break;
- }
- if (datasize) {
- *datasize = (size_t)size_total;
- }
- data[size_total] = '\0';
- done:
- if (freesrc && src) {
- SDL_RWclose(src);
- }
- return data;
- }
- void *SDL_LoadFile(const char *file, size_t *datasize)
- {
- return SDL_LoadFile_RW(SDL_RWFromFile(file, "rb"), datasize, SDL_TRUE);
- }
- SDL_PropertiesID SDL_GetRWProperties(SDL_RWops *context)
- {
- if (!context) {
- SDL_InvalidParamError("context");
- return 0;
- }
- if (context->props == 0) {
- context->props = SDL_CreateProperties();
- }
- return context->props;
- }
- Sint64 SDL_RWsize(SDL_RWops *context)
- {
- if (!context) {
- return SDL_InvalidParamError("context");
- }
- if (!context->size) {
- Sint64 pos, size;
- pos = SDL_RWseek(context, 0, SDL_RW_SEEK_CUR);
- if (pos < 0) {
- return -1;
- }
- size = SDL_RWseek(context, 0, SDL_RW_SEEK_END);
- SDL_RWseek(context, pos, SDL_RW_SEEK_SET);
- return size;
- }
- return context->size(context);
- }
- Sint64 SDL_RWseek(SDL_RWops *context, Sint64 offset, int whence)
- {
- if (!context) {
- return SDL_InvalidParamError("context");
- }
- if (!context->seek) {
- return SDL_Unsupported();
- }
- return context->seek(context, offset, whence);
- }
- Sint64 SDL_RWtell(SDL_RWops *context)
- {
- return SDL_RWseek(context, 0, SDL_RW_SEEK_CUR);
- }
- size_t SDL_RWread(SDL_RWops *context, void *ptr, size_t size)
- {
- size_t bytes;
- if (!context) {
- SDL_InvalidParamError("context");
- return 0;
- }
- if (!context->read) {
- context->status = SDL_RWOPS_STATUS_WRITEONLY;
- SDL_Unsupported();
- return 0;
- }
- context->status = SDL_RWOPS_STATUS_READY;
- SDL_ClearError();
- if (size == 0) {
- return 0;
- }
- bytes = context->read(context, ptr, size);
- if (bytes == 0 && context->status == SDL_RWOPS_STATUS_READY) {
- if (*SDL_GetError()) {
- context->status = SDL_RWOPS_STATUS_ERROR;
- } else {
- context->status = SDL_RWOPS_STATUS_EOF;
- }
- }
- return bytes;
- }
- size_t SDL_RWwrite(SDL_RWops *context, const void *ptr, size_t size)
- {
- size_t bytes;
- if (!context) {
- SDL_InvalidParamError("context");
- return 0;
- }
- if (!context->write) {
- context->status = SDL_RWOPS_STATUS_READONLY;
- SDL_Unsupported();
- return 0;
- }
- context->status = SDL_RWOPS_STATUS_READY;
- SDL_ClearError();
- if (size == 0) {
- return 0;
- }
- bytes = context->write(context, ptr, size);
- if (bytes == 0 && context->status == SDL_RWOPS_STATUS_READY) {
- context->status = SDL_RWOPS_STATUS_ERROR;
- }
- return bytes;
- }
- int SDL_RWclose(SDL_RWops *context)
- {
- if (!context) {
- return SDL_InvalidParamError("context");
- }
- if (!context->close) {
- SDL_DestroyRW(context);
- return 0;
- }
- return context->close(context);
- }
- /* Functions for dynamically reading and writing endian-specific values */
- SDL_bool SDL_ReadU8(SDL_RWops *src, Uint8 *value)
- {
- Uint8 data = 0;
- SDL_bool result = SDL_FALSE;
- if (SDL_RWread(src, &data, sizeof(data)) == sizeof(data)) {
- result = SDL_TRUE;
- }
- if (value) {
- *value = data;
- }
- return result;
- }
- SDL_bool SDL_ReadU16LE(SDL_RWops *src, Uint16 *value)
- {
- Uint16 data = 0;
- SDL_bool result = SDL_FALSE;
- if (SDL_RWread(src, &data, sizeof(data)) == sizeof(data)) {
- result = SDL_TRUE;
- }
- if (value) {
- *value = SDL_SwapLE16(data);
- }
- return result;
- }
- SDL_bool SDL_ReadS16LE(SDL_RWops *src, Sint16 *value)
- {
- return SDL_ReadU16LE(src, (Uint16 *)value);
- }
- SDL_bool SDL_ReadU16BE(SDL_RWops *src, Uint16 *value)
- {
- Uint16 data = 0;
- SDL_bool result = SDL_FALSE;
- if (SDL_RWread(src, &data, sizeof(data)) == sizeof(data)) {
- result = SDL_TRUE;
- }
- if (value) {
- *value = SDL_SwapBE16(data);
- }
- return result;
- }
- SDL_bool SDL_ReadS16BE(SDL_RWops *src, Sint16 *value)
- {
- return SDL_ReadU16BE(src, (Uint16 *)value);
- }
- SDL_bool SDL_ReadU32LE(SDL_RWops *src, Uint32 *value)
- {
- Uint32 data = 0;
- SDL_bool result = SDL_FALSE;
- if (SDL_RWread(src, &data, sizeof(data)) == sizeof(data)) {
- result = SDL_TRUE;
- }
- if (value) {
- *value = SDL_SwapLE32(data);
- }
- return result;
- }
- SDL_bool SDL_ReadS32LE(SDL_RWops *src, Sint32 *value)
- {
- return SDL_ReadU32LE(src, (Uint32 *)value);
- }
- SDL_bool SDL_ReadU32BE(SDL_RWops *src, Uint32 *value)
- {
- Uint32 data = 0;
- SDL_bool result = SDL_FALSE;
- if (SDL_RWread(src, &data, sizeof(data)) == sizeof(data)) {
- result = SDL_TRUE;
- }
- if (value) {
- *value = SDL_SwapBE32(data);
- }
- return result;
- }
- SDL_bool SDL_ReadS32BE(SDL_RWops *src, Sint32 *value)
- {
- return SDL_ReadU32BE(src, (Uint32 *)value);
- }
- SDL_bool SDL_ReadU64LE(SDL_RWops *src, Uint64 *value)
- {
- Uint64 data = 0;
- SDL_bool result = SDL_FALSE;
- if (SDL_RWread(src, &data, sizeof(data)) == sizeof(data)) {
- result = SDL_TRUE;
- }
- if (value) {
- *value = SDL_SwapLE64(data);
- }
- return result;
- }
- SDL_bool SDL_ReadS64LE(SDL_RWops *src, Sint64 *value)
- {
- return SDL_ReadU64LE(src, (Uint64 *)value);
- }
- SDL_bool SDL_ReadU64BE(SDL_RWops *src, Uint64 *value)
- {
- Uint64 data = 0;
- SDL_bool result = SDL_FALSE;
- if (SDL_RWread(src, &data, sizeof(data)) == sizeof(data)) {
- result = SDL_TRUE;
- }
- if (value) {
- *value = SDL_SwapBE64(data);
- }
- return result;
- }
- SDL_bool SDL_ReadS64BE(SDL_RWops *src, Sint64 *value)
- {
- return SDL_ReadU64BE(src, (Uint64 *)value);
- }
- SDL_bool SDL_WriteU8(SDL_RWops *dst, Uint8 value)
- {
- return (SDL_RWwrite(dst, &value, sizeof(value)) == sizeof(value));
- }
- SDL_bool SDL_WriteU16LE(SDL_RWops *dst, Uint16 value)
- {
- const Uint16 swapped = SDL_SwapLE16(value);
- return (SDL_RWwrite(dst, &swapped, sizeof(swapped)) == sizeof(swapped));
- }
- SDL_bool SDL_WriteS16LE(SDL_RWops *dst, Sint16 value)
- {
- return SDL_WriteU16LE(dst, (Uint16)value);
- }
- SDL_bool SDL_WriteU16BE(SDL_RWops *dst, Uint16 value)
- {
- const Uint16 swapped = SDL_SwapBE16(value);
- return (SDL_RWwrite(dst, &swapped, sizeof(swapped)) == sizeof(swapped));
- }
- SDL_bool SDL_WriteS16BE(SDL_RWops *dst, Sint16 value)
- {
- return SDL_WriteU16BE(dst, (Uint16)value);
- }
- SDL_bool SDL_WriteU32LE(SDL_RWops *dst, Uint32 value)
- {
- const Uint32 swapped = SDL_SwapLE32(value);
- return (SDL_RWwrite(dst, &swapped, sizeof(swapped)) == sizeof(swapped));
- }
- SDL_bool SDL_WriteS32LE(SDL_RWops *dst, Sint32 value)
- {
- return SDL_WriteU32LE(dst, (Uint32)value);
- }
- SDL_bool SDL_WriteU32BE(SDL_RWops *dst, Uint32 value)
- {
- const Uint32 swapped = SDL_SwapBE32(value);
- return (SDL_RWwrite(dst, &swapped, sizeof(swapped)) == sizeof(swapped));
- }
- SDL_bool SDL_WriteS32BE(SDL_RWops *dst, Sint32 value)
- {
- return SDL_WriteU32BE(dst, (Uint32)value);
- }
- SDL_bool SDL_WriteU64LE(SDL_RWops *dst, Uint64 value)
- {
- const Uint64 swapped = SDL_SwapLE64(value);
- return (SDL_RWwrite(dst, &swapped, sizeof(swapped)) == sizeof(swapped));
- }
- SDL_bool SDL_WriteS64LE(SDL_RWops *dst, Sint64 value)
- {
- return SDL_WriteU64LE(dst, (Uint64)value);
- }
- SDL_bool SDL_WriteU64BE(SDL_RWops *dst, Uint64 value)
- {
- const Uint64 swapped = SDL_SwapBE64(value);
- return (SDL_RWwrite(dst, &swapped, sizeof(swapped)) == sizeof(swapped));
- }
- SDL_bool SDL_WriteS64BE(SDL_RWops *dst, Sint64 value)
- {
- return SDL_WriteU64BE(dst, (Uint64)value);
- }
|