all repos — mgba @ 3a7350c8d2d7332713630b7b4cf47f6f11a74b8e

mGBA Game Boy Advance Emulator

src/util/vfs.h (view raw)

 1/* Copyright (c) 2013-2014 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#ifndef VFS_H
 7#define VFS_H
 8
 9#include "util/common.h"
10
11#ifdef _WIN32
12#include <io.h>
13#include <windows.h>
14#define PATH_SEP "\\"
15#else
16#define PATH_SEP "/"
17#endif
18
19#ifndef PATH_MAX
20#ifdef MAX_PATH
21#define PATH_MAX MAX_PATH
22#else
23#define PATH_MAX 128
24#endif
25#endif
26
27enum {
28	MAP_READ = 1,
29	MAP_WRITE = 2
30};
31
32enum VFSType {
33	VFS_UNKNOWN = 0,
34	VFS_FILE,
35	VFS_DIRECTORY
36};
37
38struct VFile {
39	bool (*close)(struct VFile* vf);
40	off_t (*seek)(struct VFile* vf, off_t offset, int whence);
41	ssize_t (*read)(struct VFile* vf, void* buffer, size_t size);
42	ssize_t (*readline)(struct VFile* vf, char* buffer, size_t size);
43	ssize_t (*write)(struct VFile* vf, const void* buffer, size_t size);
44	void* (*map)(struct VFile* vf, size_t size, int flags);
45	void (*unmap)(struct VFile* vf, void* memory, size_t size);
46	void (*truncate)(struct VFile* vf, size_t size);
47	ssize_t (*size)(struct VFile* vf);
48	bool (*sync)(struct VFile* vf, const void* buffer, size_t size);
49};
50
51struct VDirEntry {
52	const char* (*name)(struct VDirEntry* vde);
53	enum VFSType (*type)(struct VDirEntry* vde);
54};
55
56struct VDir {
57	bool (*close)(struct VDir* vd);
58	void (*rewind)(struct VDir* vd);
59	struct VDirEntry* (*listNext)(struct VDir* vd);
60	struct VFile* (*openFile)(struct VDir* vd, const char* name, int mode);
61	struct VDir* (*openDir)(struct VDir* vd, const char* name);
62};
63
64struct VFile* VFileOpen(const char* path, int flags);
65
66struct VFile* VFileOpenFD(const char* path, int flags);
67struct VFile* VFileFOpen(const char* path, const char* mode);
68struct VFile* VFileFromFD(int fd);
69struct VFile* VFileFromMemory(void* mem, size_t size);
70struct VFile* VFileFromFILE(FILE* file);
71
72struct VDir* VDirOpen(const char* path);
73struct VDir* VDirOpenArchive(const char* path);
74
75#if defined(USE_LIBZIP) || defined(USE_ZLIB)
76struct VDir* VDirOpenZip(const char* path, int flags);
77#endif
78
79#ifdef USE_LZMA
80struct VDir* VDirOpen7z(const char* path, int flags);
81#endif
82
83struct VDir* VDeviceList(void);
84
85void separatePath(const char* path, char* dirname, char* basename, char* extension);
86
87struct VFile* VDirFindFirst(struct VDir* dir, bool (*filter)(struct VFile*));
88struct VFile* VDirFindNextAvailable(struct VDir*, const char* basename, const char* infix, const char* suffix, int mode);
89
90ssize_t VFileReadline(struct VFile* vf, char* buffer, size_t size);
91
92ssize_t VFileWrite32LE(struct VFile* vf, int32_t word);
93ssize_t VFileWrite16LE(struct VFile* vf, int16_t hword);
94ssize_t VFileRead32LE(struct VFile* vf, void* word);
95ssize_t VFileRead16LE(struct VFile* vf, void* hword);
96
97#endif