Skip to content

Commit

Permalink
Turns out the CoreFoundation API is way simpler.
Browse files Browse the repository at this point in the history
Fixed assertion, too.
  • Loading branch information
icculus committed Jun 25, 2012
1 parent c59105b commit e70c684
Showing 1 changed file with 1 addition and 53 deletions.
54 changes: 1 addition & 53 deletions src/platform_macosx.c
Expand Up @@ -21,8 +21,6 @@
#include <sys/mount.h>
#endif

#include <sys/stat.h>

/* Seems to get defined in some system header... */
#ifdef Free
#undef Free
Expand Down Expand Up @@ -231,14 +229,10 @@ static char *convertCFString(CFStringRef cfstr)

char *__PHYSFS_platformCalcBaseDir(const char *argv0)
{
struct stat statbuf;
CFRange cfrange;
CFURLRef cfurl = NULL;
CFStringRef cfstr = NULL;
CFMutableStringRef cfmutstr = NULL;
char *retval = NULL;
char *cstr = NULL;
int rc = 0;

cfurl = CFBundleCopyBundleURL(CFBundleGetMainBundle());
BAIL_IF_MACRO(cfurl == NULL, PHYSFS_ERR_OS_ERROR, NULL);
Expand All @@ -248,53 +242,7 @@ char *__PHYSFS_platformCalcBaseDir(const char *argv0)
cfmutstr = CFStringCreateMutableCopy(cfallocator, 0, cfstr);
CFRelease(cfstr);
BAIL_IF_MACRO(!cfmutstr, PHYSFS_ERR_OUT_OF_MEMORY, NULL);

/* we have to decide if we got a binary's path, or the .app dir... */
cstr = convertCFString(cfmutstr);
if (cstr == NULL)
{
CFRelease(cfmutstr);
return NULL;
} /* if */

rc = stat(cstr, &statbuf);
allocator.Free(cstr); /* done with this. */
if (rc == -1)
{
CFRelease(cfmutstr);
return NULL; /* maybe default behaviour will work? */
} /* if */

if (S_ISREG(statbuf.st_mode))
{
/* Find last dirsep so we can chop the filename from the path. */
cfrange = CFStringFind(cfmutstr, CFSTR("/"), kCFCompareBackwards);
if (cfrange.location == kCFNotFound)
{
assert(0); /* shouldn't ever hit this... */
CFRelease(cfmutstr);
return NULL;
} /* if */

/* chop the "exename" from the end of the path string (leave '/')... */
cfrange.location++;
cfrange.length = CFStringGetLength(cfmutstr) - cfrange.location;
CFStringDelete(cfmutstr, cfrange);

/* If we're an Application Bundle, chop everything but the base. */
cfrange = CFStringFind(cfmutstr, CFSTR("/Contents/MacOS/"),
kCFCompareCaseInsensitive |
kCFCompareBackwards |
kCFCompareAnchored);

if (cfrange.location != kCFNotFound)
{
cfrange.location++; /* leave the trailing '/' char ... */
cfrange.length--;
CFStringDelete(cfmutstr, cfrange); /* chop that, too. */
} /* if */
} /* if */

CFStringAppendCString(cfmutstr, "/", kCFStringEncodingUTF8);
retval = convertCFString(cfmutstr);
CFRelease(cfmutstr);

Expand Down

0 comments on commit e70c684

Please sign in to comment.