123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- /*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
- #ifndef PluginProxy_h
- #define PluginProxy_h
- #if ENABLE(PLUGIN_PROCESS)
- #include "Connection.h"
- #include "Plugin.h"
- #include "PluginProcess.h"
- #include <WebCore/AffineTransform.h>
- #include <WebCore/FindOptions.h>
- #include <WebCore/IntRect.h>
- #include <WebCore/SecurityOrigin.h>
- #if PLATFORM(MAC)
- #include <wtf/RetainPtr.h>
- OBJC_CLASS CALayer;
- #endif
- namespace WebCore {
- class HTTPHeaderMap;
- class ProtectionSpace;
- }
- namespace WebKit {
- class ShareableBitmap;
- class NPVariantData;
- class PluginProcessConnection;
- struct PluginCreationParameters;
- class PluginProxy : public Plugin {
- public:
- static PassRefPtr<PluginProxy> create(uint64_t pluginProcessToken, bool isRestartedProcess);
- ~PluginProxy();
- uint64_t pluginInstanceID() const { return m_pluginInstanceID; }
- void pluginProcessCrashed();
- void didReceivePluginProxyMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&);
- void didReceiveSyncPluginProxyMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&, OwnPtr<CoreIPC::MessageEncoder>&);
- bool isBeingAsynchronouslyInitialized() const { return m_waitingOnAsynchronousInitialization; }
- private:
- explicit PluginProxy(uint64_t pluginProcessToken, bool isRestartedProcess);
- // Plugin
- virtual bool initialize(const Parameters&);
- bool initializeSynchronously();
- virtual void destroy();
- virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect& dirtyRect);
- virtual bool supportsSnapshotting() const;
- virtual PassRefPtr<ShareableBitmap> snapshot();
- #if PLATFORM(MAC)
- virtual PlatformLayer* pluginLayer();
- #endif
- virtual bool isTransparent();
- virtual bool wantsWheelEvents() OVERRIDE;
- virtual void geometryDidChange(const WebCore::IntSize& pluginSize, const WebCore::IntRect& clipRect, const WebCore::AffineTransform& pluginToRootViewTransform);
- virtual void visibilityDidChange();
- virtual void frameDidFinishLoading(uint64_t requestID);
- virtual void frameDidFail(uint64_t requestID, bool wasCancelled);
- virtual void didEvaluateJavaScript(uint64_t requestID, const String& result);
- virtual void streamDidReceiveResponse(uint64_t streamID, const WebCore::KURL& responseURL, uint32_t streamLength, uint32_t lastModifiedTime, const String& mimeType, const String& headers, const String& suggestedFileName);
- virtual void streamDidReceiveData(uint64_t streamID, const char* bytes, int length);
- virtual void streamDidFinishLoading(uint64_t streamID);
- virtual void streamDidFail(uint64_t streamID, bool wasCancelled);
- virtual void manualStreamDidReceiveResponse(const WebCore::KURL& responseURL, uint32_t streamLength, uint32_t lastModifiedTime, const WTF::String& mimeType, const WTF::String& headers, const String& suggestedFileName);
- virtual void manualStreamDidReceiveData(const char* bytes, int length);
- virtual void manualStreamDidFinishLoading();
- virtual void manualStreamDidFail(bool wasCancelled);
-
- virtual bool handleMouseEvent(const WebMouseEvent&);
- virtual bool handleWheelEvent(const WebWheelEvent&);
- virtual bool handleMouseEnterEvent(const WebMouseEvent&);
- virtual bool handleMouseLeaveEvent(const WebMouseEvent&);
- virtual bool handleContextMenuEvent(const WebMouseEvent&);
- virtual bool handleKeyboardEvent(const WebKeyboardEvent&);
- virtual void setFocus(bool);
- virtual bool handleEditingCommand(const String& commandName, const String& argument) OVERRIDE;
- virtual bool isEditingCommandEnabled(const String& commandName) OVERRIDE;
- virtual bool shouldAllowScripting() OVERRIDE { return true; }
- virtual bool shouldAllowNavigationFromDrags() OVERRIDE { return false; }
-
- virtual bool handlesPageScaleFactor();
-
- virtual NPObject* pluginScriptableNPObject();
- #if PLATFORM(MAC)
- virtual void windowFocusChanged(bool);
- virtual void windowAndViewFramesChanged(const WebCore::IntRect& windowFrameInScreenCoordinates, const WebCore::IntRect& viewFrameInWindowCoordinates);
- virtual void windowVisibilityChanged(bool);
- virtual uint64_t pluginComplexTextInputIdentifier() const;
- virtual void sendComplexTextInput(const String& textInput);
- virtual void setLayerHostingMode(LayerHostingMode) OVERRIDE;
- #endif
- virtual void contentsScaleFactorChanged(float);
- virtual void storageBlockingStateChanged(bool);
- virtual void privateBrowsingStateChanged(bool);
- virtual bool getFormValue(String& formValue);
- virtual bool handleScroll(WebCore::ScrollDirection, WebCore::ScrollGranularity);
- virtual WebCore::Scrollbar* horizontalScrollbar();
- virtual WebCore::Scrollbar* verticalScrollbar();
- virtual unsigned countFindMatches(const String&, WebCore::FindOptions, unsigned) OVERRIDE { return 0; }
- virtual bool findString(const String&, WebCore::FindOptions, unsigned) OVERRIDE { return false; }
- virtual WebCore::IntPoint convertToRootView(const WebCore::IntPoint&) const OVERRIDE;
- virtual PassRefPtr<WebCore::SharedBuffer> liveResourceData() const OVERRIDE;
- virtual bool performDictionaryLookupAtLocation(const WebCore::FloatPoint&) OVERRIDE { return false; }
- virtual String getSelectionString() const OVERRIDE { return String(); }
- float contentsScaleFactor();
- bool needsBackingStore() const;
- bool updateBackingStore();
- uint64_t windowNPObjectID();
- WebCore::IntRect pluginBounds();
- void geometryDidChange();
- // Message handlers.
- void loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups);
- void update(const WebCore::IntRect& paintedRect);
- void proxiesForURL(const String& urlString, String& proxyString);
- void cookiesForURL(const String& urlString, String& cookieString);
- void setCookiesForURL(const String& urlString, const String& cookieString);
- void getAuthenticationInfo(const WebCore::ProtectionSpace&, bool& returnValue, String& username, String& password);
- void getPluginElementNPObject(uint64_t& pluginElementNPObjectID);
- void evaluate(const NPVariantData& npObjectAsVariantData, const String& scriptString, bool allowPopups, bool& returnValue, NPVariantData& resultData);
- void cancelStreamLoad(uint64_t streamID);
- void cancelManualStreamLoad();
- void setStatusbarText(const String& statusbarText);
- #if PLATFORM(MAC)
- void pluginFocusOrWindowFocusChanged(bool);
- void setComplexTextInputState(uint64_t);
- void setLayerHostingContextID(uint32_t);
- #endif
- #if PLUGIN_ARCHITECTURE(X11)
- void createPluginContainer(uint64_t& windowID);
- void windowedPluginGeometryDidChange(const WebCore::IntRect& frameRect, const WebCore::IntRect& clipRect, uint64_t windowID);
- #endif
- bool canInitializeAsynchronously() const;
- void didCreatePlugin(bool wantsWheelEvents, uint32_t remoteLayerClientID);
- void didFailToCreatePlugin();
- void didCreatePluginInternal(bool wantsWheelEvents, uint32_t remoteLayerClientID);
- void didFailToCreatePluginInternal();
- uint64_t m_pluginProcessToken;
- RefPtr<PluginProcessConnection> m_connection;
- uint64_t m_pluginInstanceID;
- WebCore::IntSize m_pluginSize;
- // The clip rect in plug-in coordinates.
- WebCore::IntRect m_clipRect;
- // A transform that can be used to convert from root view coordinates to plug-in coordinates.
- WebCore::AffineTransform m_pluginToRootViewTransform;
- // This is the backing store that we paint when we're told to paint.
- RefPtr<ShareableBitmap> m_backingStore;
- // This is the shared memory backing store that the plug-in paints into. When the plug-in tells us
- // that it's painted something in it, we'll blit from it to our own backing store.
- RefPtr<ShareableBitmap> m_pluginBackingStore;
-
- // Whether all of the plug-in backing store contains valid data.
- bool m_pluginBackingStoreContainsValidData;
- bool m_isStarted;
- // Whether we're called invalidate in response to an update call, and are now waiting for a paint call.
- bool m_waitingForPaintInResponseToUpdate;
- // Whether we should send wheel events to this plug-in or not.
- bool m_wantsWheelEvents;
- // The client ID for the CA layer in the plug-in process. Will be 0 if the plug-in is not a CA plug-in.
- uint32_t m_remoteLayerClientID;
-
- OwnPtr<PluginCreationParameters> m_pendingPluginCreationParameters;
- bool m_waitingOnAsynchronousInitialization;
- #if PLATFORM(MAC)
- RetainPtr<CALayer> m_pluginLayer;
- #endif
- bool m_isRestartedProcess;
- };
- } // namespace WebKit
- #endif // ENABLE(PLUGIN_PROCESS)
- #endif // PluginProxy_h
|