electron/atom/browser/browser_linux.cc

151 lines
4 KiB
C++
Raw Normal View History

// 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
2014-01-02 14:47:54 +00:00
// found in the LICENSE file.
2014-03-16 00:30:26 +00:00
#include "atom/browser/browser.h"
2014-01-02 14:47:54 +00:00
2017-10-05 04:30:14 +00:00
#include <fcntl.h>
2017-10-07 03:32:46 +00:00
#include <stdlib.h>
2014-01-02 14:47:54 +00:00
2014-03-16 00:30:26 +00:00
#include "atom/browser/native_window.h"
#include "atom/browser/window_list.h"
#include "atom/common/atom_version.h"
2017-10-05 04:30:14 +00:00
#include "base/command_line.h"
2017-10-07 03:32:46 +00:00
#include "base/environment.h"
2017-10-05 04:30:14 +00:00
#include "base/process/launch.h"
#include "brightray/common/application_info.h"
#if defined(USE_X11)
#include "chrome/browser/ui/libgtkui/gtk_util.h"
2017-01-26 10:55:19 +00:00
#include "chrome/browser/ui/libgtkui/unity_service.h"
#endif
2014-01-02 14:47:54 +00:00
namespace atom {
2017-10-07 03:32:46 +00:00
const char kXdgSettings[] = "xdg-settings";
const char kXdgSettingsDefaultSchemeHandler[] = "default-url-scheme-handler";
bool LaunchXdgUtility(const std::vector<std::string>& argv, int* exit_code) {
*exit_code = EXIT_FAILURE;
int devnull = open("/dev/null", O_RDONLY);
if (devnull < 0) return false;
base::LaunchOptions options;
base::FileHandleMappingVector remap;
remap.push_back(std::make_pair(devnull, STDIN_FILENO));
options.fds_to_remap = &remap;
base::Process process = base::LaunchProcess(argv, options);
close(devnull);
if (!process.IsValid()) return false;
2017-10-07 03:32:46 +00:00
return process.WaitForExit(exit_code);
}
bool SetDefaultWebClient(const std::string& protocol) {
std::unique_ptr<base::Environment> env(base::Environment::Create());
std::vector<std::string> argv;
argv.push_back(kXdgSettings);
argv.push_back("set");
if (!protocol.empty()) {
argv.push_back(kXdgSettingsDefaultSchemeHandler);
argv.push_back(protocol);
}
argv.push_back(libgtkui::GetDesktopName(env.get()));
int exit_code;
bool ran_ok = LaunchXdgUtility(argv, &exit_code);
return ran_ok && exit_code == EXIT_SUCCESS;
}
2017-10-05 04:30:14 +00:00
2014-01-02 14:47:54 +00:00
void Browser::Focus() {
// Focus on the first visible window.
for (const auto& window : WindowList::GetWindows()) {
2014-01-02 14:47:54 +00:00
if (window->IsVisible()) {
window->Focus(true);
break;
}
}
}
2014-11-17 05:05:06 +00:00
void Browser::AddRecentDocument(const base::FilePath& path) {
}
2014-11-17 08:13:47 +00:00
void Browser::ClearRecentDocuments() {
}
void Browser::SetAppUserModelID(const base::string16& name) {
}
2016-08-16 05:54:30 +00:00
bool Browser::SetAsDefaultProtocolClient(const std::string& protocol,
mate::Arguments* args) {
2017-10-03 15:10:38 +00:00
return SetDefaultWebClient(protocol);
}
2017-10-05 04:30:14 +00:00
bool Browser::IsDefaultProtocolClient(const std::string& protocol,
mate::Arguments* args) {
base::ThreadRestrictions::AssertIOAllowed();
std::unique_ptr<base::Environment> env(base::Environment::Create());
if (protocol.empty()) return false;
std::vector<std::string> argv;
argv.push_back(kXdgSettings);
argv.push_back("check");
argv.push_back(kXdgSettingsDefaultSchemeHandler);
argv.push_back(protocol);
argv.push_back(libgtkui::GetDesktopName(env.get()));
std::string reply;
int success_code;
bool ran_ok = base::GetAppOutputWithExitCode(base::CommandLine(argv),
&reply, &success_code);
if (!ran_ok || success_code != EXIT_SUCCESS) return false;
// Allow any reply that starts with "yes".
return base::StartsWith(reply, "yes", base::CompareCase::SENSITIVE)
? true
: false;
}
// Todo implement
bool Browser::RemoveAsDefaultProtocolClient(const std::string& protocol,
mate::Arguments* args) {
2016-04-25 05:17:01 +00:00
return false;
}
bool Browser::SetBadgeCount(int count) {
if (IsUnityRunning()) {
unity::SetDownloadCount(count);
2016-07-02 01:36:11 +00:00
badge_count_ = count;
return true;
} else {
return false;
}
2016-07-01 08:39:01 +00:00
}
void Browser::SetLoginItemSettings(LoginItemSettings settings) {
}
2017-01-27 19:24:46 +00:00
Browser::LoginItemSettings Browser::GetLoginItemSettings(
2017-03-29 19:29:52 +00:00
const LoginItemSettings& options) {
return LoginItemSettings();
}
2014-01-02 14:47:54 +00:00
std::string Browser::GetExecutableFileVersion() const {
return brightray::GetApplicationVersion();
2014-01-02 14:47:54 +00:00
}
std::string Browser::GetExecutableFileProductName() const {
return brightray::GetApplicationName();
2014-01-02 14:47:54 +00:00
}
2016-07-01 08:39:01 +00:00
bool Browser::IsUnityRunning() {
return unity::IsRunning();
}
2014-01-02 14:47:54 +00:00
} // namespace atom