2015-05-19 03:48:29 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2024-02-23 21:30:05 +00:00
|
|
|
Copyright (c) 2006-2024, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
2015-05-19 03:48:29 +00:00
|
|
|
conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the assimp team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the assimp team.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 03:52:10 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2015-05-19 03:48:29 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 03:52:10 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 03:52:10 +00:00
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2015-05-19 03:48:29 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
/** @file DefaultIOStream.cpp
|
2015-05-19 03:52:10 +00:00
|
|
|
* @brief Default File I/O implementation for #Importer
|
2015-05-19 03:48:29 +00:00
|
|
|
*/
|
|
|
|
|
2017-02-28 02:31:56 +00:00
|
|
|
#include <assimp/DefaultIOStream.h>
|
2020-06-23 19:05:42 +00:00
|
|
|
#include <assimp/ai_assert.h>
|
2015-05-19 03:48:29 +00:00
|
|
|
#include <sys/stat.h>
|
2020-06-23 19:05:42 +00:00
|
|
|
#include <sys/types.h>
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
using namespace Assimp;
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
namespace {
|
2019-11-05 17:11:56 +00:00
|
|
|
|
2020-08-03 13:54:19 +00:00
|
|
|
template <size_t sizeOfPointer>
|
|
|
|
inline size_t select_ftell(FILE *file) {
|
|
|
|
return ::ftell(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <size_t sizeOfPointer>
|
|
|
|
inline int select_fseek(FILE *file, int64_t offset, int origin) {
|
|
|
|
return ::fseek(file, static_cast<long>(offset), origin);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-29 11:28:51 +00:00
|
|
|
|
2022-05-25 16:18:42 +00:00
|
|
|
#if defined _WIN32 && (!defined __GNUC__ || !defined __CLANG__ && __MSVCRT_VERSION__ >= 0x0601)
|
2020-06-23 19:05:42 +00:00
|
|
|
template <>
|
2020-08-03 07:30:02 +00:00
|
|
|
inline size_t select_ftell<8>(FILE *file) {
|
2020-06-23 19:05:42 +00:00
|
|
|
return (size_t)::_ftelli64(file);
|
|
|
|
}
|
2019-11-05 17:11:56 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
template <>
|
2020-08-03 07:30:02 +00:00
|
|
|
inline int select_fseek<8>(FILE *file, int64_t offset, int origin) {
|
2020-06-23 19:05:42 +00:00
|
|
|
return ::_fseeki64(file, offset, origin);
|
2019-11-05 17:11:56 +00:00
|
|
|
}
|
2020-08-03 07:30:02 +00:00
|
|
|
|
2022-05-25 16:18:42 +00:00
|
|
|
#endif
|
2021-07-29 11:28:51 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
} // namespace
|
2019-11-05 17:11:56 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
DefaultIOStream::~DefaultIOStream() {
|
2015-05-19 03:57:13 +00:00
|
|
|
if (mFile) {
|
|
|
|
::fclose(mFile);
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
size_t DefaultIOStream::Read(void *pvBuffer,
|
|
|
|
size_t pSize,
|
|
|
|
size_t pCount) {
|
2021-04-28 14:38:22 +00:00
|
|
|
if (0 == pCount) {
|
|
|
|
return 0;
|
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
ai_assert(nullptr != pvBuffer);
|
|
|
|
ai_assert(0 != pSize);
|
2021-07-29 11:28:51 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
return (mFile ? ::fread(pvBuffer, pSize, pCount, mFile) : 0);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
size_t DefaultIOStream::Write(const void *pvBuffer,
|
|
|
|
size_t pSize,
|
|
|
|
size_t pCount) {
|
|
|
|
ai_assert(nullptr != pvBuffer);
|
|
|
|
ai_assert(0 != pSize);
|
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
return (mFile ? ::fwrite(pvBuffer, pSize, pCount, mFile) : 0);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
|
|
|
aiReturn DefaultIOStream::Seek(size_t pOffset,
|
2020-06-23 19:05:42 +00:00
|
|
|
aiOrigin pOrigin) {
|
2015-05-19 03:57:13 +00:00
|
|
|
if (!mFile) {
|
|
|
|
return AI_FAILURE;
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// Just to check whether our enum maps one to one with the CRT constants
|
2016-03-19 00:02:39 +00:00
|
|
|
static_assert(aiOrigin_CUR == SEEK_CUR &&
|
2020-06-23 19:05:42 +00:00
|
|
|
aiOrigin_END == SEEK_END && aiOrigin_SET == SEEK_SET,
|
|
|
|
"aiOrigin_CUR == SEEK_CUR && \
|
2016-03-19 00:02:39 +00:00
|
|
|
aiOrigin_END == SEEK_END && aiOrigin_SET == SEEK_SET");
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// do the seek
|
2020-06-23 19:05:42 +00:00
|
|
|
return (0 == select_fseek<sizeof(void *)>(mFile, (int64_t)pOffset, (int)pOrigin) ? AI_SUCCESS : AI_FAILURE);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
size_t DefaultIOStream::Tell() const {
|
2015-05-19 03:57:13 +00:00
|
|
|
if (!mFile) {
|
|
|
|
return 0;
|
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
return select_ftell<sizeof(void *)>(mFile);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
size_t DefaultIOStream::FileSize() const {
|
|
|
|
if (!mFile || mFilename.empty()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
if (SIZE_MAX == mCachedSize) {
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2016-08-12 15:13:18 +00:00
|
|
|
// Although fseek/ftell would allow us to reuse the existing file handle here,
|
2015-05-19 03:48:29 +00:00
|
|
|
// it is generally unsafe because:
|
|
|
|
// - For binary streams, it is not technically well-defined
|
|
|
|
// - For text files the results are meaningless
|
|
|
|
// That's why we use the safer variant fstat here.
|
|
|
|
//
|
|
|
|
// See here for details:
|
|
|
|
// https://www.securecoding.cert.org/confluence/display/seccode/FIO19-C.+Do+not+use+fseek()+and+ftell()+to+compute+the+size+of+a+regular+file
|
2022-05-25 16:18:42 +00:00
|
|
|
#if defined _WIN32 && (!defined __GNUC__ || !defined __CLANG__ && __MSVCRT_VERSION__ >= 0x0601)
|
2015-05-19 03:57:13 +00:00
|
|
|
struct __stat64 fileStat;
|
2017-12-11 09:28:50 +00:00
|
|
|
//using fileno + fstat avoids having to handle the filename
|
2020-06-23 19:05:42 +00:00
|
|
|
int err = _fstat64(_fileno(mFile), &fileStat);
|
2015-05-19 03:57:13 +00:00
|
|
|
if (0 != err)
|
|
|
|
return 0;
|
2020-06-23 19:05:42 +00:00
|
|
|
mCachedSize = (size_t)(fileStat.st_size);
|
2022-06-18 21:11:24 +00:00
|
|
|
#elif defined _WIN32
|
|
|
|
struct _stat32 fileStat;
|
|
|
|
//using fileno + fstat avoids having to handle the filename
|
|
|
|
int err = _fstat32(_fileno(mFile), &fileStat);
|
|
|
|
if (0 != err)
|
|
|
|
return 0;
|
|
|
|
mCachedSize = (size_t)(fileStat.st_size);
|
2017-03-01 07:30:03 +00:00
|
|
|
#elif defined __GNUC__ || defined __APPLE__ || defined __MACH__ || defined __FreeBSD__
|
2015-05-19 03:57:13 +00:00
|
|
|
struct stat fileStat;
|
2020-06-23 19:05:42 +00:00
|
|
|
int err = stat(mFilename.c_str(), &fileStat);
|
2015-05-19 03:57:13 +00:00
|
|
|
if (0 != err)
|
|
|
|
return 0;
|
2016-08-12 16:47:37 +00:00
|
|
|
const unsigned long long cachedSize = fileStat.st_size;
|
2020-06-23 19:05:42 +00:00
|
|
|
mCachedSize = static_cast<size_t>(cachedSize);
|
2016-08-12 15:13:18 +00:00
|
|
|
#else
|
2020-06-23 19:05:42 +00:00
|
|
|
#error "Unknown platform"
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2016-08-12 16:47:37 +00:00
|
|
|
return mCachedSize;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
void DefaultIOStream::Flush() {
|
2015-05-19 03:57:13 +00:00
|
|
|
if (mFile) {
|
|
|
|
::fflush(mFile);
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------
|