Kernel - Added 'Flags' param to VFS Read/Write/FindDir
[tpg/acess2.git] / KernelLand / Modules / Filesystems / Ext2 / ext2_common.h
1 /*
2  * Acess OS
3  * Ext2 Driver Version 1
4  */
5 #ifndef _EXT2_COMMON_H
6 #define _EXT2_COMMON_H
7 #include <acess.h>
8 #include <vfs.h>
9 #include "ext2fs.h"
10
11 #define EXT2_UPDATE_WRITEBACK   1
12
13 // === STRUCTURES ===
14 typedef struct {
15          int    FD;
16          int    CacheID;
17         tVFS_Node       RootNode;
18         
19         tExt2_SuperBlock        SuperBlock;
20         Uint    BlockSize;
21          
22          int    GroupCount;
23         tExt2_Group             Groups[];
24 } tExt2_Disk;
25
26 // === GLOBALS ===
27 extern tVFS_NodeType    gExt2_FileType;
28 extern tVFS_NodeType    gExt2_DirType;
29
30 // === FUNCTIONS ===
31 // --- Common ---
32 extern void     Ext2_CloseFile(tVFS_Node *Node);
33 extern Uint64   Ext2_int_GetBlockAddr(tExt2_Disk *Disk, Uint32 *Blocks, int BlockNum);
34 extern void     Ext2_int_UpdateSuperblock(tExt2_Disk *Disk);
35 extern Uint32   Ext2_int_AllocateInode(tExt2_Disk *Disk, Uint32 Parent);
36 extern void     Ext2_int_DereferenceInode(tExt2_Disk *Disk, Uint32 Inode);
37 extern int      Ext2_int_ReadInode(tExt2_Disk *Disk, Uint32 InodeId, tExt2_Inode *Inode);
38 extern int      Ext2_int_WriteInode(tExt2_Disk *Disk, Uint32 InodeId, tExt2_Inode *Inode);
39 // --- Dir ---
40 extern int      Ext2_ReadDir(tVFS_Node *Node, int Pos, char Dest[FILENAME_MAX]);
41 extern tVFS_Node        *Ext2_FindDir(tVFS_Node *Node, const char *FileName, Uint Flags);
42 extern tVFS_Node        *Ext2_MkNod(tVFS_Node *Node, const char *Name, Uint Mode);
43 extern int      Ext2_Link(tVFS_Node *Parent, const char *Name, tVFS_Node *Node);
44 extern tVFS_Node        *Ext2_int_CreateNode(tExt2_Disk *Disk, Uint InodeId);
45 extern int      Ext2_int_WritebackNode(tExt2_Disk *Disk, tVFS_Node *Node);
46 // --- Read ---
47 extern size_t   Ext2_Read(tVFS_Node *node, off_t offset, size_t length, void *buffer, Uint Flags);
48 // --- Write ---
49 extern size_t   Ext2_Write(tVFS_Node *node, off_t offset, size_t length, const void *buffer, Uint Flags);
50 extern Uint32   Ext2_int_AllocateBlock(tExt2_Disk *Disk, Uint32 LastBlock);
51 extern void     Ext2_int_DeallocateBlock(tExt2_Disk *Disk, Uint32 Block);
52 extern int      Ext2_int_AppendBlock(tExt2_Disk *Disk, tExt2_Inode *Inode, Uint32 Block);
53
54 #endif

UCC git Repository :: git.ucc.asn.au