2009-06-30 11:51:05 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (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.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Plugin App.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Chris Jones <jones.chris.g@gmail.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2009-12-01 13:05:26 -08:00
|
|
|
* Jim Mathies <jmathies@mozilla.com>
|
2009-06-30 11:51:05 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2009-09-08 23:31:35 -07:00
|
|
|
#include "PluginInstanceChild.h"
|
2009-09-17 15:15:12 -07:00
|
|
|
#include "PluginModuleChild.h"
|
2009-09-09 07:04:09 -07:00
|
|
|
#include "BrowserStreamChild.h"
|
2009-09-21 07:51:35 -07:00
|
|
|
#include "PluginStreamChild.h"
|
2009-09-08 14:22:50 -07:00
|
|
|
#include "StreamNotifyChild.h"
|
2010-05-10 21:18:00 -07:00
|
|
|
#include "PluginProcessChild.h"
|
2010-09-15 09:02:49 -07:00
|
|
|
#include "gfxASurface.h"
|
|
|
|
#include "gfxContext.h"
|
|
|
|
#ifdef MOZ_X11
|
|
|
|
#include "gfxXlibSurface.h"
|
|
|
|
#endif
|
2010-10-25 10:57:13 -07:00
|
|
|
#ifdef XP_WIN
|
|
|
|
#include "mozilla/gfx/SharedDIBSurface.h"
|
|
|
|
|
|
|
|
using mozilla::gfx::SharedDIBSurface;
|
|
|
|
#endif
|
2010-09-15 09:02:49 -07:00
|
|
|
#include "gfxSharedImageSurface.h"
|
|
|
|
#include "gfxUtils.h"
|
|
|
|
#include "gfxAlphaRecovery.h"
|
2009-07-02 09:54:22 -07:00
|
|
|
|
2009-11-06 14:33:12 -08:00
|
|
|
#include "mozilla/ipc/SyncChannel.h"
|
|
|
|
|
2010-05-10 21:18:00 -07:00
|
|
|
using mozilla::ipc::ProcessChild;
|
2009-09-17 15:15:12 -07:00
|
|
|
using namespace mozilla::plugins;
|
|
|
|
|
2009-09-30 14:36:14 -07:00
|
|
|
#ifdef MOZ_WIDGET_GTK2
|
2009-07-01 14:19:32 -07:00
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <gdk/gdkx.h>
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
#include "gtk2xtbin.h"
|
2009-07-01 14:19:32 -07:00
|
|
|
|
2010-02-10 12:48:20 -08:00
|
|
|
#elif defined(MOZ_WIDGET_QT)
|
|
|
|
#include <QX11Info>
|
2009-07-01 14:19:32 -07:00
|
|
|
#elif defined(OS_WIN)
|
2010-05-18 11:17:10 -07:00
|
|
|
#ifndef WM_MOUSEHWHEEL
|
|
|
|
#define WM_MOUSEHWHEEL 0x020E
|
|
|
|
#endif
|
2010-02-09 14:34:38 -08:00
|
|
|
|
2010-03-22 20:06:35 -07:00
|
|
|
#include "nsWindowsDllInterceptor.h"
|
|
|
|
|
|
|
|
typedef BOOL (WINAPI *User32TrackPopupMenu)(HMENU hMenu,
|
|
|
|
UINT uFlags,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int nReserved,
|
|
|
|
HWND hWnd,
|
|
|
|
CONST RECT *prcRect);
|
|
|
|
static WindowsDllInterceptor sUser32Intercept;
|
|
|
|
static HWND sWinlessPopupSurrogateHWND = NULL;
|
|
|
|
static User32TrackPopupMenu sUser32TrackPopupMenuStub = NULL;
|
|
|
|
|
2009-12-01 15:33:51 -08:00
|
|
|
using mozilla::gfx::SharedDIB;
|
2009-07-01 14:19:32 -07:00
|
|
|
|
|
|
|
#include <windows.h>
|
2010-02-24 16:13:48 -08:00
|
|
|
#include <windowsx.h>
|
2009-07-01 14:19:32 -07:00
|
|
|
|
2010-04-26 09:29:11 -07:00
|
|
|
// Flash WM_USER message delay time for PostDelayedTask. Borrowed
|
|
|
|
// from Chromium's web plugin delegate src. See 'flash msg throttling
|
|
|
|
// helpers' section for details.
|
|
|
|
const int kFlashWMUSERMessageThrottleDelayMs = 5;
|
|
|
|
|
2010-10-21 14:52:48 -07:00
|
|
|
static const TCHAR kPluginIgnoreSubclassProperty[] = TEXT("PluginIgnoreSubclassProperty");
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
#elif defined(XP_MACOSX)
|
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
|
|
#endif // defined(XP_MACOSX)
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
template<>
|
|
|
|
struct RunnableMethodTraits<PluginInstanceChild>
|
|
|
|
{
|
|
|
|
static void RetainCallee(PluginInstanceChild* obj) { }
|
|
|
|
static void ReleaseCallee(PluginInstanceChild* obj) { }
|
|
|
|
};
|
|
|
|
|
2010-12-06 16:50:47 -08:00
|
|
|
PluginInstanceChild::PluginInstanceChild(const NPPluginFuncs* aPluginIface)
|
2010-03-06 13:03:05 -08:00
|
|
|
: mPluginIface(aPluginIface)
|
2010-02-24 16:13:48 -08:00
|
|
|
, mCachedWindowActor(nsnull)
|
|
|
|
, mCachedElementActor(nsnull)
|
2009-10-11 16:54:49 -07:00
|
|
|
#if defined(OS_WIN)
|
2010-01-15 12:35:57 -08:00
|
|
|
, mPluginWindowHWND(0)
|
|
|
|
, mPluginWndProc(0)
|
|
|
|
, mPluginParentHWND(0)
|
2010-02-09 14:34:38 -08:00
|
|
|
, mCachedWinlessPluginHWND(0)
|
2010-03-22 20:06:35 -07:00
|
|
|
, mWinlessPopupSurrogateHWND(0)
|
2010-04-26 09:29:11 -07:00
|
|
|
, mWinlessThrottleOldWndProc(0)
|
2010-05-06 09:40:26 -07:00
|
|
|
, mWinlessHiddenMsgHWND(0)
|
2010-01-15 12:35:57 -08:00
|
|
|
#endif // OS_WIN
|
2010-03-25 11:25:38 -07:00
|
|
|
, mAsyncCallMutex("PluginInstanceChild::mAsyncCallMutex")
|
2010-09-22 22:27:59 -07:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
#if defined(__i386__)
|
|
|
|
, mEventModel(NPEventModelCarbon)
|
|
|
|
#endif
|
2010-04-20 07:52:19 -07:00
|
|
|
, mShColorSpace(nsnull)
|
|
|
|
, mShContext(nsnull)
|
|
|
|
, mDrawingModel(NPDrawingModelCoreGraphics)
|
2010-07-29 15:38:32 -07:00
|
|
|
, mCurrentEvent(nsnull)
|
2010-09-15 09:02:49 -07:00
|
|
|
#endif
|
2010-09-21 09:03:16 -07:00
|
|
|
, mLayersRendering(false)
|
2010-09-15 09:02:49 -07:00
|
|
|
, mAccumulatedInvalidRect(0,0,0,0)
|
2010-09-21 09:03:16 -07:00
|
|
|
, mIsTransparent(false)
|
2010-09-15 09:02:49 -07:00
|
|
|
, mSurfaceType(gfxASurface::SurfaceTypeMax)
|
|
|
|
, mCurrentInvalidateTask(nsnull)
|
2010-12-05 13:57:33 -08:00
|
|
|
, mCurrentAsyncSetWindowTask(nsnull)
|
2010-09-21 09:03:16 -07:00
|
|
|
, mPendingPluginCall(false)
|
|
|
|
, mDoAlphaExtraction(false)
|
2010-09-15 09:02:49 -07:00
|
|
|
, mSurfaceDifferenceRect(0,0,0,0)
|
2010-10-04 23:15:49 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6)
|
2010-09-23 16:06:41 -07:00
|
|
|
, mMaemoImageRendering(PR_FALSE)
|
|
|
|
#endif
|
2010-01-15 12:35:57 -08:00
|
|
|
{
|
|
|
|
memset(&mWindow, 0, sizeof(mWindow));
|
|
|
|
mData.ndata = (void*) this;
|
2010-03-29 07:16:27 -07:00
|
|
|
mData.pdata = nsnull;
|
2009-10-11 16:54:49 -07:00
|
|
|
#if defined(MOZ_X11) && defined(XP_UNIX) && !defined(XP_MACOSX)
|
2010-01-15 12:35:57 -08:00
|
|
|
mWindow.ws_info = &mWsInfo;
|
|
|
|
memset(&mWsInfo, 0, sizeof(mWsInfo));
|
2010-06-21 13:35:49 -07:00
|
|
|
mWsInfo.display = DefaultXDisplay();
|
2010-01-15 12:35:57 -08:00
|
|
|
#endif // MOZ_X11 && XP_UNIX && !XP_MACOSX
|
2009-12-14 16:27:25 -08:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
memset(&mAlphaExtract, 0, sizeof(mAlphaExtract));
|
2010-01-15 12:35:57 -08:00
|
|
|
#endif // OS_WIN
|
2010-03-22 20:06:35 -07:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
InitPopupMenuHook();
|
|
|
|
#endif // OS_WIN
|
2010-09-15 09:02:49 -07:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
const char *description = NULL;
|
|
|
|
mPluginIface->getvalue(GetNPP(), NPPVpluginDescriptionString,
|
|
|
|
&description);
|
|
|
|
if (description) {
|
|
|
|
NS_NAMED_LITERAL_CSTRING(flash10Head, "Shockwave Flash 10.");
|
2010-12-06 16:50:53 -08:00
|
|
|
if (StringBeginsWith(nsDependentCString(description), flash10Head)) {
|
|
|
|
PluginModuleChild::current()->AddQuirk(PluginModuleChild::QUIRK_FLASH_EXPOSE_COORD_TRANSLATION);
|
|
|
|
}
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
#endif
|
2010-01-15 12:35:57 -08:00
|
|
|
}
|
2009-10-11 16:54:49 -07:00
|
|
|
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::~PluginInstanceChild()
|
2009-07-01 14:19:32 -07:00
|
|
|
{
|
|
|
|
#if defined(OS_WIN)
|
2010-12-09 06:54:26 -08:00
|
|
|
NS_ASSERTION(!mPluginWindowHWND, "Destroying PluginInstanceChild without NPP_Destroy?");
|
2009-07-01 14:19:32 -07:00
|
|
|
#endif
|
2010-04-01 14:53:56 -07:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
if (mShColorSpace) {
|
|
|
|
::CGColorSpaceRelease(mShColorSpace);
|
|
|
|
}
|
|
|
|
if (mShContext) {
|
|
|
|
::CGContextRelease(mShContext);
|
|
|
|
}
|
|
|
|
#endif
|
2009-07-01 14:19:32 -07:00
|
|
|
}
|
|
|
|
|
2010-12-06 16:50:47 -08:00
|
|
|
int
|
|
|
|
PluginInstanceChild::GetQuirks()
|
2010-02-24 16:13:48 -08:00
|
|
|
{
|
2010-12-06 16:50:47 -08:00
|
|
|
return PluginModuleChild::current()->GetQuirks();
|
2010-02-24 16:13:48 -08:00
|
|
|
}
|
|
|
|
|
2010-02-20 13:59:40 -08:00
|
|
|
NPError
|
|
|
|
PluginInstanceChild::InternalGetNPObjectForValue(NPNVariable aValue,
|
|
|
|
NPObject** aObject)
|
|
|
|
{
|
|
|
|
PluginScriptableObjectChild* actor;
|
|
|
|
NPError result = NPERR_NO_ERROR;
|
|
|
|
|
|
|
|
switch (aValue) {
|
|
|
|
case NPNVWindowNPObject:
|
|
|
|
if (!(actor = mCachedWindowActor)) {
|
|
|
|
PPluginScriptableObjectChild* actorProtocol;
|
|
|
|
CallNPN_GetValue_NPNVWindowNPObject(&actorProtocol, &result);
|
|
|
|
if (result == NPERR_NO_ERROR) {
|
|
|
|
actor = mCachedWindowActor =
|
|
|
|
static_cast<PluginScriptableObjectChild*>(actorProtocol);
|
|
|
|
NS_ASSERTION(actor, "Null actor!");
|
|
|
|
PluginModuleChild::sBrowserFuncs.retainobject(
|
|
|
|
actor->GetObject(false));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NPNVPluginElementNPObject:
|
|
|
|
if (!(actor = mCachedElementActor)) {
|
|
|
|
PPluginScriptableObjectChild* actorProtocol;
|
|
|
|
CallNPN_GetValue_NPNVPluginElementNPObject(&actorProtocol,
|
|
|
|
&result);
|
|
|
|
if (result == NPERR_NO_ERROR) {
|
|
|
|
actor = mCachedElementActor =
|
|
|
|
static_cast<PluginScriptableObjectChild*>(actorProtocol);
|
|
|
|
NS_ASSERTION(actor, "Null actor!");
|
|
|
|
PluginModuleChild::sBrowserFuncs.retainobject(
|
|
|
|
actor->GetObject(false));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
NS_NOTREACHED("Don't know what to do with this value type!");
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
{
|
|
|
|
NPError currentResult;
|
|
|
|
PPluginScriptableObjectChild* currentActor;
|
|
|
|
|
|
|
|
switch (aValue) {
|
|
|
|
case NPNVWindowNPObject:
|
|
|
|
CallNPN_GetValue_NPNVWindowNPObject(¤tActor,
|
|
|
|
¤tResult);
|
|
|
|
break;
|
|
|
|
case NPNVPluginElementNPObject:
|
|
|
|
CallNPN_GetValue_NPNVPluginElementNPObject(¤tActor,
|
|
|
|
¤tResult);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
NS_NOTREACHED("Don't know what to do with this value type!");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that the current actor returned by the parent matches our
|
|
|
|
// cached actor!
|
|
|
|
NS_ASSERTION(static_cast<PluginScriptableObjectChild*>(currentActor) ==
|
|
|
|
actor, "Cached actor is out of date!");
|
|
|
|
NS_ASSERTION(currentResult == result, "Results don't match?!");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (result != NPERR_NO_ERROR) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NPObject* object = actor->GetObject(false);
|
|
|
|
NS_ASSERTION(object, "Null object?!");
|
|
|
|
|
|
|
|
*aObject = PluginModuleChild::sBrowserFuncs.retainobject(object);
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
NPError
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::NPN_GetValue(NPNVariable aVar,
|
|
|
|
void* aValue)
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
2009-12-18 14:22:51 -08:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (aVar=%i)", FULLFUNCTION, (int) aVar));
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2009-06-30 11:51:05 -07:00
|
|
|
|
|
|
|
switch(aVar) {
|
2009-07-02 09:54:22 -07:00
|
|
|
|
|
|
|
case NPNVSupportsWindowless:
|
2009-10-27 12:58:33 -07:00
|
|
|
#if defined(OS_LINUX) || defined(OS_WIN)
|
2009-09-24 19:03:59 -07:00
|
|
|
*((NPBool*)aValue) = true;
|
|
|
|
#else
|
2009-07-01 14:19:32 -07:00
|
|
|
*((NPBool*)aValue) = false;
|
2009-09-24 19:03:59 -07:00
|
|
|
#endif
|
2009-07-02 09:54:22 -07:00
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
|
2010-10-04 23:15:49 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6)
|
2010-09-23 16:06:41 -07:00
|
|
|
case NPNVSupportsWindowlessLocal: {
|
|
|
|
#ifdef MOZ_WIDGET_QT
|
|
|
|
const char *graphicsSystem = PR_GetEnv("MOZ_QT_GRAPHICSSYSTEM");
|
|
|
|
// we should set local rendering to false in order to render X-Plugin
|
|
|
|
// there is no possibility to change it later on maemo5 platform
|
|
|
|
mMaemoImageRendering = (!(graphicsSystem && !strcmp(graphicsSystem, "native")));
|
|
|
|
#endif
|
|
|
|
*((NPBool*)aValue) = mMaemoImageRendering;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
#endif
|
2009-07-02 09:54:22 -07:00
|
|
|
#if defined(OS_LINUX)
|
2009-06-30 11:51:05 -07:00
|
|
|
case NPNVSupportsXEmbedBool:
|
2009-07-01 14:19:32 -07:00
|
|
|
*((NPBool*)aValue) = true;
|
2009-06-30 11:51:05 -07:00
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
|
|
|
|
case NPNVToolkit:
|
|
|
|
*((NPNToolkitType*)aValue) = NPNVGtk2;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
#elif defined(OS_WIN)
|
|
|
|
case NPNVToolkit:
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
#endif
|
2009-09-15 13:33:24 -07:00
|
|
|
case NPNVjavascriptEnabledBool: {
|
|
|
|
bool v = false;
|
|
|
|
NPError result;
|
2009-09-19 12:24:24 -07:00
|
|
|
if (!CallNPN_GetValue_NPNVjavascriptEnabledBool(&v, &result)) {
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
2009-09-15 13:33:24 -07:00
|
|
|
*static_cast<NPBool*>(aValue) = v;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
case NPNVisOfflineBool: {
|
|
|
|
bool v = false;
|
|
|
|
NPError result;
|
2009-09-19 12:24:24 -07:00
|
|
|
if (!CallNPN_GetValue_NPNVisOfflineBool(&v, &result)) {
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
2009-09-15 13:33:24 -07:00
|
|
|
*static_cast<NPBool*>(aValue) = v;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
case NPNVprivateModeBool: {
|
|
|
|
bool v = false;
|
|
|
|
NPError result;
|
2009-09-19 12:24:24 -07:00
|
|
|
if (!CallNPN_GetValue_NPNVprivateModeBool(&v, &result)) {
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
2009-09-15 13:33:24 -07:00
|
|
|
*static_cast<NPBool*>(aValue) = v;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-02-20 13:59:40 -08:00
|
|
|
case NPNVWindowNPObject: // Intentional fall-through
|
2009-10-07 16:50:48 -07:00
|
|
|
case NPNVPluginElementNPObject: {
|
2010-02-20 13:59:40 -08:00
|
|
|
NPObject* object;
|
|
|
|
NPError result = InternalGetNPObjectForValue(aVar, &object);
|
|
|
|
if (result == NPERR_NO_ERROR) {
|
|
|
|
*((NPObject**)aValue) = object;
|
2009-10-07 16:50:48 -07:00
|
|
|
}
|
2010-02-20 13:59:40 -08:00
|
|
|
return result;
|
2009-10-07 16:50:48 -07:00
|
|
|
}
|
|
|
|
|
2010-01-13 17:47:38 -08:00
|
|
|
case NPNVnetscapeWindow: {
|
|
|
|
#ifdef XP_WIN
|
|
|
|
if (mWindow.type == NPWindowTypeDrawable) {
|
2010-02-09 14:34:38 -08:00
|
|
|
if (mCachedWinlessPluginHWND) {
|
|
|
|
*static_cast<HWND*>(aValue) = mCachedWinlessPluginHWND;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
2010-01-13 17:47:38 -08:00
|
|
|
NPError result;
|
2010-02-09 14:34:38 -08:00
|
|
|
if (!CallNPN_GetValue_NPNVnetscapeWindow(&mCachedWinlessPluginHWND, &result)) {
|
2010-01-13 17:47:38 -08:00
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
2010-02-09 14:34:38 -08:00
|
|
|
*static_cast<HWND*>(aValue) = mCachedWinlessPluginHWND;
|
2010-01-13 17:47:38 -08:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*static_cast<HWND*>(aValue) = mPluginWindowHWND;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
2010-01-14 07:18:34 -08:00
|
|
|
#elif defined(MOZ_X11)
|
|
|
|
NPError result;
|
|
|
|
CallNPN_GetValue_NPNVnetscapeWindow(static_cast<XID*>(aValue), &result);
|
|
|
|
return result;
|
2010-01-13 17:47:38 -08:00
|
|
|
#else
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
case NPNVsupportsCoreGraphicsBool: {
|
|
|
|
*((NPBool*)aValue) = true;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
case NPNVsupportsCoreAnimationBool: {
|
2010-04-20 07:52:19 -07:00
|
|
|
*((NPBool*)aValue) = true;
|
2010-03-26 13:07:37 -07:00
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2010-06-08 21:11:48 -07:00
|
|
|
case NPNVsupportsInvalidatingCoreAnimationBool: {
|
|
|
|
*((NPBool*)aValue) = true;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
case NPNVsupportsCocoaBool: {
|
|
|
|
*((NPBool*)aValue) = true;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NP_NO_QUICKDRAW
|
|
|
|
case NPNVsupportsQuickDrawBool: {
|
|
|
|
*((NPBool*)aValue) = false;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
#endif /* NP_NO_QUICKDRAW */
|
|
|
|
#endif /* XP_MACOSX */
|
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
default:
|
2009-12-18 14:22:51 -08:00
|
|
|
PR_LOG(gPluginLog, PR_LOG_WARNING,
|
|
|
|
("In PluginInstanceChild::NPN_GetValue: Unhandled NPNVariable %i (%s)",
|
|
|
|
(int) aVar, NPNVariableToString(aVar)));
|
2009-09-24 19:03:59 -07:00
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-06-30 11:51:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-09-24 19:03:59 -07:00
|
|
|
|
|
|
|
NPError
|
|
|
|
PluginInstanceChild::NPN_SetValue(NPPVariable aVar, void* aValue)
|
|
|
|
{
|
2009-12-18 14:22:51 -08:00
|
|
|
PR_LOG(gPluginLog, PR_LOG_DEBUG, ("%s (aVar=%i, aValue=%p)",
|
|
|
|
FULLFUNCTION, (int) aVar, aValue));
|
|
|
|
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2009-09-24 19:03:59 -07:00
|
|
|
|
|
|
|
switch (aVar) {
|
|
|
|
case NPPVpluginWindowBool: {
|
|
|
|
NPError rv;
|
|
|
|
bool windowed = (NPBool) (intptr_t) aValue;
|
|
|
|
|
|
|
|
if (!CallNPN_SetValue_NPPVpluginWindow(windowed, &rv))
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
case NPPVpluginTransparentBool: {
|
|
|
|
NPError rv;
|
2010-10-27 06:13:53 -07:00
|
|
|
mIsTransparent = (!!aValue);
|
2009-09-24 19:03:59 -07:00
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
if (!CallNPN_SetValue_NPPVpluginTransparent(mIsTransparent, &rv))
|
2009-09-24 19:03:59 -07:00
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
case NPPVpluginDrawingModel: {
|
|
|
|
NPError rv;
|
|
|
|
int drawingModel = (int16) (intptr_t) aValue;
|
|
|
|
|
|
|
|
if (!CallNPN_SetValue_NPPVpluginDrawingModel(drawingModel, &rv))
|
|
|
|
return NPERR_GENERIC_ERROR;
|
2010-04-20 07:52:19 -07:00
|
|
|
mDrawingModel = drawingModel;
|
2010-03-26 13:07:37 -07:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
case NPPVpluginEventModel: {
|
|
|
|
NPError rv;
|
|
|
|
int eventModel = (int16) (intptr_t) aValue;
|
|
|
|
|
|
|
|
if (!CallNPN_SetValue_NPPVpluginEventModel(eventModel, &rv))
|
|
|
|
return NPERR_GENERIC_ERROR;
|
2010-09-22 22:27:59 -07:00
|
|
|
#if defined(__i386__)
|
|
|
|
mEventModel = static_cast<NPEventModel>(eventModel);
|
|
|
|
#endif
|
2010-03-26 13:07:37 -07:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-24 19:03:59 -07:00
|
|
|
default:
|
2009-12-18 14:22:51 -08:00
|
|
|
PR_LOG(gPluginLog, PR_LOG_WARNING,
|
|
|
|
("In PluginInstanceChild::NPN_SetValue: Unhandled NPPVariable %i (%s)",
|
|
|
|
(int) aVar, NPPVariableToString(aVar)));
|
2009-09-24 19:03:59 -07:00
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerNPP_GetValue_NPPVpluginNeedsXEmbed(
|
|
|
|
bool* needs, NPError* rv)
|
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
|
|
|
|
2010-02-03 16:02:48 -08:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
// The documentation on the types for many variables in NP(N|P)_GetValue
|
|
|
|
// is vague. Often boolean values are NPBool (1 byte), but
|
|
|
|
// https://developer.mozilla.org/en/XEmbed_Extension_for_Mozilla_Plugins
|
|
|
|
// treats NPPVpluginNeedsXEmbed as PRBool (int), and
|
2009-12-16 22:32:44 -08:00
|
|
|
// on x86/32-bit, flash stores to this using |movl 0x1,&needsXEmbed|.
|
2010-02-03 16:02:48 -08:00
|
|
|
// thus we can't use NPBool for needsXEmbed, or the three bytes above
|
|
|
|
// it on the stack would get clobbered. so protect with the larger PRBool.
|
|
|
|
PRBool needsXEmbed = 0;
|
|
|
|
if (!mPluginIface->getvalue) {
|
|
|
|
*rv = NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*rv = mPluginIface->getvalue(GetNPP(), NPPVpluginNeedsXEmbed,
|
|
|
|
&needsXEmbed);
|
|
|
|
}
|
2009-09-24 19:03:59 -07:00
|
|
|
*needs = needsXEmbed;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2010-02-03 16:02:48 -08:00
|
|
|
NS_RUNTIMEABORT("shouldn't be called on non-X11 platforms");
|
2009-09-24 19:14:41 -07:00
|
|
|
return false; // not reached
|
2009-09-24 19:03:59 -07:00
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-17 15:15:12 -07:00
|
|
|
PluginInstanceChild::AnswerNPP_GetValue_NPPVpluginScriptableNPObject(
|
2009-11-12 14:16:54 -08:00
|
|
|
PPluginScriptableObjectChild** aValue,
|
|
|
|
NPError* aResult)
|
2009-07-02 09:54:22 -07:00
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2009-09-17 15:15:12 -07:00
|
|
|
|
2010-03-13 15:57:53 -08:00
|
|
|
NPObject* object = nsnull;
|
2010-02-03 16:02:48 -08:00
|
|
|
NPError result = NPERR_GENERIC_ERROR;
|
|
|
|
if (mPluginIface->getvalue) {
|
|
|
|
result = mPluginIface->getvalue(GetNPP(), NPPVpluginScriptableNPObject,
|
|
|
|
&object);
|
|
|
|
}
|
2009-11-12 14:16:54 -08:00
|
|
|
if (result == NPERR_NO_ERROR && object) {
|
|
|
|
PluginScriptableObjectChild* actor = GetActorForNPObject(object);
|
|
|
|
|
|
|
|
// If we get an actor then it has retained. Otherwise we don't need it
|
|
|
|
// any longer.
|
|
|
|
PluginModuleChild::sBrowserFuncs.releaseobject(object);
|
|
|
|
if (actor) {
|
|
|
|
*aValue = actor;
|
|
|
|
*aResult = NPERR_NO_ERROR;
|
|
|
|
return true;
|
|
|
|
}
|
2009-10-07 16:50:48 -07:00
|
|
|
|
2009-11-12 14:16:54 -08:00
|
|
|
NS_ERROR("Failed to get actor!");
|
|
|
|
result = NPERR_GENERIC_ERROR;
|
2009-09-17 15:15:12 -07:00
|
|
|
}
|
2010-03-13 15:57:53 -08:00
|
|
|
else {
|
|
|
|
result = NPERR_GENERIC_ERROR;
|
|
|
|
}
|
2009-09-17 15:15:12 -07:00
|
|
|
|
2009-11-12 14:16:54 -08:00
|
|
|
*aValue = nsnull;
|
|
|
|
*aResult = result;
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-07-02 09:54:22 -07:00
|
|
|
}
|
|
|
|
|
2010-01-19 19:23:35 -08:00
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerNPP_SetValue_NPNVprivateModeBool(const bool& value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
2010-02-03 14:17:28 -08:00
|
|
|
if (!mPluginIface->setvalue) {
|
|
|
|
*result = NPERR_GENERIC_ERROR;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-03-17 10:17:09 -07:00
|
|
|
NPBool v = value;
|
2010-01-19 19:23:35 -08:00
|
|
|
*result = mPluginIface->setvalue(GetNPP(), NPNVprivateModeBool, &v);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-18 18:19:11 -07:00
|
|
|
bool
|
2009-10-27 12:58:33 -07:00
|
|
|
PluginInstanceChild::AnswerNPP_HandleEvent(const NPRemoteEvent& event,
|
2009-09-18 18:19:11 -07:00
|
|
|
int16_t* handled)
|
|
|
|
{
|
2009-12-18 14:22:51 -08:00
|
|
|
PLUGIN_LOG_DEBUG_FUNCTION;
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2009-09-24 19:03:59 -07:00
|
|
|
|
2010-07-01 16:41:36 -07:00
|
|
|
#if defined(MOZ_X11) && defined(DEBUG)
|
2009-10-27 14:07:49 -07:00
|
|
|
if (GraphicsExpose == event.event.type)
|
2010-02-10 15:17:33 -08:00
|
|
|
PLUGIN_LOG_DEBUG((" received drawable 0x%lx\n",
|
|
|
|
event.event.xgraphicsexpose.drawable));
|
2009-09-24 19:03:59 -07:00
|
|
|
#endif
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
#ifdef XP_MACOSX
|
2010-03-17 11:38:28 -07:00
|
|
|
// Mac OS X does not define an NPEvent structure. It defines more specific types.
|
|
|
|
NPCocoaEvent evcopy = event.event;
|
2010-07-29 15:38:32 -07:00
|
|
|
|
|
|
|
// Make sure we reset mCurrentEvent in case of an exception
|
|
|
|
AutoRestore<const NPCocoaEvent*> savePreviousEvent(mCurrentEvent);
|
|
|
|
|
|
|
|
// Track the current event for NPN_PopUpContextMenu.
|
|
|
|
mCurrentEvent = &event.event;
|
2010-03-17 11:38:28 -07:00
|
|
|
#else
|
2009-12-01 13:05:26 -08:00
|
|
|
// Make a copy since we may modify values.
|
2009-10-27 12:58:33 -07:00
|
|
|
NPEvent evcopy = event.event;
|
2010-03-17 11:38:28 -07:00
|
|
|
#endif
|
2009-12-01 13:05:26 -08:00
|
|
|
|
|
|
|
#ifdef OS_WIN
|
2010-05-25 17:41:02 -07:00
|
|
|
// FIXME/bug 567645: temporarily drop the "dummy event" on the floor
|
|
|
|
if (WM_NULL == evcopy.event)
|
|
|
|
return true;
|
|
|
|
|
2009-12-14 16:27:25 -08:00
|
|
|
// Painting for win32. SharedSurfacePaint handles everything.
|
|
|
|
if (mWindow.type == NPWindowTypeDrawable) {
|
|
|
|
if (evcopy.event == WM_PAINT) {
|
|
|
|
*handled = SharedSurfacePaint(evcopy);
|
|
|
|
return true;
|
|
|
|
}
|
2010-08-16 07:10:25 -07:00
|
|
|
else if (DoublePassRenderingEvent() == evcopy.event) {
|
2009-12-14 16:27:25 -08:00
|
|
|
// We'll render to mSharedSurfaceDib first, then render to a cached bitmap
|
|
|
|
// we store locally. The two passes are for alpha extraction, so the second
|
|
|
|
// pass must be to a flat white surface in order for things to work.
|
|
|
|
mAlphaExtract.doublePass = RENDER_BACK_ONE;
|
|
|
|
*handled = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2010-02-09 14:34:38 -08:00
|
|
|
*handled = WinlessHandleEvent(evcopy);
|
|
|
|
return true;
|
2009-12-01 13:05:26 -08:00
|
|
|
#endif
|
|
|
|
|
2010-03-10 07:54:22 -08:00
|
|
|
if (!mPluginIface->event)
|
|
|
|
*handled = false;
|
|
|
|
else
|
|
|
|
*handled = mPluginIface->event(&mData, reinterpret_cast<void*>(&evcopy));
|
2009-10-11 16:54:49 -07:00
|
|
|
|
2010-03-29 12:27:49 -07:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
// Release any reference counted objects created in the child process.
|
|
|
|
if (evcopy.type == NPCocoaEventKeyDown ||
|
|
|
|
evcopy.type == NPCocoaEventKeyUp) {
|
|
|
|
::CFRelease((CFStringRef)evcopy.data.key.characters);
|
|
|
|
::CFRelease((CFStringRef)evcopy.data.key.charactersIgnoringModifiers);
|
|
|
|
}
|
|
|
|
else if (evcopy.type == NPCocoaEventTextInput) {
|
|
|
|
::CFRelease((CFStringRef)evcopy.data.text.text);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-10-11 16:54:49 -07:00
|
|
|
#ifdef MOZ_X11
|
2009-10-27 13:59:40 -07:00
|
|
|
if (GraphicsExpose == event.event.type) {
|
2009-10-11 16:54:49 -07:00
|
|
|
// Make sure the X server completes the drawing before the parent
|
|
|
|
// draws on top and destroys the Drawable.
|
|
|
|
//
|
|
|
|
// XSync() waits for the X server to complete. Really this child
|
|
|
|
// process does not need to wait; the parent is the process that needs
|
|
|
|
// to wait. A possibly-slightly-better alternative would be to send
|
|
|
|
// an X event to the parent that the parent would wait for.
|
|
|
|
XSync(mWsInfo.display, False);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-18 18:19:11 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
#ifdef XP_MACOSX
|
2010-04-20 07:52:19 -07:00
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerNPP_HandleEvent_Shmem(const NPRemoteEvent& event,
|
|
|
|
Shmem& mem,
|
|
|
|
int16_t* handled,
|
|
|
|
Shmem* rtnmem)
|
|
|
|
{
|
|
|
|
PLUGIN_LOG_DEBUG_FUNCTION;
|
|
|
|
AssertPluginThread();
|
|
|
|
|
2010-06-23 07:18:00 -07:00
|
|
|
PaintTracker pt;
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
NPCocoaEvent evcopy = event.event;
|
|
|
|
|
|
|
|
if (evcopy.type == NPCocoaEventDrawRect) {
|
2010-04-01 14:53:56 -07:00
|
|
|
if (!mShColorSpace) {
|
|
|
|
mShColorSpace = CreateSystemColorSpace();
|
|
|
|
if (!mShColorSpace) {
|
|
|
|
PLUGIN_LOG_DEBUG(("Could not allocate ColorSpace."));
|
|
|
|
*handled = false;
|
|
|
|
*rtnmem = mem;
|
|
|
|
return true;
|
|
|
|
}
|
2010-03-26 13:07:37 -07:00
|
|
|
}
|
2010-04-01 14:53:56 -07:00
|
|
|
if (!mShContext) {
|
|
|
|
void* cgContextByte = mem.get<char>();
|
|
|
|
mShContext = ::CGBitmapContextCreate(cgContextByte,
|
|
|
|
mWindow.width, mWindow.height, 8,
|
|
|
|
mWindow.width * 4, mShColorSpace,
|
|
|
|
kCGImageAlphaPremultipliedFirst |
|
|
|
|
kCGBitmapByteOrder32Host);
|
|
|
|
|
|
|
|
if (!mShContext) {
|
|
|
|
PLUGIN_LOG_DEBUG(("Could not allocate CGBitmapContext."));
|
|
|
|
*handled = false;
|
|
|
|
*rtnmem = mem;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2010-04-06 12:02:54 -07:00
|
|
|
CGRect clearRect = ::CGRectMake(0, 0, mWindow.width, mWindow.height);
|
|
|
|
::CGContextClearRect(mShContext, clearRect);
|
2010-04-01 14:53:56 -07:00
|
|
|
evcopy.data.draw.context = mShContext;
|
2010-03-26 13:07:37 -07:00
|
|
|
} else {
|
|
|
|
PLUGIN_LOG_DEBUG(("Invalid event type for AnswerNNP_HandleEvent_Shmem."));
|
|
|
|
*handled = false;
|
|
|
|
*rtnmem = mem;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mPluginIface->event) {
|
|
|
|
*handled = false;
|
|
|
|
} else {
|
2010-05-20 12:22:57 -07:00
|
|
|
::CGContextSaveGState(evcopy.data.draw.context);
|
2010-03-26 13:07:37 -07:00
|
|
|
*handled = mPluginIface->event(&mData, reinterpret_cast<void*>(&evcopy));
|
2010-05-20 12:22:57 -07:00
|
|
|
::CGContextRestoreGState(evcopy.data.draw.context);
|
2010-03-26 13:07:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
*rtnmem = mem;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerNPP_HandleEvent_Shmem(const NPRemoteEvent& event,
|
|
|
|
Shmem& mem,
|
|
|
|
int16_t* handled,
|
|
|
|
Shmem* rtnmem)
|
|
|
|
{
|
|
|
|
NS_RUNTIMEABORT("not reached.");
|
|
|
|
*rtnmem = mem;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-04-20 07:52:19 -07:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerNPP_HandleEvent_IOSurface(const NPRemoteEvent& event,
|
|
|
|
const uint32_t &surfaceid,
|
|
|
|
int16_t* handled)
|
|
|
|
{
|
|
|
|
PLUGIN_LOG_DEBUG_FUNCTION;
|
|
|
|
AssertPluginThread();
|
|
|
|
|
2010-06-23 07:18:00 -07:00
|
|
|
PaintTracker pt;
|
|
|
|
|
2010-04-20 07:52:19 -07:00
|
|
|
NPCocoaEvent evcopy = event.event;
|
|
|
|
nsIOSurface* surf = nsIOSurface::LookupSurface(surfaceid);
|
|
|
|
if (!surf) {
|
2010-06-17 13:28:38 -07:00
|
|
|
NS_ERROR("Invalid IOSurface.");
|
2010-04-20 07:52:19 -07:00
|
|
|
*handled = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (evcopy.type == NPCocoaEventDrawRect) {
|
|
|
|
mCARenderer.AttachIOSurface(surf);
|
|
|
|
if (!mCARenderer.isInit()) {
|
|
|
|
void *caLayer = nsnull;
|
|
|
|
NPError result = mPluginIface->getvalue(GetNPP(),
|
|
|
|
NPPVpluginCoreAnimationLayer,
|
|
|
|
&caLayer);
|
|
|
|
if (result != NPERR_NO_ERROR || !caLayer) {
|
|
|
|
PLUGIN_LOG_DEBUG(("Plugin requested CoreAnimation but did not "
|
|
|
|
"provide CALayer."));
|
|
|
|
*handled = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
mCARenderer.SetupRenderer(caLayer, mWindow.width, mWindow.height);
|
|
|
|
// Flash needs to have the window set again after this step
|
|
|
|
if (mPluginIface->setwindow)
|
|
|
|
(void) mPluginIface->setwindow(&mData, &mWindow);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
PLUGIN_LOG_DEBUG(("Invalid event type for "
|
|
|
|
"AnswerNNP_HandleEvent_IOSurface."));
|
|
|
|
*handled = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
mCARenderer.Render(mWindow.width, mWindow.height, nsnull);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerNPP_HandleEvent_IOSurface(const NPRemoteEvent& event,
|
|
|
|
const uint32_t &surfaceid,
|
|
|
|
int16_t* handled)
|
|
|
|
{
|
|
|
|
NS_RUNTIMEABORT("NPP_HandleEvent_IOSurface is a OSX-only message");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-03-22 15:35:15 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceChild::RecvWindowPosChanged(const NPRemoteEvent& event)
|
|
|
|
{
|
2010-12-05 13:57:33 -08:00
|
|
|
NS_ASSERTION(!mLayersRendering && !mPendingPluginCall,
|
|
|
|
"Shouldn't be receiving WindowPosChanged with layer rendering");
|
|
|
|
|
2010-03-22 15:35:15 -07:00
|
|
|
#ifdef OS_WIN
|
|
|
|
int16_t dontcare;
|
|
|
|
return AnswerNPP_HandleEvent(event, &dontcare);
|
|
|
|
#else
|
|
|
|
NS_RUNTIMEABORT("WindowPosChanged is a windows-only message");
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-30 14:36:14 -07:00
|
|
|
#if defined(MOZ_X11) && defined(XP_UNIX) && !defined(XP_MACOSX)
|
|
|
|
static bool
|
|
|
|
XVisualIDToInfo(Display* aDisplay, VisualID aVisualID,
|
|
|
|
Visual** aVisual, unsigned int* aDepth)
|
|
|
|
{
|
|
|
|
if (aVisualID == None) {
|
|
|
|
*aVisual = NULL;
|
|
|
|
*aDepth = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Screen* screen = DefaultScreenOfDisplay(aDisplay);
|
|
|
|
|
|
|
|
for (int d = 0; d < screen->ndepths; d++) {
|
|
|
|
Depth *d_info = &screen->depths[d];
|
|
|
|
for (int v = 0; v < d_info->nvisuals; v++) {
|
|
|
|
Visual* visual = &d_info->visuals[v];
|
|
|
|
if (visual->visualid == aVisualID) {
|
|
|
|
*aVisual = visual;
|
|
|
|
*aDepth = d_info->depth;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ERROR("VisualID not on Screen.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2010-03-10 07:54:22 -08:00
|
|
|
PluginInstanceChild::AnswerNPP_SetWindow(const NPRemoteWindow& aWindow)
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
2009-12-18 14:22:51 -08:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (aWindow=<window: 0x%lx, x: %d, y: %d, width: %d, height: %d>)",
|
|
|
|
FULLFUNCTION,
|
|
|
|
aWindow.window,
|
|
|
|
aWindow.x, aWindow.y,
|
|
|
|
aWindow.width, aWindow.height));
|
2010-12-05 13:57:33 -08:00
|
|
|
NS_ASSERTION(!mLayersRendering && !mPendingPluginCall,
|
|
|
|
"Shouldn't be receiving NPP_SetWindow with layer rendering");
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-09-30 14:36:14 -07:00
|
|
|
#if defined(MOZ_X11) && defined(XP_UNIX) && !defined(XP_MACOSX)
|
|
|
|
// The minimum info is sent over IPC to allow this
|
|
|
|
// code to determine the rest.
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-09-30 14:36:14 -07:00
|
|
|
mWindow.window = reinterpret_cast<void*>(aWindow.window);
|
|
|
|
mWindow.x = aWindow.x;
|
|
|
|
mWindow.y = aWindow.y;
|
|
|
|
mWindow.width = aWindow.width;
|
|
|
|
mWindow.height = aWindow.height;
|
|
|
|
mWindow.clipRect = aWindow.clipRect;
|
|
|
|
mWindow.type = aWindow.type;
|
2009-07-02 09:54:22 -07:00
|
|
|
|
2009-09-30 14:36:14 -07:00
|
|
|
mWsInfo.colormap = aWindow.colormap;
|
|
|
|
if (!XVisualIDToInfo(mWsInfo.display, aWindow.visualID,
|
|
|
|
&mWsInfo.visual, &mWsInfo.depth))
|
|
|
|
return false;
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2010-01-28 22:50:44 -08:00
|
|
|
#ifdef MOZ_WIDGET_GTK2
|
2010-07-01 20:57:02 -07:00
|
|
|
if (gtk_check_version(2,18,7) != NULL) { // older
|
|
|
|
if (aWindow.type == NPWindowTypeWindow) {
|
|
|
|
GdkWindow* socket_window = gdk_window_lookup(aWindow.window);
|
|
|
|
if (socket_window) {
|
|
|
|
// A GdkWindow for the socket already exists. Need to
|
|
|
|
// workaround https://bugzilla.gnome.org/show_bug.cgi?id=607061
|
|
|
|
// See wrap_gtk_plug_embedded in PluginModuleChild.cpp.
|
|
|
|
g_object_set_data(G_OBJECT(socket_window),
|
|
|
|
"moz-existed-before-set-window",
|
|
|
|
GUINT_TO_POINTER(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aWindow.visualID != None
|
|
|
|
&& gtk_check_version(2, 12, 10) != NULL) { // older
|
|
|
|
// Workaround for a bug in Gtk+ (prior to 2.12.10) where deleting
|
|
|
|
// a foreign GdkColormap will also free the XColormap.
|
|
|
|
// http://git.gnome.org/browse/gtk+/log/gdk/x11/gdkcolor-x11.c?id=GTK_2_12_10
|
|
|
|
GdkVisual *gdkvisual = gdkx_visual_get(aWindow.visualID);
|
|
|
|
GdkColormap *gdkcolor =
|
|
|
|
gdk_x11_colormap_foreign_new(gdkvisual, aWindow.colormap);
|
|
|
|
|
|
|
|
if (g_object_get_data(G_OBJECT(gdkcolor), "moz-have-extra-ref")) {
|
|
|
|
// We already have a ref to keep the object alive.
|
|
|
|
g_object_unref(gdkcolor);
|
|
|
|
} else {
|
|
|
|
// leak and mark as already leaked
|
|
|
|
g_object_set_data(G_OBJECT(gdkcolor),
|
|
|
|
"moz-have-extra-ref", GUINT_TO_POINTER(1));
|
|
|
|
}
|
2010-01-19 13:45:56 -08:00
|
|
|
}
|
|
|
|
}
|
2010-04-29 03:43:15 -07:00
|
|
|
#endif
|
2010-01-19 13:45:56 -08:00
|
|
|
|
2010-03-10 07:54:22 -08:00
|
|
|
if (mPluginIface->setwindow)
|
|
|
|
(void) mPluginIface->setwindow(&mData, &mWindow);
|
2009-07-01 14:19:32 -07:00
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
#elif defined(OS_WIN)
|
2009-12-01 13:05:26 -08:00
|
|
|
switch (aWindow.type) {
|
|
|
|
case NPWindowTypeWindow:
|
|
|
|
{
|
|
|
|
if (!CreatePluginWindow())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ReparentPluginWindow((HWND)aWindow.window);
|
|
|
|
SizePluginWindow(aWindow.width, aWindow.height);
|
|
|
|
|
|
|
|
mWindow.window = (void*)mPluginWindowHWND;
|
|
|
|
mWindow.x = aWindow.x;
|
|
|
|
mWindow.y = aWindow.y;
|
|
|
|
mWindow.width = aWindow.width;
|
|
|
|
mWindow.height = aWindow.height;
|
|
|
|
mWindow.type = aWindow.type;
|
|
|
|
|
2010-03-10 07:54:22 -08:00
|
|
|
if (mPluginIface->setwindow) {
|
2010-10-21 14:52:48 -07:00
|
|
|
SetProp(mPluginWindowHWND, kPluginIgnoreSubclassProperty, (HANDLE)1);
|
2010-03-10 07:54:22 -08:00
|
|
|
(void) mPluginIface->setwindow(&mData, &mWindow);
|
2009-12-01 13:05:26 -08:00
|
|
|
WNDPROC wndProc = reinterpret_cast<WNDPROC>(
|
|
|
|
GetWindowLongPtr(mPluginWindowHWND, GWLP_WNDPROC));
|
|
|
|
if (wndProc != PluginWindowProc) {
|
|
|
|
mPluginWndProc = reinterpret_cast<WNDPROC>(
|
|
|
|
SetWindowLongPtr(mPluginWindowHWND, GWLP_WNDPROC,
|
2010-07-11 21:49:12 -07:00
|
|
|
reinterpret_cast<LONG_PTR>(PluginWindowProc)));
|
2009-12-01 13:05:26 -08:00
|
|
|
}
|
2010-10-21 14:52:48 -07:00
|
|
|
RemoveProp(mPluginWindowHWND, kPluginIgnoreSubclassProperty);
|
|
|
|
HookSetWindowLongPtr();
|
2009-12-01 13:05:26 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NPWindowTypeDrawable:
|
2010-04-26 09:29:11 -07:00
|
|
|
mWindow.type = aWindow.type;
|
2010-12-06 16:50:47 -08:00
|
|
|
if (GetQuirks() & PluginModuleChild::QUIRK_WINLESS_TRACKPOPUP_HOOK)
|
2010-03-22 20:06:35 -07:00
|
|
|
CreateWinlessPopupSurrogate();
|
2010-12-06 16:50:47 -08:00
|
|
|
if (GetQuirks() & PluginModuleChild::QUIRK_FLASH_THROTTLE_WMUSER_EVENTS)
|
2010-04-26 09:29:11 -07:00
|
|
|
SetupFlashMsgThrottle();
|
2010-03-10 07:54:22 -08:00
|
|
|
return SharedSurfaceSetWindow(aWindow);
|
2009-12-01 13:05:26 -08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
NS_NOTREACHED("Bad plugin window type.");
|
|
|
|
return false;
|
|
|
|
break;
|
2009-07-01 14:19:32 -07:00
|
|
|
}
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
#elif defined(XP_MACOSX)
|
2010-03-17 11:38:28 -07:00
|
|
|
|
|
|
|
mWindow.x = aWindow.x;
|
|
|
|
mWindow.y = aWindow.y;
|
|
|
|
mWindow.width = aWindow.width;
|
|
|
|
mWindow.height = aWindow.height;
|
|
|
|
mWindow.clipRect = aWindow.clipRect;
|
|
|
|
mWindow.type = aWindow.type;
|
2009-11-10 18:25:10 -08:00
|
|
|
|
2010-04-01 14:53:56 -07:00
|
|
|
if (mShContext) {
|
|
|
|
// Release the shared context so that it is reallocated
|
|
|
|
// with the new size.
|
|
|
|
::CGContextRelease(mShContext);
|
2010-04-20 07:52:19 -07:00
|
|
|
mShContext = nsnull;
|
2010-04-01 14:53:56 -07:00
|
|
|
}
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
if (mPluginIface->setwindow)
|
|
|
|
(void) mPluginIface->setwindow(&mData, &mWindow);
|
|
|
|
|
2010-06-25 13:24:50 -07:00
|
|
|
#elif defined(ANDROID)
|
|
|
|
# warning Need Android impl
|
2009-06-30 11:51:05 -07:00
|
|
|
#else
|
|
|
|
# error Implement me for your OS
|
|
|
|
#endif
|
2009-07-02 09:54:22 -07:00
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-06-30 11:51:05 -07:00
|
|
|
}
|
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
bool
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::Initialize()
|
2009-07-01 14:19:32 -07:00
|
|
|
{
|
2009-10-07 16:50:48 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
|
|
|
|
static const TCHAR kWindowClassName[] = TEXT("GeckoPluginWindow");
|
2009-09-08 23:31:35 -07:00
|
|
|
static const TCHAR kPluginInstanceChildProperty[] = TEXT("PluginInstanceChildProperty");
|
2010-10-21 14:52:48 -07:00
|
|
|
static const TCHAR kFlashThrottleProperty[] = TEXT("MozillaFlashThrottleProperty");
|
2009-07-01 14:19:32 -07:00
|
|
|
|
|
|
|
// static
|
|
|
|
bool
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::RegisterWindowClass()
|
2009-07-01 14:19:32 -07:00
|
|
|
{
|
|
|
|
static bool alreadyRegistered = false;
|
|
|
|
if (alreadyRegistered)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
alreadyRegistered = true;
|
|
|
|
|
|
|
|
WNDCLASSEX wcex;
|
|
|
|
wcex.cbSize = sizeof(WNDCLASSEX);
|
|
|
|
wcex.style = CS_DBLCLKS;
|
|
|
|
wcex.lpfnWndProc = DummyWindowProc;
|
|
|
|
wcex.cbClsExtra = 0;
|
|
|
|
wcex.cbWndExtra = 0;
|
|
|
|
wcex.hInstance = GetModuleHandle(NULL);
|
|
|
|
wcex.hIcon = 0;
|
|
|
|
wcex.hCursor = 0;
|
2009-07-02 13:48:33 -07:00
|
|
|
wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1);
|
2009-07-01 14:19:32 -07:00
|
|
|
wcex.lpszMenuName = 0;
|
|
|
|
wcex.lpszClassName = kWindowClassName;
|
|
|
|
wcex.hIconSm = 0;
|
|
|
|
|
|
|
|
return RegisterClassEx(&wcex) ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::CreatePluginWindow()
|
2009-07-01 14:19:32 -07:00
|
|
|
{
|
2009-12-01 13:05:26 -08:00
|
|
|
// already initialized
|
|
|
|
if (mPluginWindowHWND)
|
|
|
|
return true;
|
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
if (!RegisterWindowClass())
|
|
|
|
return false;
|
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
mPluginWindowHWND =
|
|
|
|
CreateWindowEx(WS_EX_LEFT | WS_EX_LTRREADING |
|
|
|
|
WS_EX_NOPARENTNOTIFY | // XXXbent Get rid of this!
|
|
|
|
WS_EX_RIGHTSCROLLBAR,
|
|
|
|
kWindowClassName, 0,
|
|
|
|
WS_POPUP | WS_CLIPCHILDREN | WS_CLIPSIBLINGS, 0, 0,
|
|
|
|
0, 0, NULL, 0, GetModuleHandle(NULL), 0);
|
|
|
|
if (!mPluginWindowHWND)
|
|
|
|
return false;
|
|
|
|
if (!SetProp(mPluginWindowHWND, kPluginInstanceChildProperty, this))
|
|
|
|
return false;
|
2009-07-01 14:19:32 -07:00
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
// Apparently some plugins require an ASCII WndProc.
|
|
|
|
SetWindowLongPtrA(mPluginWindowHWND, GWLP_WNDPROC,
|
2010-07-11 21:49:12 -07:00
|
|
|
reinterpret_cast<LONG_PTR>(DefWindowProcA));
|
2009-07-01 14:19:32 -07:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::DestroyPluginWindow()
|
2009-07-01 14:19:32 -07:00
|
|
|
{
|
|
|
|
if (mPluginWindowHWND) {
|
|
|
|
// Unsubclass the window.
|
|
|
|
WNDPROC wndProc = reinterpret_cast<WNDPROC>(
|
|
|
|
GetWindowLongPtr(mPluginWindowHWND, GWLP_WNDPROC));
|
2010-10-21 14:52:48 -07:00
|
|
|
// Removed prior to SetWindowLongPtr, see HookSetWindowLongPtr.
|
|
|
|
RemoveProp(mPluginWindowHWND, kPluginInstanceChildProperty);
|
2009-07-01 14:19:32 -07:00
|
|
|
if (wndProc == PluginWindowProc) {
|
|
|
|
NS_ASSERTION(mPluginWndProc, "Should have old proc here!");
|
|
|
|
SetWindowLongPtr(mPluginWindowHWND, GWLP_WNDPROC,
|
2010-07-11 21:49:12 -07:00
|
|
|
reinterpret_cast<LONG_PTR>(mPluginWndProc));
|
2009-07-01 14:19:32 -07:00
|
|
|
mPluginWndProc = 0;
|
|
|
|
}
|
|
|
|
DestroyWindow(mPluginWindowHWND);
|
|
|
|
mPluginWindowHWND = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::ReparentPluginWindow(HWND hWndParent)
|
2009-07-01 14:19:32 -07:00
|
|
|
{
|
|
|
|
if (hWndParent != mPluginParentHWND && IsWindow(hWndParent)) {
|
2009-11-13 12:20:03 -08:00
|
|
|
// Fix the child window's style to be a child window.
|
2010-07-11 21:49:12 -07:00
|
|
|
LONG_PTR style = GetWindowLongPtr(mPluginWindowHWND, GWL_STYLE);
|
2009-07-01 14:19:32 -07:00
|
|
|
style |= WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
|
2009-11-13 12:20:03 -08:00
|
|
|
style &= ~WS_POPUP;
|
2009-07-01 14:19:32 -07:00
|
|
|
SetWindowLongPtr(mPluginWindowHWND, GWL_STYLE, style);
|
2009-11-13 12:20:03 -08:00
|
|
|
|
|
|
|
// Do the reparenting.
|
2009-07-01 14:19:32 -07:00
|
|
|
SetParent(mPluginWindowHWND, hWndParent);
|
2009-11-13 12:20:03 -08:00
|
|
|
|
|
|
|
// Make sure we're visible.
|
2009-07-01 14:19:32 -07:00
|
|
|
ShowWindow(mPluginWindowHWND, SW_SHOWNA);
|
|
|
|
}
|
|
|
|
mPluginParentHWND = hWndParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::SizePluginWindow(int width,
|
|
|
|
int height)
|
2009-07-01 14:19:32 -07:00
|
|
|
{
|
|
|
|
if (mPluginWindowHWND) {
|
2010-02-18 12:20:25 -08:00
|
|
|
mPluginSize.x = width;
|
|
|
|
mPluginSize.y = height;
|
2009-07-01 14:19:32 -07:00
|
|
|
SetWindowPos(mPluginWindowHWND, NULL, 0, 0, width, height,
|
|
|
|
SWP_NOZORDER | SWP_NOREPOSITION);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// See chromium's webplugin_delegate_impl.cc for explanation of this function.
|
|
|
|
// static
|
|
|
|
LRESULT CALLBACK
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::DummyWindowProc(HWND hWnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wParam,
|
|
|
|
LPARAM lParam)
|
2009-07-01 14:19:32 -07:00
|
|
|
{
|
|
|
|
return CallWindowProc(DefWindowProc, hWnd, message, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
LRESULT CALLBACK
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild::PluginWindowProc(HWND hWnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wParam,
|
|
|
|
LPARAM lParam)
|
2009-07-01 14:19:32 -07:00
|
|
|
{
|
2009-11-06 14:33:12 -08:00
|
|
|
NS_ASSERTION(!mozilla::ipc::SyncChannel::IsPumpingMessages(),
|
|
|
|
"Failed to prevent a nonqueued message from running!");
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceChild* self = reinterpret_cast<PluginInstanceChild*>(
|
|
|
|
GetProp(hWnd, kPluginInstanceChildProperty));
|
2009-07-01 14:19:32 -07:00
|
|
|
if (!self) {
|
|
|
|
NS_NOTREACHED("Badness!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(self->mPluginWindowHWND == hWnd, "Wrong window!");
|
|
|
|
|
2010-02-18 12:20:25 -08:00
|
|
|
// Adobe's shockwave positions the plugin window relative to the browser
|
|
|
|
// frame when it initializes. With oopp disabled, this wouldn't have an
|
|
|
|
// effect. With oopp, GeckoPluginWindow is a child of the parent plugin
|
|
|
|
// window, so the move offsets the child within the parent. Generally
|
|
|
|
// we don't want plugins moving or sizing our window, so we prevent these
|
|
|
|
// changes here.
|
|
|
|
if (message == WM_WINDOWPOSCHANGING) {
|
|
|
|
WINDOWPOS* pos = reinterpret_cast<WINDOWPOS*>(lParam);
|
|
|
|
if (pos && (!(pos->flags & SWP_NOMOVE) || !(pos->flags & SWP_NOSIZE))) {
|
|
|
|
pos->x = pos->y = 0;
|
|
|
|
pos->cx = self->mPluginSize.x;
|
|
|
|
pos->cy = self->mPluginSize.y;
|
|
|
|
LRESULT res = CallWindowProc(self->mPluginWndProc, hWnd, message, wParam,
|
|
|
|
lParam);
|
|
|
|
pos->x = pos->y = 0;
|
|
|
|
pos->cx = self->mPluginSize.x;
|
|
|
|
pos->cy = self->mPluginSize.y;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-26 13:40:15 -08:00
|
|
|
// The plugin received keyboard focus, let the parent know so the dom is up to date.
|
|
|
|
if (message == WM_MOUSEACTIVATE)
|
2010-09-21 09:03:16 -07:00
|
|
|
self->CallPluginFocusChange(true);
|
2010-01-26 13:40:15 -08:00
|
|
|
|
2010-05-18 11:17:10 -07:00
|
|
|
// Prevent lockups due to plugins making rpc calls when the parent
|
|
|
|
// is making a synchronous SendMessage call to the child window. Add
|
|
|
|
// more messages as needed.
|
|
|
|
if ((InSendMessageEx(NULL)&(ISMEX_REPLIED|ISMEX_SEND)) == ISMEX_SEND) {
|
|
|
|
switch(message) {
|
|
|
|
case WM_KILLFOCUS:
|
|
|
|
case WM_MOUSEHWHEEL:
|
|
|
|
case WM_MOUSEWHEEL:
|
|
|
|
case WM_HSCROLL:
|
|
|
|
case WM_VSCROLL:
|
|
|
|
ReplyMessage(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-23 10:08:56 -07:00
|
|
|
if (message == WM_KILLFOCUS)
|
2010-09-21 09:03:16 -07:00
|
|
|
self->CallPluginFocusChange(false);
|
2010-06-23 10:08:56 -07:00
|
|
|
|
2010-04-26 09:29:11 -07:00
|
|
|
if (message == WM_USER+1 &&
|
2010-12-06 16:50:47 -08:00
|
|
|
(self->GetQuirks() & PluginModuleChild::QUIRK_FLASH_THROTTLE_WMUSER_EVENTS)) {
|
2010-04-26 09:29:11 -07:00
|
|
|
self->FlashThrottleMessage(hWnd, message, wParam, lParam, true);
|
|
|
|
return 0;
|
|
|
|
}
|
2010-10-07 00:03:18 -07:00
|
|
|
|
|
|
|
// Make sure capture is released by the child on mouse events. Fixes a
|
|
|
|
// problem with flash full screen mode mouse input. Appears to be
|
|
|
|
// caused by a bug in flash, since we are not setting the capture
|
|
|
|
// on the window. (In non-oopp land, we would set and release via
|
|
|
|
// widget for other reasons.)
|
|
|
|
switch(message) {
|
2010-10-21 14:52:48 -07:00
|
|
|
case WM_LBUTTONDOWN:
|
|
|
|
case WM_MBUTTONDOWN:
|
|
|
|
case WM_RBUTTONDOWN:
|
2010-10-07 00:03:18 -07:00
|
|
|
case WM_LBUTTONUP:
|
|
|
|
case WM_MBUTTONUP:
|
|
|
|
case WM_RBUTTONUP:
|
|
|
|
ReleaseCapture();
|
|
|
|
break;
|
|
|
|
}
|
2010-04-26 09:29:11 -07:00
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
LRESULT res = CallWindowProc(self->mPluginWndProc, hWnd, message, wParam,
|
|
|
|
lParam);
|
|
|
|
|
|
|
|
if (message == WM_CLOSE)
|
|
|
|
self->DestroyPluginWindow();
|
|
|
|
|
|
|
|
if (message == WM_NCDESTROY)
|
2009-09-08 23:31:35 -07:00
|
|
|
RemoveProp(hWnd, kPluginInstanceChildProperty);
|
2009-07-01 14:19:32 -07:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2010-10-21 14:52:48 -07:00
|
|
|
/* set window long ptr hook for flash */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Flash will reset the subclass of our widget at various times.
|
|
|
|
* (Notably when entering and exiting full screen mode.) This
|
|
|
|
* occurs independent of the main plugin window event procedure.
|
|
|
|
* We trap these subclass calls to prevent our subclass hook from
|
|
|
|
* getting dropped.
|
|
|
|
* Note, ascii versions can be nixed once flash versions < 10.1
|
|
|
|
* are considered obsolete.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
typedef LONG_PTR
|
|
|
|
(WINAPI *User32SetWindowLongPtrA)(HWND hWnd,
|
|
|
|
int nIndex,
|
|
|
|
LONG_PTR dwNewLong);
|
|
|
|
typedef LONG_PTR
|
|
|
|
(WINAPI *User32SetWindowLongPtrW)(HWND hWnd,
|
|
|
|
int nIndex,
|
|
|
|
LONG_PTR dwNewLong);
|
|
|
|
static User32SetWindowLongPtrA sUser32SetWindowLongAHookStub = NULL;
|
|
|
|
static User32SetWindowLongPtrW sUser32SetWindowLongWHookStub = NULL;
|
|
|
|
#else
|
|
|
|
typedef LONG
|
|
|
|
(WINAPI *User32SetWindowLongA)(HWND hWnd,
|
|
|
|
int nIndex,
|
|
|
|
LONG dwNewLong);
|
|
|
|
typedef LONG
|
|
|
|
(WINAPI *User32SetWindowLongW)(HWND hWnd,
|
|
|
|
int nIndex,
|
|
|
|
LONG dwNewLong);
|
|
|
|
static User32SetWindowLongA sUser32SetWindowLongAHookStub = NULL;
|
|
|
|
static User32SetWindowLongW sUser32SetWindowLongWHookStub = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern LRESULT CALLBACK
|
|
|
|
NeuteredWindowProc(HWND hwnd,
|
|
|
|
UINT uMsg,
|
|
|
|
WPARAM wParam,
|
|
|
|
LPARAM lParam);
|
|
|
|
|
|
|
|
const wchar_t kOldWndProcProp[] = L"MozillaIPCOldWndProc";
|
|
|
|
|
|
|
|
// static
|
|
|
|
PRBool
|
|
|
|
PluginInstanceChild::SetWindowLongHookCheck(HWND hWnd,
|
|
|
|
int nIndex,
|
|
|
|
LONG_PTR newLong)
|
|
|
|
{
|
|
|
|
// Let this go through if it's not a subclass
|
|
|
|
if (nIndex != GWLP_WNDPROC ||
|
|
|
|
// if it's not a subclassed plugin window
|
|
|
|
!GetProp(hWnd, kPluginInstanceChildProperty) ||
|
|
|
|
// if we're not disabled
|
|
|
|
GetProp(hWnd, kPluginIgnoreSubclassProperty) ||
|
|
|
|
// if the subclass is set to a known procedure
|
|
|
|
newLong == reinterpret_cast<LONG_PTR>(PluginWindowProc) ||
|
|
|
|
newLong == reinterpret_cast<LONG_PTR>(NeuteredWindowProc) ||
|
|
|
|
newLong == reinterpret_cast<LONG_PTR>(DefWindowProcA) ||
|
|
|
|
newLong == reinterpret_cast<LONG_PTR>(DefWindowProcW) ||
|
|
|
|
// if the subclass is a WindowsMessageLoop subclass restore
|
|
|
|
GetProp(hWnd, kOldWndProcProp))
|
|
|
|
return PR_TRUE;
|
|
|
|
// prevent the subclass
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
LONG_PTR WINAPI
|
|
|
|
PluginInstanceChild::SetWindowLongPtrAHook(HWND hWnd,
|
|
|
|
int nIndex,
|
|
|
|
LONG_PTR newLong)
|
|
|
|
#else
|
|
|
|
LONG WINAPI
|
|
|
|
PluginInstanceChild::SetWindowLongAHook(HWND hWnd,
|
|
|
|
int nIndex,
|
|
|
|
LONG newLong)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (SetWindowLongHookCheck(hWnd, nIndex, newLong))
|
|
|
|
return sUser32SetWindowLongAHookStub(hWnd, nIndex, newLong);
|
|
|
|
|
|
|
|
// Set flash's new subclass to get the result.
|
|
|
|
LONG_PTR proc = sUser32SetWindowLongAHookStub(hWnd, nIndex, newLong);
|
|
|
|
|
|
|
|
// We already checked this in SetWindowLongHookCheck
|
|
|
|
PluginInstanceChild* self = reinterpret_cast<PluginInstanceChild*>(
|
|
|
|
GetProp(hWnd, kPluginInstanceChildProperty));
|
|
|
|
|
|
|
|
// Hook our subclass back up, just like we do on setwindow.
|
|
|
|
self->mPluginWndProc =
|
|
|
|
reinterpret_cast<WNDPROC>(sUser32SetWindowLongAHookStub(hWnd, nIndex,
|
|
|
|
reinterpret_cast<LONG_PTR>(PluginWindowProc)));
|
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
LONG_PTR WINAPI
|
|
|
|
PluginInstanceChild::SetWindowLongPtrWHook(HWND hWnd,
|
|
|
|
int nIndex,
|
|
|
|
LONG_PTR newLong)
|
|
|
|
#else
|
|
|
|
LONG WINAPI
|
|
|
|
PluginInstanceChild::SetWindowLongWHook(HWND hWnd,
|
|
|
|
int nIndex,
|
|
|
|
LONG newLong)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (SetWindowLongHookCheck(hWnd, nIndex, newLong))
|
|
|
|
return sUser32SetWindowLongWHookStub(hWnd, nIndex, newLong);
|
|
|
|
|
|
|
|
// Set flash's new subclass to get the result.
|
|
|
|
LONG_PTR proc = sUser32SetWindowLongWHookStub(hWnd, nIndex, newLong);
|
|
|
|
|
|
|
|
// We already checked this in SetWindowLongHookCheck
|
|
|
|
PluginInstanceChild* self = reinterpret_cast<PluginInstanceChild*>(
|
|
|
|
GetProp(hWnd, kPluginInstanceChildProperty));
|
|
|
|
|
|
|
|
// Hook our subclass back up, just like we do on setwindow.
|
|
|
|
self->mPluginWndProc =
|
|
|
|
reinterpret_cast<WNDPROC>(sUser32SetWindowLongWHookStub(hWnd, nIndex,
|
|
|
|
reinterpret_cast<LONG_PTR>(PluginWindowProc)));
|
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::HookSetWindowLongPtr()
|
|
|
|
{
|
|
|
|
#ifdef _WIN64
|
|
|
|
// XXX WindowsDllInterceptor doesn't support hooks
|
|
|
|
// in 64-bit builds, disabling this code for now.
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2010-12-06 16:50:47 -08:00
|
|
|
if (!(GetQuirks() & PluginModuleChild::QUIRK_FLASH_HOOK_SETLONGPTR))
|
2010-10-21 14:52:48 -07:00
|
|
|
return;
|
|
|
|
|
|
|
|
sUser32Intercept.Init("user32.dll");
|
|
|
|
#ifdef _WIN64
|
|
|
|
sUser32Intercept.AddHook("SetWindowLongPtrA", SetWindowLongPtrAHook,
|
|
|
|
(void**) &sUser32SetWindowLongAHookStub);
|
|
|
|
sUser32Intercept.AddHook("SetWindowLongPtrW", SetWindowLongPtrWHook,
|
|
|
|
(void**) &sUser32SetWindowLongWHookStub);
|
|
|
|
#else
|
|
|
|
sUser32Intercept.AddHook("SetWindowLongA", SetWindowLongAHook,
|
|
|
|
(void**) &sUser32SetWindowLongAHookStub);
|
|
|
|
sUser32Intercept.AddHook("SetWindowLongW", SetWindowLongWHook,
|
|
|
|
(void**) &sUser32SetWindowLongWHookStub);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-03-22 20:06:35 -07:00
|
|
|
/* windowless track popup menu helpers */
|
|
|
|
|
|
|
|
BOOL
|
|
|
|
WINAPI
|
|
|
|
PluginInstanceChild::TrackPopupHookProc(HMENU hMenu,
|
|
|
|
UINT uFlags,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int nReserved,
|
|
|
|
HWND hWnd,
|
|
|
|
CONST RECT *prcRect)
|
|
|
|
{
|
|
|
|
if (!sUser32TrackPopupMenuStub) {
|
|
|
|
NS_ERROR("TrackPopupMenu stub isn't set! Badness!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only change the parent when we know this is a context on the plugin
|
|
|
|
// surface within the browser. Prevents resetting the parent on child ui
|
|
|
|
// displayed by plugins that have working parent-child relationships.
|
|
|
|
PRUnichar szClass[21];
|
|
|
|
bool haveClass = GetClassNameW(hWnd, szClass, NS_ARRAY_LENGTH(szClass));
|
|
|
|
if (!haveClass ||
|
|
|
|
(wcscmp(szClass, L"MozillaWindowClass") &&
|
|
|
|
wcscmp(szClass, L"SWFlash_Placeholder"))) {
|
|
|
|
// Unrecognized parent
|
|
|
|
return sUser32TrackPopupMenuStub(hMenu, uFlags, x, y, nReserved,
|
|
|
|
hWnd, prcRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called on an unexpected event, warn.
|
|
|
|
if (!sWinlessPopupSurrogateHWND) {
|
|
|
|
NS_WARNING(
|
|
|
|
"Untraced TrackPopupHookProc call! Menu might not work right!");
|
|
|
|
return sUser32TrackPopupMenuStub(hMenu, uFlags, x, y, nReserved,
|
|
|
|
hWnd, prcRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
HWND surrogateHwnd = sWinlessPopupSurrogateHWND;
|
|
|
|
sWinlessPopupSurrogateHWND = NULL;
|
|
|
|
|
|
|
|
// Popups that don't use TPM_RETURNCMD expect a final command message
|
|
|
|
// when an item is selected and the context closes. Since we replace
|
|
|
|
// the parent, we need to forward this back to the real parent so it
|
|
|
|
// can act on the menu item selected.
|
|
|
|
bool isRetCmdCall = (uFlags & TPM_RETURNCMD);
|
|
|
|
|
|
|
|
// A little trick scrounged from chromium's code - set the focus
|
|
|
|
// to our surrogate parent so keyboard nav events go to the menu.
|
|
|
|
HWND focusHwnd = SetFocus(surrogateHwnd);
|
|
|
|
DWORD res = sUser32TrackPopupMenuStub(hMenu, uFlags|TPM_RETURNCMD, x, y,
|
|
|
|
nReserved, surrogateHwnd, prcRect);
|
|
|
|
if (IsWindow(focusHwnd)) {
|
|
|
|
SetFocus(focusHwnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isRetCmdCall && res) {
|
|
|
|
SendMessage(hWnd, WM_COMMAND, MAKEWPARAM(res, 0), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::InitPopupMenuHook()
|
|
|
|
{
|
2010-12-06 16:50:47 -08:00
|
|
|
if (!(GetQuirks() & PluginModuleChild::QUIRK_WINLESS_TRACKPOPUP_HOOK) ||
|
2010-03-22 20:06:35 -07:00
|
|
|
sUser32TrackPopupMenuStub)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Note, once WindowsDllInterceptor is initialized for a module,
|
|
|
|
// it remains initialized for that particular module for it's
|
|
|
|
// lifetime. Additional instances are needed if other modules need
|
|
|
|
// to be hooked.
|
|
|
|
sUser32Intercept.Init("user32.dll");
|
|
|
|
sUser32Intercept.AddHook("TrackPopupMenu", TrackPopupHookProc,
|
|
|
|
(void**) &sUser32TrackPopupMenuStub);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::CreateWinlessPopupSurrogate()
|
|
|
|
{
|
|
|
|
// already initialized
|
|
|
|
if (mWinlessPopupSurrogateHWND)
|
|
|
|
return;
|
|
|
|
|
|
|
|
HWND hwnd = NULL;
|
|
|
|
NPError result;
|
|
|
|
if (!CallNPN_GetValue_NPNVnetscapeWindow(&hwnd, &result)) {
|
|
|
|
NS_ERROR("CallNPN_GetValue_NPNVnetscapeWindow failed.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mWinlessPopupSurrogateHWND =
|
|
|
|
CreateWindowEx(WS_EX_NOPARENTNOTIFY, L"Static", NULL, WS_CHILD, 0, 0,
|
|
|
|
0, 0, hwnd, 0, GetModuleHandle(NULL), 0);
|
|
|
|
if (!mWinlessPopupSurrogateHWND) {
|
|
|
|
NS_ERROR("CreateWindowEx failed for winless placeholder!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::DestroyWinlessPopupSurrogate()
|
|
|
|
{
|
|
|
|
if (mWinlessPopupSurrogateHWND)
|
|
|
|
DestroyWindow(mWinlessPopupSurrogateHWND);
|
|
|
|
mWinlessPopupSurrogateHWND = NULL;
|
|
|
|
}
|
|
|
|
|
2010-02-24 16:13:48 -08:00
|
|
|
/* windowless handle event helpers */
|
|
|
|
|
|
|
|
static bool
|
|
|
|
NeedsNestedEventCoverage(UINT msg)
|
|
|
|
{
|
|
|
|
// Events we assume some sort of modal ui *might* be generated.
|
|
|
|
switch (msg) {
|
|
|
|
case WM_LBUTTONUP:
|
|
|
|
case WM_RBUTTONUP:
|
|
|
|
case WM_MBUTTONUP:
|
|
|
|
case WM_LBUTTONDOWN:
|
|
|
|
case WM_RBUTTONDOWN:
|
|
|
|
case WM_MBUTTONDOWN:
|
|
|
|
case WM_CONTEXTMENU:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
IsMouseInputEvent(UINT msg)
|
|
|
|
{
|
|
|
|
switch (msg) {
|
|
|
|
case WM_MOUSEMOVE:
|
|
|
|
case WM_LBUTTONUP:
|
|
|
|
case WM_RBUTTONUP:
|
|
|
|
case WM_MBUTTONUP:
|
|
|
|
case WM_LBUTTONDOWN:
|
|
|
|
case WM_RBUTTONDOWN:
|
|
|
|
case WM_MBUTTONDOWN:
|
|
|
|
case WM_LBUTTONDBLCLK:
|
|
|
|
case WM_MBUTTONDBLCLK:
|
|
|
|
case WM_RBUTTONDBLCLK:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-02-09 14:34:38 -08:00
|
|
|
int16_t
|
|
|
|
PluginInstanceChild::WinlessHandleEvent(NPEvent& event)
|
|
|
|
{
|
2010-03-10 07:54:22 -08:00
|
|
|
if (!mPluginIface->event)
|
|
|
|
return false;
|
|
|
|
|
2010-02-24 16:13:48 -08:00
|
|
|
if (!NeedsNestedEventCoverage(event.event)) {
|
|
|
|
return mPluginIface->event(&mData, reinterpret_cast<void*>(&event));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Events that might generate nested event dispatch loops need
|
|
|
|
// special handling during delivery.
|
|
|
|
int16_t handled;
|
2010-02-09 14:34:38 -08:00
|
|
|
|
2010-03-22 20:06:35 -07:00
|
|
|
// TrackPopupMenu will fail if the parent window is not associated with
|
|
|
|
// our ui thread. So we hook TrackPopupMenu so we can hand in a surrogate
|
|
|
|
// parent created in the child process.
|
2010-12-06 16:50:47 -08:00
|
|
|
if ((GetQuirks() & PluginModuleChild::QUIRK_WINLESS_TRACKPOPUP_HOOK) && // XXX turn on by default?
|
2010-03-22 20:06:35 -07:00
|
|
|
(event.event == WM_RBUTTONDOWN || // flash
|
|
|
|
event.event == WM_RBUTTONUP)) { // silverlight
|
|
|
|
sWinlessPopupSurrogateHWND = mWinlessPopupSurrogateHWND;
|
|
|
|
}
|
|
|
|
|
2010-02-24 16:13:48 -08:00
|
|
|
handled = mPluginIface->event(&mData, reinterpret_cast<void*>(&event));
|
2010-02-09 14:34:38 -08:00
|
|
|
|
2010-03-22 20:06:35 -07:00
|
|
|
sWinlessPopupSurrogateHWND = NULL;
|
2010-02-09 14:34:38 -08:00
|
|
|
|
2010-02-24 16:13:48 -08:00
|
|
|
return handled;
|
2010-02-09 14:34:38 -08:00
|
|
|
}
|
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
/* windowless drawing helpers */
|
|
|
|
|
|
|
|
bool
|
2010-03-10 07:54:22 -08:00
|
|
|
PluginInstanceChild::SharedSurfaceSetWindow(const NPRemoteWindow& aWindow)
|
2009-12-01 13:05:26 -08:00
|
|
|
{
|
|
|
|
// If the surfaceHandle is empty, parent is telling us we can reuse our cached
|
|
|
|
// memory surface and hdc. Otherwise, we need to reset, usually due to a
|
|
|
|
// expanding plugin port size.
|
|
|
|
if (!aWindow.surfaceHandle) {
|
|
|
|
if (!mSharedSurfaceDib.IsValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Attach to the new shared surface parent handed us.
|
|
|
|
if (NS_FAILED(mSharedSurfaceDib.Attach((SharedDIB::Handle)aWindow.surfaceHandle,
|
2010-10-27 06:03:09 -07:00
|
|
|
aWindow.width, aWindow.height, false)))
|
2009-12-01 13:05:26 -08:00
|
|
|
return false;
|
2009-12-14 16:27:25 -08:00
|
|
|
// Free any alpha extraction resources if needed. This will be reset
|
|
|
|
// the next time it's used.
|
|
|
|
AlphaExtractCacheRelease();
|
2009-12-01 13:05:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// NPRemoteWindow's origin is the origin of our shared dib.
|
2010-10-27 06:09:37 -07:00
|
|
|
mWindow.x = aWindow.x;
|
|
|
|
mWindow.y = aWindow.y;
|
2009-12-01 13:05:26 -08:00
|
|
|
mWindow.width = aWindow.width;
|
|
|
|
mWindow.height = aWindow.height;
|
|
|
|
mWindow.type = aWindow.type;
|
|
|
|
|
|
|
|
mWindow.window = reinterpret_cast<void*>(mSharedSurfaceDib.GetHDC());
|
2010-10-27 06:09:37 -07:00
|
|
|
::SetViewportOrgEx(mSharedSurfaceDib.GetHDC(), -aWindow.x, -aWindow.y, NULL);
|
2010-03-10 07:54:22 -08:00
|
|
|
|
|
|
|
if (mPluginIface->setwindow)
|
|
|
|
mPluginIface->setwindow(&mData, &mWindow);
|
2009-12-01 13:05:26 -08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::SharedSurfaceRelease()
|
|
|
|
{
|
|
|
|
mSharedSurfaceDib.Close();
|
2009-12-14 16:27:25 -08:00
|
|
|
AlphaExtractCacheRelease();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* double pass cache buffer - (rarely) used in cases where alpha extraction
|
|
|
|
* occurs for windowless plugins. */
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceChild::AlphaExtractCacheSetup()
|
|
|
|
{
|
|
|
|
AlphaExtractCacheRelease();
|
|
|
|
|
|
|
|
mAlphaExtract.hdc = ::CreateCompatibleDC(NULL);
|
|
|
|
|
|
|
|
if (!mAlphaExtract.hdc)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
BITMAPINFOHEADER bmih;
|
|
|
|
memset((void*)&bmih, 0, sizeof(BITMAPINFOHEADER));
|
|
|
|
bmih.biSize = sizeof(BITMAPINFOHEADER);
|
|
|
|
bmih.biWidth = mWindow.width;
|
|
|
|
bmih.biHeight = mWindow.height;
|
|
|
|
bmih.biPlanes = 1;
|
|
|
|
bmih.biBitCount = 32;
|
|
|
|
bmih.biCompression = BI_RGB;
|
|
|
|
|
|
|
|
void* ppvBits = nsnull;
|
|
|
|
mAlphaExtract.bmp = ::CreateDIBSection(mAlphaExtract.hdc,
|
|
|
|
(BITMAPINFO*)&bmih,
|
|
|
|
DIB_RGB_COLORS,
|
|
|
|
(void**)&ppvBits,
|
|
|
|
NULL,
|
|
|
|
(unsigned long)sizeof(BITMAPINFOHEADER));
|
|
|
|
if (!mAlphaExtract.bmp)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
DeleteObject(::SelectObject(mAlphaExtract.hdc, mAlphaExtract.bmp));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::AlphaExtractCacheRelease()
|
|
|
|
{
|
|
|
|
if (mAlphaExtract.bmp)
|
|
|
|
::DeleteObject(mAlphaExtract.bmp);
|
|
|
|
|
|
|
|
if (mAlphaExtract.hdc)
|
|
|
|
::DeleteObject(mAlphaExtract.hdc);
|
|
|
|
|
|
|
|
mAlphaExtract.bmp = NULL;
|
|
|
|
mAlphaExtract.hdc = NULL;
|
2009-12-01 13:05:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-12-14 16:27:25 -08:00
|
|
|
PluginInstanceChild::UpdatePaintClipRect(RECT* aRect)
|
|
|
|
{
|
|
|
|
if (aRect) {
|
|
|
|
// Update the clip rect on our internal hdc
|
|
|
|
HRGN clip = ::CreateRectRgnIndirect(aRect);
|
|
|
|
::SelectClipRgn(mSharedSurfaceDib.GetHDC(), clip);
|
|
|
|
::DeleteObject(clip);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int16_t
|
|
|
|
PluginInstanceChild::SharedSurfacePaint(NPEvent& evcopy)
|
2009-12-01 13:05:26 -08:00
|
|
|
{
|
2010-03-10 07:54:22 -08:00
|
|
|
if (!mPluginIface->event)
|
|
|
|
return false;
|
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
RECT* pRect = reinterpret_cast<RECT*>(evcopy.lParam);
|
2009-12-14 16:27:25 -08:00
|
|
|
|
|
|
|
switch(mAlphaExtract.doublePass) {
|
|
|
|
case RENDER_NATIVE:
|
|
|
|
// pass the internal hdc to the plugin
|
|
|
|
UpdatePaintClipRect(pRect);
|
|
|
|
evcopy.wParam = WPARAM(mSharedSurfaceDib.GetHDC());
|
|
|
|
return mPluginIface->event(&mData, reinterpret_cast<void*>(&evcopy));
|
|
|
|
break;
|
|
|
|
case RENDER_BACK_ONE:
|
|
|
|
// Handle a double pass render used in alpha extraction for transparent
|
|
|
|
// plugins. (See nsObjectFrame and gfxWindowsNativeDrawing for details.)
|
|
|
|
// We render twice, once to the shared dib, and once to a cache which
|
|
|
|
// we copy back on a second paint. These paints can't be spread across
|
|
|
|
// multiple rpc messages as delays cause animation frame changes.
|
|
|
|
if (!mAlphaExtract.bmp && !AlphaExtractCacheSetup()) {
|
|
|
|
mAlphaExtract.doublePass = RENDER_NATIVE;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// See gfxWindowsNativeDrawing, color order doesn't have to match.
|
|
|
|
UpdatePaintClipRect(pRect);
|
2010-04-05 09:43:55 -07:00
|
|
|
::FillRect(mSharedSurfaceDib.GetHDC(), pRect, (HBRUSH)GetStockObject(WHITE_BRUSH));
|
2009-12-14 16:27:25 -08:00
|
|
|
evcopy.wParam = WPARAM(mSharedSurfaceDib.GetHDC());
|
|
|
|
if (!mPluginIface->event(&mData, reinterpret_cast<void*>(&evcopy))) {
|
|
|
|
mAlphaExtract.doublePass = RENDER_NATIVE;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy to cache. We render to shared dib so we don't have to call
|
|
|
|
// setwindow between calls (flash issue).
|
|
|
|
::BitBlt(mAlphaExtract.hdc,
|
|
|
|
pRect->left,
|
|
|
|
pRect->top,
|
|
|
|
pRect->right - pRect->left,
|
|
|
|
pRect->bottom - pRect->top,
|
|
|
|
mSharedSurfaceDib.GetHDC(),
|
|
|
|
pRect->left,
|
|
|
|
pRect->top,
|
|
|
|
SRCCOPY);
|
|
|
|
|
|
|
|
::FillRect(mSharedSurfaceDib.GetHDC(), pRect, (HBRUSH)GetStockObject(BLACK_BRUSH));
|
|
|
|
if (!mPluginIface->event(&mData, reinterpret_cast<void*>(&evcopy))) {
|
|
|
|
mAlphaExtract.doublePass = RENDER_NATIVE;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
mAlphaExtract.doublePass = RENDER_BACK_TWO;
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
case RENDER_BACK_TWO:
|
|
|
|
// copy our cached surface back
|
2010-04-05 09:43:55 -07:00
|
|
|
UpdatePaintClipRect(pRect);
|
2009-12-14 16:27:25 -08:00
|
|
|
::BitBlt(mSharedSurfaceDib.GetHDC(),
|
|
|
|
pRect->left,
|
|
|
|
pRect->top,
|
|
|
|
pRect->right - pRect->left,
|
|
|
|
pRect->bottom - pRect->top,
|
|
|
|
mAlphaExtract.hdc,
|
|
|
|
pRect->left,
|
|
|
|
pRect->top,
|
|
|
|
SRCCOPY);
|
|
|
|
mAlphaExtract.doublePass = RENDER_NATIVE;
|
|
|
|
return true;
|
|
|
|
break;
|
2009-12-01 13:05:26 -08:00
|
|
|
}
|
2009-12-14 16:27:25 -08:00
|
|
|
return false;
|
2009-12-01 13:05:26 -08:00
|
|
|
}
|
|
|
|
|
2010-04-26 09:29:11 -07:00
|
|
|
/* flash msg throttling helpers */
|
|
|
|
|
|
|
|
// Flash has the unfortunate habit of flooding dispatch loops with custom
|
|
|
|
// windowing events they use for timing. We throttle these by dropping the
|
|
|
|
// delivery priority below any other event, including pending ipc io
|
|
|
|
// notifications. We do this for both windowed and windowless controls.
|
2010-05-06 09:40:26 -07:00
|
|
|
// Note flash's windowless msg window can last longer than our instance,
|
|
|
|
// so we try to unhook when the window is destroyed and in NPP_Destroy.
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::UnhookWinlessFlashThrottle()
|
|
|
|
{
|
|
|
|
// We may have already unhooked
|
|
|
|
if (!mWinlessThrottleOldWndProc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
WNDPROC tmpProc = mWinlessThrottleOldWndProc;
|
|
|
|
mWinlessThrottleOldWndProc = nsnull;
|
|
|
|
|
|
|
|
NS_ASSERTION(mWinlessHiddenMsgHWND,
|
|
|
|
"Missing mWinlessHiddenMsgHWND w/subclass set??");
|
|
|
|
|
|
|
|
// reset the subclass
|
|
|
|
SetWindowLongPtr(mWinlessHiddenMsgHWND, GWLP_WNDPROC,
|
2010-07-11 21:49:12 -07:00
|
|
|
reinterpret_cast<LONG_PTR>(tmpProc));
|
2010-05-06 09:40:26 -07:00
|
|
|
|
|
|
|
// Remove our instance prop
|
2010-10-21 14:52:48 -07:00
|
|
|
RemoveProp(mWinlessHiddenMsgHWND, kFlashThrottleProperty);
|
2010-05-06 09:40:26 -07:00
|
|
|
mWinlessHiddenMsgHWND = nsnull;
|
|
|
|
}
|
2010-04-26 09:29:11 -07:00
|
|
|
|
|
|
|
// static
|
|
|
|
LRESULT CALLBACK
|
|
|
|
PluginInstanceChild::WinlessHiddenFlashWndProc(HWND hWnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wParam,
|
|
|
|
LPARAM lParam)
|
|
|
|
{
|
|
|
|
PluginInstanceChild* self = reinterpret_cast<PluginInstanceChild*>(
|
2010-10-21 14:52:48 -07:00
|
|
|
GetProp(hWnd, kFlashThrottleProperty));
|
2010-04-26 09:29:11 -07:00
|
|
|
if (!self) {
|
|
|
|
NS_NOTREACHED("Badness!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(self->mWinlessThrottleOldWndProc,
|
|
|
|
"Missing subclass procedure!!");
|
|
|
|
|
|
|
|
// Throttle
|
|
|
|
if (message == WM_USER+1) {
|
|
|
|
self->FlashThrottleMessage(hWnd, message, wParam, lParam, false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unhook
|
2010-05-06 09:40:26 -07:00
|
|
|
if (message == WM_CLOSE || message == WM_NCDESTROY) {
|
2010-04-26 09:29:11 -07:00
|
|
|
WNDPROC tmpProc = self->mWinlessThrottleOldWndProc;
|
2010-05-06 09:40:26 -07:00
|
|
|
self->UnhookWinlessFlashThrottle();
|
2010-04-26 09:29:11 -07:00
|
|
|
LRESULT res = CallWindowProc(tmpProc, hWnd, message, wParam, lParam);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CallWindowProc(self->mWinlessThrottleOldWndProc,
|
|
|
|
hWnd, message, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enumerate all thread windows looking for flash's hidden message window.
|
|
|
|
// Once we find it, sub class it so we can throttle user msgs.
|
|
|
|
// static
|
|
|
|
BOOL CALLBACK
|
|
|
|
PluginInstanceChild::EnumThreadWindowsCallback(HWND hWnd,
|
|
|
|
LPARAM aParam)
|
|
|
|
{
|
|
|
|
PluginInstanceChild* self = reinterpret_cast<PluginInstanceChild*>(aParam);
|
|
|
|
if (!self) {
|
|
|
|
NS_NOTREACHED("Enum befuddled!");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUnichar className[64];
|
|
|
|
if (!GetClassNameW(hWnd, className, sizeof(className)/sizeof(PRUnichar)))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (!wcscmp(className, L"SWFlash_PlaceholderX")) {
|
|
|
|
WNDPROC oldWndProc =
|
|
|
|
reinterpret_cast<WNDPROC>(GetWindowLongPtr(hWnd, GWLP_WNDPROC));
|
|
|
|
// Only set this if we haven't already.
|
|
|
|
if (oldWndProc != WinlessHiddenFlashWndProc) {
|
|
|
|
if (self->mWinlessThrottleOldWndProc) {
|
|
|
|
NS_WARNING("mWinlessThrottleWndProc already set???");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
// Subsclass and store self as a property
|
2010-05-06 09:40:26 -07:00
|
|
|
self->mWinlessHiddenMsgHWND = hWnd;
|
2010-04-26 09:29:11 -07:00
|
|
|
self->mWinlessThrottleOldWndProc =
|
|
|
|
reinterpret_cast<WNDPROC>(SetWindowLongPtr(hWnd, GWLP_WNDPROC,
|
2010-07-11 21:49:12 -07:00
|
|
|
reinterpret_cast<LONG_PTR>(WinlessHiddenFlashWndProc)));
|
2010-10-21 14:52:48 -07:00
|
|
|
SetProp(hWnd, kFlashThrottleProperty, self);
|
2010-04-26 09:29:11 -07:00
|
|
|
NS_ASSERTION(self->mWinlessThrottleOldWndProc,
|
|
|
|
"SetWindowLongPtr failed?!");
|
|
|
|
}
|
|
|
|
// Return no matter what once we find the right window.
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::SetupFlashMsgThrottle()
|
|
|
|
{
|
|
|
|
if (mWindow.type == NPWindowTypeDrawable) {
|
|
|
|
// Search for the flash hidden message window and subclass it. Only
|
|
|
|
// search for flash windows belonging to our ui thread!
|
|
|
|
if (mWinlessThrottleOldWndProc)
|
|
|
|
return;
|
|
|
|
EnumThreadWindows(GetCurrentThreadId(), EnumThreadWindowsCallback,
|
|
|
|
reinterpret_cast<LPARAM>(this));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Already setup through quirks and the subclass.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WNDPROC
|
|
|
|
PluginInstanceChild::FlashThrottleAsyncMsg::GetProc()
|
|
|
|
{
|
|
|
|
if (mInstance) {
|
|
|
|
return mWindowed ? mInstance->mPluginWndProc :
|
|
|
|
mInstance->mWinlessThrottleOldWndProc;
|
|
|
|
}
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::FlashThrottleAsyncMsg::Run()
|
|
|
|
{
|
|
|
|
RemoveFromAsyncList();
|
|
|
|
|
|
|
|
// GetProc() checks mInstance, and pulls the procedure from
|
|
|
|
// PluginInstanceChild. We don't transport sub-class procedure
|
|
|
|
// ptrs around in FlashThrottleAsyncMsg msgs.
|
|
|
|
if (!GetProc())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// deliver the event to flash
|
|
|
|
CallWindowProc(GetProc(), GetWnd(), GetMsg(), GetWParam(), GetLParam());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::FlashThrottleMessage(HWND aWnd,
|
|
|
|
UINT aMsg,
|
|
|
|
WPARAM aWParam,
|
|
|
|
LPARAM aLParam,
|
|
|
|
bool isWindowed)
|
|
|
|
{
|
|
|
|
// We reuse ChildAsyncCall so we get the cancelation work
|
|
|
|
// that's done in Destroy.
|
|
|
|
FlashThrottleAsyncMsg* task = new FlashThrottleAsyncMsg(this,
|
|
|
|
aWnd, aMsg, aWParam, aLParam, isWindowed);
|
|
|
|
if (!task)
|
|
|
|
return;
|
|
|
|
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(mAsyncCallMutex);
|
|
|
|
mPendingAsyncCalls.AppendElement(task);
|
|
|
|
}
|
|
|
|
MessageLoop::current()->PostDelayedTask(FROM_HERE,
|
|
|
|
task, kFlashWMUSERMessageThrottleDelayMs);
|
|
|
|
}
|
|
|
|
|
2009-07-01 14:19:32 -07:00
|
|
|
#endif // OS_WIN
|
|
|
|
|
2010-01-26 13:40:15 -08:00
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerSetPluginFocus()
|
|
|
|
{
|
|
|
|
PR_LOG(gPluginLog, PR_LOG_DEBUG, ("%s", FULLFUNCTION));
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
// Parent is letting us know something set focus to the plugin.
|
|
|
|
if (::GetFocus() == mPluginWindowHWND)
|
|
|
|
return true;
|
|
|
|
::SetFocus(mPluginWindowHWND);
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
NS_NOTREACHED("PluginInstanceChild::AnswerSetPluginFocus not implemented!");
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-01-26 16:08:39 -08:00
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerUpdateWindow()
|
|
|
|
{
|
|
|
|
PR_LOG(gPluginLog, PR_LOG_DEBUG, ("%s", FULLFUNCTION));
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
2010-04-05 09:43:13 -07:00
|
|
|
if (mPluginWindowHWND) {
|
|
|
|
RECT rect;
|
|
|
|
if (GetUpdateRect(GetParent(mPluginWindowHWND), &rect, FALSE)) {
|
|
|
|
::InvalidateRect(mPluginWindowHWND, &rect, FALSE);
|
|
|
|
}
|
|
|
|
UpdateWindow(mPluginWindowHWND);
|
|
|
|
}
|
2010-01-26 16:08:39 -08:00
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
NS_NOTREACHED("PluginInstanceChild::AnswerUpdateWindow not implemented!");
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-09-09 15:59:06 -07:00
|
|
|
PPluginScriptableObjectChild*
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceChild::AllocPPluginScriptableObject()
|
2009-08-10 16:28:22 -07:00
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2010-01-15 12:35:57 -08:00
|
|
|
return new PluginScriptableObjectChild(Proxy);
|
2009-08-10 16:28:22 -07:00
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-10-07 16:50:48 -07:00
|
|
|
PluginInstanceChild::DeallocPPluginScriptableObject(
|
2009-12-03 00:16:14 -08:00
|
|
|
PPluginScriptableObjectChild* aObject)
|
2009-08-10 16:28:22 -07:00
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2010-01-22 07:06:13 -08:00
|
|
|
delete aObject;
|
2010-01-15 12:35:57 -08:00
|
|
|
return true;
|
2009-08-10 16:28:22 -07:00
|
|
|
}
|
2009-08-18 13:20:03 -07:00
|
|
|
|
2009-10-07 16:50:48 -07:00
|
|
|
bool
|
2010-03-04 13:20:14 -08:00
|
|
|
PluginInstanceChild::RecvPPluginScriptableObjectConstructor(
|
2009-10-07 16:50:48 -07:00
|
|
|
PPluginScriptableObjectChild* aActor)
|
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
|
|
|
|
2009-10-07 16:50:48 -07:00
|
|
|
// This is only called in response to the parent process requesting the
|
|
|
|
// creation of an actor. This actor will represent an NPObject that is
|
|
|
|
// created by the browser and returned to the plugin.
|
|
|
|
PluginScriptableObjectChild* actor =
|
|
|
|
static_cast<PluginScriptableObjectChild*>(aActor);
|
2010-01-15 12:35:57 -08:00
|
|
|
NS_ASSERTION(!actor->GetObject(false), "Actor already has an object?!");
|
|
|
|
|
|
|
|
actor->InitializeProxy();
|
|
|
|
NS_ASSERTION(actor->GetObject(false), "Actor should have an object!");
|
2009-10-07 16:50:48 -07:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-01-12 15:06:18 -08:00
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerPBrowserStreamConstructor(
|
|
|
|
PBrowserStreamChild* aActor,
|
|
|
|
const nsCString& url,
|
|
|
|
const uint32_t& length,
|
|
|
|
const uint32_t& lastmodified,
|
|
|
|
PStreamNotifyChild* notifyData,
|
|
|
|
const nsCString& headers,
|
|
|
|
const nsCString& mimeType,
|
|
|
|
const bool& seekable,
|
|
|
|
NPError* rv,
|
|
|
|
uint16_t* stype)
|
|
|
|
{
|
|
|
|
AssertPluginThread();
|
|
|
|
*rv = static_cast<BrowserStreamChild*>(aActor)
|
2010-03-06 13:03:05 -08:00
|
|
|
->StreamConstructed(mimeType, seekable, stype);
|
2010-01-12 15:06:18 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-09 15:59:06 -07:00
|
|
|
PBrowserStreamChild*
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceChild::AllocPBrowserStream(const nsCString& url,
|
|
|
|
const uint32_t& length,
|
|
|
|
const uint32_t& lastmodified,
|
2009-10-16 16:31:53 -07:00
|
|
|
PStreamNotifyChild* notifyData,
|
2009-09-22 10:31:11 -07:00
|
|
|
const nsCString& headers,
|
|
|
|
const nsCString& mimeType,
|
|
|
|
const bool& seekable,
|
|
|
|
NPError* rv,
|
|
|
|
uint16_t *stype)
|
2009-08-18 13:20:03 -07:00
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2010-03-06 13:03:05 -08:00
|
|
|
return new BrowserStreamChild(this, url, length, lastmodified,
|
|
|
|
static_cast<StreamNotifyChild*>(notifyData),
|
2009-09-23 16:00:23 -07:00
|
|
|
headers, mimeType, seekable, rv, stype);
|
2009-08-18 13:20:03 -07:00
|
|
|
}
|
|
|
|
|
2009-09-21 07:51:35 -07:00
|
|
|
bool
|
2009-12-03 00:16:14 -08:00
|
|
|
PluginInstanceChild::DeallocPBrowserStream(PBrowserStreamChild* stream)
|
2009-08-18 13:20:03 -07:00
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2009-08-18 13:20:03 -07:00
|
|
|
delete stream;
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-08-18 13:20:03 -07:00
|
|
|
}
|
|
|
|
|
2009-09-21 07:51:35 -07:00
|
|
|
PPluginStreamChild*
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceChild::AllocPPluginStream(const nsCString& mimeType,
|
|
|
|
const nsCString& target,
|
|
|
|
NPError* result)
|
2009-09-21 07:51:35 -07:00
|
|
|
{
|
|
|
|
NS_RUNTIMEABORT("not callable");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-12-03 00:16:14 -08:00
|
|
|
PluginInstanceChild::DeallocPPluginStream(PPluginStreamChild* stream)
|
2009-09-21 07:51:35 -07:00
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2009-09-21 07:51:35 -07:00
|
|
|
delete stream;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-08 14:22:50 -07:00
|
|
|
PStreamNotifyChild*
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceChild::AllocPStreamNotify(const nsCString& url,
|
|
|
|
const nsCString& target,
|
|
|
|
const bool& post,
|
|
|
|
const nsCString& buffer,
|
|
|
|
const bool& file,
|
|
|
|
NPError* result)
|
2009-09-08 14:22:50 -07:00
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2009-09-08 14:22:50 -07:00
|
|
|
NS_RUNTIMEABORT("not reached");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-03-06 13:03:05 -08:00
|
|
|
void
|
|
|
|
StreamNotifyChild::ActorDestroy(ActorDestroyReason why)
|
2009-09-08 14:22:50 -07:00
|
|
|
{
|
2010-03-06 13:03:05 -08:00
|
|
|
if (AncestorDeletion == why && mBrowserStream) {
|
|
|
|
NS_ERROR("Pending NPP_URLNotify not called when closing an instance.");
|
|
|
|
|
|
|
|
// reclaim responsibility for deleting ourself
|
|
|
|
mBrowserStream->mStreamNotify = NULL;
|
2010-03-11 08:56:35 -08:00
|
|
|
mBrowserStream = NULL;
|
2010-03-06 13:03:05 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamNotifyChild::SetAssociatedStream(BrowserStreamChild* bs)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(bs, "Shouldn't be null");
|
|
|
|
NS_ASSERTION(!mBrowserStream, "Two streams for one streamnotify?");
|
|
|
|
|
|
|
|
mBrowserStream = bs;
|
2009-12-03 00:16:14 -08:00
|
|
|
}
|
2009-10-08 12:11:13 -07:00
|
|
|
|
2009-12-03 00:16:14 -08:00
|
|
|
bool
|
2010-03-06 13:03:05 -08:00
|
|
|
StreamNotifyChild::Recv__delete__(const NPReason& reason)
|
2009-12-03 00:16:14 -08:00
|
|
|
{
|
2010-03-06 13:03:05 -08:00
|
|
|
AssertPluginThread();
|
|
|
|
|
|
|
|
if (mBrowserStream)
|
|
|
|
mBrowserStream->NotifyPending();
|
|
|
|
else
|
|
|
|
NPP_URLNotify(reason);
|
|
|
|
|
2009-11-25 06:26:01 -08:00
|
|
|
return true;
|
|
|
|
}
|
2009-09-08 14:22:50 -07:00
|
|
|
|
2010-03-06 13:03:05 -08:00
|
|
|
void
|
|
|
|
StreamNotifyChild::NPP_URLNotify(NPReason reason)
|
|
|
|
{
|
|
|
|
PluginInstanceChild* instance = static_cast<PluginInstanceChild*>(Manager());
|
|
|
|
|
|
|
|
if (mClosure)
|
|
|
|
instance->mPluginIface->urlnotify(instance->GetNPP(), mURL.get(),
|
|
|
|
reason, mClosure);
|
|
|
|
}
|
|
|
|
|
2009-11-25 06:26:01 -08:00
|
|
|
bool
|
2009-12-03 00:16:14 -08:00
|
|
|
PluginInstanceChild::DeallocPStreamNotify(PStreamNotifyChild* notifyData)
|
2009-11-25 06:26:01 -08:00
|
|
|
{
|
2009-12-03 00:16:14 -08:00
|
|
|
AssertPluginThread();
|
2010-03-06 13:03:05 -08:00
|
|
|
|
|
|
|
if (!static_cast<StreamNotifyChild*>(notifyData)->mBrowserStream)
|
|
|
|
delete notifyData;
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-09-08 14:22:50 -07:00
|
|
|
}
|
|
|
|
|
2009-09-17 15:15:12 -07:00
|
|
|
PluginScriptableObjectChild*
|
2009-09-23 00:12:52 -07:00
|
|
|
PluginInstanceChild::GetActorForNPObject(NPObject* aObject)
|
2009-09-17 15:15:12 -07:00
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
2010-01-15 12:35:57 -08:00
|
|
|
NS_ASSERTION(aObject, "Null pointer!");
|
|
|
|
|
|
|
|
if (aObject->_class == PluginScriptableObjectChild::GetClass()) {
|
|
|
|
// One of ours! It's a browser-provided object.
|
|
|
|
ChildNPObject* object = static_cast<ChildNPObject*>(aObject);
|
|
|
|
NS_ASSERTION(object->parent, "Null actor!");
|
|
|
|
return object->parent;
|
|
|
|
}
|
2010-01-15 12:35:57 -08:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
PluginScriptableObjectChild* actor =
|
|
|
|
PluginModuleChild::current()->GetActorForNPObject(aObject);
|
|
|
|
if (actor) {
|
|
|
|
// Plugin-provided object that we've previously wrapped.
|
|
|
|
return actor;
|
|
|
|
}
|
|
|
|
|
|
|
|
actor = new PluginScriptableObjectChild(LocalObject);
|
2010-03-04 13:20:14 -08:00
|
|
|
if (!SendPPluginScriptableObjectConstructor(actor)) {
|
2010-01-15 12:35:57 -08:00
|
|
|
NS_ERROR("Failed to send constructor message!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
actor->InitializeLocal(aObject);
|
|
|
|
return actor;
|
2009-09-17 15:15:12 -07:00
|
|
|
}
|
2009-09-21 07:51:35 -07:00
|
|
|
|
|
|
|
NPError
|
|
|
|
PluginInstanceChild::NPN_NewStream(NPMIMEType aMIMEType, const char* aWindow,
|
|
|
|
NPStream** aStream)
|
|
|
|
{
|
2009-10-08 12:11:13 -07:00
|
|
|
AssertPluginThread();
|
|
|
|
|
2009-12-03 00:16:14 -08:00
|
|
|
PluginStreamChild* ps = new PluginStreamChild();
|
2009-09-21 07:51:35 -07:00
|
|
|
|
|
|
|
NPError result;
|
|
|
|
CallPPluginStreamConstructor(ps, nsDependentCString(aMIMEType),
|
2009-09-22 14:06:00 -07:00
|
|
|
NullableString(aWindow), &result);
|
2009-09-21 07:51:35 -07:00
|
|
|
if (NPERR_NO_ERROR != result) {
|
|
|
|
*aStream = NULL;
|
2009-12-03 00:16:14 -08:00
|
|
|
PPluginStreamChild::Call__delete__(ps, NPERR_GENERIC_ERROR, true);
|
2009-09-21 07:51:35 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aStream = &ps->mStream;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
2009-11-13 12:20:03 -08:00
|
|
|
|
2010-09-15 09:02:44 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceChild::RecvAsyncSetWindow(const gfxSurfaceType& aSurfaceType,
|
|
|
|
const NPRemoteWindow& aWindow)
|
|
|
|
{
|
2010-09-15 09:02:49 -07:00
|
|
|
AssertPluginThread();
|
|
|
|
|
2010-11-15 06:41:18 -08:00
|
|
|
NS_ASSERTION(!aWindow.window, "Remote window should be null.");
|
|
|
|
|
2010-12-05 13:57:33 -08:00
|
|
|
if (mCurrentAsyncSetWindowTask) {
|
|
|
|
mCurrentAsyncSetWindowTask->Cancel();
|
|
|
|
mCurrentAsyncSetWindowTask = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mPendingPluginCall) {
|
|
|
|
// We shouldn't process this now. Run it later.
|
|
|
|
mCurrentAsyncSetWindowTask =
|
|
|
|
NewRunnableMethod<PluginInstanceChild,
|
|
|
|
void (PluginInstanceChild::*)(const gfxSurfaceType&, const NPRemoteWindow&, bool),
|
|
|
|
gfxSurfaceType, NPRemoteWindow, bool>
|
|
|
|
(this, &PluginInstanceChild::DoAsyncSetWindow,
|
|
|
|
aSurfaceType, aWindow, true);
|
|
|
|
MessageLoop::current()->PostTask(FROM_HERE, mCurrentAsyncSetWindowTask);
|
|
|
|
} else {
|
|
|
|
DoAsyncSetWindow(aSurfaceType, aWindow, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::DoAsyncSetWindow(const gfxSurfaceType& aSurfaceType,
|
|
|
|
const NPRemoteWindow& aWindow,
|
|
|
|
bool aIsAsync)
|
|
|
|
{
|
|
|
|
AssertPluginThread();
|
|
|
|
NS_ASSERTION(!aWindow.window, "Remote window should be null.");
|
|
|
|
NS_ASSERTION(!mPendingPluginCall, "Can't do SetWindow during plugin call!");
|
|
|
|
|
|
|
|
if (aIsAsync) {
|
|
|
|
if (!mCurrentAsyncSetWindowTask) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mCurrentAsyncSetWindowTask = nsnull;
|
|
|
|
}
|
|
|
|
|
2010-11-15 06:41:18 -08:00
|
|
|
mWindow.window = NULL;
|
2010-09-15 09:02:49 -07:00
|
|
|
if (mWindow.width != aWindow.width || mWindow.height != aWindow.height) {
|
|
|
|
mCurrentSurface = nsnull;
|
|
|
|
mHelperSurface = nsnull;
|
2010-11-05 07:40:55 -07:00
|
|
|
mAccumulatedInvalidRect = nsIntRect(0, 0, aWindow.width, aWindow.height);
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
2010-11-05 07:40:55 -07:00
|
|
|
if (mWindow.clipRect.top != aWindow.clipRect.top ||
|
|
|
|
mWindow.clipRect.left != aWindow.clipRect.left ||
|
|
|
|
mWindow.clipRect.bottom != aWindow.clipRect.bottom ||
|
|
|
|
mWindow.clipRect.right != aWindow.clipRect.right)
|
2010-11-09 06:36:33 -08:00
|
|
|
mAccumulatedInvalidRect = nsIntRect(0, 0, aWindow.width, aWindow.height);
|
2010-10-25 10:57:13 -07:00
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
mWindow.x = aWindow.x;
|
|
|
|
mWindow.y = aWindow.y;
|
|
|
|
mWindow.width = aWindow.width;
|
|
|
|
mWindow.height = aWindow.height;
|
|
|
|
mWindow.clipRect = aWindow.clipRect;
|
|
|
|
mWindow.type = aWindow.type;
|
|
|
|
|
2010-12-06 16:50:47 -08:00
|
|
|
if (GetQuirks() & PluginModuleChild::QUIRK_SILVERLIGHT_DEFAULT_TRANSPARENT)
|
2010-10-27 06:13:53 -07:00
|
|
|
mIsTransparent = true;
|
|
|
|
|
2010-09-21 09:03:16 -07:00
|
|
|
mLayersRendering = true;
|
2010-09-15 09:02:49 -07:00
|
|
|
mSurfaceType = aSurfaceType;
|
2010-09-21 09:03:16 -07:00
|
|
|
UpdateWindowAttributes(true);
|
2010-09-15 09:02:49 -07:00
|
|
|
|
2010-10-27 13:56:48 -07:00
|
|
|
#ifdef XP_WIN
|
2010-12-06 16:50:47 -08:00
|
|
|
if (GetQuirks() & PluginModuleChild::QUIRK_WINLESS_TRACKPOPUP_HOOK)
|
2010-10-27 13:56:48 -07:00
|
|
|
CreateWinlessPopupSurrogate();
|
2010-12-06 16:50:47 -08:00
|
|
|
if (GetQuirks() & PluginModuleChild::QUIRK_FLASH_THROTTLE_WMUSER_EVENTS)
|
2010-10-27 13:56:48 -07:00
|
|
|
SetupFlashMsgThrottle();
|
|
|
|
#endif
|
|
|
|
|
2010-11-05 07:40:55 -07:00
|
|
|
if (!mAccumulatedInvalidRect.IsEmpty()) {
|
|
|
|
AsyncShowPluginFrame();
|
|
|
|
}
|
2010-09-15 09:02:44 -07:00
|
|
|
}
|
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
static inline gfxRect
|
|
|
|
GfxFromNsRect(const nsIntRect& aRect)
|
|
|
|
{
|
|
|
|
return gfxRect(aRect.x, aRect.y, aRect.width, aRect.height);
|
|
|
|
}
|
|
|
|
|
2010-09-21 09:03:16 -07:00
|
|
|
bool
|
2010-09-15 09:02:49 -07:00
|
|
|
PluginInstanceChild::CreateOptSurface(void)
|
|
|
|
{
|
|
|
|
nsRefPtr<gfxASurface> retsurf;
|
|
|
|
gfxASurface::gfxImageFormat format =
|
|
|
|
mIsTransparent ? gfxASurface::ImageFormatARGB32 :
|
|
|
|
gfxASurface::ImageFormatRGB24;
|
|
|
|
|
2010-10-04 23:15:49 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6)
|
2010-09-23 16:06:41 -07:00
|
|
|
// On Maemo 5, we must send the Visibility event to activate the plugin
|
|
|
|
if (mMaemoImageRendering) {
|
|
|
|
NPEvent pluginEvent;
|
|
|
|
XVisibilityEvent& visibilityEvent = pluginEvent.xvisibility;
|
|
|
|
visibilityEvent.type = VisibilityNotify;
|
|
|
|
visibilityEvent.display = 0;
|
|
|
|
visibilityEvent.state = VisibilityUnobscured;
|
|
|
|
mPluginIface->event(&mData, reinterpret_cast<void*>(&pluginEvent));
|
|
|
|
}
|
|
|
|
#endif
|
2010-09-15 09:02:49 -07:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
Display* dpy = mWsInfo.display;
|
|
|
|
Screen* screen = DefaultScreenOfDisplay(dpy);
|
|
|
|
if (format == gfxASurface::ImageFormatRGB24 &&
|
|
|
|
DefaultDepth(dpy, DefaultScreen(dpy)) == 16) {
|
|
|
|
format = gfxASurface::ImageFormatRGB16_565;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mSurfaceType == gfxASurface::SurfaceTypeXlib) {
|
|
|
|
XRenderPictFormat* xfmt = gfxXlibSurface::FindRenderFormat(dpy, format);
|
|
|
|
if (!xfmt) {
|
|
|
|
NS_ERROR("Need X falback surface, but FindRenderFormat failed");
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
mCurrentSurface =
|
|
|
|
gfxXlibSurface::Create(screen, xfmt,
|
|
|
|
gfxIntSize(mWindow.width,
|
|
|
|
mWindow.height));
|
|
|
|
return mCurrentSurface != nsnull;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-10-25 10:57:13 -07:00
|
|
|
#ifdef XP_WIN
|
|
|
|
if (mSurfaceType == gfxASurface::SurfaceTypeWin32 ||
|
|
|
|
mSurfaceType == gfxASurface::SurfaceTypeD2D) {
|
|
|
|
|
|
|
|
SharedDIBSurface* s = new SharedDIBSurface();
|
|
|
|
if (!s->Create(reinterpret_cast<HDC>(mWindow.window),
|
2010-10-27 06:03:09 -07:00
|
|
|
mWindow.width, mWindow.height, mIsTransparent))
|
2010-10-25 10:57:13 -07:00
|
|
|
return false;
|
|
|
|
|
|
|
|
mCurrentSurface = s;
|
|
|
|
return true;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
2010-10-25 10:57:13 -07:00
|
|
|
NS_RUNTIMEABORT("Shared-memory drawing not expected on Windows.");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Make common shmem implementation working for any platform
|
|
|
|
mCurrentSurface = new gfxSharedImageSurface();
|
|
|
|
return static_cast<gfxSharedImageSurface*>(mCurrentSurface.get())->
|
|
|
|
Init(this, gfxIntSize(mWindow.width, mWindow.height), format);
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
2010-09-21 09:03:16 -07:00
|
|
|
bool
|
2010-09-15 09:02:49 -07:00
|
|
|
PluginInstanceChild::MaybeCreatePlatformHelperSurface(void)
|
|
|
|
{
|
|
|
|
if (!mCurrentSurface) {
|
|
|
|
NS_ERROR("Cannot create helper surface without mCurrentSurface");
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef MOZ_PLATFORM_MAEMO
|
|
|
|
// On maemo plugins support non-default visual rendering
|
2010-09-21 09:03:16 -07:00
|
|
|
bool supportNonDefaultVisual = true;
|
2010-09-15 09:02:49 -07:00
|
|
|
#else
|
2010-09-21 09:03:16 -07:00
|
|
|
bool supportNonDefaultVisual = false;
|
2010-09-15 09:02:49 -07:00
|
|
|
#endif
|
|
|
|
#ifdef MOZ_X11
|
|
|
|
Screen* screen = DefaultScreenOfDisplay(mWsInfo.display);
|
|
|
|
Visual* defaultVisual = DefaultVisualOfScreen(screen);
|
|
|
|
Visual* visual = nsnull;
|
|
|
|
Colormap colormap = 0;
|
2010-09-21 09:03:16 -07:00
|
|
|
mDoAlphaExtraction = false;
|
|
|
|
bool createHelperSurface = false;
|
2010-09-15 09:02:49 -07:00
|
|
|
|
|
|
|
if (mCurrentSurface->GetType() == gfxASurface::SurfaceTypeXlib) {
|
|
|
|
static_cast<gfxXlibSurface*>(mCurrentSurface.get())->
|
|
|
|
GetColormapAndVisual(&colormap, &visual);
|
|
|
|
// Create helper surface if layer surface visual not same as default
|
|
|
|
// and we don't support non-default visual rendering
|
|
|
|
if (!visual || (defaultVisual != visual && !supportNonDefaultVisual)) {
|
2010-09-21 09:03:16 -07:00
|
|
|
createHelperSurface = true;
|
2010-09-15 09:02:49 -07:00
|
|
|
visual = defaultVisual;
|
|
|
|
mDoAlphaExtraction = mIsTransparent;
|
|
|
|
}
|
|
|
|
} else if (mCurrentSurface->GetType() == gfxASurface::SurfaceTypeImage) {
|
2010-10-04 23:15:49 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6)
|
2010-09-23 16:06:41 -07:00
|
|
|
if (mMaemoImageRendering) {
|
|
|
|
// No helper surface needed, when mMaemoImageRendering is TRUE.
|
|
|
|
// we can rendering directly into image memory
|
|
|
|
// with NPImageExpose Maemo5 NPAPI
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
2010-09-15 09:02:49 -07:00
|
|
|
// For image layer surface we should always create helper surface
|
2010-09-21 09:03:16 -07:00
|
|
|
createHelperSurface = true;
|
2010-09-15 09:02:49 -07:00
|
|
|
// Check if we can create helper surface with non-default visual
|
|
|
|
visual = gfxXlibSurface::FindVisual(screen,
|
|
|
|
static_cast<gfxImageSurface*>(mCurrentSurface.get())->Format());
|
|
|
|
if (visual && defaultVisual != visual && !supportNonDefaultVisual) {
|
|
|
|
visual = defaultVisual;
|
|
|
|
mDoAlphaExtraction = mIsTransparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (createHelperSurface) {
|
|
|
|
if (!visual) {
|
|
|
|
NS_ERROR("Need X falback surface, but visual failed");
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
mHelperSurface =
|
|
|
|
gfxXlibSurface::Create(screen, visual,
|
|
|
|
mCurrentSurface->GetSize());
|
|
|
|
if (!mHelperSurface) {
|
|
|
|
NS_WARNING("Fail to create create helper surface");
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-09-21 09:03:16 -07:00
|
|
|
return true;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
2010-09-21 09:03:16 -07:00
|
|
|
bool
|
2010-09-15 09:02:49 -07:00
|
|
|
PluginInstanceChild::EnsureCurrentBuffer(void)
|
|
|
|
{
|
|
|
|
if (mCurrentSurface) {
|
2010-09-21 09:03:16 -07:00
|
|
|
return true;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!mWindow.width || !mWindow.height) {
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!CreateOptSurface()) {
|
|
|
|
NS_ERROR("Cannot create optimized surface");
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!MaybeCreatePlatformHelperSurface()) {
|
|
|
|
NS_ERROR("Cannot create helper surface");
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
2010-09-21 09:03:16 -07:00
|
|
|
return true;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-09-21 09:03:16 -07:00
|
|
|
PluginInstanceChild::UpdateWindowAttributes(bool aForceSetWindow)
|
2010-09-15 09:02:49 -07:00
|
|
|
{
|
|
|
|
nsRefPtr<gfxASurface> curSurface = mHelperSurface ? mHelperSurface : mCurrentSurface;
|
2010-09-21 09:03:16 -07:00
|
|
|
bool needWindowUpdate = aForceSetWindow;
|
2010-09-15 09:02:49 -07:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
Visual* visual = nsnull;
|
|
|
|
Colormap colormap = 0;
|
|
|
|
if (curSurface && curSurface->GetType() == gfxASurface::SurfaceTypeXlib) {
|
|
|
|
static_cast<gfxXlibSurface*>(curSurface.get())->
|
|
|
|
GetColormapAndVisual(&colormap, &visual);
|
|
|
|
if (visual != mWsInfo.visual || colormap != mWsInfo.colormap) {
|
|
|
|
mWsInfo.visual = visual;
|
|
|
|
mWsInfo.colormap = colormap;
|
2010-09-21 09:03:16 -07:00
|
|
|
needWindowUpdate = true;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
}
|
2010-10-04 23:15:49 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6)
|
2010-09-23 16:06:41 -07:00
|
|
|
else if (curSurface && curSurface->GetType() == gfxASurface::SurfaceTypeImage
|
|
|
|
&& mMaemoImageRendering) {
|
|
|
|
// For maemo5 we need to setup window/colormap to 0
|
|
|
|
// and specify depth of image surface
|
|
|
|
gfxImageSurface* img = static_cast<gfxImageSurface*>(curSurface.get());
|
|
|
|
if (mWindow.window ||
|
|
|
|
mWsInfo.depth != gfxUtils::ImageFormatToDepth(img->Format()) ||
|
|
|
|
mWsInfo.colormap) {
|
|
|
|
mWindow.window = nsnull;
|
|
|
|
mWsInfo.depth = gfxUtils::ImageFormatToDepth(img->Format());
|
|
|
|
mWsInfo.colormap = 0;
|
|
|
|
needWindowUpdate = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
2010-10-25 10:57:13 -07:00
|
|
|
#endif // MAEMO
|
|
|
|
#endif // MOZ_X11
|
|
|
|
#ifdef XP_WIN
|
|
|
|
HDC dc = NULL;
|
|
|
|
|
|
|
|
if (curSurface) {
|
|
|
|
NS_ASSERTION(SharedDIBSurface::IsSharedDIBSurface(curSurface),
|
|
|
|
"Expected (SharedDIB) image surface.");
|
|
|
|
|
|
|
|
SharedDIBSurface* dibsurf = static_cast<SharedDIBSurface*>(curSurface.get());
|
|
|
|
dc = dibsurf->GetHDC();
|
|
|
|
}
|
|
|
|
if (mWindow.window != dc) {
|
|
|
|
mWindow.window = dc;
|
|
|
|
needWindowUpdate = true;
|
|
|
|
}
|
|
|
|
#endif // XP_WIN
|
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
if (!needWindowUpdate) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-10-27 06:09:37 -07:00
|
|
|
#ifndef XP_WIN
|
|
|
|
// On Windows, we translate the device context, in order for the window
|
|
|
|
// origin to be correct.
|
2010-09-15 09:02:49 -07:00
|
|
|
mWindow.x = mWindow.y = 0;
|
2010-10-27 06:09:37 -07:00
|
|
|
#endif
|
|
|
|
|
2010-11-05 07:40:55 -07:00
|
|
|
if (IsVisible()) {
|
|
|
|
// The clip rect is relative to drawable top-left.
|
|
|
|
nsIntRect clipRect;
|
2010-09-15 09:02:49 -07:00
|
|
|
|
2010-11-05 07:40:55 -07:00
|
|
|
// Don't ask the plugin to draw outside the drawable. The clip rect
|
|
|
|
// is in plugin coordinates, not window coordinates.
|
|
|
|
// This also ensures that the unsigned clip rectangle offsets won't be -ve.
|
|
|
|
clipRect.SetRect(0, 0, mWindow.width, mWindow.height);
|
|
|
|
|
|
|
|
mWindow.clipRect.left = 0;
|
|
|
|
mWindow.clipRect.top = 0;
|
|
|
|
mWindow.clipRect.right = clipRect.XMost();
|
|
|
|
mWindow.clipRect.bottom = clipRect.YMost();
|
|
|
|
}
|
2010-09-15 09:02:49 -07:00
|
|
|
|
2010-10-25 10:57:13 -07:00
|
|
|
#ifdef XP_WIN
|
|
|
|
// Windowless plugins on Windows need a WM_WINDOWPOSCHANGED event to update
|
|
|
|
// their location... or at least Flash does: Silverlight uses the
|
|
|
|
// window.x/y passed to NPP_SetWindow
|
|
|
|
|
|
|
|
if (mPluginIface->event) {
|
|
|
|
WINDOWPOS winpos = {
|
|
|
|
0, 0,
|
2010-10-27 06:09:37 -07:00
|
|
|
mWindow.x, mWindow.y,
|
2010-10-25 10:57:13 -07:00
|
|
|
mWindow.width, mWindow.height
|
|
|
|
};
|
|
|
|
NPEvent pluginEvent = {
|
|
|
|
WM_WINDOWPOSCHANGED, 0,
|
|
|
|
(LPARAM) &winpos
|
|
|
|
};
|
|
|
|
mPluginIface->event(&mData, &pluginEvent);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
if (mPluginIface->setwindow) {
|
|
|
|
mPluginIface->setwindow(&mData, &mWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::PaintRectToPlatformSurface(const nsIntRect& aRect,
|
|
|
|
gfxASurface* aSurface)
|
|
|
|
{
|
|
|
|
UpdateWindowAttributes();
|
|
|
|
#ifdef MOZ_X11
|
2010-10-04 23:15:49 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6)
|
2010-09-23 16:06:41 -07:00
|
|
|
// On maemo5 we do support Image rendering NPAPI
|
|
|
|
if (mMaemoImageRendering &&
|
|
|
|
aSurface->GetType() == gfxASurface::SurfaceTypeImage) {
|
|
|
|
mPendingPluginCall = PR_TRUE;
|
|
|
|
gfxImageSurface* image = static_cast<gfxImageSurface*>(aSurface);
|
|
|
|
NPImageExpose imgExp;
|
|
|
|
imgExp.depth = gfxUtils::ImageFormatToDepth(image->Format());
|
|
|
|
imgExp.x = aRect.x;
|
|
|
|
imgExp.y = aRect.y;
|
|
|
|
imgExp.width = aRect.width;
|
|
|
|
imgExp.height = aRect.height;
|
|
|
|
imgExp.stride = image->Stride();
|
|
|
|
imgExp.data = (char *)image->Data();
|
|
|
|
imgExp.dataSize.width = image->Width();
|
|
|
|
imgExp.dataSize.height = image->Height();
|
|
|
|
imgExp.translateX = 0;
|
|
|
|
imgExp.translateY = 0;
|
|
|
|
imgExp.scaleX = 1;
|
|
|
|
imgExp.scaleY = 1;
|
|
|
|
NPEvent pluginEvent;
|
|
|
|
XGraphicsExposeEvent& exposeEvent = pluginEvent.xgraphicsexpose;
|
|
|
|
exposeEvent.type = GraphicsExpose;
|
|
|
|
exposeEvent.display = 0;
|
|
|
|
// Store imageExpose structure pointer as drawable member
|
|
|
|
exposeEvent.drawable = (Drawable)&imgExp;
|
|
|
|
exposeEvent.x = imgExp.x;
|
|
|
|
exposeEvent.y = imgExp.y;
|
|
|
|
exposeEvent.width = imgExp.width;
|
|
|
|
exposeEvent.height = imgExp.height;
|
|
|
|
exposeEvent.count = 0;
|
|
|
|
// information not set:
|
|
|
|
exposeEvent.serial = 0;
|
|
|
|
exposeEvent.send_event = False;
|
|
|
|
exposeEvent.major_code = 0;
|
|
|
|
exposeEvent.minor_code = 0;
|
|
|
|
mPluginIface->event(&mData, reinterpret_cast<void*>(&exposeEvent));
|
|
|
|
mPendingPluginCall = PR_FALSE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2010-09-15 09:02:49 -07:00
|
|
|
NS_ASSERTION(aSurface->GetType() == gfxASurface::SurfaceTypeXlib,
|
|
|
|
"Non supported platform surface type");
|
|
|
|
|
2010-09-21 09:03:16 -07:00
|
|
|
mPendingPluginCall = true;
|
2010-09-15 09:02:49 -07:00
|
|
|
NPEvent pluginEvent;
|
|
|
|
XGraphicsExposeEvent& exposeEvent = pluginEvent.xgraphicsexpose;
|
|
|
|
exposeEvent.type = GraphicsExpose;
|
|
|
|
exposeEvent.display = mWsInfo.display;
|
|
|
|
exposeEvent.drawable = static_cast<gfxXlibSurface*>(aSurface)->XDrawable();
|
|
|
|
exposeEvent.x = aRect.x;
|
|
|
|
exposeEvent.y = aRect.y;
|
|
|
|
exposeEvent.width = aRect.width;
|
|
|
|
exposeEvent.height = aRect.height;
|
|
|
|
exposeEvent.count = 0;
|
|
|
|
// information not set:
|
|
|
|
exposeEvent.serial = 0;
|
|
|
|
exposeEvent.send_event = False;
|
|
|
|
exposeEvent.major_code = 0;
|
|
|
|
exposeEvent.minor_code = 0;
|
|
|
|
mPluginIface->event(&mData, reinterpret_cast<void*>(&exposeEvent));
|
2010-09-21 09:03:16 -07:00
|
|
|
mPendingPluginCall = false;
|
2010-10-25 10:57:13 -07:00
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
NS_ASSERTION(SharedDIBSurface::IsSharedDIBSurface(aSurface),
|
|
|
|
"Expected (SharedDIB) image surface.");
|
|
|
|
|
|
|
|
mPendingPluginCall = true;
|
2010-10-27 06:09:37 -07:00
|
|
|
|
|
|
|
// This rect is in the window coordinate space. aRect is in the plugin
|
|
|
|
// coordinate space.
|
2010-10-25 10:57:13 -07:00
|
|
|
RECT rect = {
|
2010-10-27 06:09:37 -07:00
|
|
|
mWindow.x + aRect.x,
|
|
|
|
mWindow.y + aRect.y,
|
|
|
|
mWindow.x + aRect.x + aRect.width,
|
|
|
|
mWindow.y + aRect.y + aRect.height
|
2010-10-25 10:57:13 -07:00
|
|
|
};
|
|
|
|
NPEvent paintEvent = {
|
|
|
|
WM_PAINT,
|
|
|
|
uintptr_t(mWindow.window),
|
|
|
|
uintptr_t(&rect)
|
|
|
|
};
|
2010-10-27 06:09:37 -07:00
|
|
|
::SetViewportOrgEx((HDC) mWindow.window, -mWindow.x, -mWindow.y, NULL);
|
|
|
|
|
2010-10-25 10:57:13 -07:00
|
|
|
mPluginIface->event(&mData, reinterpret_cast<void*>(&paintEvent));
|
|
|
|
mPendingPluginCall = false;
|
|
|
|
return;
|
2010-09-15 09:02:49 -07:00
|
|
|
#endif
|
2010-10-25 10:57:13 -07:00
|
|
|
|
|
|
|
NS_RUNTIMEABORT("Surface type not implemented.");
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::PaintRectToSurface(const nsIntRect& aRect,
|
|
|
|
gfxASurface* aSurface,
|
|
|
|
const gfxRGBA& aColor)
|
|
|
|
{
|
|
|
|
// Render using temporary X surface, with copy to image surface
|
|
|
|
nsIntRect plPaintRect(aRect);
|
|
|
|
nsRefPtr<gfxASurface> renderSurface = aSurface;
|
|
|
|
#ifdef MOZ_X11
|
2010-12-06 16:50:53 -08:00
|
|
|
if (mIsTransparent && (GetQuirks() & PluginModuleChild::QUIRK_FLASH_EXPOSE_COORD_TRANSLATION)) {
|
2010-09-15 09:02:49 -07:00
|
|
|
// Work around a bug in Flash up to 10.1 d51 at least, where expose event
|
|
|
|
// top left coordinates within the plugin-rect and not at the drawable
|
|
|
|
// origin are misinterpreted. (We can move the top left coordinate
|
|
|
|
// provided it is within the clipRect.), see bug 574583
|
|
|
|
plPaintRect.SetRect(0, 0, aRect.XMost(), aRect.YMost());
|
|
|
|
}
|
|
|
|
if (renderSurface->GetType() != gfxASurface::SurfaceTypeXlib) {
|
|
|
|
// On X11 we can paint to non Xlib surface only with HelperSurface
|
2010-10-04 23:15:49 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6)
|
2010-09-23 16:06:41 -07:00
|
|
|
// Don't use mHelperSurface if surface is image and mMaemoImageRendering is TRUE
|
|
|
|
if (!mMaemoImageRendering ||
|
|
|
|
renderSurface->GetType() != gfxASurface::SurfaceTypeImage)
|
|
|
|
#endif
|
2010-09-15 09:02:49 -07:00
|
|
|
renderSurface = mHelperSurface;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (mIsTransparent) {
|
|
|
|
// Clear surface content for transparent rendering
|
|
|
|
nsRefPtr<gfxContext> ctx = new gfxContext(renderSurface);
|
|
|
|
ctx->SetColor(aColor);
|
|
|
|
ctx->SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
ctx->Rectangle(GfxFromNsRect(plPaintRect));
|
|
|
|
ctx->Fill();
|
|
|
|
}
|
|
|
|
|
|
|
|
PaintRectToPlatformSurface(plPaintRect, renderSurface);
|
|
|
|
|
|
|
|
if (renderSurface != aSurface) {
|
|
|
|
// Copy helper surface content to target
|
|
|
|
nsRefPtr<gfxContext> ctx = new gfxContext(aSurface);
|
|
|
|
ctx->SetSource(renderSurface);
|
|
|
|
ctx->SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
ctx->Rectangle(GfxFromNsRect(aRect));
|
|
|
|
ctx->Fill();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::PaintRectWithAlphaExtraction(const nsIntRect& aRect,
|
|
|
|
gfxASurface* aSurface)
|
|
|
|
{
|
|
|
|
// Paint onto black image
|
2010-09-21 09:03:16 -07:00
|
|
|
bool needImageSurface = true;
|
2010-09-15 09:02:49 -07:00
|
|
|
nsRefPtr<gfxImageSurface> blackImage;
|
|
|
|
gfxIntSize clipSize(aRect.width, aRect.height);
|
|
|
|
gfxPoint deviceOffset(-aRect.x, -aRect.y);
|
|
|
|
// Try to re-use existing image surface, and avoid one copy
|
|
|
|
if (aSurface->GetType() == gfxASurface::SurfaceTypeImage) {
|
|
|
|
gfxImageSurface *surface = static_cast<gfxImageSurface*>(aSurface);
|
|
|
|
if (surface->Format() == gfxASurface::ImageFormatARGB32) {
|
2010-09-21 09:03:16 -07:00
|
|
|
needImageSurface = false;
|
2010-09-15 09:02:49 -07:00
|
|
|
blackImage = surface->GetSubimage(GfxFromNsRect(aRect));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// otherwise create new helper surface
|
|
|
|
if (needImageSurface) {
|
|
|
|
blackImage = new gfxImageSurface(clipSize, gfxASurface::ImageFormatARGB32);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Paint to black image
|
|
|
|
blackImage->SetDeviceOffset(deviceOffset);
|
|
|
|
PaintRectToSurface(aRect, blackImage, gfxRGBA(0.0, 0.0, 0.0));
|
|
|
|
|
|
|
|
// Paint onto white image
|
|
|
|
nsRefPtr<gfxImageSurface> whiteImage =
|
|
|
|
new gfxImageSurface(clipSize, gfxASurface::ImageFormatRGB24);
|
|
|
|
|
|
|
|
whiteImage->SetDeviceOffset(deviceOffset);
|
|
|
|
PaintRectToSurface(aRect, whiteImage, gfxRGBA(1.0, 1.0, 1.0));
|
|
|
|
|
|
|
|
// Extract Alpha from black and white image and store to black Image
|
|
|
|
gfxRect rect(aRect.x, aRect.y, aRect.width, aRect.height);
|
|
|
|
if (!gfxAlphaRecovery::RecoverAlpha(blackImage, whiteImage, nsnull)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (needImageSurface) {
|
|
|
|
nsRefPtr<gfxContext> ctx = new gfxContext(aSurface);
|
|
|
|
ctx->SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
ctx->SetSource(blackImage);
|
|
|
|
ctx->Rectangle(GfxFromNsRect(aRect));
|
|
|
|
ctx->Fill();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-21 09:03:16 -07:00
|
|
|
bool
|
2010-09-15 09:02:49 -07:00
|
|
|
PluginInstanceChild::ShowPluginFrame()
|
|
|
|
{
|
|
|
|
if (mPendingPluginCall) {
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!EnsureCurrentBuffer()) {
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make expose rect not bigger than clip rect
|
|
|
|
mAccumulatedInvalidRect.IntersectRect(mAccumulatedInvalidRect,
|
|
|
|
nsIntRect(mWindow.clipRect.left, mWindow.clipRect.top,
|
|
|
|
mWindow.clipRect.right - mWindow.clipRect.left,
|
|
|
|
mWindow.clipRect.bottom - mWindow.clipRect.top));
|
|
|
|
|
2010-09-21 09:03:16 -07:00
|
|
|
// Clear accRect here to be able to pass
|
|
|
|
// test_invalidate_during_plugin_paint test
|
2010-09-15 09:02:49 -07:00
|
|
|
nsIntRect rect = mAccumulatedInvalidRect;
|
|
|
|
mAccumulatedInvalidRect.Empty();
|
|
|
|
|
2010-10-27 06:09:15 -07:00
|
|
|
if (!ReadbackDifferenceRect(rect)) {
|
2010-09-15 09:02:49 -07:00
|
|
|
// Just repaint whole plugin, because we cannot read back from Shmem which is owned by another process
|
|
|
|
rect.SetRect(0, 0, mWindow.width, mWindow.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mDoAlphaExtraction) {
|
|
|
|
PaintRectWithAlphaExtraction(rect, mCurrentSurface);
|
|
|
|
} else {
|
|
|
|
PaintRectToSurface(rect, mCurrentSurface, gfxRGBA(0.0, 0.0, 0.0, 0.0));
|
|
|
|
}
|
|
|
|
|
2010-11-11 00:20:03 -08:00
|
|
|
NPRect r = { (uint16_t)rect.y, (uint16_t)rect.x,
|
|
|
|
(uint16_t)rect.YMost(), (uint16_t)rect.XMost() };
|
2010-09-15 09:02:49 -07:00
|
|
|
SurfaceDescriptor currSurf;
|
|
|
|
#ifdef MOZ_X11
|
|
|
|
if (mCurrentSurface->GetType() == gfxASurface::SurfaceTypeXlib) {
|
|
|
|
gfxXlibSurface *xsurf = static_cast<gfxXlibSurface*>(mCurrentSurface.get());
|
|
|
|
currSurf = SurfaceDescriptorX11(xsurf->XDrawable(), xsurf->XRenderFormat()->id,
|
|
|
|
mCurrentSurface->GetSize());
|
|
|
|
// Need to sync all pending x-paint requests
|
|
|
|
// before giving drawable to another process
|
|
|
|
XSync(mWsInfo.display, False);
|
|
|
|
} else
|
2010-10-25 10:57:13 -07:00
|
|
|
#endif
|
|
|
|
#ifdef XP_WIN
|
|
|
|
if (SharedDIBSurface::IsSharedDIBSurface(mCurrentSurface)) {
|
|
|
|
base::SharedMemoryHandle handle = NULL;
|
|
|
|
SharedDIBSurface* s = static_cast<SharedDIBSurface*>(mCurrentSurface.get());
|
|
|
|
s->ShareToProcess(PluginModuleChild::current()->OtherProcess(), &handle);
|
2010-10-27 06:03:09 -07:00
|
|
|
currSurf = SurfaceDescriptorWin(handle, mCurrentSurface->GetSize(), mIsTransparent);
|
2010-10-25 10:57:13 -07:00
|
|
|
s->Flush();
|
|
|
|
} else
|
2010-09-15 09:02:49 -07:00
|
|
|
#endif
|
|
|
|
if (gfxSharedImageSurface::IsSharedImage(mCurrentSurface)) {
|
|
|
|
currSurf = static_cast<gfxSharedImageSurface*>(mCurrentSurface.get())->GetShmem();
|
|
|
|
} else {
|
|
|
|
NS_RUNTIMEABORT("Surface type is not remotable");
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
2010-10-14 11:14:23 -07:00
|
|
|
|
|
|
|
// Unused, except to possibly return a shmem to us
|
|
|
|
SurfaceDescriptor returnSurf;
|
|
|
|
|
|
|
|
if (!SendShow(r, currSurf, &returnSurf)) {
|
2010-09-21 09:03:16 -07:00
|
|
|
return false;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<gfxASurface> tmp = mCurrentSurface;
|
|
|
|
mCurrentSurface = mBackSurface;
|
|
|
|
mBackSurface = tmp;
|
|
|
|
// Outdated back surface... not usable anymore due to changed plugin size.
|
|
|
|
// Dropping obsolete surface
|
|
|
|
if (mCurrentSurface && mBackSurface &&
|
|
|
|
mCurrentSurface->GetSize() != mBackSurface->GetSize()) {
|
|
|
|
mCurrentSurface = nsnull;
|
|
|
|
}
|
|
|
|
mSurfaceDifferenceRect = rect;
|
2010-09-21 09:03:16 -07:00
|
|
|
return true;
|
2010-09-15 09:02:49 -07:00
|
|
|
}
|
|
|
|
|
2010-10-27 06:09:15 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceChild::ReadbackDifferenceRect(const nsIntRect& rect)
|
|
|
|
{
|
|
|
|
if (!mBackSurface)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// We can read safely from XSurface and SharedDIBSurface, because
|
|
|
|
// PluginHost is not able to modify that surface
|
|
|
|
#if defined(MOZ_X11)
|
|
|
|
if (mBackSurface->GetType() != gfxASurface::SurfaceTypeXlib)
|
|
|
|
return false;
|
|
|
|
#elif defined(XP_WIN)
|
|
|
|
if (!SharedDIBSurface::IsSharedDIBSurface(mBackSurface))
|
|
|
|
return false;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (mSurfaceDifferenceRect.IsEmpty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Read back previous content
|
|
|
|
nsRefPtr<gfxContext> ctx = new gfxContext(mCurrentSurface);
|
|
|
|
ctx->SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
ctx->SetSource(mBackSurface);
|
|
|
|
// Subtract from mSurfaceDifferenceRect area which is overlapping with rect
|
|
|
|
nsIntRegion result;
|
|
|
|
result.Sub(mSurfaceDifferenceRect, nsIntRegion(rect));
|
|
|
|
nsIntRegionRectIterator iter(result);
|
|
|
|
const nsIntRect* r;
|
|
|
|
while ((r = iter.Next()) != nsnull) {
|
|
|
|
ctx->Rectangle(GfxFromNsRect(*r));
|
|
|
|
}
|
|
|
|
ctx->Fill();
|
2010-10-27 12:27:33 -07:00
|
|
|
|
|
|
|
return true;
|
2010-10-27 06:09:15 -07:00
|
|
|
}
|
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
void
|
|
|
|
PluginInstanceChild::InvalidateRectDelayed(void)
|
|
|
|
{
|
2010-11-15 06:18:33 -08:00
|
|
|
if (!mCurrentInvalidateTask) {
|
2010-09-15 09:02:49 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mCurrentInvalidateTask = nsnull;
|
2010-11-15 06:18:33 -08:00
|
|
|
if (mAccumulatedInvalidRect.IsEmpty() || !IsVisible()) {
|
2010-09-15 09:02:49 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ShowPluginFrame()) {
|
|
|
|
AsyncShowPluginFrame();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::AsyncShowPluginFrame(void)
|
|
|
|
{
|
2010-11-05 07:40:55 -07:00
|
|
|
if (mCurrentInvalidateTask || !IsVisible()) {
|
2010-09-15 09:02:49 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mCurrentInvalidateTask =
|
|
|
|
NewRunnableMethod(this, &PluginInstanceChild::InvalidateRectDelayed);
|
|
|
|
MessageLoop::current()->PostTask(FROM_HERE, mCurrentInvalidateTask);
|
|
|
|
}
|
|
|
|
|
2010-01-04 13:46:34 -08:00
|
|
|
void
|
|
|
|
PluginInstanceChild::InvalidateRect(NPRect* aInvalidRect)
|
2009-11-13 12:20:03 -08:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aInvalidRect, "Null pointer!");
|
|
|
|
|
|
|
|
#ifdef OS_WIN
|
2009-12-01 13:05:26 -08:00
|
|
|
// Invalidate and draw locally for windowed plugins.
|
|
|
|
if (mWindow.type == NPWindowTypeWindow) {
|
|
|
|
NS_ASSERTION(IsWindow(mPluginWindowHWND), "Bad window?!");
|
|
|
|
RECT rect = { aInvalidRect->left, aInvalidRect->top,
|
|
|
|
aInvalidRect->right, aInvalidRect->bottom };
|
2010-01-04 14:41:34 -08:00
|
|
|
::InvalidateRect(mPluginWindowHWND, &rect, FALSE);
|
2010-01-04 13:46:34 -08:00
|
|
|
return;
|
2009-12-01 13:05:26 -08:00
|
|
|
}
|
2009-11-13 12:20:03 -08:00
|
|
|
#endif
|
2009-11-13 13:19:33 -08:00
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
if (mLayersRendering) {
|
|
|
|
nsIntRect r(aInvalidRect->left, aInvalidRect->top,
|
|
|
|
aInvalidRect->right - aInvalidRect->left,
|
|
|
|
aInvalidRect->bottom - aInvalidRect->top);
|
|
|
|
|
|
|
|
mAccumulatedInvalidRect.UnionRect(r, mAccumulatedInvalidRect);
|
|
|
|
// If we are able to paint and invalidate sent, then reset
|
|
|
|
// accumulated rectangle
|
|
|
|
AsyncShowPluginFrame();
|
|
|
|
return;
|
|
|
|
}
|
2010-01-04 13:46:34 -08:00
|
|
|
SendNPN_InvalidateRect(*aInvalidRect);
|
2009-11-13 12:20:03 -08:00
|
|
|
}
|
2010-01-15 12:35:57 -08:00
|
|
|
|
2010-01-19 19:13:24 -08:00
|
|
|
uint32_t
|
|
|
|
PluginInstanceChild::ScheduleTimer(uint32_t interval, bool repeat,
|
|
|
|
TimerFunc func)
|
|
|
|
{
|
|
|
|
ChildTimer* t = new ChildTimer(this, interval, repeat, func);
|
|
|
|
if (0 == t->ID()) {
|
|
|
|
delete t;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
mTimers.AppendElement(t);
|
|
|
|
return t->ID();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceChild::UnscheduleTimer(uint32_t id)
|
|
|
|
{
|
|
|
|
if (0 == id)
|
|
|
|
return;
|
|
|
|
|
2010-02-03 14:17:09 -08:00
|
|
|
mTimers.RemoveElement(id, ChildTimer::IDComparator());
|
2010-01-19 19:13:24 -08:00
|
|
|
}
|
|
|
|
|
2010-03-25 11:25:38 -07:00
|
|
|
void
|
|
|
|
PluginInstanceChild::AsyncCall(PluginThreadCallback aFunc, void* aUserData)
|
|
|
|
{
|
|
|
|
ChildAsyncCall* task = new ChildAsyncCall(this, aFunc, aUserData);
|
|
|
|
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(mAsyncCallMutex);
|
|
|
|
mPendingAsyncCalls.AppendElement(task);
|
|
|
|
}
|
2010-05-10 21:18:00 -07:00
|
|
|
ProcessChild::message_loop()->PostTask(FROM_HERE, task);
|
2010-03-25 11:25:38 -07:00
|
|
|
}
|
|
|
|
|
2010-02-24 13:14:13 -08:00
|
|
|
static PLDHashOperator
|
|
|
|
InvalidateObject(DeletingObjectEntry* e, void* userArg)
|
|
|
|
{
|
|
|
|
NPObject* o = e->GetKey();
|
|
|
|
if (!e->mDeleted && o->_class && o->_class->invalidate)
|
|
|
|
o->_class->invalidate(o);
|
|
|
|
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PLDHashOperator
|
|
|
|
DeleteObject(DeletingObjectEntry* e, void* userArg)
|
|
|
|
{
|
|
|
|
NPObject* o = e->GetKey();
|
|
|
|
if (!e->mDeleted) {
|
|
|
|
e->mDeleted = true;
|
|
|
|
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
{
|
|
|
|
int32_t refcnt = o->referenceCount;
|
|
|
|
while (refcnt) {
|
|
|
|
--refcnt;
|
|
|
|
NS_LOG_RELEASE(o, refcnt, "NPObject");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PluginModuleChild::DeallocNPObject(o);
|
|
|
|
}
|
|
|
|
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
bool
|
|
|
|
PluginInstanceChild::AnswerNPP_Destroy(NPError* aResult)
|
|
|
|
{
|
2010-02-24 13:14:13 -08:00
|
|
|
PLUGIN_LOG_DEBUG_METHOD;
|
|
|
|
AssertPluginThread();
|
|
|
|
|
2010-10-21 14:52:48 -07:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
SetProp(mPluginWindowHWND, kPluginIgnoreSubclassProperty, (HANDLE)1);
|
|
|
|
#endif
|
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
if (mBackSurface) {
|
|
|
|
// Get last surface back, and drop it
|
|
|
|
SurfaceDescriptor temp = null_t();
|
|
|
|
NPRect r = { 0, 0, 1, 1 };
|
|
|
|
SendShow(r, temp, &temp);
|
|
|
|
}
|
|
|
|
if (gfxSharedImageSurface::IsSharedImage(mCurrentSurface))
|
|
|
|
DeallocShmem(static_cast<gfxSharedImageSurface*>(mCurrentSurface.get())->GetShmem());
|
|
|
|
if (gfxSharedImageSurface::IsSharedImage(mBackSurface))
|
|
|
|
DeallocShmem(static_cast<gfxSharedImageSurface*>(mBackSurface.get())->GetShmem());
|
|
|
|
mCurrentSurface = nsnull;
|
|
|
|
mBackSurface = nsnull;
|
|
|
|
|
2010-11-08 18:49:00 -08:00
|
|
|
InfallibleTArray<PBrowserStreamChild*> streams;
|
2010-03-06 13:03:05 -08:00
|
|
|
ManagedPBrowserStreamChild(streams);
|
|
|
|
|
|
|
|
// First make sure none of these streams become deleted
|
|
|
|
for (PRUint32 i = 0; i < streams.Length(); ) {
|
|
|
|
if (static_cast<BrowserStreamChild*>(streams[i])->InstanceDying())
|
|
|
|
++i;
|
|
|
|
else
|
|
|
|
streams.RemoveElementAt(i);
|
|
|
|
}
|
|
|
|
for (PRUint32 i = 0; i < streams.Length(); ++i)
|
|
|
|
static_cast<BrowserStreamChild*>(streams[i])->FinishDelivery();
|
|
|
|
|
2010-02-03 14:17:09 -08:00
|
|
|
mTimers.Clear();
|
2010-09-15 09:02:49 -07:00
|
|
|
if (mCurrentInvalidateTask) {
|
|
|
|
mCurrentInvalidateTask->Cancel();
|
|
|
|
mCurrentInvalidateTask = nsnull;
|
|
|
|
}
|
2010-12-05 13:57:33 -08:00
|
|
|
if (mCurrentAsyncSetWindowTask) {
|
|
|
|
mCurrentAsyncSetWindowTask->Cancel();
|
|
|
|
mCurrentAsyncSetWindowTask = nsnull;
|
|
|
|
}
|
2010-01-19 19:13:24 -08:00
|
|
|
|
2010-12-07 07:05:56 -08:00
|
|
|
// NPP_Destroy() should be a synchronization point for plugin threads
|
|
|
|
// calling NPN_AsyncCall: after this function returns, they are no longer
|
|
|
|
// allowed to make async calls on this instance.
|
2010-02-24 13:14:13 -08:00
|
|
|
PluginModuleChild::current()->NPP_Destroy(this);
|
|
|
|
mData.ndata = 0;
|
|
|
|
|
|
|
|
mDeletingHash = new nsTHashtable<DeletingObjectEntry>;
|
|
|
|
mDeletingHash->Init();
|
|
|
|
PluginModuleChild::current()->FindNPObjectsForInstance(this);
|
|
|
|
|
|
|
|
mDeletingHash->EnumerateEntries(InvalidateObject, NULL);
|
|
|
|
mDeletingHash->EnumerateEntries(DeleteObject, NULL);
|
2010-01-15 12:35:57 -08:00
|
|
|
|
2010-02-20 13:59:40 -08:00
|
|
|
// Null out our cached actors as they should have been killed in the
|
|
|
|
// PluginInstanceDestroyed call above.
|
|
|
|
mCachedWindowActor = nsnull;
|
|
|
|
mCachedElementActor = nsnull;
|
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
SharedSurfaceRelease();
|
2010-03-22 20:06:35 -07:00
|
|
|
DestroyWinlessPopupSurrogate();
|
2010-05-06 09:40:26 -07:00
|
|
|
UnhookWinlessFlashThrottle();
|
2010-12-09 06:54:26 -08:00
|
|
|
DestroyPluginWindow();
|
2010-01-15 12:35:57 -08:00
|
|
|
#endif
|
|
|
|
|
2010-12-07 07:05:56 -08:00
|
|
|
// Pending async calls are discarded, not delivered. This matches the
|
|
|
|
// in-process behavior.
|
|
|
|
for (PRUint32 i = 0; i < mPendingAsyncCalls.Length(); ++i)
|
|
|
|
mPendingAsyncCalls[i]->Cancel();
|
|
|
|
|
|
|
|
mPendingAsyncCalls.Clear();
|
|
|
|
|
2010-02-24 13:14:13 -08:00
|
|
|
return true;
|
2010-01-15 12:35:57 -08:00
|
|
|
}
|