2021-04-22 22:01:32 +08:00
|
|
|
// Copyright (c) 2018-2019 HALX99
|
|
|
|
// Copyright (c) 2020 c4games.com
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "platform/CCFileStream.h"
|
|
|
|
#include "platform/CCPlatformConfig.h"
|
|
|
|
#include <string>
|
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
|
2021-12-25 10:04:45 +08:00
|
|
|
# include <io.h>
|
|
|
|
# include <direct.h>
|
2021-04-22 22:01:32 +08:00
|
|
|
#else
|
2021-12-25 10:04:45 +08:00
|
|
|
# include <unistd.h>
|
|
|
|
# include <errno.h>
|
2021-04-22 22:01:32 +08:00
|
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
#include "platform/CCPlatformMacros.h"
|
|
|
|
|
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID
|
2021-12-25 10:04:45 +08:00
|
|
|
# include "platform/android/CCFileUtils-android.h"
|
|
|
|
# include <jni.h>
|
|
|
|
# include <android/asset_manager.h>
|
|
|
|
# include <android/asset_manager_jni.h>
|
|
|
|
# include "base/ZipUtils.h"
|
2021-04-22 22:01:32 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
2021-12-25 10:04:45 +08:00
|
|
|
# include "ntcvt/ntcvt.hpp"
|
|
|
|
# define O_READ_FLAGS O_BINARY | O_RDONLY, S_IREAD
|
|
|
|
# define O_WRITE_FLAGS O_CREAT | O_RDWR | O_BINARY | O_TRUNC, S_IWRITE | S_IREAD
|
|
|
|
# define O_APPEND_FLAGS O_APPEND | O_CREAT | O_RDWR | O_BINARY, S_IWRITE | S_IREAD
|
|
|
|
|
|
|
|
# define O_OVERLAP_FLAGS O_CREAT | O_RDWR | O_BINARY, S_IWRITE | S_IREAD
|
|
|
|
# define posix_open_cxx(path, ...) ::_wopen(ntcvt::from_chars(path).c_str(), ##__VA_ARGS__)
|
|
|
|
# define posix_open(path, ...) ::_wopen(ntcvt::from_chars(path).c_str(), ##__VA_ARGS__)
|
|
|
|
# define posix_close ::_close
|
|
|
|
# define posix_lseek ::_lseek
|
|
|
|
# define posix_lseek64 ::_lseeki64
|
|
|
|
# define posix_read ::_read
|
|
|
|
# define posix_write ::_write
|
|
|
|
# define posix_fd2fh(fd) reinterpret_cast<HANDLE>(_get_osfhandle(fd))
|
|
|
|
# define posix_fsetsize(fd, size) ::_chsize(fd, size)
|
2021-04-22 22:01:32 +08:00
|
|
|
#else
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
# if defined(__APPLE__)
|
|
|
|
# define posix_lseek64 ::lseek
|
|
|
|
# else
|
|
|
|
# define posix_lseek64 ::lseek64
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# define O_READ_FLAGS O_RDONLY
|
|
|
|
# define O_WRITE_FLAGS O_CREAT | O_RDWR | O_TRUNC, S_IRWXU
|
|
|
|
# define O_APPEND_FLAGS O_APPEND | O_CREAT | O_RDWR, S_IRWXU
|
|
|
|
|
|
|
|
# define O_OVERLAP_FLAGS O_CREAT | O_RDWR, S_IRWXU
|
2021-12-28 21:00:45 +08:00
|
|
|
# define posix_open_cxx(path, ...) ::open(path.c_str(), ##__VA_ARGS__)
|
2021-12-25 10:04:45 +08:00
|
|
|
# define posix_open ::open
|
|
|
|
# define posix_close ::close
|
|
|
|
# define posix_lseek ::lseek
|
|
|
|
# define posix_read ::read
|
|
|
|
# define posix_write ::write
|
|
|
|
# define posix_fd2fh(fd) (fd)
|
|
|
|
# define posix_fsetsize(fd, size) (::ftruncate(fd, size), ::lseek(fd, 0, SEEK_SET))
|
2021-04-22 22:01:32 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
struct UnzFileStream;
|
2021-12-25 10:04:45 +08:00
|
|
|
union PXFileHandle
|
|
|
|
{
|
2021-04-22 22:01:32 +08:00
|
|
|
int _fd = -1;
|
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID
|
|
|
|
AAsset* _asset;
|
|
|
|
ZipFileStream _zfs;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PXIoF;
|
|
|
|
|
|
|
|
class CC_DLL PosixFileStream : public FileStream
|
|
|
|
{
|
|
|
|
public:
|
2021-04-24 07:22:27 +08:00
|
|
|
PosixFileStream() = default;
|
|
|
|
virtual ~PosixFileStream();
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-04-24 07:22:27 +08:00
|
|
|
PosixFileStream(const PosixFileStream& other) = delete;
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-04-24 07:22:27 +08:00
|
|
|
PosixFileStream(PosixFileStream&& other) noexcept
|
2021-12-25 10:04:45 +08:00
|
|
|
: FileStream(std::move(other)), _handle(std::move(other._handle)), _iof(other._iof)
|
2021-04-24 07:22:27 +08:00
|
|
|
{
|
|
|
|
other.reset();
|
|
|
|
}
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-04-24 07:22:27 +08:00
|
|
|
PosixFileStream& operator=(const PosixFileStream& other) = delete;
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-04-24 07:22:27 +08:00
|
|
|
PosixFileStream& operator=(PosixFileStream&& other) noexcept
|
|
|
|
{
|
|
|
|
if (this == &other)
|
|
|
|
return *this;
|
2021-12-25 10:04:45 +08:00
|
|
|
FileStream::operator=(std::move(other));
|
|
|
|
_handle = std::move(other._handle);
|
|
|
|
_iof = other._iof;
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-04-24 07:22:27 +08:00
|
|
|
other.reset();
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-04-24 07:22:27 +08:00
|
|
|
return *this;
|
|
|
|
}
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
enum class Mode
|
|
|
|
{
|
2021-04-24 07:22:27 +08:00
|
|
|
READ,
|
|
|
|
WRITE,
|
|
|
|
APPEND,
|
|
|
|
};
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-12-28 21:00:45 +08:00
|
|
|
bool open(const std::string& path, FileStream::Mode mode) override;
|
2021-04-24 07:22:27 +08:00
|
|
|
int close() override;
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-09-05 20:45:32 +08:00
|
|
|
int seek(int64_t offset, int origin) override;
|
2021-04-24 07:22:27 +08:00
|
|
|
int read(void* buf, unsigned int size) override;
|
|
|
|
int write(const void* buf, unsigned int size) override;
|
2021-08-20 01:20:17 +08:00
|
|
|
int64_t tell() override;
|
|
|
|
int64_t size() override;
|
2021-04-24 07:22:27 +08:00
|
|
|
bool isOpen() const override;
|
2021-04-22 22:01:32 +08:00
|
|
|
|
|
|
|
private:
|
2021-04-24 07:22:27 +08:00
|
|
|
int internalClose();
|
|
|
|
void reset();
|
2021-04-22 22:01:32 +08:00
|
|
|
|
2021-04-26 08:32:25 +08:00
|
|
|
PXFileHandle _handle{};
|
|
|
|
const PXIoF* _iof{};
|
2021-04-22 22:01:32 +08:00
|
|
|
};
|
|
|
|
|
2021-05-05 19:49:30 +08:00
|
|
|
NS_CC_END
|