blob: 30fa9a1c701f31da0584daecf2c1e26259849e26 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BLIMP_ENGINE_BROWSER_BLIMP_ENGINE_SESSION_H_
#define BLIMP_ENGINE_BROWSER_BLIMP_ENGINE_SESSION_H_
#include <stdint.h>
#include <vector>
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "blimp/common/proto/blimp_message.pb.h"
#include "blimp/engine/browser/engine_render_widget_feature.h"
#include "blimp/net/blimp_message_processor.h"
#include "blimp/net/connection_error_observer.h"
#include "content/public/browser/invalidate_type.h"
#include "content/public/browser/web_contents_delegate.h"
#include "content/public/browser/web_contents_observer.h"
#include "net/base/completion_callback.h"
#include "ui/gfx/geometry/size.h"
namespace aura {
class WindowTreeHost;
namespace client {
class DefaultCaptureClient;
class WindowTreeClient;
} // namespace client
} // namespace aura
namespace content {
class BrowserContext;
class RenderViewHost;
class WebContents;
}
namespace gfx {
class Size;
}
namespace net {
class NetLog;
}
namespace wm {
class FocusController;
}
namespace blimp {
class BlimpConnection;
class BlimpMessage;
class BlimpMessageThreadPipe;
namespace engine {
class BlimpBrowserContext;
class BlimpFocusClient;
class BlimpScreen;
class BlimpUiContextFactory;
class BlimpWindowTreeHost;
class EngineNetworkComponents;
class BlimpEngineSession
: public BlimpMessageProcessor,
public content::WebContentsDelegate,
public content::WebContentsObserver,
public EngineRenderWidgetFeature::RenderWidgetMessageDelegate {
public:
explicit BlimpEngineSession(scoped_ptr<BlimpBrowserContext> browser_context,
net::NetLog* net_log);
~BlimpEngineSession() override;
// Starts the network stack on the IO thread, and sets default placeholder
// values for e.g. screen size pending real values being supplied by the
// client.
void Initialize();
BlimpBrowserContext* browser_context() { return browser_context_.get(); }
// BlimpMessageProcessor implementation.
// This object handles incoming TAB_CONTROL and NAVIGATION messages directly.
void ProcessMessage(scoped_ptr<BlimpMessage> message,
const net::CompletionCallback& callback) override;
private:
// Registers a message processor which will receive all messages of the |type|
// specified. Returns a BlimpMessageProcessor object for sending messages of
// type |type|.
scoped_ptr<BlimpMessageProcessor> RegisterFeature(
BlimpMessage::Type type,
BlimpMessageProcessor* incoming_processor);
// TabControlMessage handler methods.
// Creates a new WebContents, which will be indexed by |target_tab_id|.
// Returns true if a new WebContents is created, false otherwise.
bool CreateWebContents(const int target_tab_id);
void CloseWebContents(const int target_tab_id);
void HandleResize(float device_pixel_ratio, const gfx::Size& size);
// NavigationMessage handler methods.
// Navigates the target tab to the |url|.
void LoadUrl(const int target_tab_id, const GURL& url);
void GoBack(const int target_tab_id);
void GoForward(const int target_tab_id);
void Reload(const int target_tab_id);
// RenderWidgetMessage handler methods.
// RenderWidgetMessageDelegate implementation.
void OnWebInputEvent(scoped_ptr<blink::WebInputEvent> event) override;
void OnCompositorMessageReceived(
const std::vector<uint8_t>& message) override;
// content::WebContentsDelegate implementation.
content::WebContents* OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params) override;
void AddNewContents(content::WebContents* source,
content::WebContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_rect,
bool user_gesture,
bool* was_blocked) override;
void RequestToLockMouse(content::WebContents* web_contents,
bool user_gesture,
bool last_unlocked_by_target) override;
void CloseContents(content::WebContents* source) override;
void ActivateContents(content::WebContents* contents) override;
void ForwardCompositorProto(const std::vector<uint8_t>& proto) override;
void NavigationStateChanged(content::WebContents* source,
content::InvalidateTypes changed_flags) override;
// content::WebContentsObserver implementation.
void RenderViewHostChanged(content::RenderViewHost* old_host,
content::RenderViewHost* new_host) override;
// Sets up and owns |new_contents|.
void PlatformSetContents(scoped_ptr<content::WebContents> new_contents);
scoped_ptr<BlimpBrowserContext> browser_context_;
scoped_ptr<BlimpScreen> screen_;
// Context factory for compositor.
scoped_ptr<BlimpUiContextFactory> context_factory_;
// Represents the (currently single) browser window into which tab(s) will
// be rendered.
scoped_ptr<aura::WindowTreeHost> window_tree_host_;
// Used to apply standard focus conventions to the windows in the
// WindowTreeHost hierarchy.
scoped_ptr<wm::FocusController> focus_client_;
// Used to manage input capture.
scoped_ptr<aura::client::DefaultCaptureClient> capture_client_;
// Only one web_contents is supported for blimp 0.5
scoped_ptr<content::WebContents> web_contents_;
// Handles all incoming and outgoing messages related to RenderWidget,
// including INPUT, COMPOSITOR and RENDER_WIDGET messages.
EngineRenderWidgetFeature render_widget_feature_;
// Container for connection manager, authentication handler, and
// browser connection handler. The components run on the I/O thread, and
// this object is destroyed there.
scoped_ptr<EngineNetworkComponents> net_components_;
// Pipes for receiving BlimpMessages from IO thread.
// Incoming messages are only routed to the UI thread since all features run
// there.
std::vector<scoped_ptr<BlimpMessageThreadPipe>> incoming_pipes_;
scoped_ptr<BlimpMessageProcessor> tab_control_message_sender_;
scoped_ptr<BlimpMessageProcessor> navigation_message_sender_;
DISALLOW_COPY_AND_ASSIGN(BlimpEngineSession);
};
} // namespace engine
} // namespace blimp
#endif // BLIMP_ENGINE_BROWSER_BLIMP_ENGINE_SESSION_H_