// Copyright (c) 2011 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 CONTENT_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H_ #define CONTENT_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H_ #pragma once #include #include #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" #include "googleurl/src/gurl.h" #include "ipc/ipc_channel.h" #include "ipc/ipc_message.h" #include "ui/gfx/native_widget_types.h" #include "ui/gfx/rect.h" #include "ui/gfx/surface/transport_dib.h" #include "webkit/plugins/npapi/webplugin_delegate.h" #include "webkit/plugins/webplugininfo.h" #if defined(OS_MACOSX) #include "base/hash_tables.h" #include "base/memory/linked_ptr.h" #endif struct NPObject; class NPObjectStub; struct NPVariant_Param; class PluginChannelHost; struct PluginHostMsg_URLRequest_Params; class RenderView; class SkBitmap; namespace base { class SharedMemory; class WaitableEvent; } namespace skia { class PlatformCanvas; } namespace webkit { namespace npapi { class WebPlugin; } } // An implementation of WebPluginDelegate that proxies all calls to // the plugin process. class WebPluginDelegateProxy : public webkit::npapi::WebPluginDelegate, public IPC::Channel::Listener, public IPC::Message::Sender, public base::SupportsWeakPtr { public: WebPluginDelegateProxy(const std::string& mime_type, const base::WeakPtr& render_view); // WebPluginDelegate implementation: virtual void PluginDestroyed(); virtual bool Initialize(const GURL& url, const std::vector& arg_names, const std::vector& arg_values, webkit::npapi::WebPlugin* plugin, bool load_manually); virtual void UpdateGeometry(const gfx::Rect& window_rect, const gfx::Rect& clip_rect); virtual void Paint(WebKit::WebCanvas* canvas, const gfx::Rect& rect); virtual NPObject* GetPluginScriptableObject(); virtual bool GetFormValue(string16* value); virtual void DidFinishLoadWithReason(const GURL& url, NPReason reason, int notify_id); virtual void SetFocus(bool focused); virtual bool HandleInputEvent(const WebKit::WebInputEvent& event, WebKit::WebCursorInfo* cursor); virtual int GetProcessId(); // Informs the plugin that its containing content view has gained or lost // first responder status. virtual void SetContentAreaFocus(bool has_focus); #if defined(OS_MACOSX) // Informs the plugin that its enclosing window has gained or lost focus. virtual void SetWindowFocus(bool window_has_focus); // Informs the plugin that its container (window/tab) has changed visibility. virtual void SetContainerVisibility(bool is_visible); // Informs the plugin that its enclosing window's frame has changed. virtual void WindowFrameChanged(gfx::Rect window_frame, gfx::Rect view_frame); // Informs the plugin that plugin IME has completed. // If |text| is empty, composition was cancelled. virtual void ImeCompositionCompleted(const string16& text, int plugin_id); #endif // IPC::Channel::Listener implementation: virtual bool OnMessageReceived(const IPC::Message& msg); virtual void OnChannelError(); // IPC::Message::Sender implementation: virtual bool Send(IPC::Message* msg); virtual void SendJavaScriptStream(const GURL& url, const std::string& result, bool success, int notify_id); virtual void DidReceiveManualResponse(const GURL& url, const std::string& mime_type, const std::string& headers, uint32 expected_length, uint32 last_modified); virtual void DidReceiveManualData(const char* buffer, int length); virtual void DidFinishManualLoading(); virtual void DidManualLoadFail(); virtual webkit::npapi::WebPluginResourceClient* CreateResourceClient( unsigned long resource_id, const GURL& url, int notify_id); virtual webkit::npapi::WebPluginResourceClient* CreateSeekableResourceClient( unsigned long resource_id, int range_request_id); gfx::PluginWindowHandle GetPluginWindowHandle(); protected: template friend class DeleteTask; virtual ~WebPluginDelegateProxy(); private: struct SharedBitmap { SharedBitmap(); ~SharedBitmap(); scoped_ptr dib; scoped_ptr canvas; }; // Message handlers for messages that proxy WebPlugin methods, which // we translate into calls to the real WebPlugin. void OnSetWindow(gfx::PluginWindowHandle window); #if defined(OS_WIN) void OnSetWindowlessPumpEvent(HANDLE modal_loop_pump_messages_event); #endif void OnCompleteURL(const std::string& url_in, std::string* url_out, bool* result); void OnHandleURLRequest(const PluginHostMsg_URLRequest_Params& params); void OnCancelResource(int id); void OnInvalidateRect(const gfx::Rect& rect, bool allow_buffer_flipping); void OnGetWindowScriptNPObject(int route_id, bool* success); void OnResolveProxy(const GURL& url, bool* result, std::string* proxy_list); void OnGetPluginElement(int route_id, bool* success); void OnSetCookie(const GURL& url, const GURL& first_party_for_cookies, const std::string& cookie); void OnGetCookies(const GURL& url, const GURL& first_party_for_cookies, std::string* cookies); void OnCancelDocumentLoad(); void OnInitiateHTTPRangeRequest(const std::string& url, const std::string& range_info, int range_request_id); void OnDeferResourceLoading(unsigned long resource_id, bool defer); #if defined(OS_MACOSX) void OnFocusChanged(bool focused); void OnStartIme(); void OnBindFakePluginWindowHandle(bool opaque); void OnAcceleratedSurfaceSetIOSurface(gfx::PluginWindowHandle window, int32 width, int32 height, uint64 io_surface_identifier); void OnAcceleratedSurfaceSetTransportDIB(gfx::PluginWindowHandle window, int32 width, int32 height, TransportDIB::Handle transport_dib); void OnAcceleratedSurfaceAllocTransportDIB(size_t size, TransportDIB::Handle* dib_handle); void OnAcceleratedSurfaceFreeTransportDIB(TransportDIB::Id dib_id); void OnAcceleratedSurfaceBuffersSwapped(gfx::PluginWindowHandle window, uint64 surface_id); #endif void OnURLRedirectResponse(bool allow, int resource_id); // Helper function that sends the UpdateGeometry message. void SendUpdateGeometry(bool bitmaps_changed); // Draw a graphic indicating a crashed plugin. void PaintSadPlugin(WebKit::WebCanvas* canvas, const gfx::Rect& rect); // Returns true if the given rectangle is different in the native drawing // context and the current background bitmap. bool BackgroundChanged(gfx::NativeDrawingContext context, const gfx::Rect& rect); // Copies the given rectangle from the back-buffer transport_stores_ bitmap to // the front-buffer transport_stores_ bitmap. void CopyFromBackBufferToFrontBuffer(const gfx::Rect& rect); // Updates the front-buffer with the given rectangle from the back-buffer, // either by copying the rectangle or flipping the buffers. void UpdateFrontBuffer(const gfx::Rect& rect, bool allow_buffer_flipping); // Clears the shared memory section and canvases used for windowless plugins. void ResetWindowlessBitmaps(); int front_buffer_index() const { return front_buffer_index_; } int back_buffer_index() const { return 1 - front_buffer_index_; } skia::PlatformCanvas* front_buffer_canvas() const { return transport_stores_[front_buffer_index()].canvas.get(); } skia::PlatformCanvas* back_buffer_canvas() const { return transport_stores_[back_buffer_index()].canvas.get(); } TransportDIB* front_buffer_dib() const { return transport_stores_[front_buffer_index()].dib.get(); } TransportDIB* back_buffer_dib() const { return transport_stores_[back_buffer_index()].dib.get(); } #if !defined(OS_WIN) // Creates a process-local memory section and canvas. PlatformCanvas on // Windows only works with a DIB, not arbitrary memory. bool CreateLocalBitmap(std::vector* memory, scoped_ptr* canvas); #endif // Creates a shared memory section and canvas. bool CreateSharedBitmap(scoped_ptr* memory, scoped_ptr* canvas); // Called for cleanup during plugin destruction. Normally right before the // plugin window gets destroyed, or when the plugin has crashed (at which // point the window has already been destroyed). void WillDestroyWindow(); #if defined(OS_MACOSX) // Synthesize a fake window handle for the plug-in to identify the instance // to the browser, allowing mapping to a surface for hardware acceleration // of plug-in content. The browser generates the handle which is then set on // the plug-in. Returns true if it successfully sets the window handle on the // plug-in. bool BindFakePluginWindowHandle(bool opaque); #endif // OS_MACOSX #if defined(OS_WIN) // Returns true if we should update the plugin geometry synchronously. bool UseSynchronousGeometryUpdates(); #endif base::WeakPtr render_view_; webkit::npapi::WebPlugin* plugin_; bool uses_shared_bitmaps_; gfx::PluginWindowHandle window_; scoped_refptr channel_host_; std::string mime_type_; int instance_id_; webkit::WebPluginInfo info_; gfx::Rect plugin_rect_; gfx::Rect clip_rect_; NPObject* npobject_; base::WeakPtr window_script_object_; // Event passed in by the plugin process and is used to decide if // messages need to be pumped in the NPP_HandleEvent sync call. scoped_ptr modal_loop_pump_messages_event_; // Bitmap for crashed plugin SkBitmap* sad_plugin_; // True if we got an invalidate from the plugin and are waiting for a paint. bool invalidate_pending_; // Used to desynchronize windowless painting. When WebKit paints, we bitblt // from our front buffer store of what the plugin rectangle looks like. The // plugin paints into the back buffer store, and we swap the buffers when we // get an invalidate from it. The background bitmap is used for transparent // plugins, as they need the background data during painting. bool transparent_; // The index in the transport_stores_ array of the current front buffer // (i.e., the buffer to display). int front_buffer_index_; SharedBitmap transport_stores_[2]; SharedBitmap background_store_; // This lets us know the total portion of the transport store that has been // painted since the buffers were created. gfx::Rect transport_store_painted_; // This is a bounding box on the portion of the front-buffer that was painted // on the last buffer flip and which has not yet been re-painted in the // back-buffer. gfx::Rect front_buffer_diff_; // The url of the main frame hosting the plugin. GURL page_url_; DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateProxy); }; #endif // CONTENT_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H_