2002-04-27 23:31:23 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-05-05 10:32:46 +00:00
|
|
|
* Copyright (C) 2002 by Björn Stenberg
|
2002-04-27 23:31:23 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2002-04-27 23:31:23 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _FILE_H_
|
|
|
|
#define _FILE_H_
|
|
|
|
|
2010-05-06 21:49:09 +00:00
|
|
|
#include <sys/types.h>
|
2010-06-21 16:53:00 +00:00
|
|
|
#include "config.h"
|
2010-07-25 14:44:29 +00:00
|
|
|
#include "gcc_extensions.h"
|
2010-08-27 12:38:25 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#ifdef WIN32
|
|
|
|
/* this has SEEK_SET et al */
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
|
|
|
|
2010-05-06 21:49:09 +00:00
|
|
|
|
2010-08-01 16:15:27 +00:00
|
|
|
#undef MAX_PATH /* this avoids problems when building simulator */
|
|
|
|
#define MAX_PATH 260
|
2007-02-25 19:01:32 +00:00
|
|
|
#define MAX_OPEN_FILES 11
|
2005-10-07 17:38:05 +00:00
|
|
|
|
2010-08-27 12:38:25 +00:00
|
|
|
#if !defined(PLUGIN) && !defined(CODEC)
|
2012-03-03 17:08:40 +00:00
|
|
|
#if defined(APPLICATION) && !defined(__PCTOOL__)
|
2010-12-06 22:26:31 +00:00
|
|
|
# define open(x, ...) app_open(x, __VA_ARGS__)
|
|
|
|
# define creat(x,m) app_creat(x, m)
|
|
|
|
# define remove(x) app_remove(x)
|
|
|
|
# define rename(x,y) app_rename(x,y)
|
|
|
|
extern int app_open(const char *name, int o, ...);
|
|
|
|
extern int app_creat(const char *name, mode_t mode);
|
|
|
|
extern int app_remove(const char* pathname);
|
|
|
|
extern int app_rename(const char* path, const char* newname);
|
2011-02-27 23:42:37 +00:00
|
|
|
# if (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO|PLATFORM_PANDORA))
|
2010-12-06 22:26:31 +00:00
|
|
|
# define fsync(x) sim_fsync(x)
|
|
|
|
# define ftruncate(x,y) sim_ftruncate(x,y)
|
|
|
|
# define lseek(x,y,z) sim_lseek(x,y,z)
|
|
|
|
# define read(x,y,z) sim_read(x,y,z)
|
|
|
|
# define write(x,y,z) sim_write(x,y,z)
|
|
|
|
# define close(x) sim_close(x)
|
|
|
|
# endif
|
|
|
|
#elif defined(SIMULATOR)
|
|
|
|
# define open(x, ...) sim_open(x, __VA_ARGS__)
|
|
|
|
# define creat(x,m) sim_creat(x,m)
|
|
|
|
# define remove(x) sim_remove(x)
|
|
|
|
# define rename(x,y) sim_rename(x,y)
|
|
|
|
# define fsync(x) sim_fsync(x)
|
|
|
|
# define ftruncate(x,y) sim_ftruncate(x,y)
|
|
|
|
# define lseek(x,y,z) sim_lseek(x,y,z)
|
|
|
|
# define read(x,y,z) sim_read(x,y,z)
|
|
|
|
# define write(x,y,z) sim_write(x,y,z)
|
|
|
|
# define close(x) sim_close(x)
|
|
|
|
extern int sim_open(const char *name, int o, ...);
|
|
|
|
extern int sim_creat(const char *name, mode_t mode);
|
2003-12-08 21:58:38 +00:00
|
|
|
#endif
|
|
|
|
|
2010-05-06 17:35:13 +00:00
|
|
|
typedef int (*open_func)(const char* pathname, int flags, ...);
|
2003-12-09 06:48:10 +00:00
|
|
|
typedef ssize_t (*read_func)(int fd, void *buf, size_t count);
|
2010-05-06 17:35:04 +00:00
|
|
|
typedef int (*creat_func)(const char *pathname, mode_t mode);
|
2003-12-09 06:48:10 +00:00
|
|
|
typedef ssize_t (*write_func)(int fd, const void *buf, size_t count);
|
|
|
|
typedef void (*qsort_func)(void *base, size_t nmemb, size_t size,
|
|
|
|
int(*_compar)(const void *, const void *));
|
|
|
|
|
2010-05-06 17:35:13 +00:00
|
|
|
extern int file_open(const char* pathname, int flags);
|
2002-04-27 23:31:23 +00:00
|
|
|
extern int close(int fd);
|
2003-06-29 13:17:19 +00:00
|
|
|
extern int fsync(int fd);
|
2003-12-08 21:58:38 +00:00
|
|
|
extern ssize_t read(int fd, void *buf, size_t count);
|
|
|
|
extern off_t lseek(int fildes, off_t offset, int whence);
|
2010-05-06 17:35:04 +00:00
|
|
|
extern int file_creat(const char *pathname);
|
2012-05-03 05:08:43 +00:00
|
|
|
#if ((CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(__PCTOOL__)) || \
|
|
|
|
defined(TEST_FAT)
|
|
|
|
#define creat(x, y) file_creat(x)
|
|
|
|
|
2010-08-27 12:48:29 +00:00
|
|
|
#if !defined(CODEC) && !defined(PLUGIN)
|
2010-05-06 17:35:13 +00:00
|
|
|
#define open(x, y, ...) file_open(x,y)
|
|
|
|
#endif
|
2010-05-06 17:35:04 +00:00
|
|
|
#endif
|
2012-05-03 05:08:43 +00:00
|
|
|
|
2003-12-08 21:58:38 +00:00
|
|
|
extern ssize_t write(int fd, const void *buf, size_t count);
|
2002-10-20 22:50:58 +00:00
|
|
|
extern int remove(const char* pathname);
|
2002-11-19 12:48:50 +00:00
|
|
|
extern int rename(const char* path, const char* newname);
|
2003-12-08 21:58:38 +00:00
|
|
|
extern int ftruncate(int fd, off_t length);
|
2005-01-23 23:29:35 +00:00
|
|
|
extern off_t filesize(int fd);
|
2005-01-28 21:32:16 +00:00
|
|
|
extern int release_files(int volume);
|
2010-05-06 21:04:40 +00:00
|
|
|
int fdprintf (int fd, const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3);
|
2010-08-27 12:38:25 +00:00
|
|
|
#endif /* !CODEC && !PLUGIN */
|
2002-04-27 23:31:23 +00:00
|
|
|
#endif
|