//  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.

/// @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 osx {
AppNapDisabler::AppNapDisabler(std::string reason) : handle(nullptr) {
	if (reason.empty()) reason = "Loading";
	auto processInfo = [NSProcessInfo processInfo];
	if ([processInfo respondsToSelector:@selector(beginActivityWithOptions:reason:)])
		handle = [[processInfo beginActivityWithOptions:NSActivityUserInitiatedAllowingIdleSystemSleep
		                                         reason:[NSString stringWithUTF8String:reason.c_str()]]
		          retain];
}

AppNapDisabler::~AppNapDisabler() {
	auto processInfo = [NSProcessInfo processInfo];
	if (handle && [processInfo respondsToSelector:@selector(endActivity:)])
		[processInfo endActivity:(id)handle];
	[(id)handle release];
}
	}
	namespace util {

std::string GetBundlePath() {
	@autoreleasepool {
		return EmptyIfNil([[NSBundle mainBundle] bundlePath]);
	}
}

std::string GetBundleResourcesDirectory() {
	@autoreleasepool {
		return EmptyIfNil([[[NSBundle mainBundle] resourceURL] path]);
	}
}

std::string GetBundleExecutablePath() {
	@autoreleasepool {
		return EmptyIfNil([[NSBundle mainBundle] executablePath]);
	}
}

std::string GetBundleBuiltInPlugInsDirectory() {
	@autoreleasepool {
		return EmptyIfNil([[NSBundle mainBundle] builtInPlugInsPath]);
	}
}

std::string GetBundlePrivateFrameworksDirectory() {
	@autoreleasepool {
		return EmptyIfNil([[NSBundle mainBundle] privateFrameworksPath]);
	}
}

std::string GetBundleSharedFrameworksDirectory() {
	@autoreleasepool {
		return EmptyIfNil([[NSBundle mainBundle] sharedFrameworksPath]);
	}
}

std::string GetBundleSharedSupportDirectory() {
	@autoreleasepool {
		return EmptyIfNil([[NSBundle mainBundle] sharedSupportPath]);
	}
}

std::string GetBundleAuxillaryExecutablePath(std::string const& executableName) {
	@autoreleasepool {
		NSString *name = [NSString stringWithUTF8String:executableName.c_str()];
		return EmptyIfNil([[NSBundle mainBundle]pathForAuxiliaryExecutable:name]);
	}
}

std::string GetApplicationSupportDirectory() {
	@autoreleasepool {
		return EmptyIfNil([NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES) firstObject]);
	}
}

	}
}