summaryrefslogtreecommitdiff
path: root/Source/Kernel/VFS/VFS.ns.h
blob: eede72859e711816e34a5c63445e411aaddb8dc4 (plain) (blame)
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
#ifndef DEF_VFS_NS_H
#define DEF_VFS_NS_H

#include <Core/multiboot.wtf.h>

#include <VFS/DirectoryNode.class.h>
#include <VFS/FileSystem.proto.h>
#include <Vector.class.h>

typedef FileSystem* (* mount_callback_t)(Partition* partition, DirectoryNode* mountpoint, bool readwrite);

namespace VFS {
	extern Vector<FileSystem*> filesystems;

	void registerMountCallback(mount_callback_t mcb);
	bool mount(Partition* partition, DirectoryNode *mountpoint);
	DirectoryNode* getRootNode();

	void registerFilesystem(FileSystem* fs);
	void unregisterFilesystem(FileSystem* fs);
	bool unmount(FileSystem* fs);

	bool mount(String str, VirtualTerminal* logvt, multiboot_info_t* mbd = 0);

	FSNode* find(const String& path, FSNode* start = 0);
	FSNode* createFile(const String& path, FSNode* start = 0, bool vrfyperm = false);
	FSNode* createDirectory(const String& path, FSNode* start = 0, bool vrfyperm = false);
	bool remove(FSNode* node);
	bool remove(const String& path, FSNode* start = 0);	//Returns false for non-empty directories
	String path(FSNode* node);	//Returns complete path for a node
}

#endif