| /* |
| * Copyright 2015 Google Inc. All Rights Reserved. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #ifndef COBALT_BROWSER_APPLICATION_H_ |
| #define COBALT_BROWSER_APPLICATION_H_ |
| |
| #include "base/callback.h" |
| #include "base/message_loop.h" |
| #include "base/threading/thread_checker.h" |
| #include "cobalt/account/account_manager.h" |
| #include "cobalt/base/event_dispatcher.h" |
| #include "cobalt/browser/browser_module.h" |
| #include "cobalt/system_window/system_window.h" |
| |
| #if defined(ENABLE_WEBDRIVER) |
| #include "cobalt/webdriver/web_driver_module.h" |
| #endif |
| |
| #if defined(ENABLE_REMOTE_DEBUGGING) |
| #include "cobalt/debug/debug_web_server.h" |
| #endif |
| |
| namespace cobalt { |
| namespace browser { |
| |
| // The Application base class is meant to manage the main thread's UI |
| // message loop. A platform-specific application will be created via |
| // CreateApplication(). This class and all of its subclasses are not designed |
| // to be thread safe. |
| class Application { |
| public: |
| virtual ~Application(); |
| |
| void Quit(); |
| |
| protected: |
| explicit Application(const base::Closure& quit_closure); |
| |
| MessageLoop* message_loop() { return message_loop_; } |
| |
| private: |
| // The message loop that will handle UI events. |
| MessageLoop* message_loop_; |
| |
| base::Closure quit_closure_; |
| |
| protected: |
| // Called to handle an event from the account manager. |
| void OnAccountEvent(const base::Event* event); |
| |
| // Called to handle a network event. |
| void OnNetworkEvent(const base::Event* event); |
| |
| // Called to handle an application event. |
| void OnApplicationEvent(const base::Event* event); |
| |
| // Called when a navigation occurs in the BrowserModule. |
| void WebModuleRecreated(); |
| |
| // A conduit for system events. |
| base::EventDispatcher event_dispatcher_; |
| |
| // The main system window for our application. |
| // This routes event callbacks, and provides a native window handle |
| // on desktop systems. |
| scoped_ptr<system_window::SystemWindow> system_window_; |
| |
| // Account manager with platform-specific implementation (e.g. PSN on PS3). |
| scoped_ptr<account::AccountManager> account_manager_; |
| |
| // Main components of the Cobalt browser application. |
| scoped_ptr<BrowserModule> browser_module_; |
| |
| // Event callbacks. |
| base::EventCallback account_event_callback_; |
| base::EventCallback network_event_callback_; |
| base::EventCallback application_event_callback_; |
| |
| // Thread checkers to ensure that callbacks for network and application events |
| // always occur on the same thread. |
| base::ThreadChecker network_event_thread_checker_; |
| base::ThreadChecker application_event_thread_checker_; |
| |
| // Time the application started |
| base::TimeTicks start_time_; |
| |
| #if defined(ENABLE_WEBDRIVER) |
| // WebDriver implementation with embedded HTTP server. |
| scoped_ptr<webdriver::WebDriverModule> web_driver_module_; |
| #endif |
| |
| #if defined(ENABLE_REMOTE_DEBUGGING) |
| // Web server to serve devtools front end. Debugging messages are sent and |
| // received via a WebSocket and communicated to an embedded DebugServer. |
| scoped_ptr<debug::DebugWebServer> debug_web_server_; |
| #endif |
| |
| private: |
| enum AppStatus { |
| kUninitializedAppStatus, |
| kRunningAppStatus, |
| kPausedAppStatus, |
| kWillQuitAppStatus, |
| kQuitAppStatus, |
| kShutDownAppStatus, |
| }; |
| enum NetworkStatus { |
| kDisconnectedNetworkStatus, |
| kConnectedNetworkStatus, |
| }; |
| |
| // Stats related |
| |
| struct CValStats { |
| CValStats(); |
| |
| base::CVal<size_t, base::CValPublic> free_memory; |
| #if !defined(__LB_SHELL__FOR_RELEASE__) |
| base::CVal<size_t, base::CValPublic> used_memory; |
| base::CVal<size_t, base::CValPublic> exe_memory; |
| #endif |
| |
| base::CVal<int64_t, base::CValPublic> app_lifetime_in_ms; |
| }; |
| |
| void RegisterUserLogs(); |
| void UpdateAndMaybeRegisterUserAgent(); |
| |
| void UpdatePeriodicStats(); |
| |
| static ssize_t available_memory_; |
| static int64 lifetime_in_ms_; |
| |
| static AppStatus app_status_; |
| static int app_suspend_count_; |
| static int app_resume_count_; |
| |
| static NetworkStatus network_status_; |
| static int network_connect_count_; |
| static int network_disconnect_count_; |
| |
| CValStats c_val_stats_; |
| |
| base::Timer stats_update_timer_; |
| }; |
| |
| // Factory method for creating an application. It should be implemented |
| // per-platform to allow for platform-specific customization. The passed |
| // in |quit_closure| can be called internally by the application to signal that |
| // it would like to quit. |
| scoped_ptr<Application> CreateApplication(const base::Closure& quit_closure); |
| |
| } // namespace browser |
| } // namespace cobalt |
| |
| #endif // COBALT_BROWSER_APPLICATION_H_ |