forked from mia/Aegisub
0a5fa6ff39
It never allocated any non-autoreleased objects so ARC wasn't actually doing anything other than breaking compilation with gcc.
92 lines
2.5 KiB
Text
92 lines
2.5 KiB
Text
// Copyright (c) 2012 Thomas Goyne, <plorkyeran@aegisub.org>
|
|
//
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
//
|
|
// $Id$
|
|
|
|
/// @file util.mm
|
|
/// @brief OSX Utilities
|
|
/// @ingroup libosxutil osx
|
|
|
|
#include "config.h"
|
|
|
|
#include "libaegisub/util_osx.h"
|
|
|
|
#import <ApplicationServices/ApplicationServices.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
static std::string EmptyIfNil(NSString *string) {
|
|
return string ? [string UTF8String] : "";
|
|
}
|
|
|
|
namespace agi {
|
|
namespace util {
|
|
|
|
std::string OSX_GetBundlePath() {
|
|
@autoreleasepool {
|
|
return EmptyIfNil([[NSBundle mainBundle] bundlePath]);
|
|
}
|
|
}
|
|
|
|
std::string OSX_GetBundleResourcesDirectory() {
|
|
@autoreleasepool {
|
|
return EmptyIfNil([[[NSBundle mainBundle] resourceURL] path]);
|
|
}
|
|
}
|
|
|
|
std::string OSX_GetBundleExecutablePath() {
|
|
@autoreleasepool {
|
|
return EmptyIfNil([[NSBundle mainBundle] executablePath]);
|
|
}
|
|
}
|
|
|
|
std::string OSX_GetBundleBuiltInPlugInsDirectory() {
|
|
@autoreleasepool {
|
|
return EmptyIfNil([[NSBundle mainBundle] builtInPlugInsPath]);
|
|
}
|
|
}
|
|
|
|
std::string OSX_GetBundlePrivateFrameworksDirectory() {
|
|
@autoreleasepool {
|
|
return EmptyIfNil([[NSBundle mainBundle] privateFrameworksPath]);
|
|
}
|
|
}
|
|
|
|
std::string OSX_GetBundleSharedFrameworksDirectory() {
|
|
@autoreleasepool {
|
|
return EmptyIfNil([[NSBundle mainBundle] sharedFrameworksPath]);
|
|
}
|
|
}
|
|
|
|
std::string OSX_GetBundleSharedSupportDirectory() {
|
|
@autoreleasepool {
|
|
return EmptyIfNil([[NSBundle mainBundle] sharedSupportPath]);
|
|
}
|
|
}
|
|
|
|
std::string OSX_GetBundleAuxillaryExecutablePath(std::string const& executableName) {
|
|
@autoreleasepool {
|
|
NSString *name = [NSString stringWithUTF8String:executableName.c_str()];
|
|
return EmptyIfNil([[NSBundle mainBundle]pathForAuxiliaryExecutable:name]);
|
|
}
|
|
}
|
|
|
|
void OSX_OpenLocation(std::string const& location) {
|
|
@autoreleasepool {
|
|
NSURL *url = [NSURL fileURLWithPath:[NSString stringWithUTF8String:location.c_str()]];
|
|
LSOpenCFURLRef((CFURLRef)url, NULL);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|