mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
61 lines
2.2 KiB
Plaintext
61 lines
2.2 KiB
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#include "nsMacWebAppUtils.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsCocoaUtils.h"
|
|
#include "nsString.h"
|
|
|
|
// This must be included last:
|
|
#include "nsObjCExceptions.h"
|
|
|
|
// Find the path to the app with the given bundleIdentifier, if any.
|
|
// Note that the OS will return the path to the newest binary, if there is more than one.
|
|
// The determination of 'newest' is complex and beyond the scope of this comment.
|
|
|
|
NS_IMPL_ISUPPORTS1(nsMacWebAppUtils, nsIMacWebAppUtils)
|
|
|
|
NS_IMETHODIMP nsMacWebAppUtils::PathForAppWithIdentifier(const nsAString& bundleIdentifier, nsAString& outPath) {
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
outPath.Truncate();
|
|
|
|
NSAutoreleasePool* ap = [[NSAutoreleasePool alloc] init];
|
|
|
|
//note that the result of this expression might be nil, meaning no matching app was found.
|
|
NSString* temp = [[NSWorkspace sharedWorkspace] absolutePathForAppBundleWithIdentifier:
|
|
[NSString stringWithCharacters:((nsString)bundleIdentifier).get() length:((nsString)bundleIdentifier).Length()]];
|
|
|
|
if (temp) {
|
|
// Copy out the resultant absolute path into outPath if non-nil.
|
|
nsCocoaUtils::GetStringForNSString(temp, outPath);
|
|
}
|
|
|
|
[ap release];
|
|
return NS_OK;
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
|
}
|
|
|
|
NS_IMETHODIMP nsMacWebAppUtils::LaunchAppWithIdentifier(const nsAString& bundleIdentifier) {
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
NSAutoreleasePool* ap = [[NSAutoreleasePool alloc] init];
|
|
|
|
// Note this might return false, meaning the app wasnt launched for some reason.
|
|
BOOL success = [[NSWorkspace sharedWorkspace] launchAppWithBundleIdentifier:
|
|
[NSString stringWithCharacters:((nsString)bundleIdentifier).get() length:((nsString)bundleIdentifier).Length()]
|
|
options: (NSWorkspaceLaunchOptions)0
|
|
additionalEventParamDescriptor: nil
|
|
launchIdentifier: NULL];
|
|
|
|
|
|
[ap release];
|
|
return NS_OK;
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
|
}
|