2008-12-31 10:40:07 +01:00
|
|
|
/*
|
2009-01-04 12:09:53 +01:00
|
|
|
Copyright (c) 2008-2009 Niels Martin Hansen
|
2008-12-31 10:40:07 +01:00
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
may be used to endorse or promote products derived from this software
|
|
|
|
without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2008-12-31 10:20:50 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <CoreFoundation/CFBundle.h>
|
|
|
|
#include <CoreFoundation/CFURL.h>
|
|
|
|
#include <CoreFoundation/CFString.h>
|
|
|
|
|
|
|
|
#include "libosxutil.h"
|
|
|
|
|
|
|
|
|
|
|
|
typedef CFURLRef (*GetURLFunc)(CFBundleRef);
|
|
|
|
|
|
|
|
static char * GetDir(GetURLFunc GetURL)
|
|
|
|
{
|
|
|
|
CFBundleRef bundle;
|
|
|
|
CFURLRef res_dir_url;
|
|
|
|
char res_dir_str[MAXPATHLEN];
|
|
|
|
Boolean res;
|
|
|
|
|
|
|
|
bundle = CFBundleGetMainBundle();
|
|
|
|
if (!bundle) return NULL;
|
|
|
|
|
|
|
|
res_dir_url = (*GetURL)(bundle);
|
2009-02-09 19:10:16 +01:00
|
|
|
/* we do not own 'bundle' so don't release it */
|
2008-12-31 10:20:50 +01:00
|
|
|
if (!res_dir_url) return NULL;
|
|
|
|
|
|
|
|
res = CFURLGetFileSystemRepresentation(res_dir_url, true, (UInt8*)res_dir_str, MAXPATHLEN);
|
|
|
|
CFRelease(res_dir_url);
|
|
|
|
|
|
|
|
if (res == false)
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return strdup(res_dir_str);
|
|
|
|
}
|
|
|
|
|
2009-01-04 12:09:53 +01:00
|
|
|
char * OSX_GetBundlePath()
|
|
|
|
{
|
|
|
|
return GetDir(CFBundleCopyBundleURL);
|
|
|
|
}
|
|
|
|
|
2008-12-31 10:20:50 +01:00
|
|
|
char * OSX_GetBundleResourcesDirectory()
|
|
|
|
{
|
|
|
|
return GetDir(CFBundleCopyResourcesDirectoryURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
char * OSX_GetBundleExecutablePath()
|
|
|
|
{
|
|
|
|
return GetDir(CFBundleCopyExecutableURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
char * OSX_GetBundleBuiltInPlugInsDirectory()
|
|
|
|
{
|
|
|
|
return GetDir(CFBundleCopyBuiltInPlugInsURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
char * OSX_GetBundlePrivateFrameworksDirectory()
|
|
|
|
{
|
|
|
|
return GetDir(CFBundleCopyPrivateFrameworksURL);
|
|
|
|
}
|
|
|
|
|
2008-12-31 10:40:07 +01:00
|
|
|
char * OSX_GetBundleSharedFrameworksDirectory()
|
2008-12-31 10:20:50 +01:00
|
|
|
{
|
|
|
|
return GetDir(CFBundleCopySharedFrameworksURL);
|
|
|
|
}
|
|
|
|
|
2008-12-31 10:40:07 +01:00
|
|
|
char * OSX_GetBundleSharedSupportDirectory()
|
2008-12-31 10:20:50 +01:00
|
|
|
{
|
|
|
|
return GetDir(CFBundleCopySharedSupportURL);
|
|
|
|
}
|
|
|
|
|
2008-12-31 10:40:07 +01:00
|
|
|
char * OSX_GetBundleSupportFilesDirectory()
|
2008-12-31 10:20:50 +01:00
|
|
|
{
|
|
|
|
return GetDir(CFBundleCopySupportFilesDirectoryURL);
|
|
|
|
}
|
|
|
|
|
2008-12-31 10:40:07 +01:00
|
|
|
char * OSX_GetBundleAuxillaryExecutablePath(const char *executableName)
|
2008-12-31 10:20:50 +01:00
|
|
|
{
|
|
|
|
CFStringRef exename_str;
|
|
|
|
CFBundleRef bundle;
|
|
|
|
CFURLRef res_dir_url;
|
|
|
|
char res_dir_str[MAXPATHLEN];
|
|
|
|
Boolean res;
|
|
|
|
|
|
|
|
exename_str = CFStringCreateWithCString(NULL, executableName, kCFStringEncodingUTF8);
|
|
|
|
if (!exename_str) return NULL;
|
|
|
|
|
|
|
|
bundle = CFBundleGetMainBundle();
|
|
|
|
if (!bundle) return NULL;
|
|
|
|
|
|
|
|
res_dir_url = CFBundleCopyAuxiliaryExecutableURL(bundle, exename_str);
|
|
|
|
CFRelease(exename_str);
|
|
|
|
if (!res_dir_url) return NULL;
|
|
|
|
|
|
|
|
res = CFURLGetFileSystemRepresentation(res_dir_url, true, (UInt8*)res_dir_str, MAXPATHLEN);
|
|
|
|
CFRelease(res_dir_url);
|
|
|
|
|
|
|
|
if (res == false)
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return strdup(res_dir_str);
|
|
|
|
}
|
|
|
|
|