2002-03-28 15:09:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Linus Nielsen Feltzing
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef FAT_H
|
|
|
|
#define FAT_H
|
|
|
|
|
2002-10-20 22:50:58 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2002-04-27 19:37:41 +00:00
|
|
|
#define SECTOR_SIZE 512
|
2002-04-26 16:44:58 +00:00
|
|
|
|
2002-04-27 01:25:22 +00:00
|
|
|
struct fat_direntry
|
|
|
|
{
|
2002-04-27 22:32:37 +00:00
|
|
|
unsigned char name[256]; /* Name plus \0 */
|
2002-04-27 01:25:22 +00:00
|
|
|
unsigned short attr; /* Attributes */
|
|
|
|
unsigned char crttimetenth; /* Millisecond creation
|
|
|
|
time stamp (0-199) */
|
|
|
|
unsigned short crttime; /* Creation time */
|
|
|
|
unsigned short crtdate; /* Creation date */
|
|
|
|
unsigned short lstaccdate; /* Last access date */
|
|
|
|
unsigned short wrttime; /* Last write time */
|
|
|
|
unsigned short wrtdate; /* Last write date */
|
|
|
|
unsigned int filesize; /* File size in bytes */
|
2002-04-27 19:37:41 +00:00
|
|
|
int firstcluster; /* fstclusterhi<<16 + fstcluslo */
|
2002-03-28 15:09:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define FAT_ATTR_READ_ONLY 0x01
|
|
|
|
#define FAT_ATTR_HIDDEN 0x02
|
|
|
|
#define FAT_ATTR_SYSTEM 0x04
|
|
|
|
#define FAT_ATTR_VOLUME_ID 0x08
|
|
|
|
#define FAT_ATTR_DIRECTORY 0x10
|
|
|
|
#define FAT_ATTR_ARCHIVE 0x20
|
|
|
|
|
2002-05-03 15:35:51 +00:00
|
|
|
struct fat_dir
|
2002-03-28 15:09:10 +00:00
|
|
|
{
|
2002-04-27 01:25:22 +00:00
|
|
|
int entry;
|
2002-05-14 12:28:48 +00:00
|
|
|
int cached_sec;
|
|
|
|
int num_sec;
|
2002-04-27 22:32:37 +00:00
|
|
|
unsigned char cached_buf[SECTOR_SIZE];
|
2002-10-20 22:50:58 +00:00
|
|
|
int startcluster;
|
2002-04-27 19:37:41 +00:00
|
|
|
};
|
|
|
|
|
2002-05-03 15:35:51 +00:00
|
|
|
struct fat_file
|
2002-04-27 19:37:41 +00:00
|
|
|
{
|
|
|
|
int firstcluster; /* first cluster in file */
|
2002-10-22 15:06:08 +00:00
|
|
|
int lastcluster; /* cluster of last access */
|
|
|
|
int lastsector; /* sector of last access */
|
2002-04-27 19:37:41 +00:00
|
|
|
int sectornum; /* sector number in this cluster */
|
2002-10-20 22:50:58 +00:00
|
|
|
int dirsector; /* sector where the dir entry is located */
|
|
|
|
int direntry; /* dir entry index in sector */
|
2002-03-28 15:09:10 +00:00
|
|
|
};
|
|
|
|
|
2002-05-03 15:35:51 +00:00
|
|
|
extern int fat_mount(int startsector);
|
2002-04-29 08:03:59 +00:00
|
|
|
|
2002-05-03 15:35:51 +00:00
|
|
|
extern int fat_create_dir(unsigned int currdir, char *name);
|
2002-08-13 13:21:55 +00:00
|
|
|
extern int fat_startsector(void);
|
2002-10-20 22:50:58 +00:00
|
|
|
extern int fat_open(unsigned int cluster,
|
|
|
|
struct fat_file* ent,
|
|
|
|
struct fat_dir* dir);
|
|
|
|
extern int fat_create_file(char* name,
|
|
|
|
struct fat_file* ent,
|
|
|
|
struct fat_dir* dir);
|
|
|
|
extern int fat_readwrite(struct fat_file *ent, int sectorcount,
|
|
|
|
void* buf, bool write );
|
|
|
|
extern int fat_closewrite(struct fat_file *ent, int size);
|
2002-05-03 15:35:51 +00:00
|
|
|
extern int fat_seek(struct fat_file *ent, int sector );
|
2002-10-22 15:06:08 +00:00
|
|
|
extern int fat_remove(struct fat_file *ent);
|
2002-04-27 19:37:41 +00:00
|
|
|
|
2002-05-03 15:35:51 +00:00
|
|
|
extern int fat_opendir(struct fat_dir *ent, unsigned int currdir);
|
|
|
|
extern int fat_getnext(struct fat_dir *ent, struct fat_direntry *entry);
|
2002-03-28 15:09:10 +00:00
|
|
|
|
|
|
|
#endif
|