Rewrite dircache generation to take advantage for the FAT code. Reduce RAM usage...
[kugel-rb.git] / firmware / export / fat.h
blob638a659f7aa0866d8d266535f7161f5992fd3300
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef FAT_H
23 #define FAT_H
25 #include <stdbool.h>
26 #include "mv.h" /* for volume definitions */
27 #include "config.h"
29 /* This value can be overwritten by a target in config-[target].h, but
30 that behaviour is still experimental */
31 #ifndef SECTOR_SIZE
32 #define SECTOR_SIZE 512
33 #endif
35 /* Number of bytes reserved for a file name (including the trailing \0).
36 Since names are stored in the entry as UTF-8, we won't be able to
37 store all names allowed by FAT. In FAT, a name can have max 255
38 characters (not bytes!). Since the UTF-8 encoding of a char may take
39 up to 4 bytes, there will be names that we won't be able to store
40 completely. For such names, the short DOS name is used. */
41 #define FAT_FILENAME_BYTES 256
43 struct fat_direntry
45 unsigned char name[FAT_FILENAME_BYTES]; /* UTF-8 encoded name plus \0 */
46 unsigned short attr; /* Attributes */
47 unsigned char crttimetenth; /* Millisecond creation
48 time stamp (0-199) */
49 unsigned short crttime; /* Creation time */
50 unsigned short crtdate; /* Creation date */
51 unsigned short lstaccdate; /* Last access date */
52 unsigned short wrttime; /* Last write time */
53 unsigned short wrtdate; /* Last write date */
54 unsigned long filesize; /* File size in bytes */
55 long firstcluster; /* fstclusterhi<<16 + fstcluslo */
58 #define FAT_ATTR_READ_ONLY 0x01
59 #define FAT_ATTR_HIDDEN 0x02
60 #define FAT_ATTR_SYSTEM 0x04
61 #define FAT_ATTR_VOLUME_ID 0x08
62 #define FAT_ATTR_DIRECTORY 0x10
63 #define FAT_ATTR_ARCHIVE 0x20
64 #define FAT_ATTR_VOLUME 0x40 /* this is a volume, not a real directory */
66 struct fat_file
68 long firstcluster; /* first cluster in file */
69 long lastcluster; /* cluster of last access */
70 long lastsector; /* sector of last access */
71 long clusternum; /* current clusternum */
72 long sectornum; /* sector number in this cluster */
73 unsigned int direntry; /* short dir entry index from start of dir */
74 unsigned int direntries; /* number of dir entries used by this file */
75 long dircluster; /* first cluster of dir */
76 bool eof;
77 #ifdef HAVE_MULTIVOLUME
78 int volume; /* file resides on which volume */
79 #endif
82 struct fat_dir
84 unsigned int entry;
85 unsigned int entrycount;
86 long sector;
87 struct fat_file file;
88 unsigned char sectorcache[3][SECTOR_SIZE];
91 #ifdef HAVE_HOTSWAP
92 extern void fat_lock(void);
93 extern void fat_unlock(void);
94 #endif
96 extern void fat_init(void);
97 extern int fat_mount(IF_MV2(int volume,) IF_MD2(int drive,) long startsector);
98 extern int fat_unmount(int volume, bool flush);
99 extern void fat_size(IF_MV2(int volume,) /* public for info */
100 unsigned long* size,
101 unsigned long* free);
102 extern void fat_recalc_free(IF_MV_NONVOID(int volume)); /* public for debug info screen */
103 extern int fat_create_dir(const char* name,
104 struct fat_dir* newdir,
105 struct fat_dir* dir);
106 extern int fat_open(IF_MV2(int volume,)
107 long cluster,
108 struct fat_file* ent,
109 const struct fat_dir* dir);
110 extern int fat_create_file(const char* name,
111 struct fat_file* ent,
112 struct fat_dir* dir);
113 extern long fat_readwrite(struct fat_file *ent, long sectorcount,
114 void* buf, bool write );
115 extern int fat_closewrite(struct fat_file *ent, long size, int attr);
116 extern int fat_seek(struct fat_file *ent, unsigned long sector );
117 extern int fat_remove(struct fat_file *ent);
118 extern int fat_truncate(const struct fat_file *ent);
119 extern int fat_rename(struct fat_file* file,
120 struct fat_dir* dir,
121 const unsigned char* newname,
122 long size, int attr);
124 extern int fat_opendir(IF_MV2(int volume,)
125 struct fat_dir *ent, unsigned long startcluster,
126 const struct fat_dir *parent_dir);
127 extern int fat_getnext(struct fat_dir *ent, struct fat_direntry *entry);
128 extern unsigned int fat_get_cluster_size(IF_MV_NONVOID(int volume)); /* public for debug info screen */
129 extern bool fat_ismounted(int volume);
131 #endif