2008-09-03 11:49:02 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
2021-12-26 18:47:58 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2014-02-18 02:34:18 +01:00
|
|
|
*
|
2008-09-03 11:49:02 +00:00
|
|
|
* This program 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 General Public License for more details.
|
2014-02-18 02:34:18 +01:00
|
|
|
*
|
2008-09-03 11:49:02 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 18:47:58 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-09-03 11:49:02 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-08-07 21:33:32 +10:00
|
|
|
#if !defined(DISABLE_STDIO_FILESTREAM)
|
|
|
|
|
2010-10-30 21:27:42 +00:00
|
|
|
// Disable symbol overrides so that we can use FILE, fopen etc.
|
|
|
|
#define FORBIDDEN_SYMBOL_ALLOW_ALL
|
|
|
|
|
2021-05-06 15:20:54 -07:00
|
|
|
// for Windows unicode fopen(): _wfopen()
|
|
|
|
#if defined(WIN32) && defined(UNICODE)
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#include "backends/platform/sdl/win32/win32_wrapper.h"
|
|
|
|
#endif
|
|
|
|
|
2022-11-29 19:54:32 -05:00
|
|
|
// Include this after windows.h so we don't get a warning for redefining ARRAYSIZE
|
|
|
|
#include "backends/fs/stdiostream.h"
|
|
|
|
|
2008-09-03 11:49:02 +00:00
|
|
|
StdioStream::StdioStream(void *handle) : _handle(handle) {
|
|
|
|
assert(handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
StdioStream::~StdioStream() {
|
|
|
|
fclose((FILE *)_handle);
|
|
|
|
}
|
|
|
|
|
2008-09-14 22:28:53 +00:00
|
|
|
bool StdioStream::err() const {
|
|
|
|
return ferror((FILE *)_handle) != 0;
|
2008-09-03 11:49:02 +00:00
|
|
|
}
|
|
|
|
|
2008-09-14 22:28:53 +00:00
|
|
|
void StdioStream::clearErr() {
|
2008-09-03 11:49:02 +00:00
|
|
|
clearerr((FILE *)_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StdioStream::eos() const {
|
|
|
|
return feof((FILE *)_handle) != 0;
|
|
|
|
}
|
|
|
|
|
2021-07-03 20:30:41 -07:00
|
|
|
int64 StdioStream::pos() const {
|
2021-07-05 20:47:46 -07:00
|
|
|
#if defined(WIN32)
|
2021-07-03 20:30:41 -07:00
|
|
|
return _ftelli64((FILE *)_handle);
|
2022-11-27 00:46:33 +01:00
|
|
|
#elif defined(HAS_FSEEKO_OFFT_64)
|
2021-07-05 20:47:46 -07:00
|
|
|
return ftello((FILE *)_handle);
|
2022-11-27 00:46:33 +01:00
|
|
|
#elif defined(HAS_FSEEKO64)
|
|
|
|
return ftello64((FILE *)_handle);
|
2021-07-03 20:30:41 -07:00
|
|
|
#else
|
2008-09-03 11:49:02 +00:00
|
|
|
return ftell((FILE *)_handle);
|
2021-07-03 20:30:41 -07:00
|
|
|
#endif
|
2008-09-03 11:49:02 +00:00
|
|
|
}
|
|
|
|
|
2021-07-03 20:30:41 -07:00
|
|
|
int64 StdioStream::size() const {
|
2021-07-05 20:47:46 -07:00
|
|
|
#if defined(WIN32)
|
2021-07-03 20:30:41 -07:00
|
|
|
int64 oldPos = _ftelli64((FILE *)_handle);
|
|
|
|
_fseeki64((FILE *)_handle, 0, SEEK_END);
|
|
|
|
int64 length = _ftelli64((FILE *)_handle);
|
|
|
|
_fseeki64((FILE *)_handle, oldPos, SEEK_SET);
|
2022-11-27 00:46:33 +01:00
|
|
|
#elif defined(HAS_FSEEKO_OFFT_64)
|
2021-07-05 20:47:46 -07:00
|
|
|
int64 oldPos = ftello((FILE *)_handle);
|
|
|
|
fseeko((FILE *)_handle, 0, SEEK_END);
|
|
|
|
int64 length = ftello((FILE *)_handle);
|
|
|
|
fseeko((FILE *)_handle, oldPos, SEEK_SET);
|
2022-11-27 00:46:33 +01:00
|
|
|
#elif defined(HAS_FSEEKO64)
|
|
|
|
int64 oldPos = ftello64((FILE *)_handle);
|
|
|
|
fseeko64((FILE *)_handle, 0, SEEK_END);
|
|
|
|
int64 length = ftello64((FILE *)_handle);
|
|
|
|
fseeko64((FILE *)_handle, oldPos, SEEK_SET);
|
2021-07-03 20:30:41 -07:00
|
|
|
#else
|
|
|
|
int64 oldPos = ftell((FILE *)_handle);
|
2008-09-03 11:49:02 +00:00
|
|
|
fseek((FILE *)_handle, 0, SEEK_END);
|
2021-07-03 20:30:41 -07:00
|
|
|
int64 length = ftell((FILE *)_handle);
|
2008-09-03 11:49:02 +00:00
|
|
|
fseek((FILE *)_handle, oldPos, SEEK_SET);
|
2021-07-03 20:30:41 -07:00
|
|
|
#endif
|
2008-09-03 11:49:02 +00:00
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2021-07-03 20:30:41 -07:00
|
|
|
bool StdioStream::seek(int64 offs, int whence) {
|
2021-07-05 20:47:46 -07:00
|
|
|
#if defined(WIN32)
|
2021-07-03 20:30:41 -07:00
|
|
|
return _fseeki64((FILE *)_handle, offs, whence) == 0;
|
2022-11-27 00:46:33 +01:00
|
|
|
#elif defined(HAS_FSEEKO_OFFT_64)
|
2021-07-05 20:47:46 -07:00
|
|
|
return fseeko((FILE *)_handle, offs, whence) == 0;
|
2022-11-27 00:46:33 +01:00
|
|
|
#elif defined(HAS_FSEEKO64)
|
|
|
|
return fseeko64((FILE *)_handle, offs, whence) == 0;
|
2021-07-03 20:30:41 -07:00
|
|
|
#else
|
2008-09-13 16:51:46 +00:00
|
|
|
return fseek((FILE *)_handle, offs, whence) == 0;
|
2021-07-03 20:30:41 -07:00
|
|
|
#endif
|
2008-09-03 11:49:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32 StdioStream::read(void *ptr, uint32 len) {
|
2008-09-13 16:51:46 +00:00
|
|
|
return fread((byte *)ptr, 1, len, (FILE *)_handle);
|
2008-09-03 11:49:02 +00:00
|
|
|
}
|
|
|
|
|
2020-02-07 17:48:55 +01:00
|
|
|
bool StdioStream::setBufferSize(uint32 bufferSize) {
|
|
|
|
if (bufferSize != 0) {
|
|
|
|
return setvbuf((FILE *)_handle, nullptr, _IOFBF, bufferSize) == 0;
|
|
|
|
} else {
|
|
|
|
return setvbuf((FILE *)_handle, nullptr, _IONBF, 0) == 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-03 11:49:02 +00:00
|
|
|
uint32 StdioStream::write(const void *ptr, uint32 len) {
|
2008-09-13 16:51:46 +00:00
|
|
|
return fwrite(ptr, 1, len, (FILE *)_handle);
|
2008-09-03 11:49:02 +00:00
|
|
|
}
|
|
|
|
|
2008-09-13 16:51:46 +00:00
|
|
|
bool StdioStream::flush() {
|
|
|
|
return fflush((FILE *)_handle) == 0;
|
2008-09-03 11:49:02 +00:00
|
|
|
}
|
2008-09-03 12:56:46 +00:00
|
|
|
|
|
|
|
StdioStream *StdioStream::makeFromPath(const Common::String &path, bool writeMode) {
|
2021-05-06 15:20:54 -07:00
|
|
|
#if defined(WIN32) && defined(UNICODE)
|
|
|
|
wchar_t *wPath = Win32::stringToTchar(path);
|
|
|
|
FILE *handle = _wfopen(wPath, writeMode ? L"wb" : L"rb");
|
|
|
|
free(wPath);
|
2022-11-27 00:46:33 +01:00
|
|
|
#elif defined(HAS_FSEEKO64)
|
|
|
|
FILE *handle = fopen64(path.c_str(), writeMode ? "wb" : "rb");
|
2021-05-06 15:20:54 -07:00
|
|
|
#else
|
2008-09-03 12:56:46 +00:00
|
|
|
FILE *handle = fopen(path.c_str(), writeMode ? "wb" : "rb");
|
2021-05-06 15:20:54 -07:00
|
|
|
#endif
|
2008-09-05 11:59:33 +00:00
|
|
|
|
2008-09-03 12:56:46 +00:00
|
|
|
if (handle)
|
|
|
|
return new StdioStream(handle);
|
2021-11-13 23:33:13 +02:00
|
|
|
return nullptr;
|
2008-09-03 12:56:46 +00:00
|
|
|
}
|
2011-08-07 21:33:32 +10:00
|
|
|
|
|
|
|
#endif
|