2001-07-09 02:49:41 +02:00
|
|
|
/*
|
|
|
|
* GRP support routines for PhysicsFS.
|
|
|
|
*
|
|
|
|
* This driver handles BUILD engine archives ("groupfiles"). This format
|
|
|
|
* (but not this driver) was put together by Ken Silverman.
|
|
|
|
*
|
|
|
|
* The format is simple enough. In Ken's words:
|
|
|
|
*
|
|
|
|
* What's the .GRP file format?
|
|
|
|
*
|
|
|
|
* The ".grp" file format is just a collection of a lot of files stored
|
|
|
|
* into 1 big one. I tried to make the format as simple as possible: The
|
|
|
|
* first 12 bytes contains my name, "KenSilverman". The next 4 bytes is
|
|
|
|
* the number of files that were compacted into the group file. Then for
|
|
|
|
* each file, there is a 16 byte structure, where the first 12 bytes are
|
|
|
|
* the filename, and the last 4 bytes are the file's size. The rest of
|
|
|
|
* the group file is just the raw data packed one after the other in the
|
|
|
|
* same order as the list of files.
|
|
|
|
*
|
|
|
|
* (That info is from http://www.advsys.net/ken/build.htm ...)
|
|
|
|
*
|
|
|
|
* As it was never a concern in the DOS-based Duke Nukem days, I treat these
|
|
|
|
* archives as CASE-INSENSITIVE. Opening "myfile.txt" and "MYFILE.TXT" both
|
|
|
|
* work, and get the same file.
|
|
|
|
*
|
|
|
|
* Please see the file LICENSE in the source's root directory.
|
|
|
|
*
|
|
|
|
* This file written by Ryan C. Gordon.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include "physfs.h"
|
|
|
|
|
|
|
|
#define __PHYSICSFS_INTERNAL__
|
|
|
|
#include "physfs_internal.h"
|
|
|
|
|
|
|
|
#if (!defined PHYSFS_SUPPORTS_GRP)
|
|
|
|
#error PHYSFS_SUPPORTS_GRP must be defined.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
void *handle;
|
|
|
|
char *filename;
|
2002-03-24 20:47:33 +01:00
|
|
|
PHYSFS_uint32 totalEntries;
|
2001-07-09 02:49:41 +02:00
|
|
|
} GRPinfo;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
void *handle;
|
|
|
|
PHYSFS_uint64 startPos;
|
|
|
|
PHYSFS_uint64 size;
|
2001-07-09 02:49:41 +02:00
|
|
|
} GRPfileinfo;
|
|
|
|
|
|
|
|
|
2001-09-02 06:55:25 +02:00
|
|
|
static void GRP_dirClose(DirHandle *h);
|
2002-03-24 20:47:33 +01:00
|
|
|
static PHYSFS_sint64 GRP_read(FileHandle *handle, void *buffer,
|
|
|
|
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount);
|
2001-09-02 06:55:25 +02:00
|
|
|
static int GRP_eof(FileHandle *handle);
|
2002-03-24 20:47:33 +01:00
|
|
|
static PHYSFS_sint64 GRP_tell(FileHandle *handle);
|
|
|
|
static int GRP_seek(FileHandle *handle, PHYSFS_uint64 offset);
|
|
|
|
static PHYSFS_sint64 GRP_fileLength(FileHandle *handle);
|
2001-09-02 06:55:25 +02:00
|
|
|
static int GRP_fileClose(FileHandle *handle);
|
|
|
|
static int GRP_isArchive(const char *filename, int forWriting);
|
|
|
|
static DirHandle *GRP_openArchive(const char *name, int forWriting);
|
|
|
|
static LinkedStringList *GRP_enumerateFiles(DirHandle *h,
|
|
|
|
const char *dirname,
|
|
|
|
int omitSymLinks);
|
|
|
|
static int GRP_exists(DirHandle *h, const char *name);
|
|
|
|
static int GRP_isDirectory(DirHandle *h, const char *name);
|
|
|
|
static int GRP_isSymLink(DirHandle *h, const char *name);
|
|
|
|
static FileHandle *GRP_openRead(DirHandle *h, const char *name);
|
|
|
|
|
|
|
|
static const FileFunctions __PHYSFS_FileFunctions_GRP =
|
|
|
|
{
|
|
|
|
GRP_read, /* read() method */
|
|
|
|
NULL, /* write() method */
|
|
|
|
GRP_eof, /* eof() method */
|
|
|
|
GRP_tell, /* tell() method */
|
|
|
|
GRP_seek, /* seek() method */
|
|
|
|
GRP_fileLength, /* fileLength() method */
|
|
|
|
GRP_fileClose /* fileClose() method */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const DirFunctions __PHYSFS_DirFunctions_GRP =
|
|
|
|
{
|
|
|
|
GRP_isArchive, /* isArchive() method */
|
|
|
|
GRP_openArchive, /* openArchive() method */
|
|
|
|
GRP_enumerateFiles, /* enumerateFiles() method */
|
|
|
|
GRP_exists, /* exists() method */
|
|
|
|
GRP_isDirectory, /* isDirectory() method */
|
|
|
|
GRP_isSymLink, /* isSymLink() method */
|
|
|
|
GRP_openRead, /* openRead() method */
|
|
|
|
NULL, /* openWrite() method */
|
|
|
|
NULL, /* openAppend() method */
|
|
|
|
NULL, /* remove() method */
|
|
|
|
NULL, /* mkdir() method */
|
|
|
|
GRP_dirClose /* dirClose() method */
|
|
|
|
};
|
|
|
|
|
|
|
|
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_GRP =
|
|
|
|
{
|
|
|
|
"GRP",
|
|
|
|
"Build engine Groupfile format",
|
2001-09-15 00:55:44 +02:00
|
|
|
"Ryan C. Gordon <icculus@clutteredmind.org>",
|
2001-09-02 06:55:25 +02:00
|
|
|
"http://www.icculus.org/physfs/",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void GRP_dirClose(DirHandle *h)
|
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
__PHYSFS_platformClose( ((GRPinfo *) h->opaque)->handle );
|
|
|
|
free(((GRPinfo *) h->opaque)->filename);
|
2001-09-02 06:55:25 +02:00
|
|
|
free(h->opaque);
|
|
|
|
free(h);
|
|
|
|
} /* GRP_dirClose */
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
|
2002-03-24 20:47:33 +01:00
|
|
|
static PHYSFS_sint64 GRP_read(FileHandle *handle, void *buffer,
|
|
|
|
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
|
2001-07-09 02:49:41 +02:00
|
|
|
{
|
|
|
|
GRPfileinfo *finfo = (GRPfileinfo *) (handle->opaque);
|
2002-03-25 09:13:06 +01:00
|
|
|
void *fh = finfo->handle;
|
|
|
|
PHYSFS_sint64 curPos = __PHYSFS_platformTell(fh);
|
|
|
|
PHYSFS_uint64 bytesLeft = (finfo->startPos + finfo->size) - curPos;
|
2002-04-03 06:20:07 +02:00
|
|
|
/*!!! If objSize is '1' it's quite likely that objsLeft will be greater than 32-bits */
|
|
|
|
PHYSFS_uint32 objsLeft = (PHYSFS_uint32)(bytesLeft / objSize);
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
if (objsLeft < objCount)
|
|
|
|
objCount = objsLeft;
|
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
return(__PHYSFS_platformRead(fh, buffer, objSize, objCount));
|
2001-07-09 02:49:41 +02:00
|
|
|
} /* GRP_read */
|
|
|
|
|
|
|
|
|
|
|
|
static int GRP_eof(FileHandle *handle)
|
|
|
|
{
|
|
|
|
GRPfileinfo *finfo = (GRPfileinfo *) (handle->opaque);
|
2002-03-25 09:13:06 +01:00
|
|
|
void *fh = finfo->handle;
|
|
|
|
return(__PHYSFS_platformTell(fh) >= finfo->startPos + finfo->size);
|
2001-07-09 02:49:41 +02:00
|
|
|
} /* GRP_eof */
|
|
|
|
|
|
|
|
|
2002-03-24 20:47:33 +01:00
|
|
|
static PHYSFS_sint64 GRP_tell(FileHandle *handle)
|
2001-07-09 02:49:41 +02:00
|
|
|
{
|
|
|
|
GRPfileinfo *finfo = (GRPfileinfo *) (handle->opaque);
|
2002-03-25 09:13:06 +01:00
|
|
|
return(__PHYSFS_platformTell(finfo->handle) - finfo->startPos);
|
2001-07-09 02:49:41 +02:00
|
|
|
} /* GRP_tell */
|
|
|
|
|
|
|
|
|
2002-03-24 20:47:33 +01:00
|
|
|
static int GRP_seek(FileHandle *handle, PHYSFS_uint64 offset)
|
2001-07-09 02:49:41 +02:00
|
|
|
{
|
|
|
|
GRPfileinfo *finfo = (GRPfileinfo *) (handle->opaque);
|
2002-04-03 06:20:07 +02:00
|
|
|
/*!!! Why isn't newPos a 64-bit??? */
|
|
|
|
int newPos = (int)(finfo->startPos + offset);
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
BAIL_IF_MACRO(offset < 0, ERR_INVALID_ARGUMENT, 0);
|
|
|
|
BAIL_IF_MACRO(newPos > finfo->startPos + finfo->size, ERR_PAST_EOF, 0);
|
2002-03-25 09:13:06 +01:00
|
|
|
return(__PHYSFS_platformSeek(finfo->handle, newPos));
|
2001-07-09 02:49:41 +02:00
|
|
|
} /* GRP_seek */
|
|
|
|
|
|
|
|
|
2002-03-24 20:47:33 +01:00
|
|
|
static PHYSFS_sint64 GRP_fileLength(FileHandle *handle)
|
2001-07-09 06:15:35 +02:00
|
|
|
{
|
|
|
|
GRPfileinfo *finfo = (GRPfileinfo *) (handle->opaque);
|
|
|
|
return(finfo->size);
|
|
|
|
} /* GRP_fileLength */
|
|
|
|
|
|
|
|
|
2001-07-09 02:49:41 +02:00
|
|
|
static int GRP_fileClose(FileHandle *handle)
|
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
GRPfileinfo *finfo = (GRPfileinfo *) (handle->opaque);
|
|
|
|
BAIL_IF_MACRO(__PHYSFS_platformClose(finfo->handle), NULL, 0);
|
|
|
|
|
2001-07-09 02:49:41 +02:00
|
|
|
free(handle->opaque);
|
|
|
|
free(handle);
|
|
|
|
return(1);
|
|
|
|
} /* GRP_fileClose */
|
|
|
|
|
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
static int openGrp(const char *filename, int forWriting,
|
|
|
|
void **fh, PHYSFS_sint32 *count)
|
2001-07-09 02:49:41 +02:00
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
PHYSFS_uint8 buf[12];
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
*fh = NULL;
|
|
|
|
BAIL_IF_MACRO(forWriting, ERR_ARC_IS_READ_ONLY, 0);
|
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
*fh = __PHYSFS_platformOpenRead(filename);
|
|
|
|
BAIL_IF_MACRO(*fh == NULL, NULL, 0);
|
2001-07-09 02:49:41 +02:00
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
if (__PHYSFS_platformRead(*fh, buf, 12, 1) != 1)
|
|
|
|
goto openGrp_failed;
|
|
|
|
|
|
|
|
if (memcmp(buf, "KenSilverman", 12) != 0)
|
|
|
|
{
|
|
|
|
__PHYSFS_setError(ERR_UNSUPPORTED_ARCHIVE);
|
|
|
|
goto openGrp_failed;
|
|
|
|
} /* if */
|
2001-07-09 02:49:41 +02:00
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
if (__PHYSFS_platformRead(*fh, count, sizeof (PHYSFS_sint32), 1) != 1)
|
|
|
|
goto openGrp_failed;
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
return(1);
|
2002-03-25 09:13:06 +01:00
|
|
|
|
|
|
|
openGrp_failed:
|
|
|
|
if (*fh != NULL)
|
|
|
|
__PHYSFS_platformClose(*fh);
|
|
|
|
|
|
|
|
*count = -1;
|
|
|
|
*fh = NULL;
|
|
|
|
return(0);
|
2001-07-09 02:49:41 +02:00
|
|
|
} /* openGrp */
|
|
|
|
|
|
|
|
|
|
|
|
static int GRP_isArchive(const char *filename, int forWriting)
|
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
void *fh;
|
2001-07-09 02:49:41 +02:00
|
|
|
int fileCount;
|
|
|
|
int retval = openGrp(filename, forWriting, &fh, &fileCount);
|
|
|
|
|
|
|
|
if (fh != NULL)
|
2002-03-25 09:13:06 +01:00
|
|
|
__PHYSFS_platformClose(fh);
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
return(retval);
|
|
|
|
} /* GRP_isArchive */
|
|
|
|
|
|
|
|
|
|
|
|
static DirHandle *GRP_openArchive(const char *name, int forWriting)
|
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
void *fh = NULL;
|
2001-07-09 02:49:41 +02:00
|
|
|
int fileCount;
|
|
|
|
DirHandle *retval = malloc(sizeof (DirHandle));
|
|
|
|
|
|
|
|
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
|
|
|
|
retval->opaque = malloc(sizeof (GRPinfo));
|
|
|
|
if (retval->opaque == NULL)
|
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
__PHYSFS_setError(ERR_OUT_OF_MEMORY);
|
|
|
|
goto GRP_openArchive_failed;
|
2001-07-09 02:49:41 +02:00
|
|
|
} /* if */
|
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
((GRPinfo *) retval->opaque)->filename = (char *) malloc(strlen(name) + 1);
|
|
|
|
if (((GRPinfo *) retval->opaque)->filename == NULL)
|
2001-07-09 02:49:41 +02:00
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
__PHYSFS_setError(ERR_OUT_OF_MEMORY);
|
|
|
|
goto GRP_openArchive_failed;
|
2001-07-09 02:49:41 +02:00
|
|
|
} /* if */
|
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
if (!openGrp(name, forWriting, &fh, &fileCount))
|
|
|
|
goto GRP_openArchive_failed;
|
|
|
|
|
|
|
|
strcpy(((GRPinfo *) retval->opaque)->filename, name);
|
2001-07-09 02:49:41 +02:00
|
|
|
((GRPinfo *) retval->opaque)->handle = fh;
|
|
|
|
((GRPinfo *) retval->opaque)->totalEntries = fileCount;
|
|
|
|
retval->funcs = &__PHYSFS_DirFunctions_GRP;
|
|
|
|
return(retval);
|
2002-03-25 09:13:06 +01:00
|
|
|
|
|
|
|
GRP_openArchive_failed:
|
|
|
|
if (retval != NULL)
|
|
|
|
{
|
|
|
|
if (retval->opaque != NULL)
|
|
|
|
{
|
|
|
|
if ( ((GRPinfo *) retval->opaque)->filename != NULL )
|
|
|
|
free( ((GRPinfo *) retval->opaque)->filename );
|
|
|
|
free(retval->opaque);
|
|
|
|
} /* if */
|
|
|
|
free(retval);
|
|
|
|
} /* if */
|
|
|
|
|
|
|
|
if (fh != NULL)
|
|
|
|
__PHYSFS_platformClose(fh);
|
|
|
|
|
|
|
|
return(NULL);
|
2001-07-09 02:49:41 +02:00
|
|
|
} /* GRP_openArchive */
|
|
|
|
|
|
|
|
|
2001-07-16 19:36:28 +02:00
|
|
|
static LinkedStringList *GRP_enumerateFiles(DirHandle *h,
|
|
|
|
const char *dirname,
|
|
|
|
int omitSymLinks)
|
2001-07-09 02:49:41 +02:00
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
PHYSFS_uint8 buf[16];
|
2001-07-09 02:49:41 +02:00
|
|
|
GRPinfo *g = (GRPinfo *) (h->opaque);
|
2002-03-25 09:13:06 +01:00
|
|
|
void *fh = g->handle;
|
2002-04-03 06:20:07 +02:00
|
|
|
/*!!! This should be a uint32 and not an int...look at loops below */
|
|
|
|
PHYSFS_uint32 i;
|
2001-07-09 02:49:41 +02:00
|
|
|
LinkedStringList *retval = NULL;
|
|
|
|
LinkedStringList *l = NULL;
|
|
|
|
LinkedStringList *prev = NULL;
|
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
/* !!! FIXME: Does this consider "/" ? */
|
2001-07-15 11:28:37 +02:00
|
|
|
if (*dirname != '\0') /* no directories in GRP files. */
|
|
|
|
return(NULL);
|
|
|
|
|
2001-07-09 02:49:41 +02:00
|
|
|
/* jump to first file entry... */
|
2002-03-25 09:13:06 +01:00
|
|
|
BAIL_IF_MACRO(!__PHYSFS_platformSeek(fh, 16), NULL, NULL);
|
2001-07-09 02:49:41 +02:00
|
|
|
|
2002-04-03 06:20:07 +02:00
|
|
|
/*!!! i needs to be unsigned */
|
2001-07-09 02:49:41 +02:00
|
|
|
for (i = 0; i < g->totalEntries; i++)
|
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
BAIL_IF_MACRO(__PHYSFS_platformRead(fh, buf, 16, 1) != 1, NULL, retval);
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
buf[12] = '\0'; /* FILENAME.EXT is all you get. */
|
|
|
|
|
|
|
|
l = (LinkedStringList *) malloc(sizeof (LinkedStringList));
|
2001-07-16 16:36:02 +02:00
|
|
|
if (l == NULL)
|
2001-07-09 02:49:41 +02:00
|
|
|
break;
|
|
|
|
|
2002-04-01 20:48:24 +02:00
|
|
|
l->str = (char *) malloc(strlen((const char *) buf) + 1);
|
2001-07-09 02:49:41 +02:00
|
|
|
if (l->str == NULL)
|
|
|
|
{
|
|
|
|
free(l);
|
|
|
|
break;
|
|
|
|
} /* if */
|
|
|
|
|
2002-04-01 20:48:24 +02:00
|
|
|
strcpy(l->str, (const char *) buf);
|
2001-07-16 16:36:02 +02:00
|
|
|
|
2001-07-09 02:49:41 +02:00
|
|
|
if (retval == NULL)
|
|
|
|
retval = l;
|
|
|
|
else
|
|
|
|
prev->next = l;
|
|
|
|
|
|
|
|
prev = l;
|
|
|
|
l->next = NULL;
|
|
|
|
} /* for */
|
|
|
|
|
|
|
|
return(retval);
|
|
|
|
} /* GRP_enumerateFiles */
|
|
|
|
|
|
|
|
|
2002-03-24 20:47:33 +01:00
|
|
|
static PHYSFS_sint32 getFileEntry(DirHandle *h, const char *name,
|
2002-04-01 20:48:24 +02:00
|
|
|
PHYSFS_uint32 *size)
|
2001-07-09 02:49:41 +02:00
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
PHYSFS_uint8 buf[16];
|
2001-07-09 02:49:41 +02:00
|
|
|
GRPinfo *g = (GRPinfo *) (h->opaque);
|
2002-03-25 09:13:06 +01:00
|
|
|
void *fh = g->handle;
|
2002-04-03 06:20:07 +02:00
|
|
|
/*!!! This should be a uint32 and not an int...look at loops below */
|
|
|
|
PHYSFS_uint32 i;
|
2001-07-09 02:49:41 +02:00
|
|
|
char *ptr;
|
2001-07-09 03:43:28 +02:00
|
|
|
int retval = (g->totalEntries + 1) * 16; /* offset of raw file data */
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
/* Rule out filenames to avoid unneeded file i/o... */
|
|
|
|
if (strchr(name, '/') != NULL) /* no directories in groupfiles. */
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
ptr = strchr(name, '.');
|
|
|
|
if ((ptr) && (strlen(ptr) > 4)) /* 3 char extension at most. */
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
if (strlen(name) > 12)
|
|
|
|
return(-1);
|
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
/* jump to first file entry... */
|
|
|
|
BAIL_IF_MACRO(!__PHYSFS_platformSeek(fh, 16), NULL, -1);
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
for (i = 0; i < g->totalEntries; i++)
|
|
|
|
{
|
2002-03-24 20:47:33 +01:00
|
|
|
PHYSFS_sint32 l = 0;
|
2001-07-09 02:49:41 +02:00
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
BAIL_IF_MACRO(__PHYSFS_platformRead(fh, buf, 12, 1) != 1, NULL, -1);
|
|
|
|
BAIL_IF_MACRO(__PHYSFS_platformRead(fh, &l, sizeof (l), 1) != 1, NULL, -1);
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
buf[12] = '\0'; /* FILENAME.EXT is all you get. */
|
|
|
|
|
2002-04-01 20:48:24 +02:00
|
|
|
if (__PHYSFS_platformStricmp((const char *) buf, name) == 0)
|
2001-07-09 02:49:41 +02:00
|
|
|
{
|
|
|
|
if (size != NULL)
|
2002-03-24 20:47:33 +01:00
|
|
|
*size = l;
|
2001-07-09 02:49:41 +02:00
|
|
|
return(retval);
|
|
|
|
} /* if */
|
|
|
|
|
2002-03-24 20:47:33 +01:00
|
|
|
retval += l;
|
2001-07-09 02:49:41 +02:00
|
|
|
} /* for */
|
|
|
|
|
|
|
|
return(-1); /* not found. */
|
|
|
|
} /* getFileEntry */
|
|
|
|
|
|
|
|
|
|
|
|
static int GRP_exists(DirHandle *h, const char *name)
|
|
|
|
{
|
|
|
|
return(getFileEntry(h, name, NULL) != -1);
|
|
|
|
} /* GRP_exists */
|
|
|
|
|
|
|
|
|
|
|
|
static int GRP_isDirectory(DirHandle *h, const char *name)
|
|
|
|
{
|
|
|
|
return(0); /* never directories in a groupfile. */
|
|
|
|
} /* GRP_isDirectory */
|
|
|
|
|
|
|
|
|
|
|
|
static int GRP_isSymLink(DirHandle *h, const char *name)
|
|
|
|
{
|
|
|
|
return(0); /* never symlinks in a groupfile. */
|
|
|
|
} /* GRP_isSymLink */
|
|
|
|
|
|
|
|
|
|
|
|
static FileHandle *GRP_openRead(DirHandle *h, const char *name)
|
|
|
|
{
|
2002-03-25 09:13:06 +01:00
|
|
|
const char *filename = ((GRPinfo *) h->opaque)->filename;
|
2001-07-09 02:49:41 +02:00
|
|
|
FileHandle *retval;
|
|
|
|
GRPfileinfo *finfo;
|
2002-03-25 09:13:06 +01:00
|
|
|
PHYSFS_uint32 size;
|
2002-03-24 20:47:33 +01:00
|
|
|
PHYSFS_sint32 offset;
|
2001-07-09 02:49:41 +02:00
|
|
|
|
|
|
|
offset = getFileEntry(h, name, &size);
|
|
|
|
BAIL_IF_MACRO(offset == -1, ERR_NO_SUCH_FILE, NULL);
|
|
|
|
|
|
|
|
retval = (FileHandle *) malloc(sizeof (FileHandle));
|
|
|
|
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
|
|
|
|
finfo = (GRPfileinfo *) malloc(sizeof (GRPfileinfo));
|
|
|
|
if (finfo == NULL)
|
|
|
|
{
|
|
|
|
free(retval);
|
|
|
|
BAIL_IF_MACRO(1, ERR_OUT_OF_MEMORY, NULL);
|
|
|
|
} /* if */
|
|
|
|
|
2002-03-25 09:13:06 +01:00
|
|
|
finfo->handle = __PHYSFS_platformOpenRead(filename);
|
|
|
|
if ( (finfo->handle == NULL) ||
|
|
|
|
(!__PHYSFS_platformSeek(finfo->handle, offset)) )
|
|
|
|
{
|
|
|
|
free(finfo);
|
|
|
|
free(retval);
|
|
|
|
return(NULL);
|
|
|
|
} /* if */
|
|
|
|
|
2001-07-09 02:49:41 +02:00
|
|
|
finfo->startPos = offset;
|
|
|
|
finfo->size = size;
|
|
|
|
retval->opaque = (void *) finfo;
|
|
|
|
retval->funcs = &__PHYSFS_FileFunctions_GRP;
|
|
|
|
retval->dirHandle = h;
|
|
|
|
return(retval);
|
|
|
|
} /* GRP_openRead */
|
|
|
|
|
|
|
|
/* end of grp.c ... */
|
|
|
|
|