mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
* Move and rename file_util/fd_util to Common/File/FileUtil and DirListing Let's also move net while we're at it. Move the ZIM/PNG loaders over to Common. Move the UI framework into Common iOS buildfix * Buildfix * Buildfixes * Apple buildfix * This typo again.. * UWP buildfix * Fix build of PPSSPPQt, such as it is (it's not in good condition...) * Guess what? Another buildfix.
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
// TODO: Move much of this code to vfs.cpp
|
|
#pragma once
|
|
|
|
#ifdef __ANDROID__
|
|
#include <zip.h>
|
|
#endif
|
|
|
|
#include <string.h>
|
|
#include <string>
|
|
|
|
#include "Common/File/VFS/VFS.h"
|
|
|
|
// Direct readers. deallocate using delete [].
|
|
uint8_t *ReadLocalFile(const char *filename, size_t *size);
|
|
|
|
class AssetReader {
|
|
public:
|
|
virtual ~AssetReader() {}
|
|
// use delete[]
|
|
virtual uint8_t *ReadAsset(const char *path, size_t *size) = 0;
|
|
// Filter support is optional but nice to have
|
|
virtual bool GetFileListing(const char *path, std::vector<FileInfo> *listing, const char *filter = 0) = 0;
|
|
virtual bool GetFileInfo(const char *path, FileInfo *info) = 0;
|
|
virtual std::string toString() const = 0;
|
|
};
|
|
|
|
#ifdef __ANDROID__
|
|
uint8_t *ReadFromZip(zip *archive, const char* filename, size_t *size);
|
|
class ZipAssetReader : public AssetReader {
|
|
public:
|
|
ZipAssetReader(const char *zip_file, const char *in_zip_path);
|
|
~ZipAssetReader();
|
|
// use delete[]
|
|
virtual uint8_t *ReadAsset(const char *path, size_t *size);
|
|
virtual bool GetFileListing(const char *path, std::vector<FileInfo> *listing, const char *filter);
|
|
virtual bool GetFileInfo(const char *path, FileInfo *info);
|
|
virtual std::string toString() const {
|
|
return in_zip_path_;
|
|
}
|
|
|
|
private:
|
|
zip *zip_file_;
|
|
char in_zip_path_[256];
|
|
};
|
|
#endif
|
|
|
|
class DirectoryAssetReader : public AssetReader {
|
|
public:
|
|
explicit DirectoryAssetReader(const char *path);
|
|
// use delete[]
|
|
virtual uint8_t *ReadAsset(const char *path, size_t *size);
|
|
virtual bool GetFileListing(const char *path, std::vector<FileInfo> *listing, const char *filter);
|
|
virtual bool GetFileInfo(const char *path, FileInfo *info);
|
|
virtual std::string toString() const {
|
|
return path_;
|
|
}
|
|
|
|
private:
|
|
char path_[512]{};
|
|
};
|
|
|