electron/atom/browser/api/atom_api_app.h

240 lines
7.8 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
2013-05-02 16:05:09 +00:00
// found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_APP_H_
#define ATOM_BROWSER_API_ATOM_API_APP_H_
#include <memory>
#include <string>
2017-05-26 14:51:17 +00:00
#include <utility>
#include <vector>
2014-04-17 09:13:46 +00:00
#include "atom/browser/api/event_emitter.h"
2015-11-18 02:07:03 +00:00
#include "atom/browser/atom_browser_client.h"
#include "atom/browser/browser.h"
2014-03-16 00:30:26 +00:00
#include "atom/browser/browser_observer.h"
#include "atom/common/native_mate_converters/callback.h"
#include "base/process/process_iterator.h"
2017-02-16 19:19:19 +00:00
#include "base/task/cancelable_task_tracker.h"
#include "chrome/browser/icon_manager.h"
2015-10-20 21:36:01 +00:00
#include "chrome/browser/process_singleton.h"
2017-05-16 00:41:45 +00:00
#include "content/public/browser/browser_child_process_observer.h"
2015-06-25 12:28:07 +00:00
#include "content/public/browser/gpu_data_manager_observer.h"
2017-05-16 00:41:45 +00:00
#include "content/public/browser/render_process_host.h"
#include "native_mate/dictionary.h"
2014-04-17 09:13:46 +00:00
#include "native_mate/handle.h"
2016-04-18 05:11:31 +00:00
#include "net/base/completion_callback.h"
2013-05-02 16:05:09 +00:00
#if defined(USE_NSS_CERTS)
#include "chrome/browser/certificate_manager_model.h"
#endif
2014-08-19 13:26:45 +00:00
namespace base {
class FilePath;
}
namespace mate {
class Arguments;
} // namespace mate
2013-05-02 16:05:09 +00:00
namespace atom {
#if defined(OS_WIN)
enum class JumpListResult : int;
#endif
2017-05-16 00:41:45 +00:00
struct ProcessMetric {
2017-05-26 15:53:26 +00:00
int type;
2017-05-16 00:41:45 +00:00
base::ProcessId pid;
std::unique_ptr<base::ProcessMetrics> metrics;
2017-05-26 14:51:17 +00:00
2017-05-26 15:53:26 +00:00
ProcessMetric(int type,
2017-05-16 00:41:45 +00:00
base::ProcessId pid,
std::unique_ptr<base::ProcessMetrics> metrics) {
this->type = type;
this->pid = pid;
this->metrics = std::move(metrics);
}
};
2013-05-02 16:05:09 +00:00
namespace api {
2015-11-18 02:07:03 +00:00
class App : public AtomBrowserClient::Delegate,
2016-04-25 01:17:54 +00:00
public mate::EventEmitter<App>,
2015-06-25 12:28:07 +00:00
public BrowserObserver,
2017-05-16 00:41:45 +00:00
public content::GpuDataManagerObserver,
public content::BrowserChildProcessObserver {
2013-05-02 16:05:09 +00:00
public:
2016-11-05 18:55:23 +00:00
using FileIconCallback = base::Callback<void(v8::Local<v8::Value>,
const gfx::Image&)>;
2014-04-17 09:13:46 +00:00
static mate::Handle<App> Create(v8::Isolate* isolate);
2013-05-02 16:05:09 +00:00
2016-04-25 01:17:54 +00:00
static void BuildPrototype(v8::Isolate* isolate,
v8::Local<v8::FunctionTemplate> prototype);
2016-04-25 01:17:54 +00:00
static App* Get();
2016-03-31 14:21:18 +00:00
// Called when window with disposition needs to be created.
void OnCreateWindow(
const GURL& target_url,
const std::string& frame_name,
WindowOpenDisposition disposition,
const std::vector<std::string>& features,
const scoped_refptr<content::ResourceRequestBodyImpl>& body,
int render_process_id,
int render_frame_id);
2016-03-31 14:21:18 +00:00
#if defined(USE_NSS_CERTS)
2016-04-18 05:11:31 +00:00
void OnCertificateManagerModelCreated(
2016-05-23 01:59:39 +00:00
std::unique_ptr<base::DictionaryValue> options,
2016-04-18 05:11:31 +00:00
const net::CompletionCallback& callback,
2016-05-23 01:59:39 +00:00
std::unique_ptr<CertificateManagerModel> model);
#endif
2016-04-18 05:11:31 +00:00
2017-04-13 14:26:42 +00:00
base::FilePath GetAppPath() const;
2017-05-25 04:15:34 +00:00
void RenderProcessReady(content::RenderProcessHost* host);
void RenderProcessDisconnected(base::ProcessId host_pid);
void PreMainMessageLoopRun();
2017-04-04 00:36:01 +00:00
protected:
2016-04-25 01:17:54 +00:00
explicit App(v8::Isolate* isolate);
~App() override;
2017-09-14 13:20:23 +00:00
static App* self_;
2014-11-16 14:45:29 +00:00
// BrowserObserver:
void OnBeforeQuit(bool* prevent_default) override;
2014-11-16 14:45:29 +00:00
void OnWillQuit(bool* prevent_default) override;
void OnWindowAllClosed() override;
void OnQuit() override;
void OnOpenFile(bool* prevent_default, const std::string& file_path) override;
void OnOpenURL(const std::string& url) override;
2015-09-15 02:05:53 +00:00
void OnActivate(bool has_visible_windows) override;
2014-11-16 14:45:29 +00:00
void OnWillFinishLaunching() override;
void OnFinishLaunching(const base::DictionaryValue& launch_info) override;
void OnLogin(LoginHandler* login_handler,
const base::DictionaryValue& request_details) override;
void OnAccessibilitySupportChanged() override;
2016-05-05 03:26:23 +00:00
#if defined(OS_MACOSX)
void OnWillContinueUserActivity(
bool* prevent_default,
const std::string& type) override;
void OnDidFailToContinueUserActivity(
const std::string& type,
const std::string& error) override;
2016-05-05 03:26:23 +00:00
void OnContinueUserActivity(
bool* prevent_default,
const std::string& type,
const base::DictionaryValue& user_info) override;
void OnUserActivityWasContinued(
const std::string& type,
const base::DictionaryValue& user_info) override;
void OnUpdateUserActivityState(
bool* prevent_default,
const std::string& type,
const base::DictionaryValue& user_info) override;
void OnNewWindowForTab() override;
2016-05-05 03:26:23 +00:00
#endif
2015-11-18 02:07:03 +00:00
// content::ContentBrowserClient:
2015-11-18 02:39:25 +00:00
void AllowCertificateError(
2016-03-08 14:28:53 +00:00
content::WebContents* web_contents,
2015-11-18 02:39:25 +00:00
int cert_error,
const net::SSLInfo& ssl_info,
const GURL& request_url,
content::ResourceType resource_type,
bool overridable,
bool strict_enforcement,
bool expired_previous_decision,
2016-11-30 07:30:03 +00:00
const base::Callback<void(content::CertificateRequestResultType)>&
callback) override;
2015-11-18 02:07:03 +00:00
void SelectClientCertificate(
content::WebContents* web_contents,
net::SSLCertRequestInfo* cert_request_info,
2016-05-23 01:59:39 +00:00
std::unique_ptr<content::ClientCertificateDelegate> delegate) override;
2014-11-16 14:45:29 +00:00
2015-06-25 12:28:07 +00:00
// content::GpuDataManagerObserver:
void OnGpuProcessCrashed(base::TerminationStatus status) override;
2015-06-25 12:28:07 +00:00
2017-05-16 00:41:45 +00:00
// content::BrowserChildProcessObserver:
void BrowserChildProcessLaunchedAndConnected(
const content::ChildProcessData& data) override;
void BrowserChildProcessHostDisconnected(
const content::ChildProcessData& data) override;
void BrowserChildProcessCrashed(
const content::ChildProcessData& data, int exit_code) override;
void BrowserChildProcessKilled(
const content::ChildProcessData& data, int exit_code) override;
2017-05-16 00:41:45 +00:00
2014-04-17 09:13:46 +00:00
private:
2017-04-13 01:59:12 +00:00
void SetAppPath(const base::FilePath& app_path);
2017-05-25 04:15:34 +00:00
void ChildProcessLaunched(int process_type, base::ProcessHandle handle);
void ChildProcessDisconnected(base::ProcessId pid);
2017-04-04 00:36:01 +00:00
// Get/Set the pre-defined path in PathService.
base::FilePath GetPath(mate::Arguments* args, const std::string& name);
void SetPath(mate::Arguments* args,
const std::string& name,
const base::FilePath& path);
2014-09-18 11:12:24 +00:00
void SetDesktopName(const std::string& desktop_name);
std::string GetLocale();
bool MakeSingleInstance(
const ProcessSingleton::NotificationCallback& callback);
void ReleaseSingleInstance();
bool Relaunch(mate::Arguments* args);
void DisableHardwareAcceleration(mate::Arguments* args);
void DisableDomainBlockingFor3DAPIs(mate::Arguments* args);
bool IsAccessibilitySupportEnabled();
void SetAccessibilitySupportEnabled(bool enabled);
Browser::LoginItemSettings GetLoginItemSettings(mate::Arguments* args);
#if defined(USE_NSS_CERTS)
void ImportCertificate(const base::DictionaryValue& options,
const net::CompletionCallback& callback);
#endif
void GetFileIcon(const base::FilePath& path,
2016-11-03 18:04:56 +00:00
mate::Arguments* args);
2015-10-21 20:17:56 +00:00
2017-05-16 00:41:45 +00:00
std::vector<mate::Dictionary> GetAppMetrics(v8::Isolate* isolate);
2017-05-30 20:00:55 +00:00
v8::Local<v8::Value> GetGPUFeatureStatus(v8::Isolate* isolate);
2017-06-26 21:13:41 +00:00
void EnableMixedSandbox(mate::Arguments* args);
#if defined(OS_MACOSX)
bool MoveToApplicationsFolder(mate::Arguments* args);
bool IsInApplicationsFolder();
#endif
#if defined(OS_WIN)
// Get the current Jump List settings.
v8::Local<v8::Value> GetJumpListSettings();
// Set or remove a custom Jump List for the application.
JumpListResult SetJumpList(v8::Local<v8::Value> val, mate::Arguments* args);
#endif // defined(OS_WIN)
2016-05-23 01:59:39 +00:00
std::unique_ptr<ProcessSingleton> process_singleton_;
#if defined(USE_NSS_CERTS)
2016-05-23 01:59:39 +00:00
std::unique_ptr<CertificateManagerModel> certificate_manager_model_;
#endif
2014-08-19 13:26:45 +00:00
// Tracks tasks requesting file icons.
base::CancelableTaskTracker cancelable_task_tracker_;
2017-04-13 01:59:12 +00:00
base::FilePath app_path_;
2017-04-04 00:36:01 +00:00
2017-05-16 00:41:45 +00:00
using ProcessMetricMap =
std::unordered_map<base::ProcessId,
std::unique_ptr<atom::ProcessMetric>>;
ProcessMetricMap app_metrics_;
DISALLOW_COPY_AND_ASSIGN(App);
2013-05-02 16:05:09 +00:00
};
} // namespace api
} // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_APP_H_