aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys/meta_file_system.h
blob: f358d8d5cf5ffb45cd51349de49462cb77a5cfeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Copyright (c) 2012- PPSSPP Project.

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0 or later versions.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License 2.0 for more details.

// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/

// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.

#pragma once

#include "common/std_mutex.h"

#include "core/file_sys/file_sys.h"

class MetaFileSystem : public IHandleAllocator, public IFileSystem
{
private:
	u32 current;
	struct MountPoint
	{
		std::string prefix;
		IFileSystem *system;

		bool operator == (const MountPoint &other) const
		{
			return prefix == other.prefix && system == other.system;
		}
	};
	std::vector<MountPoint> fileSystems;

	typedef std::map<int, std::string> currentDir_t;
	currentDir_t currentDir;

	std::string startingDirectory;
	int lastOpenError;
	std::recursive_mutex lock;

public:
	MetaFileSystem()
	{
		current = 6;  // what?
	}

	void Mount(std::string prefix, IFileSystem *system);
	void Unmount(std::string prefix, IFileSystem *system);

	void ThreadEnded(int threadID);

	void Shutdown();

	u32 GetNewHandle() {return current++;}
	void FreeHandle(u32 handle) {}

	virtual void DoState(PointerWrap &p);

	IFileSystem *GetHandleOwner(u32 handle);
	bool MapFilePath(const std::string &inpath, std::string &outpath, MountPoint **system);

	inline bool MapFilePath(const std::string &_inpath, std::string &outpath, IFileSystem **system)
	{
		MountPoint *mountPoint;
		if (MapFilePath(_inpath, outpath, &mountPoint))
		{
			*system = mountPoint->system;
			return true;
		}

		return false;
	}

	// Only possible if a file system is a DirectoryFileSystem or similar.
	bool GetHostPath(const std::string &inpath, std::string &outpath);
	
	std::vector<FileInfo> GetDirListing(std::string path);
	u32      OpenFile(std::string filename, FileAccess access, const char *devicename = NULL);
	u32      OpenWithError(int &error, std::string filename, FileAccess access, const char *devicename = NULL);
	void     CloseFile(u32 handle);
	size_t   ReadFile(u32 handle, u8 *pointer, s64 size);
	size_t   WriteFile(u32 handle, const u8 *pointer, s64 size);
	size_t   SeekFile(u32 handle, s32 position, FileMove type);
	FileInfo GetFileInfo(std::string filename);
	bool     OwnsHandle(u32 handle) {return false;}
	inline size_t GetSeekPos(u32 handle)
	{
		return SeekFile(handle, 0, FILEMOVE_CURRENT);
	}

	virtual int ChDir(const std::string &dir);

	virtual bool MkDir(const std::string &dirname);
	virtual bool RmDir(const std::string &dirname);
	virtual int  RenameFile(const std::string &from, const std::string &to);
	virtual bool RemoveFile(const std::string &filename);

	// TODO: void IoCtl(...)

	void SetStartingDirectory(const std::string &dir) {
		std::lock_guard<std::recursive_mutex> guard(lock);
		startingDirectory = dir;
	}
};