summaryrefslogtreecommitdiff
path: root/Source/Kernel/VFS/DirectoryNode.class.h
blob: 4d9b211817fe47949521b2698b2cc63efd0c2546 (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
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef DEF_DIRECTORYNODE_CLASS_H
#define DEF_DIRECTORYNODE_CLASS_H

#include <VFS/FileNode.class.h>
#include <Vector.class.h>

class DirectoryNode : public FSNode {
	protected:
	Vector<FSNode*> m_children;
	bool m_contentLoaded;

	//Syscalls
	static call_t m_callTable[];
	u32int getIdxChildSC(u32int index);
	u32int getNameChildSC(u32int name);

	public:
	DirectoryNode(String name, FileSystem* fs, FSNode* parent, u32int permissions = 0777,
			u32int uid = 0, u32int gid = 0) : 
			FSNode(name, fs, parent, 0, permissions, uid, gid), m_children(), m_contentLoaded(false) {
		addCallTable(m_callTable);
	}
	virtual ~DirectoryNode() {
		if (m_contentLoaded) {
			for (u32int i = 0; i < m_children.size(); i++) {
				delete m_children[i];
			}
		}
	}

	Vector<FSNode*> &getChildren() { return m_children; }	//MUST BE USED ONLY BY FILESYSTEMS

	u8int type() { return NT_DIRECTORY; }
	bool removable();
	bool unmountable();

	bool loadContent();
	FSNode* getChild(u32int index);
	FSNode* getChild(const String& name);
	FileNode* createFile(const String& name);
	DirectoryNode* createDirectory(const String& name);
	bool remove(FSNode* child);	//Removes a child node from this directory
};

#endif