2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-02 12:09:19 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-04-15 01:35:26 +00:00
|
|
|
#import "atom/browser/mac/atom_application_delegate.h"
|
2016-05-02 23:18:58 +00:00
|
|
|
|
2016-05-03 17:31:53 +00:00
|
|
|
#import "atom/browser/mac/atom_application.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/browser.h"
|
2016-05-05 07:26:44 +00:00
|
|
|
#include "atom/browser/mac/dict_util.h"
|
2017-08-30 04:03:05 +00:00
|
|
|
#include "base/allocator/allocator_shim.h"
|
|
|
|
#include "base/allocator/features.h"
|
|
|
|
#include "base/mac/mac_util.h"
|
|
|
|
#include "base/mac/scoped_objc_class_swizzler.h"
|
2014-04-15 01:35:26 +00:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2016-05-05 07:26:44 +00:00
|
|
|
#include "base/values.h"
|
2013-05-02 12:09:19 +00:00
|
|
|
|
2017-09-14 09:51:39 +00:00
|
|
|
#if BUILDFLAG(USE_ALLOCATOR_SHIM)
|
2017-08-30 04:03:05 +00:00
|
|
|
// On macOS 10.12, the IME system attempts to allocate a 2^64 size buffer,
|
|
|
|
// which would typically cause an OOM crash. To avoid this, the problematic
|
|
|
|
// method is swizzled out and the make-OOM-fatal bit is disabled for the
|
|
|
|
// duration of the original call. https://crbug.com/654695
|
|
|
|
static base::mac::ScopedObjCClassSwizzler* g_swizzle_imk_input_session;
|
|
|
|
@interface OOMDisabledIMKInputSession : NSObject
|
|
|
|
@end
|
|
|
|
@implementation OOMDisabledIMKInputSession
|
|
|
|
- (void)_coreAttributesFromRange:(NSRange)range
|
|
|
|
whichAttributes:(long long)attributes
|
|
|
|
completionHandler:(void (^)(void))block {
|
|
|
|
// The allocator flag is per-process, so other threads may temporarily
|
|
|
|
// not have fatal OOM occur while this method executes, but it is better
|
|
|
|
// than crashing when using IME.
|
|
|
|
base::allocator::SetCallNewHandlerOnMallocFailure(false);
|
|
|
|
g_swizzle_imk_input_session->GetOriginalImplementation()(self, _cmd, range,
|
|
|
|
attributes, block);
|
|
|
|
base::allocator::SetCallNewHandlerOnMallocFailure(true);
|
|
|
|
}
|
|
|
|
@end
|
2017-09-14 09:51:39 +00:00
|
|
|
#endif // BUILDFLAG(USE_ALLOCATOR_SHIM)
|
2017-08-30 04:03:05 +00:00
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
@implementation AtomApplicationDelegate
|
|
|
|
|
2016-07-02 02:47:40 +00:00
|
|
|
- (void)setApplicationDockMenu:(atom::AtomMenuModel*)model {
|
|
|
|
menu_controller_.reset([[AtomMenuController alloc] initWithModel:model
|
|
|
|
useDefaultAccelerator:NO]);
|
2014-11-16 15:04:31 +00:00
|
|
|
}
|
|
|
|
|
2013-06-03 07:31:46 +00:00
|
|
|
- (void)applicationWillFinishLaunching:(NSNotification*)notify {
|
2015-12-10 03:27:41 +00:00
|
|
|
// Don't add the "Enter Full Screen" menu item automatically.
|
|
|
|
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"NSFullScreenMenuItemEverywhere"];
|
|
|
|
|
2013-06-03 07:31:46 +00:00
|
|
|
atom::Browser::Get()->WillFinishLaunching();
|
|
|
|
}
|
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification*)notify {
|
2016-09-01 00:17:44 +00:00
|
|
|
NSUserNotification *user_notification = [notify userInfo][(id)@"NSApplicationLaunchUserNotificationKey"];
|
|
|
|
|
|
|
|
if (user_notification.userInfo != nil) {
|
|
|
|
std::unique_ptr<base::DictionaryValue> launch_info =
|
|
|
|
atom::NSDictionaryToDictionaryValue(user_notification.userInfo);
|
|
|
|
atom::Browser::Get()->DidFinishLaunching(*launch_info);
|
|
|
|
} else {
|
2016-09-08 23:23:55 +00:00
|
|
|
std::unique_ptr<base::DictionaryValue> empty_info(new base::DictionaryValue);
|
|
|
|
atom::Browser::Get()->DidFinishLaunching(*empty_info);
|
2016-09-01 00:17:44 +00:00
|
|
|
}
|
2017-08-30 04:03:05 +00:00
|
|
|
|
2017-09-14 09:51:39 +00:00
|
|
|
#if BUILDFLAG(USE_ALLOCATOR_SHIM)
|
2017-08-30 04:03:05 +00:00
|
|
|
// Disable fatal OOM to hack around an OS bug https://crbug.com/654695.
|
|
|
|
if (base::mac::IsOS10_12()) {
|
|
|
|
g_swizzle_imk_input_session = new base::mac::ScopedObjCClassSwizzler(
|
|
|
|
NSClassFromString(@"IMKInputSession"),
|
|
|
|
[OOMDisabledIMKInputSession class],
|
|
|
|
@selector(_coreAttributesFromRange:whichAttributes:completionHandler:));
|
|
|
|
}
|
|
|
|
#endif
|
2013-05-02 12:09:19 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 15:04:31 +00:00
|
|
|
- (NSMenu*)applicationDockMenu:(NSApplication*)sender {
|
2016-07-02 02:47:40 +00:00
|
|
|
if (menu_controller_)
|
|
|
|
return [menu_controller_ menu];
|
|
|
|
else
|
|
|
|
return nil;
|
2014-11-16 15:04:31 +00:00
|
|
|
}
|
|
|
|
|
2013-05-30 08:03:10 +00:00
|
|
|
- (BOOL)application:(NSApplication*)sender
|
|
|
|
openFile:(NSString*)filename {
|
2013-05-30 11:12:14 +00:00
|
|
|
std::string filename_str(base::SysNSStringToUTF8(filename));
|
|
|
|
return atom::Browser::Get()->OpenFile(filename_str) ? YES : NO;
|
2013-05-30 08:03:10 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 10:09:44 +00:00
|
|
|
- (BOOL)applicationShouldHandleReopen:(NSApplication*)theApplication
|
|
|
|
hasVisibleWindows:(BOOL)flag {
|
|
|
|
atom::Browser* browser = atom::Browser::Get();
|
2015-09-15 01:34:27 +00:00
|
|
|
browser->Activate(static_cast<bool>(flag));
|
2015-09-15 02:05:53 +00:00
|
|
|
return flag;
|
2014-03-05 10:09:44 +00:00
|
|
|
}
|
|
|
|
|
2016-05-05 03:26:23 +00:00
|
|
|
- (BOOL)application:(NSApplication*)sender
|
|
|
|
continueUserActivity:(NSUserActivity*)userActivity
|
|
|
|
restorationHandler:(void (^)(NSArray*restorableObjects))restorationHandler {
|
2016-04-30 00:37:01 +00:00
|
|
|
std::string activity_type(base::SysNSStringToUTF8(userActivity.activityType));
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<base::DictionaryValue> user_info =
|
2016-09-01 00:17:44 +00:00
|
|
|
atom::NSDictionaryToDictionaryValue(userActivity.userInfo);
|
2016-05-05 07:26:44 +00:00
|
|
|
if (!user_info)
|
|
|
|
return NO;
|
2016-04-30 00:37:01 +00:00
|
|
|
|
|
|
|
atom::Browser* browser = atom::Browser::Get();
|
2016-05-05 07:26:44 +00:00
|
|
|
return browser->ContinueUserActivity(activity_type, *user_info) ? YES : NO;
|
2016-04-30 00:37:01 +00:00
|
|
|
}
|
|
|
|
|
2017-09-14 07:12:34 +00:00
|
|
|
- (BOOL)application:(NSApplication*)application willContinueUserActivityWithType:(NSString*)userActivityType {
|
2017-06-26 19:14:44 +00:00
|
|
|
std::string activity_type(base::SysNSStringToUTF8(userActivityType));
|
2017-09-14 07:12:34 +00:00
|
|
|
|
2017-06-26 19:14:44 +00:00
|
|
|
atom::Browser* browser = atom::Browser::Get();
|
|
|
|
return browser->WillContinueUserActivity(activity_type) ? YES : NO;
|
|
|
|
}
|
|
|
|
|
2017-09-14 07:12:34 +00:00
|
|
|
- (void)application:(NSApplication*)application didFailToContinueUserActivityWithType:(NSString*)userActivityType error:(NSError*)error {
|
2017-06-26 19:14:44 +00:00
|
|
|
std::string activity_type(base::SysNSStringToUTF8(userActivityType));
|
|
|
|
std::string error_message(base::SysNSStringToUTF8([error localizedDescription]));
|
2017-09-14 07:12:34 +00:00
|
|
|
|
2017-06-26 19:14:44 +00:00
|
|
|
atom::Browser* browser = atom::Browser::Get();
|
|
|
|
browser->DidFailToContinueUserActivity(activity_type, error_message);
|
|
|
|
}
|
|
|
|
|
2017-06-11 08:19:01 +00:00
|
|
|
- (IBAction)newWindowForTab:(id)sender {
|
|
|
|
atom::Browser::Get()->NewWindowForTab();
|
|
|
|
}
|
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
@end
|