2002-05-13 15:23:30 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Daniel 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2002-04-30 13:14:59 +00:00
|
|
|
|
2002-06-14 11:00:13 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2005-02-22 12:19:12 +00:00
|
|
|
#include <stdarg.h>
|
2002-05-07 12:06:32 +00:00
|
|
|
#include <sys/stat.h>
|
2007-04-06 23:54:21 +00:00
|
|
|
#include <time.h>
|
2003-07-04 08:30:01 +00:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
2006-09-29 16:15:11 +00:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
2004-06-10 13:29:52 +00:00
|
|
|
#elif !defined(WIN32)
|
2002-11-12 11:32:26 +00:00
|
|
|
#include <sys/vfs.h>
|
2003-07-04 08:30:01 +00:00
|
|
|
#endif
|
2004-06-14 07:00:50 +00:00
|
|
|
|
2005-02-22 12:19:12 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2004-06-14 07:00:50 +00:00
|
|
|
#ifndef _MSC_VER
|
2002-05-07 12:25:30 +00:00
|
|
|
#include <dirent.h>
|
2003-01-28 23:14:41 +00:00
|
|
|
#include <unistd.h>
|
2004-06-14 07:00:50 +00:00
|
|
|
#else
|
|
|
|
#include "dir-win32.h"
|
|
|
|
#endif
|
2002-04-30 13:14:59 +00:00
|
|
|
|
2005-02-22 12:19:12 +00:00
|
|
|
#define MAX_PATH 260
|
|
|
|
|
2002-06-14 11:00:13 +00:00
|
|
|
#include <fcntl.h>
|
2006-08-26 14:19:18 +00:00
|
|
|
|
2002-06-14 11:00:13 +00:00
|
|
|
#include "debug.h"
|
2006-08-26 14:19:18 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2007-02-01 23:08:15 +00:00
|
|
|
/* Windows (and potentially other OSes) distinguish binary and text files.
|
|
|
|
* Define a dummy for the others. */
|
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2006-08-26 14:19:18 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
void dircache_remove(const char *name);
|
|
|
|
void dircache_rename(const char *oldpath, const char *newpath);
|
|
|
|
#endif
|
2002-06-14 11:00:13 +00:00
|
|
|
|
2002-05-07 12:25:30 +00:00
|
|
|
#define SIMULATOR_ARCHOS_ROOT "archos"
|
|
|
|
|
2005-02-22 12:19:12 +00:00
|
|
|
struct sim_dirent {
|
|
|
|
unsigned char d_name[MAX_PATH];
|
|
|
|
int attribute;
|
|
|
|
int size;
|
|
|
|
int startcluster;
|
|
|
|
unsigned short wrtdate; /* Last write date */
|
|
|
|
unsigned short wrttime; /* Last write time */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dirstruct {
|
|
|
|
void *dir; /* actually a DIR* dir */
|
|
|
|
char *name;
|
|
|
|
} SIM_DIR;
|
|
|
|
|
2002-05-07 12:25:30 +00:00
|
|
|
struct mydir {
|
2003-03-05 22:59:36 +00:00
|
|
|
DIR *dir;
|
|
|
|
char *name;
|
2002-05-07 12:25:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct mydir MYDIR;
|
2002-04-30 13:14:59 +00:00
|
|
|
|
2005-02-24 23:11:21 +00:00
|
|
|
#if 1 /* maybe this needs disabling for MSVC... */
|
2004-06-14 22:22:49 +00:00
|
|
|
static unsigned int rockbox2sim(int opt)
|
|
|
|
{
|
2006-02-03 15:19:58 +00:00
|
|
|
int newopt = O_BINARY;
|
2007-02-01 23:08:15 +00:00
|
|
|
|
2004-06-14 22:22:49 +00:00
|
|
|
if(opt & 1)
|
|
|
|
newopt |= O_WRONLY;
|
|
|
|
if(opt & 2)
|
|
|
|
newopt |= O_RDWR;
|
|
|
|
if(opt & 4)
|
|
|
|
newopt |= O_CREAT;
|
|
|
|
if(opt & 8)
|
|
|
|
newopt |= O_APPEND;
|
|
|
|
if(opt & 0x10)
|
|
|
|
newopt |= O_TRUNC;
|
|
|
|
|
|
|
|
return newopt;
|
|
|
|
}
|
2004-07-08 05:50:20 +00:00
|
|
|
#endif
|
2004-06-14 22:22:49 +00:00
|
|
|
|
2004-06-10 13:29:52 +00:00
|
|
|
MYDIR *sim_opendir(const char *name)
|
2002-04-30 13:14:59 +00:00
|
|
|
{
|
2003-03-05 22:59:36 +00:00
|
|
|
char buffer[256]; /* sufficiently big */
|
|
|
|
DIR *dir;
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifndef __PCTOOL__
|
|
|
|
if(name[0] == '/')
|
|
|
|
{
|
2003-03-05 22:59:36 +00:00
|
|
|
sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name);
|
|
|
|
dir=(DIR *)opendir(buffer);
|
|
|
|
}
|
|
|
|
else
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2003-03-05 22:59:36 +00:00
|
|
|
dir=(DIR *)opendir(name);
|
|
|
|
|
|
|
|
if(dir) {
|
|
|
|
MYDIR *my = (MYDIR *)malloc(sizeof(MYDIR));
|
|
|
|
my->dir = dir;
|
|
|
|
my->name = (char *)strdup(name);
|
|
|
|
|
|
|
|
return my;
|
|
|
|
}
|
|
|
|
/* failed open, return NULL */
|
|
|
|
return (MYDIR *)0;
|
2002-04-30 13:14:59 +00:00
|
|
|
}
|
2002-05-05 10:28:23 +00:00
|
|
|
|
2004-06-10 13:29:52 +00:00
|
|
|
struct sim_dirent *sim_readdir(MYDIR *dir)
|
2002-05-07 11:35:03 +00:00
|
|
|
{
|
2003-03-05 22:59:36 +00:00
|
|
|
char buffer[512]; /* sufficiently big */
|
2004-06-10 13:29:52 +00:00
|
|
|
static struct sim_dirent secret;
|
2003-03-05 22:59:36 +00:00
|
|
|
struct stat s;
|
|
|
|
struct dirent *x11 = (readdir)(dir->dir);
|
2007-04-06 23:33:33 +00:00
|
|
|
struct tm* tm;
|
2002-05-07 11:35:03 +00:00
|
|
|
|
2003-03-05 22:59:36 +00:00
|
|
|
if(!x11)
|
2004-06-10 13:29:52 +00:00
|
|
|
return (struct sim_dirent *)0;
|
2002-05-07 11:35:03 +00:00
|
|
|
|
2005-11-28 09:36:26 +00:00
|
|
|
strcpy((char *)secret.d_name, x11->d_name);
|
2002-05-07 12:06:32 +00:00
|
|
|
|
2003-03-05 22:59:36 +00:00
|
|
|
/* build file name */
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
sprintf(buffer, "%s/%s", dir->name, x11->d_name);
|
|
|
|
#else
|
2003-03-05 22:59:36 +00:00
|
|
|
sprintf(buffer, SIMULATOR_ARCHOS_ROOT "%s/%s",
|
|
|
|
dir->name, x11->d_name);
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2003-03-05 22:59:36 +00:00
|
|
|
stat(buffer, &s); /* get info */
|
2002-05-07 12:06:32 +00:00
|
|
|
|
2005-02-22 12:19:12 +00:00
|
|
|
#define ATTR_DIRECTORY 0x10
|
|
|
|
|
2003-03-05 22:59:36 +00:00
|
|
|
secret.attribute = S_ISDIR(s.st_mode)?ATTR_DIRECTORY:0;
|
|
|
|
secret.size = s.st_size;
|
2002-05-07 11:35:03 +00:00
|
|
|
|
2007-04-06 23:33:33 +00:00
|
|
|
tm = localtime(&(s.st_mtime));
|
|
|
|
secret.wrtdate = ((tm->tm_year - 80) << 9) |
|
|
|
|
((tm->tm_mon + 1) << 5) |
|
|
|
|
tm->tm_mday;
|
|
|
|
secret.wrttime = (tm->tm_hour << 11) |
|
|
|
|
(tm->tm_min << 5) |
|
|
|
|
(tm->tm_sec >> 1);
|
2003-03-05 22:59:36 +00:00
|
|
|
return &secret;
|
2002-05-07 11:35:03 +00:00
|
|
|
}
|
|
|
|
|
2004-06-10 13:29:52 +00:00
|
|
|
void sim_closedir(MYDIR *dir)
|
2002-05-07 12:06:32 +00:00
|
|
|
{
|
2003-03-05 22:59:36 +00:00
|
|
|
free(dir->name);
|
2005-03-05 21:48:58 +00:00
|
|
|
closedir(dir->dir);
|
2002-05-07 12:06:32 +00:00
|
|
|
|
2003-03-05 22:59:36 +00:00
|
|
|
free(dir);
|
2002-05-07 12:06:32 +00:00
|
|
|
}
|
|
|
|
|
2004-06-14 22:22:49 +00:00
|
|
|
int sim_open(const char *name, int o)
|
2002-05-05 10:28:23 +00:00
|
|
|
{
|
2003-03-05 22:59:36 +00:00
|
|
|
char buffer[256]; /* sufficiently big */
|
2004-06-14 22:22:49 +00:00
|
|
|
int opts = rockbox2sim(o);
|
2002-05-05 10:28:23 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifndef __PCTOOL__
|
|
|
|
if(name[0] == '/')
|
|
|
|
{
|
2003-03-05 22:59:36 +00:00
|
|
|
sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name);
|
2005-02-28 18:32:57 +00:00
|
|
|
|
2003-03-05 22:59:36 +00:00
|
|
|
debugf("We open the real file '%s'\n", buffer);
|
2005-03-05 21:48:58 +00:00
|
|
|
return open(buffer, opts, 0666);
|
2003-03-05 22:59:36 +00:00
|
|
|
}
|
2006-11-10 08:03:33 +00:00
|
|
|
|
2004-06-14 22:32:13 +00:00
|
|
|
fprintf(stderr, "WARNING, bad file name lacks slash: %s\n",
|
|
|
|
name);
|
|
|
|
return -1;
|
2006-11-10 08:03:33 +00:00
|
|
|
#else
|
|
|
|
return open(name, opts, 0666);
|
|
|
|
#endif
|
|
|
|
|
2002-05-05 10:28:23 +00:00
|
|
|
}
|
2002-11-12 11:32:26 +00:00
|
|
|
|
2007-02-01 23:08:15 +00:00
|
|
|
int sim_creat(const char *name)
|
2003-01-09 00:55:00 +00:00
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifndef __PCTOOL__
|
|
|
|
char buffer[256]; /* sufficiently big */
|
2007-02-01 23:08:15 +00:00
|
|
|
if(name[0] == '/')
|
2006-11-10 08:03:33 +00:00
|
|
|
{
|
2003-03-05 22:59:36 +00:00
|
|
|
sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name);
|
|
|
|
|
|
|
|
debugf("We create the real file '%s'\n", buffer);
|
2007-02-01 23:08:15 +00:00
|
|
|
return open(buffer, O_BINARY | O_WRONLY | O_CREAT | O_TRUNC, 0666);
|
2003-03-05 22:59:36 +00:00
|
|
|
}
|
2004-06-14 22:32:13 +00:00
|
|
|
fprintf(stderr, "WARNING, bad file name lacks slash: %s\n",
|
|
|
|
name);
|
|
|
|
return -1;
|
2006-11-10 08:03:33 +00:00
|
|
|
#else
|
2007-02-01 23:08:15 +00:00
|
|
|
return open(name, O_BINARY | O_WRONLY | O_CREAT | O_TRUNC, 0666);
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2005-02-28 18:32:57 +00:00
|
|
|
}
|
2003-01-09 00:55:00 +00:00
|
|
|
|
2007-02-03 10:28:55 +00:00
|
|
|
int sim_mkdir(const char *name)
|
2004-01-21 14:58:40 +00:00
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
# ifdef WIN32
|
|
|
|
return mkdir(name);
|
|
|
|
# else
|
|
|
|
return mkdir(name, 0777);
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
char buffer[256]; /* sufficiently big */
|
2004-06-10 13:29:52 +00:00
|
|
|
|
|
|
|
sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name);
|
2004-01-21 14:58:40 +00:00
|
|
|
|
2004-06-10 13:29:52 +00:00
|
|
|
debugf("We create the real directory '%s'\n", buffer);
|
|
|
|
#ifdef WIN32
|
2005-02-22 12:19:12 +00:00
|
|
|
/* since we build with -DNOCYGWIN we have the plain win32 version */
|
2005-03-05 21:48:58 +00:00
|
|
|
return mkdir(buffer);
|
2004-06-10 13:29:52 +00:00
|
|
|
#else
|
2006-02-18 13:26:09 +00:00
|
|
|
return mkdir(buffer, 0777);
|
2004-06-10 13:29:52 +00:00
|
|
|
#endif
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2004-01-21 14:58:40 +00:00
|
|
|
}
|
|
|
|
|
2004-06-10 13:29:52 +00:00
|
|
|
int sim_rmdir(const char *name)
|
2004-04-16 09:24:38 +00:00
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
return rmdir(name);
|
|
|
|
#else
|
2004-04-16 09:24:38 +00:00
|
|
|
char buffer[256]; /* sufficiently big */
|
2006-11-10 08:03:33 +00:00
|
|
|
if(name[0] == '/')
|
|
|
|
{
|
2004-04-16 09:24:38 +00:00
|
|
|
sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name);
|
|
|
|
|
|
|
|
debugf("We remove the real directory '%s'\n", buffer);
|
2005-03-05 21:48:58 +00:00
|
|
|
return rmdir(buffer);
|
2004-04-16 09:24:38 +00:00
|
|
|
}
|
2005-03-05 21:48:58 +00:00
|
|
|
return rmdir(name);
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2004-04-16 09:24:38 +00:00
|
|
|
}
|
|
|
|
|
2004-06-10 13:29:52 +00:00
|
|
|
int sim_remove(const char *name)
|
2003-01-09 00:55:00 +00:00
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
return remove(name);
|
|
|
|
#else
|
2003-03-05 22:59:36 +00:00
|
|
|
char buffer[256]; /* sufficiently big */
|
2003-01-09 00:55:00 +00:00
|
|
|
|
2006-08-26 14:19:18 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
dircache_remove(name);
|
|
|
|
#endif
|
|
|
|
|
2003-03-05 22:59:36 +00:00
|
|
|
if(name[0] == '/') {
|
|
|
|
sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name);
|
2003-01-09 00:55:00 +00:00
|
|
|
|
2003-03-05 22:59:36 +00:00
|
|
|
debugf("We remove the real file '%s'\n", buffer);
|
2005-03-05 21:48:58 +00:00
|
|
|
return remove(buffer);
|
2003-03-05 22:59:36 +00:00
|
|
|
}
|
2005-03-05 21:48:58 +00:00
|
|
|
return remove(name);
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2003-01-09 00:55:00 +00:00
|
|
|
}
|
|
|
|
|
2004-06-10 13:29:52 +00:00
|
|
|
int sim_rename(const char *oldpath, const char* newpath)
|
2003-01-15 11:38:03 +00:00
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
return rename(oldpath, newpath);
|
|
|
|
#else
|
2003-03-05 22:59:36 +00:00
|
|
|
char buffer1[256];
|
|
|
|
char buffer2[256];
|
2003-01-15 11:38:03 +00:00
|
|
|
|
2006-08-26 14:19:18 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
dircache_rename(oldpath, newpath);
|
|
|
|
#endif
|
|
|
|
|
2003-03-05 22:59:36 +00:00
|
|
|
if(oldpath[0] == '/') {
|
|
|
|
sprintf(buffer1, "%s%s", SIMULATOR_ARCHOS_ROOT, oldpath);
|
|
|
|
sprintf(buffer2, "%s%s", SIMULATOR_ARCHOS_ROOT, newpath);
|
2003-01-15 11:38:03 +00:00
|
|
|
|
2003-03-05 22:59:36 +00:00
|
|
|
debugf("We rename the real file '%s' to '%s'\n", buffer1, buffer2);
|
2005-03-05 21:48:58 +00:00
|
|
|
return rename(buffer1, buffer2);
|
2003-03-05 22:59:36 +00:00
|
|
|
}
|
|
|
|
return -1;
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2003-01-15 11:38:03 +00:00
|
|
|
}
|
|
|
|
|
2005-02-28 18:32:57 +00:00
|
|
|
/* rockbox off_t may be different from system off_t */
|
|
|
|
long sim_lseek(int fildes, long offset, int whence)
|
|
|
|
{
|
|
|
|
return lseek(fildes, offset, whence);
|
|
|
|
}
|
|
|
|
|
|
|
|
long sim_filesize(int fd)
|
2003-03-18 00:39:57 +00:00
|
|
|
{
|
2005-03-09 19:26:59 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
return _filelength(fd);
|
|
|
|
#else
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
if (!fstat(fd, &buf))
|
|
|
|
return buf.st_size;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
#endif
|
2003-03-18 00:39:57 +00:00
|
|
|
}
|
|
|
|
|
2002-11-12 11:32:26 +00:00
|
|
|
void fat_size(unsigned int* size, unsigned int* free)
|
|
|
|
{
|
2004-06-10 13:29:52 +00:00
|
|
|
#ifdef WIN32
|
2005-02-22 21:55:48 +00:00
|
|
|
long secperclus, bytespersec, free_clusters, num_clusters;
|
|
|
|
|
|
|
|
if (GetDiskFreeSpace(NULL, &secperclus, &bytespersec, &free_clusters,
|
|
|
|
&num_clusters)) {
|
|
|
|
if (size)
|
|
|
|
*size = num_clusters * secperclus / 2 * (bytespersec / 512);
|
|
|
|
if (free)
|
|
|
|
*free = free_clusters * secperclus / 2 * (bytespersec / 512);
|
|
|
|
}
|
2004-06-10 13:29:52 +00:00
|
|
|
#else
|
2002-11-12 11:32:26 +00:00
|
|
|
struct statfs fs;
|
|
|
|
|
|
|
|
if (!statfs(".", &fs)) {
|
2007-03-17 10:50:58 +00:00
|
|
|
DEBUGF("statfs: bsize=%d blocks=%ld free=%ld\n",
|
|
|
|
(int)fs.f_bsize, fs.f_blocks, fs.f_bfree);
|
2002-11-12 11:32:26 +00:00
|
|
|
if (size)
|
|
|
|
*size = fs.f_blocks * (fs.f_bsize / 1024);
|
|
|
|
if (free)
|
|
|
|
*free = fs.f_bfree * (fs.f_bsize / 1024);
|
|
|
|
}
|
2005-02-22 21:55:48 +00:00
|
|
|
#endif
|
2002-11-12 11:32:26 +00:00
|
|
|
else {
|
|
|
|
if (size)
|
|
|
|
*size = 0;
|
|
|
|
if (free)
|
|
|
|
*free = 0;
|
|
|
|
}
|
|
|
|
}
|
2005-02-22 12:19:12 +00:00
|
|
|
|
|
|
|
int sim_fsync(int fd)
|
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
return _commit(fd);
|
|
|
|
#else
|
|
|
|
return fsync(fd);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
/* sim-win32 */
|
|
|
|
#define dlopen(_x_, _y_) LoadLibrary(_x_)
|
2005-02-22 18:21:16 +00:00
|
|
|
#define dlsym(_x_, _y_) (void *)GetProcAddress(_x_, _y_)
|
2005-02-22 12:19:12 +00:00
|
|
|
#define dlclose(_x_) FreeLibrary(_x_)
|
|
|
|
#else
|
|
|
|
/* sim-x11 */
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
|
2006-06-17 09:42:16 +00:00
|
|
|
#define TEMP_CODEC_FILE "archos/_temp_codec%d.dll"
|
|
|
|
|
2006-01-16 23:20:58 +00:00
|
|
|
void *sim_codec_load_ram(char* codecptr, int size,
|
2006-03-02 01:08:38 +00:00
|
|
|
void* ptr2, int bufwrap, void **pd)
|
2005-07-10 16:33:03 +00:00
|
|
|
{
|
2006-03-02 01:08:38 +00:00
|
|
|
void *hdr;
|
2006-06-17 09:42:16 +00:00
|
|
|
char path[MAX_PATH];
|
2005-07-10 16:33:03 +00:00
|
|
|
int fd;
|
|
|
|
int copy_n;
|
2006-09-28 08:46:28 +00:00
|
|
|
int codec_count;
|
2005-07-10 16:33:03 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
char buf[256];
|
|
|
|
#endif
|
|
|
|
|
2006-03-02 01:08:38 +00:00
|
|
|
*pd = NULL;
|
2006-01-18 00:05:14 +00:00
|
|
|
|
2006-09-28 08:46:28 +00:00
|
|
|
/* We have to create the dynamic link library file from ram so we
|
|
|
|
can simulate the codec loading. With voice and crossfade,
|
|
|
|
multiple codecs may be loaded at the same time, so we need
|
|
|
|
to find an unused filename */
|
|
|
|
for (codec_count = 0; codec_count < 10; codec_count++)
|
|
|
|
{
|
|
|
|
sprintf(path, TEMP_CODEC_FILE, codec_count);
|
|
|
|
|
|
|
|
fd = open(path, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, S_IRWXU);
|
|
|
|
if (fd >= 0)
|
|
|
|
break; /* Created a file ok */
|
|
|
|
}
|
2007-02-01 23:08:15 +00:00
|
|
|
if (fd < 0)
|
2006-09-28 08:46:28 +00:00
|
|
|
{
|
2005-07-10 16:33:03 +00:00
|
|
|
DEBUGF("failed to open for write: %s\n", path);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bufwrap == 0)
|
|
|
|
bufwrap = size;
|
|
|
|
|
|
|
|
copy_n = bufwrap < size ? bufwrap : size;
|
|
|
|
if (write(fd, codecptr, copy_n) != copy_n) {
|
|
|
|
DEBUGF("write failed");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
size -= copy_n;
|
|
|
|
if (size > 0) {
|
|
|
|
if (write(fd, ptr2, size) != size) {
|
|
|
|
DEBUGF("write failed [2]");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(fd);
|
2006-01-18 00:05:14 +00:00
|
|
|
|
2005-07-10 16:33:03 +00:00
|
|
|
/* Now load the library. */
|
2006-03-02 01:08:38 +00:00
|
|
|
*pd = dlopen(path, RTLD_NOW);
|
|
|
|
if (*pd == NULL) {
|
2005-07-10 16:33:03 +00:00
|
|
|
DEBUGF("failed to load %s\n", path);
|
|
|
|
#ifdef WIN32
|
|
|
|
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), 0,
|
|
|
|
buf, sizeof buf, NULL);
|
|
|
|
DEBUGF("dlopen(%s): %s\n", path, buf);
|
|
|
|
#else
|
|
|
|
DEBUGF("dlopen(%s): %s\n", path, dlerror());
|
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-03-02 01:08:38 +00:00
|
|
|
hdr = dlsym(*pd, "__header");
|
2006-01-18 00:05:14 +00:00
|
|
|
if (!hdr)
|
2006-03-02 01:08:38 +00:00
|
|
|
hdr = dlsym(*pd, "___header");
|
2005-07-10 16:33:03 +00:00
|
|
|
|
2006-01-18 00:05:14 +00:00
|
|
|
return hdr; /* maybe NULL if symbol not present */
|
2005-07-10 16:33:03 +00:00
|
|
|
}
|
|
|
|
|
2006-03-02 01:08:38 +00:00
|
|
|
void sim_codec_close(void *pd)
|
2005-07-10 16:33:03 +00:00
|
|
|
{
|
2006-03-02 01:08:38 +00:00
|
|
|
dlclose(pd);
|
2005-07-10 16:33:03 +00:00
|
|
|
}
|
|
|
|
|
2006-03-02 01:08:38 +00:00
|
|
|
void *sim_plugin_load(char *plugin, void **pd)
|
2005-02-22 12:19:12 +00:00
|
|
|
{
|
2006-03-02 01:08:38 +00:00
|
|
|
void *hdr;
|
2005-02-22 12:19:12 +00:00
|
|
|
char path[256];
|
2005-02-22 18:21:16 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
char buf[256];
|
|
|
|
#endif
|
|
|
|
|
2005-02-22 12:19:12 +00:00
|
|
|
snprintf(path, sizeof path, "archos%s", plugin);
|
|
|
|
|
2006-03-02 01:08:38 +00:00
|
|
|
*pd = NULL;
|
2006-01-16 23:20:58 +00:00
|
|
|
|
2006-03-02 01:08:38 +00:00
|
|
|
*pd = dlopen(path, RTLD_NOW);
|
|
|
|
if (*pd == NULL) {
|
2005-02-22 18:21:16 +00:00
|
|
|
DEBUGF("failed to load %s\n", plugin);
|
|
|
|
#ifdef WIN32
|
|
|
|
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), 0,
|
|
|
|
buf, sizeof buf, NULL);
|
|
|
|
DEBUGF("dlopen(%s): %s\n", path, buf);
|
|
|
|
#else
|
|
|
|
DEBUGF("dlopen(%s): %s\n", path, dlerror());
|
|
|
|
#endif
|
2005-02-22 12:19:12 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-03-02 01:08:38 +00:00
|
|
|
hdr = dlsym(*pd, "__header");
|
2006-01-16 23:20:58 +00:00
|
|
|
if (!hdr)
|
2006-03-02 01:08:38 +00:00
|
|
|
hdr = dlsym(*pd, "___header");
|
2006-01-16 23:20:58 +00:00
|
|
|
|
|
|
|
return hdr; /* maybe NULL if symbol not present */
|
2005-02-22 12:19:12 +00:00
|
|
|
}
|
|
|
|
|
2006-03-02 01:08:38 +00:00
|
|
|
void sim_plugin_close(void *pd)
|
2005-02-22 12:19:12 +00:00
|
|
|
{
|
2006-03-02 01:08:38 +00:00
|
|
|
dlclose(pd);
|
2005-02-22 12:19:12 +00:00
|
|
|
}
|
|
|
|
|
2006-01-25 12:15:25 +00:00
|
|
|
#if !defined(WIN32) || defined(SDL)
|
2005-02-22 12:19:12 +00:00
|
|
|
/* the win32 version is in debug-win32.c */
|
|
|
|
|
|
|
|
void debug_init(void)
|
|
|
|
{
|
|
|
|
/* nothing to be done */
|
|
|
|
}
|
|
|
|
|
|
|
|
void debugf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start( ap, fmt );
|
|
|
|
vfprintf( stderr, fmt, ap );
|
|
|
|
va_end( ap );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ldebugf(const char* file, int line, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start( ap, fmt );
|
|
|
|
fprintf( stderr, "%s:%d ", file, line );
|
|
|
|
vfprintf( stderr, fmt, ap );
|
|
|
|
va_end( ap );
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2005-03-05 21:48:58 +00:00
|
|
|
/* rockbox off_t may be different from system off_t */
|
|
|
|
int sim_ftruncate(int fd, long length)
|
2005-02-22 12:19:12 +00:00
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
return _chsize(fd, length);
|
|
|
|
#else
|
|
|
|
return ftruncate(fd, length);
|
|
|
|
#endif
|
|
|
|
}
|