/* This file is part of Telegram Desktop, the official desktop version of Telegram messaging app, see https://telegram.org Telegram Desktop is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library. Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org */ #include "platform/mac/launcher_mac.h" #include "core/crash_reports.h" #include "platform/mac/mac_utilities.h" #include #include namespace Platform { void Launcher::initHook() { #ifndef OS_MAC_OLD // macOS Retina display support is working fine, others are not. QCoreApplication::setAttribute(Qt::AA_DisableHighDpiScaling, false); #endif // OS_MAC_OLD } bool Launcher::launchUpdater(UpdaterLaunch action) { if (cExeName().isEmpty()) { return false; } @autoreleasepool { #ifdef OS_MAC_STORE // In AppStore version we don't have Updater. // We just relaunch our app. if (action == UpdaterLaunch::JustRelaunch) { NSDictionary *conf = [NSDictionary dictionaryWithObject:[NSArray array] forKey:NSWorkspaceLaunchConfigurationArguments]; [[NSWorkspace sharedWorkspace] launchApplicationAtURL:[NSURL fileURLWithPath:Q2NSString(cExeDir() + cExeName())] options:NSWorkspaceLaunchAsync | NSWorkspaceLaunchNewInstance configuration:conf error:0]; return true; } #endif // OS_MAC_STORE NSString *path = @"", *args = @""; @try { path = [[NSBundle mainBundle] bundlePath]; if (!path) { LOG(("Could not get bundle path!!")); return false; } path = [path stringByAppendingString:@"/Contents/Frameworks/Updater"]; NSMutableArray *args = [[NSMutableArray alloc] initWithObjects:@"-workpath", Q2NSString(cWorkingDir()), @"-procid", nil]; [args addObject:[NSString stringWithFormat:@"%d", [[NSProcessInfo processInfo] processIdentifier]]]; if (cRestartingToSettings()) [args addObject:@"-tosettings"]; if (action == UpdaterLaunch::JustRelaunch) [args addObject:@"-noupdate"]; if (cLaunchMode() == LaunchModeAutoStart) [args addObject:@"-autostart"]; if (cDebug()) [args addObject:@"-debug"]; if (cStartInTray()) [args addObject:@"-startintray"]; if (cTestMode()) [args addObject:@"-testmode"]; if (cDataFile() != qsl("data")) { [args addObject:@"-key"]; [args addObject:Q2NSString(cDataFile())]; } if (customWorkingDir()) { [args addObject:@"-workdir_custom"]; } DEBUG_LOG(("Application Info: executing %1 %2").arg(NS2QString(path)).arg(NS2QString([args componentsJoinedByString:@" "]))); Logs::closeMain(); CrashReports::Finish(); if (![NSTask launchedTaskWithLaunchPath:path arguments:args]) { DEBUG_LOG(("Task not launched while executing %1 %2").arg(NS2QString(path)).arg(NS2QString([args componentsJoinedByString:@" "]))); return false; } } @catch (NSException *exception) { LOG(("Exception caught while executing %1 %2").arg(NS2QString(path)).arg(NS2QString(args))); return false; } @finally { } } return true; } } // namespace Platform