2002-04-27 23:31:23 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2002 by Bj<EFBFBD>rn Stenberg
|
|
|
|
|
*
|
|
|
|
|
* 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 _DIR_H_
|
|
|
|
|
#define _DIR_H_
|
|
|
|
|
|
2002-05-27 09:13:24 +00:00
|
|
|
|
#include <stdbool.h>
|
2006-11-10 08:03:33 +00:00
|
|
|
|
#include "file.h"
|
2002-05-27 09:13:24 +00:00
|
|
|
|
|
2002-05-06 14:19:10 +00:00
|
|
|
|
#define ATTR_READ_ONLY 0x01
|
|
|
|
|
#define ATTR_HIDDEN 0x02
|
|
|
|
|
#define ATTR_SYSTEM 0x04
|
|
|
|
|
#define ATTR_VOLUME_ID 0x08
|
|
|
|
|
#define ATTR_DIRECTORY 0x10
|
|
|
|
|
#define ATTR_ARCHIVE 0x20
|
2004-12-28 22:16:07 +00:00
|
|
|
|
#define ATTR_VOLUME 0x40 /* this is a volume, not a real directory */
|
2002-05-06 14:19:10 +00:00
|
|
|
|
|
2005-02-22 12:19:12 +00:00
|
|
|
|
#ifdef SIMULATOR
|
|
|
|
|
#define dirent sim_dirent
|
|
|
|
|
#define DIR SIM_DIR
|
|
|
|
|
#define opendir(x) sim_opendir(x)
|
|
|
|
|
#define readdir(x) sim_readdir(x)
|
|
|
|
|
#define closedir(x) sim_closedir(x)
|
2007-02-03 10:28:55 +00:00
|
|
|
|
#define mkdir(x) sim_mkdir(x)
|
2005-02-22 12:19:12 +00:00
|
|
|
|
#define rmdir(x) sim_rmdir(x)
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-02-18 13:47:17 +00:00
|
|
|
|
#ifndef DIRENT_DEFINED
|
|
|
|
|
|
2002-04-27 23:31:23 +00:00
|
|
|
|
struct dirent {
|
2002-07-15 22:58:28 +00:00
|
|
|
|
unsigned char d_name[MAX_PATH];
|
2002-04-28 19:14:17 +00:00
|
|
|
|
int attribute;
|
2005-02-26 21:18:05 +00:00
|
|
|
|
long size;
|
|
|
|
|
long startcluster;
|
2004-06-20 16:34:29 +00:00
|
|
|
|
unsigned short wrtdate; /* Last write date */
|
|
|
|
|
unsigned short wrttime; /* Last write time */
|
2002-04-27 23:31:23 +00:00
|
|
|
|
};
|
2002-04-30 13:18:59 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2002-05-03 15:36:52 +00:00
|
|
|
|
#include "fat.h"
|
|
|
|
|
|
2002-04-28 19:29:57 +00:00
|
|
|
|
typedef struct {
|
2005-02-22 12:19:12 +00:00
|
|
|
|
#ifndef SIMULATOR
|
2002-05-27 09:13:24 +00:00
|
|
|
|
bool busy;
|
2005-02-26 21:18:05 +00:00
|
|
|
|
long startcluster;
|
2002-05-03 15:36:52 +00:00
|
|
|
|
struct fat_dir fatdir;
|
2004-04-16 08:58:29 +00:00
|
|
|
|
struct fat_dir parent_dir;
|
2002-05-27 09:13:24 +00:00
|
|
|
|
struct dirent theent;
|
2004-12-28 22:16:07 +00:00
|
|
|
|
#ifdef HAVE_MULTIVOLUME
|
|
|
|
|
int volumecounter; /* running counter for faked volume entries */
|
|
|
|
|
#endif
|
2005-02-22 12:19:12 +00:00
|
|
|
|
#else
|
|
|
|
|
/* simulator: */
|
|
|
|
|
void *dir; /* actually a DIR* dir */
|
|
|
|
|
char *name;
|
|
|
|
|
#endif
|
2002-04-28 19:29:57 +00:00
|
|
|
|
} DIR;
|
2002-05-03 15:36:52 +00:00
|
|
|
|
|
2007-06-30 02:08:27 +00:00
|
|
|
|
#ifdef HAVE_HOTSWAP
|
|
|
|
|
char *get_volume_name(int volume);
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-05-07 11:36:32 +00:00
|
|
|
|
#ifndef DIRFUNCTIONS_DEFINED
|
|
|
|
|
|
2004-04-20 10:15:39 +00:00
|
|
|
|
extern DIR* opendir(const char* name);
|
2002-04-27 23:34:31 +00:00
|
|
|
|
extern int closedir(DIR* dir);
|
2007-02-03 10:28:55 +00:00
|
|
|
|
extern int mkdir(const char* name);
|
2004-04-20 10:15:39 +00:00
|
|
|
|
extern int rmdir(const char* name);
|
2002-04-27 23:34:31 +00:00
|
|
|
|
|
2002-04-27 23:31:23 +00:00
|
|
|
|
extern struct dirent* readdir(DIR* dir);
|
|
|
|
|
|
2005-01-28 21:32:16 +00:00
|
|
|
|
extern int release_dirs(int volume);
|
|
|
|
|
|
2002-05-07 11:36:32 +00:00
|
|
|
|
#endif /* DIRFUNCTIONS_DEFINED */
|
|
|
|
|
|
2002-04-27 23:31:23 +00:00
|
|
|
|
#endif
|