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
32struct VFile {
33 bool (*close)(struct VFile* vf);
34 off_t (*seek)(struct VFile* vf, off_t offset, int whence);
35 ssize_t (*read)(struct VFile* vf, void* buffer, size_t size);
36 ssize_t (*readline)(struct VFile* vf, char* buffer, size_t size);
37 ssize_t (*write)(struct VFile* vf, const void* buffer, size_t size);
38 void* (*map)(struct VFile* vf, size_t size, int flags);
39 void (*unmap)(struct VFile* vf, void* memory, size_t size);
40 void (*truncate)(struct VFile* vf, size_t size);
41 ssize_t (*size)(struct VFile* vf);
42};
43
44struct VDirEntry {
45 const char* (*name)(struct VDirEntry* vde);
46};
47
48struct VDir {
49 bool (*close)(struct VDir* vd);
50 void (*rewind)(struct VDir* vd);
51 struct VDirEntry* (*listNext)(struct VDir* vd);
52 struct VFile* (*openFile)(struct VDir* vd, const char* name, int mode);
53};
54
55struct VFile* VFileOpen(const char* path, int flags);
56struct VFile* VFileFOpen(const char* path, const char* mode);
57struct VFile* VFileFromFD(int fd);
58struct VFile* VFileFromMemory(void* mem, size_t size);
59struct VFile* VFileFromFILE(FILE* file);
60
61struct VDir* VDirOpen(const char* path);
62
63#ifdef USE_LIBZIP
64struct VDir* VDirOpenZip(const char* path, int flags);
65#endif
66
67#ifdef USE_LZMA
68struct VDir* VDirOpen7z(const char* path, int flags);
69#endif
70
71struct VFile* VDirOptionalOpenFile(struct VDir* dir, const char* realPath, const char* prefix, const char* suffix, int mode);
72struct VFile* VDirOptionalOpenIncrementFile(struct VDir* dir, const char* realPath, const char* prefix, const char* infix, const char* suffix, int mode);
73
74ssize_t VFileReadline(struct VFile* vf, char* buffer, size_t size);
75
76ssize_t VFileWrite32LE(struct VFile* vf, int32_t word);
77ssize_t VFileWrite16LE(struct VFile* vf, int16_t hword);
78ssize_t VFileRead32LE(struct VFile* vf, void* word);
79ssize_t VFileRead16LE(struct VFile* vf, void* hword);
80
81#endif