physfs/src/platform_beos.cpp

250 lines
6.6 KiB
C++
Raw Normal View History

2002-05-24 11:46:43 +02:00
/*
* BeOS platform-dependent support routines for PhysicsFS.
*
2007-03-11 11:10:28 +01:00
* Please see the file LICENSE.txt in the source's root directory.
2002-05-24 11:46:43 +02:00
*
* This file written by Ryan C. Gordon.
*/
#define __PHYSICSFS_INTERNAL__
#include "physfs_platforms.h"
#ifdef PHYSFS_PLATFORM_BEOS
2002-05-24 11:46:43 +02:00
2008-11-05 20:42:48 +01:00
#ifdef PHYSFS_PLATFORM_HAIKU
#include <os/kernel/OS.h>
#include <os/app/Roster.h>
#include <os/storage/Volume.h>
#include <os/storage/VolumeRoster.h>
#include <os/storage/Directory.h>
#include <os/storage/Entry.h>
#include <os/storage/Path.h>
#include <os/kernel/fs_info.h>
#include <os/device/scsi.h>
#include <os/support/Locker.h>
#else
2002-05-24 11:46:43 +02:00
#include <be/kernel/OS.h>
#include <be/app/Roster.h>
#include <be/storage/Volume.h>
#include <be/storage/VolumeRoster.h>
#include <be/storage/Directory.h>
#include <be/storage/Entry.h>
#include <be/storage/Path.h>
#include <be/kernel/fs_info.h>
#include <be/device/scsi.h>
#include <be/support/Locker.h>
2008-11-05 20:42:48 +01:00
#endif
2002-05-24 11:46:43 +02:00
#include <errno.h>
#include <unistd.h>
#include "physfs_internal.h"
int __PHYSFS_platformInit(void)
{
return(1); /* always succeed. */
} /* __PHYSFS_platformInit */
int __PHYSFS_platformDeinit(void)
{
return(1); /* always succeed. */
} /* __PHYSFS_platformDeinit */
static char *getMountPoint(const char *devname)
{
BVolumeRoster mounts;
BVolume vol;
mounts.Rewind();
while (mounts.GetNextVolume(&vol) == B_NO_ERROR)
{
fs_info fsinfo;
fs_stat_dev(vol.Device(), &fsinfo);
if (strcmp(devname, fsinfo.device_name) == 0)
{
//char buf[B_FILE_NAME_LENGTH];
BDirectory directory;
BEntry entry;
BPath path;
status_t rc;
rc = vol.GetRootDirectory(&directory);
2002-07-25 23:52:07 +02:00
BAIL_IF_MACRO(rc < B_OK, strerror(rc), NULL);
2002-05-24 11:46:43 +02:00
rc = directory.GetEntry(&entry);
2002-07-25 23:52:07 +02:00
BAIL_IF_MACRO(rc < B_OK, strerror(rc), NULL);
2002-05-24 11:46:43 +02:00
rc = entry.GetPath(&path);
2002-07-25 23:52:07 +02:00
BAIL_IF_MACRO(rc < B_OK, strerror(rc), NULL);
2002-05-24 11:46:43 +02:00
const char *str = path.Path();
BAIL_IF_MACRO(str == NULL, ERR_OS_ERROR, NULL); /* ?! */
2005-07-25 03:38:07 +02:00
char *retval = (char *) allocator.Malloc(strlen(str) + 1);
2002-05-24 11:46:43 +02:00
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
strcpy(retval, str);
return(retval);
} /* if */
} /* while */
return(NULL);
} /* getMountPoint */
/*
* This function is lifted from Simple Directmedia Layer (SDL):
* http://www.libsdl.org/
*/
static void tryDir(const char *d, PHYSFS_StringCallback callback, void *data)
2002-05-24 11:46:43 +02:00
{
BDirectory dir;
dir.SetTo(d);
2002-05-24 11:46:43 +02:00
if (dir.InitCheck() != B_NO_ERROR)
return;
dir.Rewind();
BEntry entry;
while (dir.GetNextEntry(&entry) >= 0)
{
BPath path;
const char *name;
entry_ref e;
if (entry.GetPath(&path) != B_NO_ERROR)
continue;
name = path.Path();
if (entry.GetRef(&e) != B_NO_ERROR)
continue;
if (entry.IsDirectory())
{
if (strcmp(e.name, "floppy") != 0)
tryDir(name, callback, data);
2002-05-24 11:46:43 +02:00
} /* if */
else
{
bool add_it = false;
device_geometry g;
if (strcmp(e.name, "raw") == 0) /* ignore partitions. */
{
const int devfd = open(name, O_RDONLY);
2002-05-24 11:46:43 +02:00
if (devfd >= 0)
{
const int rc = ioctl(devfd, B_GET_GEOMETRY, &g, sizeof(g));
close(devfd);
if (rc >= 0)
2002-05-24 11:46:43 +02:00
{
if (g.device_type == B_CD)
{
char *mntpnt = getMountPoint(name);
if (mntpnt != NULL)
{
callback(data, mntpnt);
2005-07-25 03:38:07 +02:00
allocator.Free(mntpnt); /* !!! FIXME: lose this malloc! */
} /* if */
2002-05-24 11:46:43 +02:00
} /* if */
} /* if */
} /* if */
} /* if */
} /* else */
} /* while */
} /* tryDir */
void __PHYSFS_platformDetectAvailableCDs(PHYSFS_StringCallback cb, void *data)
2002-05-24 11:46:43 +02:00
{
tryDir("/dev/disk", cb, data);
2002-05-24 11:46:43 +02:00
} /* __PHYSFS_platformDetectAvailableCDs */
static team_id getTeamID(void)
{
thread_info info;
thread_id tid = find_thread(NULL);
get_thread_info(tid, &info);
return(info.team);
} /* getTeamID */
2002-05-24 11:46:43 +02:00
char *__PHYSFS_platformCalcBaseDir(const char *argv0)
{
/* in case there isn't a BApplication yet, we'll construct a roster. */
BRoster roster;
app_info info;
status_t rc = roster.GetRunningAppInfo(getTeamID(), &info);
2002-07-25 23:52:07 +02:00
BAIL_IF_MACRO(rc < B_OK, strerror(rc), NULL);
2002-05-24 11:46:43 +02:00
BEntry entry(&(info.ref), true);
BPath path;
rc = entry.GetPath(&path); /* (path) now has binary's path. */
assert(rc == B_OK);
rc = path.GetParent(&path); /* chop filename, keep directory. */
assert(rc == B_OK);
const char *str = path.Path();
assert(str != NULL);
2005-07-25 03:38:07 +02:00
char *retval = (char *) allocator.Malloc(strlen(str) + 1);
2002-05-24 11:46:43 +02:00
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
strcpy(retval, str);
return(retval);
} /* __PHYSFS_platformCalcBaseDir */
void *__PHYSFS_platformGetThreadID(void)
2002-05-24 11:46:43 +02:00
{
return((void *) find_thread(NULL));
2002-05-24 11:46:43 +02:00
} /* __PHYSFS_platformGetThreadID */
char *__PHYSFS_platformRealPath(const char *path)
{
BPath normalized(path, NULL, true); /* force normalization of path. */
2002-05-24 11:46:43 +02:00
const char *resolved_path = normalized.Path();
BAIL_IF_MACRO(resolved_path == NULL, ERR_NO_SUCH_FILE, NULL);
2005-07-25 03:38:07 +02:00
char *retval = (char *) allocator.Malloc(strlen(resolved_path) + 1);
2002-05-24 11:46:43 +02:00
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
strcpy(retval, resolved_path);
return(retval);
} /* __PHYSFS_platformRealPath */
char *__PHYSFS_platformCurrentDir(void)
{
return(__PHYSFS_platformRealPath(".")); /* let BPath sort it out. */
} /* __PHYSFS_platformCurrentDir */
2002-05-24 11:46:43 +02:00
void *__PHYSFS_platformCreateMutex(void)
{
return(new BLocker("PhysicsFS lock", true));
2002-05-24 11:46:43 +02:00
} /* __PHYSFS_platformCreateMutex */
void __PHYSFS_platformDestroyMutex(void *mutex)
{
delete ((BLocker *) mutex);
2002-05-24 11:46:43 +02:00
} /* __PHYSFS_platformDestroyMutex */
int __PHYSFS_platformGrabMutex(void *mutex)
{
return ((BLocker *) mutex)->Lock() ? 1 : 0;
2002-05-24 11:46:43 +02:00
} /* __PHYSFS_platformGrabMutex */
void __PHYSFS_platformReleaseMutex(void *mutex)
{
((BLocker *) mutex)->Unlock();
2002-05-24 11:46:43 +02:00
} /* __PHYSFS_platformReleaseMutex */
int __PHYSFS_platformSetDefaultAllocator(PHYSFS_Allocator *a)
{
return(0); /* just use malloc() and friends. */
} /* __PHYSFS_platformSetDefaultAllocator */
#endif /* PHYSFS_PLATFORM_BEOS */
2002-05-24 11:46:43 +02:00
/* end of beos.cpp ... */