diff options
Diffstat (limited to 'filesys/directory.h')
| -rw-r--r-- | filesys/directory.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/filesys/directory.h b/filesys/directory.h new file mode 100644 index 0000000..930acf9 --- /dev/null +++ b/filesys/directory.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | #ifndef FILESYS_DIRECTORY_H | ||
| 2 | #define FILESYS_DIRECTORY_H | ||
| 3 | |||
| 4 | #include <stdbool.h> | ||
| 5 | #include <stddef.h> | ||
| 6 | #include "devices/block.h" | ||
| 7 | |||
| 8 | /* Maximum length of a file name component. | ||
| 9 | This is the traditional UNIX maximum length. | ||
| 10 | After directories are implemented, this maximum length may be | ||
| 11 | retained, but much longer full path names must be allowed. */ | ||
| 12 | #define NAME_MAX 14 | ||
| 13 | |||
| 14 | struct inode; | ||
| 15 | |||
| 16 | /* Opening and closing directories. */ | ||
| 17 | bool dir_create (block_sector_t sector, size_t entry_cnt); | ||
| 18 | struct dir *dir_open (struct inode *); | ||
| 19 | struct dir *dir_open_root (void); | ||
| 20 | struct dir *dir_reopen (struct dir *); | ||
| 21 | void dir_close (struct dir *); | ||
| 22 | struct inode *dir_get_inode (struct dir *); | ||
| 23 | |||
| 24 | /* Reading and writing. */ | ||
| 25 | bool dir_lookup (const struct dir *, const char *name, struct inode **); | ||
| 26 | bool dir_add (struct dir *, const char *name, block_sector_t); | ||
| 27 | bool dir_remove (struct dir *, const char *name); | ||
| 28 | bool dir_readdir (struct dir *, char name[NAME_MAX + 1]); | ||
| 29 | |||
| 30 | #endif /* filesys/directory.h */ | ||
