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 "PluginInstanceParent.h"
|
2009-09-23 00:12:52 -07:00
|
|
|
|
2009-09-09 07:04:09 -07:00
|
|
|
#include "BrowserStreamParent.h"
|
2009-09-23 00:12:52 -07:00
|
|
|
#include "PluginModuleParent.h"
|
2009-09-21 07:51:35 -07:00
|
|
|
#include "PluginStreamParent.h"
|
2009-09-08 14:22:50 -07:00
|
|
|
#include "StreamNotifyParent.h"
|
2009-09-23 00:12:52 -07:00
|
|
|
#include "npfunctions.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2010-04-26 22:43:03 -07:00
|
|
|
#include "mozilla/unused.h"
|
2010-09-15 09:02:49 -07:00
|
|
|
#include "gfxASurface.h"
|
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "gfxPlatform.h"
|
|
|
|
#include "gfxSharedImageSurface.h"
|
|
|
|
#ifdef MOZ_X11
|
|
|
|
#include "gfxXlibSurface.h"
|
|
|
|
#endif
|
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "gfxColor.h"
|
|
|
|
#include "gfxUtils.h"
|
2009-09-23 00:12:52 -07:00
|
|
|
|
2009-12-14 16:28:51 -08:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <windowsx.h>
|
2010-10-25 10:57:13 -07:00
|
|
|
#include "mozilla/gfx/SharedDIBSurface.h"
|
|
|
|
|
|
|
|
using mozilla::gfx::SharedDIBSurface;
|
2010-01-26 13:40:15 -08:00
|
|
|
|
|
|
|
// Plugin focus event for widget.
|
|
|
|
extern const PRUnichar* kOOPPPluginFocusEventId;
|
|
|
|
UINT gOOPPPluginFocusEvent =
|
|
|
|
RegisterWindowMessage(kOOPPPluginFocusEventId);
|
2010-05-18 09:43:45 -07:00
|
|
|
extern const PRUnichar* kFlashFullscreenClass;
|
2010-02-09 14:34:38 -08:00
|
|
|
UINT gOOPPSpinNativeLoopEvent =
|
|
|
|
RegisterWindowMessage(L"SyncChannel Spin Inner Loop Message");
|
|
|
|
UINT gOOPPStopNativeLoopEvent =
|
|
|
|
RegisterWindowMessage(L"SyncChannel Stop Inner Loop Message");
|
2010-03-23 19:26:10 -07:00
|
|
|
#elif defined(MOZ_WIDGET_GTK2)
|
|
|
|
#include <gdk/gdk.h>
|
2010-03-26 13:07:37 -07:00
|
|
|
#elif defined(XP_MACOSX)
|
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
|
|
#endif // defined(XP_MACOSX)
|
2009-12-14 16:28:51 -08:00
|
|
|
|
2009-09-23 00:12:52 -07:00
|
|
|
using namespace mozilla::plugins;
|
|
|
|
|
|
|
|
PluginInstanceParent::PluginInstanceParent(PluginModuleParent* parent,
|
|
|
|
NPP npp,
|
2010-04-20 07:52:19 -07:00
|
|
|
const nsCString& aMimeType,
|
2009-09-23 00:12:52 -07:00
|
|
|
const NPNetscapeFuncs* npniface)
|
2010-01-26 13:40:15 -08:00
|
|
|
: mParent(parent)
|
|
|
|
, mNPP(npp)
|
|
|
|
, mNPNIface(npniface)
|
|
|
|
, mWindowType(NPWindowTypeWindow)
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
, mPluginHWND(NULL)
|
|
|
|
, mPluginWndProc(NULL)
|
2010-03-24 14:49:05 -07:00
|
|
|
, mNestedEventState(false)
|
2010-01-26 13:40:15 -08:00
|
|
|
#endif // defined(XP_WIN)
|
2010-04-20 07:52:19 -07:00
|
|
|
, mQuirks(0)
|
2010-03-26 13:07:37 -07:00
|
|
|
#if defined(XP_MACOSX)
|
|
|
|
, mShWidth(0)
|
|
|
|
, mShHeight(0)
|
2010-04-20 07:52:19 -07:00
|
|
|
, mShColorSpace(nsnull)
|
|
|
|
, mDrawingModel(NPDrawingModelCoreGraphics)
|
|
|
|
, mIOSurface(nsnull)
|
2010-03-26 13:07:37 -07:00
|
|
|
#endif
|
2009-12-01 13:05:26 -08:00
|
|
|
{
|
2010-04-20 07:52:19 -07:00
|
|
|
InitQuirksModes(aMimeType);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceParent::InitQuirksModes(const nsCString& aMimeType)
|
|
|
|
{
|
|
|
|
#ifdef OS_MACOSX
|
|
|
|
NS_NAMED_LITERAL_CSTRING(flash, "application/x-shockwave-flash");
|
|
|
|
// Flash sends us Invalidate events so we will use those
|
|
|
|
// instead of the refresh timer.
|
|
|
|
if (!FindInReadable(flash, aMimeType)) {
|
|
|
|
mQuirks |= COREANIMATION_REFRESH_TIMER;
|
|
|
|
}
|
|
|
|
#endif
|
2009-09-23 00:12:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PluginInstanceParent::~PluginInstanceParent()
|
|
|
|
{
|
2009-12-03 12:31:01 -08:00
|
|
|
if (mNPP)
|
|
|
|
mNPP->pdata = NULL;
|
2010-01-27 16:01:44 -08:00
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
NS_ASSERTION(!(mPluginHWND || mPluginWndProc),
|
|
|
|
"Subclass was not reset correctly before the dtor was reached!");
|
|
|
|
#endif
|
2010-04-01 14:53:56 -07:00
|
|
|
#if defined(OS_MACOSX)
|
2010-05-20 12:22:41 -07:00
|
|
|
if (mShWidth != 0 && mShHeight != 0) {
|
|
|
|
DeallocShmem(mShSurface);
|
|
|
|
}
|
2010-04-20 07:52:19 -07:00
|
|
|
if (mShColorSpace)
|
|
|
|
::CGColorSpaceRelease(mShColorSpace);
|
|
|
|
if (mIOSurface)
|
|
|
|
delete mIOSurface;
|
|
|
|
if (mDrawingModel == NPDrawingModelCoreAnimation) {
|
|
|
|
mParent->RemoveFromRefreshTimer(this);
|
|
|
|
}
|
2010-04-01 14:53:56 -07:00
|
|
|
#endif
|
2009-09-23 00:12:52 -07:00
|
|
|
}
|
2009-08-18 13:20:03 -07:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::Init()
|
2010-01-15 12:35:57 -08:00
|
|
|
{
|
2010-01-15 12:35:57 -08:00
|
|
|
return !!mScriptableObjects.Init();
|
|
|
|
}
|
2010-01-19 04:00:58 -08:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
PLDHashOperator
|
|
|
|
ActorCollect(const void* aKey,
|
|
|
|
PluginScriptableObjectParent* aData,
|
|
|
|
void* aUserData)
|
|
|
|
{
|
|
|
|
nsTArray<PluginScriptableObjectParent*>* objects =
|
|
|
|
reinterpret_cast<nsTArray<PluginScriptableObjectParent*>*>(aUserData);
|
|
|
|
return objects->AppendElement(aData) ? PL_DHASH_NEXT : PL_DHASH_STOP;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
2010-01-27 16:01:44 -08:00
|
|
|
void
|
|
|
|
PluginInstanceParent::ActorDestroy(ActorDestroyReason why)
|
|
|
|
{
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
if (why == AbnormalShutdown) {
|
|
|
|
// If the plugin process crashes, this is the only
|
|
|
|
// chance we get to destroy resources.
|
|
|
|
SharedSurfaceRelease();
|
|
|
|
UnsubclassPluginWindow();
|
|
|
|
}
|
|
|
|
#endif
|
2010-11-11 05:43:54 -08:00
|
|
|
// After this method, the data backing the remote surface may no
|
|
|
|
// longer be calid. The X surface may be destroyed, or the shared
|
|
|
|
// memory backing this surface may no longer be valid. The right
|
|
|
|
// way to inform the nsObjectFrame that the surface is no longer
|
|
|
|
// valid is with an invalidate call.
|
|
|
|
if (mFrontSurface) {
|
|
|
|
mFrontSurface = NULL;
|
|
|
|
const NPRect rect = {0, 0, 0, 0};
|
|
|
|
RecvNPN_InvalidateRect(rect);
|
|
|
|
#ifdef MOZ_X11
|
|
|
|
XSync(DefaultXDisplay(), False);
|
|
|
|
#endif
|
|
|
|
}
|
2010-01-27 16:01:44 -08:00
|
|
|
}
|
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
NPError
|
|
|
|
PluginInstanceParent::Destroy()
|
|
|
|
{
|
|
|
|
NPError retval;
|
2010-02-19 14:08:16 -08:00
|
|
|
if (!CallNPP_Destroy(&retval))
|
|
|
|
retval = NPERR_GENERIC_ERROR;
|
2009-12-01 13:05:26 -08:00
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
SharedSurfaceRelease();
|
2010-01-26 13:40:15 -08:00
|
|
|
UnsubclassPluginWindow();
|
2009-12-01 13:05:26 -08:00
|
|
|
#endif
|
2010-01-15 12:35:57 -08:00
|
|
|
|
|
|
|
return retval;
|
2009-10-07 16:50:48 -07:00
|
|
|
}
|
|
|
|
|
2009-09-09 15:59:06 -07:00
|
|
|
PBrowserStreamParent*
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceParent::AllocPBrowserStream(const nsCString& url,
|
|
|
|
const uint32_t& length,
|
|
|
|
const uint32_t& lastmodified,
|
2009-10-16 16:31:53 -07:00
|
|
|
PStreamNotifyParent* 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
|
|
|
{
|
|
|
|
NS_RUNTIMEABORT("Not reachable");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-12-03 00:16:14 -08:00
|
|
|
PluginInstanceParent::DeallocPBrowserStream(PBrowserStreamParent* stream)
|
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-06-30 11:51:05 -07:00
|
|
|
|
2009-09-21 07:51:35 -07:00
|
|
|
PPluginStreamParent*
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceParent::AllocPPluginStream(const nsCString& mimeType,
|
|
|
|
const nsCString& target,
|
|
|
|
NPError* result)
|
2009-09-21 07:51:35 -07:00
|
|
|
{
|
|
|
|
return new PluginStreamParent(this, mimeType, target, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-12-03 00:16:14 -08:00
|
|
|
PluginInstanceParent::DeallocPPluginStream(PPluginStreamParent* stream)
|
2009-09-21 07:51:35 -07:00
|
|
|
{
|
|
|
|
delete stream;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-15 13:33:24 -07:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVjavascriptEnabledBool(
|
|
|
|
bool* value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
NPBool v;
|
|
|
|
*result = mNPNIface->getvalue(mNPP, NPNVjavascriptEnabledBool, &v);
|
|
|
|
*value = v;
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-09-15 13:33:24 -07:00
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-15 13:33:24 -07:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVisOfflineBool(bool* value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
NPBool v;
|
|
|
|
*result = mNPNIface->getvalue(mNPP, NPNVisOfflineBool, &v);
|
|
|
|
*value = v;
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-09-15 13:33:24 -07:00
|
|
|
}
|
|
|
|
|
2010-01-13 17:47:38 -08:00
|
|
|
bool
|
2010-01-14 07:18:34 -08:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVnetscapeWindow(NativeWindowHandle* value,
|
|
|
|
NPError* result)
|
2010-01-13 17:47:38 -08:00
|
|
|
{
|
|
|
|
#ifdef XP_WIN
|
2010-01-14 07:18:34 -08:00
|
|
|
HWND id;
|
|
|
|
#elif defined(MOZ_X11)
|
|
|
|
XID id;
|
2010-03-17 11:38:28 -07:00
|
|
|
#elif defined(XP_MACOSX)
|
|
|
|
intptr_t id;
|
2010-06-25 13:24:50 -07:00
|
|
|
#elif defined(ANDROID)
|
|
|
|
#warning Need Android impl
|
|
|
|
int id;
|
2010-01-14 07:18:34 -08:00
|
|
|
#else
|
2010-03-17 11:38:28 -07:00
|
|
|
#warning Implement me
|
2010-01-14 07:18:34 -08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
*result = mNPNIface->getvalue(mNPP, NPNVnetscapeWindow, &id);
|
|
|
|
*value = id;
|
|
|
|
return true;
|
2010-01-13 17:47:38 -08:00
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-10-07 16:50:48 -07:00
|
|
|
PluginInstanceParent::InternalGetValueForNPObject(
|
|
|
|
NPNVariable aVariable,
|
|
|
|
PPluginScriptableObjectParent** aValue,
|
|
|
|
NPError* aResult)
|
2009-09-15 13:33:24 -07:00
|
|
|
{
|
2009-10-07 16:50:48 -07:00
|
|
|
NPObject* npobject;
|
|
|
|
NPError result = mNPNIface->getvalue(mNPP, aVariable, (void*)&npobject);
|
2009-11-12 14:16:54 -08:00
|
|
|
if (result == NPERR_NO_ERROR) {
|
|
|
|
NS_ASSERTION(npobject, "Shouldn't return null and NPERR_NO_ERROR!");
|
2009-10-07 16:50:48 -07:00
|
|
|
|
2009-11-12 14:16:54 -08:00
|
|
|
PluginScriptableObjectParent* actor = GetActorForNPObject(npobject);
|
2009-10-07 16:50:48 -07:00
|
|
|
mNPNIface->releaseobject(npobject);
|
2009-11-12 14:16:54 -08:00
|
|
|
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-10-07 16:50:48 -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-09-15 13:33:24 -07:00
|
|
|
}
|
|
|
|
|
2009-10-07 16:50:48 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVWindowNPObject(
|
|
|
|
PPluginScriptableObjectParent** aValue,
|
|
|
|
NPError* aResult)
|
|
|
|
{
|
|
|
|
return InternalGetValueForNPObject(NPNVWindowNPObject, aValue, aResult);
|
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-15 13:33:24 -07:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVPluginElementNPObject(
|
2009-10-07 16:50:48 -07:00
|
|
|
PPluginScriptableObjectParent** aValue,
|
|
|
|
NPError* aResult)
|
2009-09-15 13:33:24 -07:00
|
|
|
{
|
2009-10-07 16:50:48 -07:00
|
|
|
return InternalGetValueForNPObject(NPNVPluginElementNPObject, aValue,
|
|
|
|
aResult);
|
2009-09-15 13:33:24 -07:00
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-15 13:33:24 -07:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVprivateModeBool(bool* value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
NPBool v;
|
|
|
|
*result = mNPNIface->getvalue(mNPP, NPNVprivateModeBool, &v);
|
|
|
|
*value = v;
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-09-15 13:33:24 -07:00
|
|
|
}
|
|
|
|
|
2009-09-24 19:03:59 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_SetValue_NPPVpluginWindow(
|
|
|
|
const bool& windowed, NPError* result)
|
|
|
|
{
|
|
|
|
NPBool isWindowed = windowed;
|
|
|
|
*result = mNPNIface->setvalue(mNPP, NPPVpluginWindowBool,
|
|
|
|
(void*)isWindowed);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_SetValue_NPPVpluginTransparent(
|
|
|
|
const bool& transparent, NPError* result)
|
|
|
|
{
|
|
|
|
NPBool isTransparent = transparent;
|
|
|
|
*result = mNPNIface->setvalue(mNPP, NPPVpluginTransparentBool,
|
|
|
|
(void*)isTransparent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_SetValue_NPPVpluginDrawingModel(
|
|
|
|
const int& drawingModel, NPError* result)
|
|
|
|
{
|
|
|
|
#ifdef XP_MACOSX
|
2010-06-08 21:11:48 -07:00
|
|
|
if (drawingModel == NPDrawingModelCoreAnimation ||
|
|
|
|
drawingModel == NPDrawingModelInvalidatingCoreAnimation) {
|
2010-04-20 07:52:19 -07:00
|
|
|
// We need to request CoreGraphics otherwise
|
|
|
|
// the nsObjectFrame will try to draw a CALayer
|
|
|
|
// that can not be shared across process.
|
2010-06-08 21:11:48 -07:00
|
|
|
mDrawingModel = drawingModel;
|
2010-04-20 07:52:19 -07:00
|
|
|
*result = mNPNIface->setvalue(mNPP, NPPVpluginDrawingModel,
|
|
|
|
(void*)NPDrawingModelCoreGraphics);
|
2010-06-08 21:11:48 -07:00
|
|
|
if (drawingModel == NPDrawingModelCoreAnimation &&
|
|
|
|
mQuirks & COREANIMATION_REFRESH_TIMER) {
|
2010-04-20 07:52:19 -07:00
|
|
|
mParent->AddToRefreshTimer(this);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mDrawingModel = drawingModel;
|
|
|
|
*result = mNPNIface->setvalue(mNPP, NPPVpluginDrawingModel,
|
2010-03-26 13:07:37 -07:00
|
|
|
(void*)drawingModel);
|
2010-04-20 07:52:19 -07:00
|
|
|
}
|
2010-03-26 13:07:37 -07:00
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
*result = NPERR_GENERIC_ERROR;
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_SetValue_NPPVpluginEventModel(
|
|
|
|
const int& eventModel, NPError* result)
|
|
|
|
{
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
*result = mNPNIface->setvalue(mNPP, NPPVpluginEventModel,
|
|
|
|
(void*)eventModel);
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
*result = NPERR_GENERIC_ERROR;
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
2009-09-24 19:03:59 -07:00
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-08 14:22:50 -07:00
|
|
|
PluginInstanceParent::AnswerNPN_GetURL(const nsCString& url,
|
|
|
|
const nsCString& target,
|
|
|
|
NPError* result)
|
|
|
|
{
|
2009-09-21 19:02:15 -07:00
|
|
|
*result = mNPNIface->geturl(mNPP,
|
|
|
|
NullableStringGet(url),
|
|
|
|
NullableStringGet(target));
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-09-08 14:22:50 -07:00
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-08 14:22:50 -07:00
|
|
|
PluginInstanceParent::AnswerNPN_PostURL(const nsCString& url,
|
|
|
|
const nsCString& target,
|
|
|
|
const nsCString& buffer,
|
|
|
|
const bool& file,
|
|
|
|
NPError* result)
|
|
|
|
{
|
2009-09-22 14:06:00 -07:00
|
|
|
*result = mNPNIface->posturl(mNPP, url.get(), NullableStringGet(target),
|
2009-09-08 14:22:50 -07:00
|
|
|
buffer.Length(), buffer.get(), file);
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-09-08 14:22:50 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PStreamNotifyParent*
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceParent::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-11-25 06:26:01 -08:00
|
|
|
return new StreamNotifyParent();
|
|
|
|
}
|
2009-09-08 14:22:50 -07:00
|
|
|
|
2009-11-25 06:26:01 -08:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerPStreamNotifyConstructor(PStreamNotifyParent* actor,
|
|
|
|
const nsCString& url,
|
|
|
|
const nsCString& target,
|
|
|
|
const bool& post,
|
|
|
|
const nsCString& buffer,
|
|
|
|
const bool& file,
|
|
|
|
NPError* result)
|
|
|
|
{
|
2010-01-05 09:12:30 -08:00
|
|
|
bool streamDestroyed = false;
|
|
|
|
static_cast<StreamNotifyParent*>(actor)->
|
|
|
|
SetDestructionFlag(&streamDestroyed);
|
|
|
|
|
2009-09-08 14:22:50 -07:00
|
|
|
if (!post) {
|
2009-09-21 19:02:15 -07:00
|
|
|
*result = mNPNIface->geturlnotify(mNPP,
|
|
|
|
NullableStringGet(url),
|
|
|
|
NullableStringGet(target),
|
2009-11-25 06:26:01 -08:00
|
|
|
actor);
|
2009-09-08 14:22:50 -07:00
|
|
|
}
|
|
|
|
else {
|
2009-09-21 19:02:15 -07:00
|
|
|
*result = mNPNIface->posturlnotify(mNPP,
|
|
|
|
NullableStringGet(url),
|
|
|
|
NullableStringGet(target),
|
2009-11-25 06:26:01 -08:00
|
|
|
buffer.Length(),
|
|
|
|
NullableStringGet(buffer),
|
|
|
|
file, actor);
|
2009-09-08 14:22:50 -07:00
|
|
|
}
|
2009-11-25 06:26:01 -08:00
|
|
|
|
2010-01-05 09:12:30 -08:00
|
|
|
if (!streamDestroyed) {
|
|
|
|
static_cast<StreamNotifyParent*>(actor)->ClearDestructionFlag();
|
|
|
|
if (*result != NPERR_NO_ERROR)
|
2010-04-26 22:43:03 -07:00
|
|
|
return PStreamNotifyParent::Send__delete__(actor,
|
|
|
|
NPERR_GENERIC_ERROR);
|
2010-01-05 09:12:30 -08:00
|
|
|
}
|
2009-11-25 06:26:01 -08:00
|
|
|
|
|
|
|
return true;
|
2009-09-08 14:22:50 -07:00
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-12-03 00:16:14 -08:00
|
|
|
PluginInstanceParent::DeallocPStreamNotify(PStreamNotifyParent* notifyData)
|
2009-09-08 14:22:50 -07:00
|
|
|
{
|
|
|
|
delete notifyData;
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-09-08 14:22:50 -07:00
|
|
|
}
|
|
|
|
|
2009-09-30 21:09:21 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::RecvNPN_InvalidateRect(const NPRect& rect)
|
|
|
|
{
|
|
|
|
mNPNIface->invalidaterect(mNPP, const_cast<NPRect*>(&rect));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-15 09:02:44 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::RecvShow(const NPRect& updatedRect,
|
|
|
|
const SurfaceDescriptor& newSurface,
|
|
|
|
SurfaceDescriptor* prevSurface)
|
|
|
|
{
|
2010-09-15 09:02:49 -07:00
|
|
|
nsRefPtr<gfxASurface> surface;
|
|
|
|
if (newSurface.type() == SurfaceDescriptor::TShmem) {
|
|
|
|
if (!newSurface.get_Shmem().IsReadable()) {
|
|
|
|
NS_WARNING("back surface not readable");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
surface = new gfxSharedImageSurface(newSurface.get_Shmem());
|
|
|
|
}
|
|
|
|
#ifdef MOZ_X11
|
|
|
|
else if (newSurface.type() == SurfaceDescriptor::TSurfaceDescriptorX11) {
|
|
|
|
SurfaceDescriptorX11 xdesc = newSurface.get_SurfaceDescriptorX11();
|
|
|
|
XRenderPictFormat pf;
|
|
|
|
pf.id = xdesc.xrenderPictID();
|
|
|
|
XRenderPictFormat *incFormat =
|
|
|
|
XRenderFindFormat(DefaultXDisplay(), PictFormatID, &pf, 0);
|
|
|
|
surface =
|
|
|
|
new gfxXlibSurface(DefaultScreenOfDisplay(DefaultXDisplay()),
|
|
|
|
xdesc.XID(), incFormat, xdesc.size());
|
|
|
|
}
|
|
|
|
#endif
|
2010-10-25 10:57:13 -07:00
|
|
|
#ifdef XP_WIN
|
|
|
|
else if (newSurface.type() == SurfaceDescriptor::TSurfaceDescriptorWin) {
|
|
|
|
SurfaceDescriptorWin windesc = newSurface.get_SurfaceDescriptorWin();
|
|
|
|
SharedDIBSurface* dibsurf = new SharedDIBSurface();
|
2010-10-27 06:03:09 -07:00
|
|
|
if (dibsurf->Attach(windesc.handle(), windesc.size().width, windesc.size().height, windesc.transparent()))
|
2010-10-25 10:57:13 -07:00
|
|
|
surface = dibsurf;
|
|
|
|
}
|
|
|
|
#endif
|
2010-09-15 09:02:49 -07:00
|
|
|
|
2010-10-15 11:35:46 -07:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
if (mFrontSurface &&
|
|
|
|
mFrontSurface->GetType() == gfxASurface::SurfaceTypeXlib)
|
|
|
|
XSync(DefaultXDisplay(), False);
|
|
|
|
#endif
|
|
|
|
|
2010-10-14 11:14:23 -07:00
|
|
|
if (mFrontSurface && gfxSharedImageSurface::IsSharedImage(mFrontSurface))
|
|
|
|
*prevSurface = static_cast<gfxSharedImageSurface*>(mFrontSurface.get())->GetShmem();
|
|
|
|
else
|
2010-09-15 09:02:49 -07:00
|
|
|
*prevSurface = null_t();
|
2010-10-14 11:14:23 -07:00
|
|
|
|
2010-09-15 09:02:49 -07:00
|
|
|
mFrontSurface = surface;
|
|
|
|
RecvNPN_InvalidateRect(updatedRect);
|
|
|
|
|
|
|
|
return true;
|
2010-09-15 09:02:44 -07:00
|
|
|
}
|
|
|
|
|
2010-09-10 11:28:52 -07:00
|
|
|
nsresult
|
|
|
|
PluginInstanceParent::AsyncSetWindow(NPWindow* aWindow)
|
|
|
|
{
|
2010-09-15 09:02:49 -07:00
|
|
|
NPRemoteWindow window;
|
|
|
|
mWindowType = aWindow->type;
|
|
|
|
window.window = reinterpret_cast<unsigned long>(aWindow->window);
|
|
|
|
window.x = aWindow->x;
|
|
|
|
window.y = aWindow->y;
|
|
|
|
window.width = aWindow->width;
|
|
|
|
window.height = aWindow->height;
|
|
|
|
window.clipRect = aWindow->clipRect;
|
|
|
|
window.type = aWindow->type;
|
|
|
|
if (!SendAsyncSetWindow(gfxPlatform::GetPlatform()->ScreenReferenceSurface()->GetType(),
|
|
|
|
window))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return NS_OK;
|
2010-09-10 11:28:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
PluginInstanceParent::GetSurface(gfxASurface** aSurface)
|
|
|
|
{
|
2010-09-15 09:02:49 -07:00
|
|
|
if (mFrontSurface) {
|
|
|
|
NS_ADDREF(*aSurface = mFrontSurface);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
2010-09-10 11:28:52 -07:00
|
|
|
}
|
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
NPError
|
2009-09-30 14:36:14 -07:00
|
|
|
PluginInstanceParent::NPP_SetWindow(const NPWindow* aWindow)
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
2009-12-18 14:22:51 -08:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (aWindow=%p)", FULLFUNCTION, (void*) aWindow));
|
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
NS_ENSURE_TRUE(aWindow, NPERR_GENERIC_ERROR);
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-09-30 14:36:14 -07:00
|
|
|
NPRemoteWindow window;
|
2009-12-01 13:05:26 -08:00
|
|
|
mWindowType = aWindow->type;
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
// On windowless controls, reset the shared memory surface as needed.
|
|
|
|
if (mWindowType == NPWindowTypeDrawable) {
|
|
|
|
// SharedSurfaceSetWindow will take care of NPRemoteWindow.
|
|
|
|
if (!SharedSurfaceSetWindow(aWindow, window)) {
|
|
|
|
return NPERR_OUT_OF_MEMORY_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2010-01-26 13:40:15 -08:00
|
|
|
SubclassPluginWindow(reinterpret_cast<HWND>(aWindow->window));
|
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
window.window = reinterpret_cast<unsigned long>(aWindow->window);
|
|
|
|
window.x = aWindow->x;
|
|
|
|
window.y = aWindow->y;
|
|
|
|
window.width = aWindow->width;
|
|
|
|
window.height = aWindow->height;
|
|
|
|
window.type = aWindow->type;
|
|
|
|
}
|
|
|
|
#else
|
2009-09-30 14:36:14 -07:00
|
|
|
window.window = reinterpret_cast<unsigned long>(aWindow->window);
|
|
|
|
window.x = aWindow->x;
|
|
|
|
window.y = aWindow->y;
|
|
|
|
window.width = aWindow->width;
|
|
|
|
window.height = aWindow->height;
|
2009-12-01 13:05:26 -08:00
|
|
|
window.clipRect = aWindow->clipRect; // MacOS specific
|
2009-09-30 14:36:14 -07:00
|
|
|
window.type = aWindow->type;
|
2009-12-01 13:05:26 -08:00
|
|
|
#endif
|
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
#if defined(XP_MACOSX)
|
2010-04-20 07:52:19 -07:00
|
|
|
if (mShWidth != window.width || mShHeight != window.height) {
|
2010-06-08 21:11:48 -07:00
|
|
|
if (mDrawingModel == NPDrawingModelCoreAnimation ||
|
|
|
|
mDrawingModel == NPDrawingModelInvalidatingCoreAnimation) {
|
2010-04-20 07:52:19 -07:00
|
|
|
if (mIOSurface) {
|
|
|
|
delete mIOSurface;
|
|
|
|
}
|
|
|
|
mIOSurface = nsIOSurface::CreateIOSurface(window.width, window.height);
|
|
|
|
} else if (mShWidth * mShHeight != window.width * window.height) {
|
2010-05-20 12:22:41 -07:00
|
|
|
if (mShWidth != 0 && mShHeight != 0) {
|
|
|
|
DeallocShmem(mShSurface);
|
|
|
|
mShWidth = 0;
|
|
|
|
mShHeight = 0;
|
|
|
|
}
|
|
|
|
|
2010-04-20 07:52:19 -07:00
|
|
|
if (window.width != 0 && window.height != 0) {
|
|
|
|
if (!AllocShmem(window.width * window.height*4,
|
|
|
|
SharedMemory::TYPE_BASIC, &mShSurface)) {
|
|
|
|
PLUGIN_LOG_DEBUG(("Shared memory could not be allocated."));
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
}
|
2010-03-26 13:07:37 -07:00
|
|
|
}
|
|
|
|
mShWidth = window.width;
|
|
|
|
mShHeight = window.height;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-30 14:36:14 -07:00
|
|
|
#if defined(MOZ_X11) && defined(XP_UNIX) && !defined(XP_MACOSX)
|
|
|
|
const NPSetWindowCallbackStruct* ws_info =
|
|
|
|
static_cast<NPSetWindowCallbackStruct*>(aWindow->ws_info);
|
|
|
|
window.visualID = ws_info->visual ? ws_info->visual->visualid : None;
|
|
|
|
window.colormap = ws_info->colormap;
|
|
|
|
#endif
|
|
|
|
|
2010-03-10 07:54:22 -08:00
|
|
|
if (!CallNPP_SetWindow(window))
|
2009-07-02 09:54:22 -07:00
|
|
|
return NPERR_GENERIC_ERROR;
|
2010-03-10 07:54:22 -08:00
|
|
|
|
|
|
|
return NPERR_NO_ERROR;
|
2009-06-30 11:51:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NPError
|
2009-09-23 00:12:52 -07:00
|
|
|
PluginInstanceParent::NPP_GetValue(NPPVariable aVariable,
|
|
|
|
void* _retval)
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
2009-09-23 00:12:52 -07:00
|
|
|
switch (aVariable) {
|
|
|
|
|
2010-02-03 16:02:48 -08:00
|
|
|
#ifdef MOZ_X11
|
2009-09-24 19:03:59 -07:00
|
|
|
case NPPVpluginNeedsXEmbed: {
|
|
|
|
bool needsXEmbed;
|
|
|
|
NPError rv;
|
|
|
|
|
|
|
|
if (!CallNPP_GetValue_NPPVpluginNeedsXEmbed(&needsXEmbed, &rv)) {
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NPERR_NO_ERROR != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*(NPBool*)_retval) = needsXEmbed;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
2009-07-02 09:54:22 -07:00
|
|
|
#endif
|
2009-09-17 15:15:12 -07:00
|
|
|
|
2009-09-24 19:03:59 -07:00
|
|
|
case NPPVpluginScriptableNPObject: {
|
|
|
|
PPluginScriptableObjectParent* actor;
|
|
|
|
NPError rv;
|
|
|
|
if (!CallNPP_GetValue_NPPVpluginScriptableNPObject(&actor, &rv)) {
|
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-09-19 12:24:24 -07:00
|
|
|
}
|
2009-09-23 00:12:52 -07:00
|
|
|
|
2009-09-24 19:03:59 -07:00
|
|
|
if (NPERR_NO_ERROR != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-11-11 14:01:07 -08:00
|
|
|
if (!actor) {
|
|
|
|
NS_ERROR("NPPVpluginScriptableNPObject succeeded but null.");
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
2009-11-11 17:12:01 -08:00
|
|
|
|
2009-09-24 19:03:59 -07:00
|
|
|
const NPNetscapeFuncs* npn = mParent->GetNetscapeFuncs();
|
|
|
|
if (!npn) {
|
|
|
|
NS_WARNING("No netscape functions?!");
|
2009-09-21 08:46:38 -07:00
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-09-24 19:03:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NPObject* object =
|
2010-01-15 12:35:57 -08:00
|
|
|
static_cast<PluginScriptableObjectParent*>(actor)->GetObject(true);
|
2009-09-24 19:03:59 -07:00
|
|
|
NS_ASSERTION(object, "This shouldn't ever be null!");
|
|
|
|
|
|
|
|
(*(NPObject**)_retval) = npn->retainobject(object);
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2009-12-18 14:22:51 -08:00
|
|
|
PR_LOG(gPluginLog, PR_LOG_WARNING,
|
|
|
|
("In PluginInstanceParent::NPP_GetValue: Unhandled NPPVariable %i (%s)",
|
|
|
|
(int) aVariable, NPPVariableToString(aVariable)));
|
2009-09-24 19:03:59 -07:00
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-06-30 11:51:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-19 19:23:35 -08:00
|
|
|
NPError
|
|
|
|
PluginInstanceParent::NPP_SetValue(NPNVariable variable, void* value)
|
|
|
|
{
|
|
|
|
switch (variable) {
|
|
|
|
case NPNVprivateModeBool:
|
|
|
|
NPError result;
|
|
|
|
if (!CallNPP_SetValue_NPNVprivateModeBool(*static_cast<NPBool*>(value),
|
|
|
|
&result))
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
default:
|
|
|
|
NS_ERROR("Unhandled NPNVariable in NPP_SetValue");
|
|
|
|
PR_LOG(gPluginLog, PR_LOG_WARNING,
|
|
|
|
("In PluginInstanceParent::NPP_SetValue: Unhandled NPNVariable %i (%s)",
|
|
|
|
(int) variable, NPNVariableToString(variable)));
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-18 18:19:11 -07:00
|
|
|
int16_t
|
|
|
|
PluginInstanceParent::NPP_HandleEvent(void* event)
|
|
|
|
{
|
2009-12-18 14:22:51 -08:00
|
|
|
PLUGIN_LOG_DEBUG_FUNCTION;
|
2009-09-18 18:19:11 -07:00
|
|
|
|
2010-03-17 11:38:28 -07:00
|
|
|
#if defined(XP_MACOSX)
|
|
|
|
NPCocoaEvent* npevent = reinterpret_cast<NPCocoaEvent*>(event);
|
|
|
|
#else
|
2009-09-24 19:03:59 -07:00
|
|
|
NPEvent* npevent = reinterpret_cast<NPEvent*>(event);
|
2010-03-17 11:38:28 -07:00
|
|
|
#endif
|
2009-10-27 12:58:33 -07:00
|
|
|
NPRemoteEvent npremoteevent;
|
|
|
|
npremoteevent.event = *npevent;
|
2010-02-18 12:19:28 -08:00
|
|
|
int16_t handled = 0;
|
2009-09-24 19:03:59 -07:00
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
#if defined(OS_WIN)
|
2009-12-14 16:28:51 -08:00
|
|
|
if (mWindowType == NPWindowTypeDrawable) {
|
2010-08-16 07:10:25 -07:00
|
|
|
if (DoublePassRenderingEvent() == npevent->event) {
|
|
|
|
CallPaint(npremoteevent, &handled);
|
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (npevent->event) {
|
2009-12-14 16:28:51 -08:00
|
|
|
case WM_PAINT:
|
|
|
|
{
|
|
|
|
RECT rect;
|
|
|
|
SharedSurfaceBeforePaint(rect, npremoteevent);
|
2010-03-10 23:35:31 -08:00
|
|
|
CallPaint(npremoteevent, &handled);
|
2010-02-08 11:35:37 -08:00
|
|
|
SharedSurfaceAfterPaint(npevent);
|
2010-02-22 17:10:08 -08:00
|
|
|
return handled;
|
2009-12-14 16:28:51 -08:00
|
|
|
}
|
|
|
|
break;
|
2010-02-18 12:19:28 -08:00
|
|
|
|
|
|
|
case WM_KILLFOCUS:
|
|
|
|
{
|
|
|
|
// When the user selects fullscreen mode in Flash video players,
|
|
|
|
// WM_KILLFOCUS will be delayed by deferred event processing:
|
|
|
|
// WM_LBUTTONUP results in a call to CreateWindow within Flash,
|
|
|
|
// which fires WM_KILLFOCUS. Delayed delivery causes Flash to
|
|
|
|
// misinterpret the event, dropping back out of fullscreen. Trap
|
|
|
|
// this event and drop it.
|
|
|
|
PRUnichar szClass[26];
|
|
|
|
HWND hwnd = GetForegroundWindow();
|
|
|
|
if (hwnd && hwnd != mPluginHWND &&
|
|
|
|
GetClassNameW(hwnd, szClass,
|
|
|
|
sizeof(szClass)/sizeof(PRUnichar)) &&
|
2010-05-18 09:43:45 -07:00
|
|
|
!wcscmp(szClass, kFlashFullscreenClass)) {
|
2010-02-18 12:19:28 -08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2010-02-22 17:10:08 -08:00
|
|
|
break;
|
2010-03-22 15:35:15 -07:00
|
|
|
|
|
|
|
case WM_WINDOWPOSCHANGED:
|
|
|
|
{
|
|
|
|
// We send this in nsObjectFrame just before painting
|
|
|
|
SendWindowPosChanged(npremoteevent);
|
|
|
|
// nsObjectFrame doesn't care whether we handle this
|
|
|
|
// or not, just returning 1 for good hygiene
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
2009-12-14 16:28:51 -08:00
|
|
|
}
|
2009-12-01 13:05:26 -08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-10-11 16:54:49 -07:00
|
|
|
#if defined(MOZ_X11)
|
2010-03-23 19:26:10 -07:00
|
|
|
switch (npevent->type) {
|
|
|
|
case GraphicsExpose:
|
2010-02-10 15:17:33 -08:00
|
|
|
PLUGIN_LOG_DEBUG((" schlepping drawable 0x%lx across the pipe\n",
|
|
|
|
npevent->xgraphicsexpose.drawable));
|
2009-10-11 16:54:49 -07:00
|
|
|
// Make sure the X server has created the Drawable and completes any
|
|
|
|
// drawing before the plugin draws on top.
|
|
|
|
//
|
|
|
|
// XSync() waits for the X server to complete. Really this parent
|
|
|
|
// process does not need to wait; the child is the process that needs
|
|
|
|
// to wait. A possibly-slightly-better alternative would be to send
|
|
|
|
// an X event to the child that the child would wait for.
|
2010-06-21 13:35:49 -07:00
|
|
|
XSync(DefaultXDisplay(), False);
|
2010-04-20 19:53:53 -07:00
|
|
|
|
|
|
|
return CallPaint(npremoteevent, &handled) ? handled : 0;
|
|
|
|
|
2010-03-23 19:26:10 -07:00
|
|
|
case ButtonPress:
|
|
|
|
// Release any active pointer grab so that the plugin X client can
|
|
|
|
// grab the pointer if it wishes.
|
2010-06-21 13:35:49 -07:00
|
|
|
Display *dpy = DefaultXDisplay();
|
2009-10-11 16:54:49 -07:00
|
|
|
# ifdef MOZ_WIDGET_GTK2
|
2010-03-23 19:26:10 -07:00
|
|
|
// GDK attempts to (asynchronously) track whether there is an active
|
|
|
|
// grab so ungrab through GDK.
|
|
|
|
gdk_pointer_ungrab(npevent->xbutton.time);
|
|
|
|
# else
|
|
|
|
XUngrabPointer(dpy, npevent->xbutton.time);
|
2009-10-11 16:54:49 -07:00
|
|
|
# endif
|
2010-03-23 19:26:10 -07:00
|
|
|
// Wait for the ungrab to complete.
|
|
|
|
XSync(dpy, False);
|
|
|
|
break;
|
2009-09-24 19:03:59 -07:00
|
|
|
}
|
2010-03-10 23:35:31 -08:00
|
|
|
#endif
|
2009-12-01 13:05:26 -08:00
|
|
|
|
2010-03-26 13:07:37 -07:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
if (npevent->type == NPCocoaEventDrawRect) {
|
2010-06-08 21:11:48 -07:00
|
|
|
if (mDrawingModel == NPDrawingModelCoreAnimation ||
|
|
|
|
mDrawingModel == NPDrawingModelInvalidatingCoreAnimation) {
|
2010-04-20 07:52:19 -07:00
|
|
|
if (!mIOSurface) {
|
|
|
|
NS_ERROR("No IOSurface allocated.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!CallNPP_HandleEvent_IOSurface(npremoteevent,
|
|
|
|
mIOSurface->GetIOSurfaceID(),
|
|
|
|
&handled))
|
|
|
|
return false; // no good way to handle errors here...
|
|
|
|
|
|
|
|
CGContextRef cgContext = npevent->data.draw.context;
|
|
|
|
if (!mShColorSpace) {
|
|
|
|
mShColorSpace = CreateSystemColorSpace();
|
|
|
|
}
|
|
|
|
if (!mShColorSpace) {
|
|
|
|
PLUGIN_LOG_DEBUG(("Could not allocate ColorSpace."));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
nsCARenderer::DrawSurfaceToCGContext(cgContext, mIOSurface,
|
|
|
|
mShColorSpace,
|
|
|
|
npevent->data.draw.x,
|
|
|
|
npevent->data.draw.y,
|
|
|
|
npevent->data.draw.width,
|
|
|
|
npevent->data.draw.height);
|
2010-04-18 23:57:22 -07:00
|
|
|
return false;
|
2010-04-20 07:52:19 -07:00
|
|
|
} else {
|
|
|
|
if (mShWidth == 0 && mShHeight == 0) {
|
|
|
|
PLUGIN_LOG_DEBUG(("NPCocoaEventDrawRect on window of size 0."));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!mShSurface.IsReadable()) {
|
|
|
|
PLUGIN_LOG_DEBUG(("Shmem is not readable."));
|
|
|
|
return false;
|
|
|
|
}
|
2010-03-26 13:07:37 -07:00
|
|
|
|
2010-04-20 07:52:19 -07:00
|
|
|
if (!CallNPP_HandleEvent_Shmem(npremoteevent, mShSurface,
|
|
|
|
&handled, &mShSurface))
|
|
|
|
return false; // no good way to handle errors here...
|
2010-03-26 13:07:37 -07:00
|
|
|
|
2010-04-20 07:52:19 -07:00
|
|
|
if (!mShSurface.IsReadable()) {
|
|
|
|
PLUGIN_LOG_DEBUG(("Shmem not returned. Either the plugin crashed "
|
|
|
|
"or we have a bug."));
|
|
|
|
return false;
|
|
|
|
}
|
2010-03-26 13:07:37 -07:00
|
|
|
|
2010-04-20 07:52:19 -07:00
|
|
|
char* shContextByte = mShSurface.get<char>();
|
2010-03-26 13:07:37 -07:00
|
|
|
|
2010-04-20 07:52:19 -07:00
|
|
|
if (!mShColorSpace) {
|
|
|
|
mShColorSpace = CreateSystemColorSpace();
|
|
|
|
}
|
|
|
|
if (!mShColorSpace) {
|
|
|
|
PLUGIN_LOG_DEBUG(("Could not allocate ColorSpace."));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
CGContextRef shContext = ::CGBitmapContextCreate(shContextByte,
|
|
|
|
mShWidth, mShHeight, 8,
|
|
|
|
mShWidth*4, mShColorSpace,
|
|
|
|
kCGImageAlphaPremultipliedFirst |
|
|
|
|
kCGBitmapByteOrder32Host);
|
|
|
|
if (!shContext) {
|
|
|
|
PLUGIN_LOG_DEBUG(("Could not allocate CGBitmapContext."));
|
|
|
|
return false;
|
|
|
|
}
|
2010-04-18 23:57:22 -07:00
|
|
|
|
2010-04-20 07:52:19 -07:00
|
|
|
CGImageRef shImage = ::CGBitmapContextCreateImage(shContext);
|
|
|
|
if (shImage) {
|
|
|
|
CGContextRef cgContext = npevent->data.draw.context;
|
|
|
|
|
|
|
|
::CGContextDrawImage(cgContext,
|
|
|
|
CGRectMake(0,0,mShWidth,mShHeight),
|
|
|
|
shImage);
|
|
|
|
::CGImageRelease(shImage);
|
|
|
|
} else {
|
|
|
|
::CGContextRelease(shContext);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
::CGContextRelease(shContext);
|
|
|
|
return true;
|
2010-04-18 23:57:22 -07:00
|
|
|
}
|
2010-03-26 13:07:37 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-12-14 16:28:51 -08:00
|
|
|
if (!CallNPP_HandleEvent(npremoteevent, &handled))
|
|
|
|
return 0; // no good way to handle errors here...
|
2009-12-01 13:05:26 -08:00
|
|
|
|
2009-09-18 18:19:11 -07:00
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
2009-08-18 13:20:03 -07:00
|
|
|
NPError
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceParent::NPP_NewStream(NPMIMEType type, NPStream* stream,
|
|
|
|
NPBool seekable, uint16_t* stype)
|
2009-08-18 13:20:03 -07:00
|
|
|
{
|
2009-12-18 14:22:51 -08:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (type=%s, stream=%p, seekable=%i)",
|
|
|
|
FULLFUNCTION, (char*) type, (void*) stream, (int) seekable));
|
2009-11-25 07:34:59 -08:00
|
|
|
|
2009-09-21 07:51:35 -07:00
|
|
|
BrowserStreamParent* bs = new BrowserStreamParent(this, stream);
|
|
|
|
|
2009-08-18 13:20:03 -07:00
|
|
|
NPError err;
|
2009-09-21 07:51:35 -07:00
|
|
|
if (!CallPBrowserStreamConstructor(bs,
|
2009-11-25 07:34:59 -08:00
|
|
|
NullableString(stream->url),
|
2009-09-19 12:24:24 -07:00
|
|
|
stream->end,
|
|
|
|
stream->lastmodified,
|
|
|
|
static_cast<PStreamNotifyParent*>(stream->notifyData),
|
2009-11-25 07:34:59 -08:00
|
|
|
NullableString(stream->headers),
|
|
|
|
NullableString(type), seekable,
|
|
|
|
&err, stype))
|
2009-09-19 12:24:24 -07:00
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-09-21 07:51:35 -07:00
|
|
|
|
|
|
|
if (NPERR_NO_ERROR != err)
|
2010-04-26 22:43:03 -07:00
|
|
|
unused << PBrowserStreamParent::Send__delete__(bs);
|
2009-09-21 07:51:35 -07:00
|
|
|
|
2009-08-18 13:20:03 -07:00
|
|
|
return err;
|
2009-09-19 12:24:24 -07:00
|
|
|
}
|
2009-08-18 13:20:03 -07:00
|
|
|
|
|
|
|
NPError
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceParent::NPP_DestroyStream(NPStream* stream, NPReason reason)
|
2009-08-18 13:20:03 -07:00
|
|
|
{
|
2009-12-18 14:22:51 -08:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (stream=%p, reason=%i)",
|
|
|
|
FULLFUNCTION, (void*) stream, (int) reason));
|
2009-09-22 14:06:00 -07:00
|
|
|
|
2009-09-21 07:51:35 -07:00
|
|
|
AStream* s = static_cast<AStream*>(stream->pdata);
|
|
|
|
if (s->IsBrowserStream()) {
|
|
|
|
BrowserStreamParent* sp =
|
|
|
|
static_cast<BrowserStreamParent*>(s);
|
|
|
|
if (sp->mNPP != this)
|
|
|
|
NS_RUNTIMEABORT("Mismatched plugin data");
|
|
|
|
|
2010-02-23 13:45:00 -08:00
|
|
|
sp->NPP_DestroyStream(reason);
|
2010-03-06 08:08:19 -08:00
|
|
|
return NPERR_NO_ERROR;
|
2009-09-19 12:24:24 -07:00
|
|
|
}
|
2009-09-21 07:51:35 -07:00
|
|
|
else {
|
|
|
|
PluginStreamParent* sp =
|
|
|
|
static_cast<PluginStreamParent*>(s);
|
|
|
|
if (sp->mInstance != this)
|
|
|
|
NS_RUNTIMEABORT("Mismatched plugin data");
|
2009-08-18 13:20:03 -07:00
|
|
|
|
2010-04-26 22:43:03 -07:00
|
|
|
return PPluginStreamParent::Call__delete__(sp, reason, false) ?
|
|
|
|
NPERR_NO_ERROR : NPERR_GENERIC_ERROR;
|
2009-09-19 12:24:24 -07:00
|
|
|
}
|
2009-08-18 13:20:03 -07:00
|
|
|
}
|
|
|
|
|
2010-01-19 19:23:35 -08:00
|
|
|
void
|
|
|
|
PluginInstanceParent::NPP_Print(NPPrint* platformPrint)
|
|
|
|
{
|
|
|
|
// TODO: implement me
|
|
|
|
NS_ERROR("Not implemented");
|
|
|
|
}
|
|
|
|
|
2009-09-09 15:59:06 -07:00
|
|
|
PPluginScriptableObjectParent*
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceParent::AllocPPluginScriptableObject()
|
2009-08-10 16:28:22 -07:00
|
|
|
{
|
2010-01-15 12:35:57 -08:00
|
|
|
return new PluginScriptableObjectParent(Proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
namespace {
|
2009-09-23 00:12:52 -07:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
struct ActorSearchData
|
|
|
|
{
|
|
|
|
PluginScriptableObjectParent* actor;
|
|
|
|
bool found;
|
|
|
|
};
|
2009-09-23 00:12:52 -07:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
PLDHashOperator
|
|
|
|
ActorSearch(const void* aKey,
|
|
|
|
PluginScriptableObjectParent* aData,
|
|
|
|
void* aUserData)
|
|
|
|
{
|
|
|
|
ActorSearchData* asd = reinterpret_cast<ActorSearchData*>(aUserData);
|
|
|
|
if (asd->actor == aData) {
|
|
|
|
asd->found = true;
|
|
|
|
return PL_DHASH_STOP;
|
|
|
|
}
|
|
|
|
return PL_DHASH_NEXT;
|
2009-08-10 16:28:22 -07:00
|
|
|
}
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
} // anonymous namespace
|
|
|
|
#endif // DEBUG
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-23 00:12:52 -07:00
|
|
|
PluginInstanceParent::DeallocPPluginScriptableObject(
|
|
|
|
PPluginScriptableObjectParent* aObject)
|
2009-08-10 16:28:22 -07:00
|
|
|
{
|
2010-01-15 12:35:57 -08:00
|
|
|
PluginScriptableObjectParent* actor =
|
|
|
|
static_cast<PluginScriptableObjectParent*>(aObject);
|
2009-09-23 00:12:52 -07:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
NPObject* object = actor->GetObject(false);
|
|
|
|
if (object) {
|
|
|
|
NS_ASSERTION(mScriptableObjects.Get(object, nsnull),
|
|
|
|
"NPObject not in the hash!");
|
|
|
|
mScriptableObjects.Remove(object);
|
2010-01-15 12:35:57 -08:00
|
|
|
}
|
2010-01-15 12:35:57 -08:00
|
|
|
#ifdef DEBUG
|
|
|
|
else {
|
|
|
|
ActorSearchData asd = { actor, false };
|
|
|
|
mScriptableObjects.EnumerateRead(ActorSearch, &asd);
|
|
|
|
NS_ASSERTION(!asd.found, "Actor in the hash with a null NPObject!");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
delete actor;
|
|
|
|
return true;
|
2009-09-23 00:12:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-03-04 13:20:14 -08:00
|
|
|
PluginInstanceParent::RecvPPluginScriptableObjectConstructor(
|
2009-09-23 00:12:52 -07:00
|
|
|
PPluginScriptableObjectParent* aActor)
|
|
|
|
{
|
2009-10-07 16:50:48 -07:00
|
|
|
// This is only called in response to the child process requesting the
|
|
|
|
// creation of an actor. This actor will represent an NPObject that is
|
|
|
|
// created by the plugin and returned to the browser.
|
2010-01-15 12:35:57 -08:00
|
|
|
PluginScriptableObjectParent* actor =
|
|
|
|
static_cast<PluginScriptableObjectParent*>(aActor);
|
|
|
|
NS_ASSERTION(!actor->GetObject(false), "Actor already has an object?!");
|
2009-10-07 16:50:48 -07:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
actor->InitializeProxy();
|
|
|
|
NS_ASSERTION(actor->GetObject(false), "Actor should have an object!");
|
2009-09-23 00:12:52 -07:00
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-08-10 16:28:22 -07:00
|
|
|
}
|
2009-08-18 13:20:03 -07:00
|
|
|
|
2009-09-22 14:06:00 -07:00
|
|
|
void
|
|
|
|
PluginInstanceParent::NPP_URLNotify(const char* url, NPReason reason,
|
|
|
|
void* notifyData)
|
|
|
|
{
|
2009-12-18 14:22:51 -08:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (%s, %i, %p)",
|
|
|
|
FULLFUNCTION, url, (int) reason, notifyData));
|
2009-09-22 14:06:00 -07:00
|
|
|
|
|
|
|
PStreamNotifyParent* streamNotify =
|
|
|
|
static_cast<PStreamNotifyParent*>(notifyData);
|
2010-04-26 22:43:03 -07:00
|
|
|
unused << PStreamNotifyParent::Send__delete__(streamNotify, reason);
|
2009-09-22 14:06:00 -07:00
|
|
|
}
|
2009-10-07 16:50:48 -07:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::RegisterNPObjectForActor(
|
|
|
|
NPObject* aObject,
|
|
|
|
PluginScriptableObjectParent* aActor)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aObject && aActor, "Null pointers!");
|
|
|
|
NS_ASSERTION(mScriptableObjects.IsInitialized(), "Hash not initialized!");
|
|
|
|
NS_ASSERTION(!mScriptableObjects.Get(aObject, nsnull), "Duplicate entry!");
|
|
|
|
return !!mScriptableObjects.Put(aObject, aActor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceParent::UnregisterNPObject(NPObject* aObject)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aObject, "Null pointer!");
|
|
|
|
NS_ASSERTION(mScriptableObjects.IsInitialized(), "Hash not initialized!");
|
|
|
|
NS_ASSERTION(mScriptableObjects.Get(aObject, nsnull), "Unknown entry!");
|
|
|
|
mScriptableObjects.Remove(aObject);
|
|
|
|
}
|
|
|
|
|
2009-10-07 16:50:48 -07:00
|
|
|
PluginScriptableObjectParent*
|
|
|
|
PluginInstanceParent::GetActorForNPObject(NPObject* aObject)
|
|
|
|
{
|
2009-10-13 10:54:41 -07:00
|
|
|
NS_ASSERTION(aObject, "Null pointer!");
|
|
|
|
|
|
|
|
if (aObject->_class == PluginScriptableObjectParent::GetClass()) {
|
|
|
|
// One of ours!
|
|
|
|
ParentNPObject* object = static_cast<ParentNPObject*>(aObject);
|
|
|
|
NS_ASSERTION(object->parent, "Null actor!");
|
|
|
|
return object->parent;
|
|
|
|
}
|
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
PluginScriptableObjectParent* actor;
|
|
|
|
if (mScriptableObjects.Get(aObject, &actor)) {
|
|
|
|
return actor;
|
2010-01-15 12:35:57 -08:00
|
|
|
}
|
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
actor = new PluginScriptableObjectParent(LocalObject);
|
|
|
|
if (!actor) {
|
|
|
|
NS_ERROR("Out of memory!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2010-03-04 13:20:14 -08:00
|
|
|
if (!SendPPluginScriptableObjectConstructor(actor)) {
|
2010-01-15 12:35:57 -08:00
|
|
|
NS_WARNING("Failed to send constructor message!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
2009-10-07 16:50:48 -07:00
|
|
|
|
2010-01-15 12:35:57 -08:00
|
|
|
actor->InitializeLocal(aObject);
|
2009-10-13 10:54:41 -07:00
|
|
|
return actor;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-03-25 16:45:33 -07:00
|
|
|
PluginInstanceParent::AnswerNPN_PushPopupsEnabledState(const bool& aState)
|
2009-10-13 10:54:41 -07:00
|
|
|
{
|
2010-03-25 16:45:33 -07:00
|
|
|
mNPNIface->pushpopupsenabledstate(mNPP, aState ? 1 : 0);
|
2009-10-13 10:54:41 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-03-25 16:45:33 -07:00
|
|
|
PluginInstanceParent::AnswerNPN_PopPopupsEnabledState()
|
2009-10-13 10:54:41 -07:00
|
|
|
{
|
2010-03-25 16:45:33 -07:00
|
|
|
mNPNIface->poppopupsenabledstate(mNPP);
|
2009-10-13 10:54:41 -07:00
|
|
|
return true;
|
2009-10-07 16:50:48 -07:00
|
|
|
}
|
2009-12-01 13:05:26 -08:00
|
|
|
|
2010-01-15 08:26:46 -08:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_GetValueForURL(const NPNURLVariable& variable,
|
|
|
|
const nsCString& url,
|
|
|
|
nsCString* value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
char* v;
|
|
|
|
uint32_t len;
|
|
|
|
|
|
|
|
*result = mNPNIface->getvalueforurl(mNPP, (NPNURLVariable) variable,
|
|
|
|
url.get(), &v, &len);
|
|
|
|
if (NPERR_NO_ERROR == *result)
|
|
|
|
value->Adopt(v, len);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_SetValueForURL(const NPNURLVariable& variable,
|
|
|
|
const nsCString& url,
|
|
|
|
const nsCString& value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
*result = mNPNIface->setvalueforurl(mNPP, (NPNURLVariable) variable,
|
|
|
|
url.get(), value.get(),
|
|
|
|
value.Length());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_GetAuthenticationInfo(const nsCString& protocol,
|
|
|
|
const nsCString& host,
|
|
|
|
const int32_t& port,
|
|
|
|
const nsCString& scheme,
|
|
|
|
const nsCString& realm,
|
|
|
|
nsCString* username,
|
|
|
|
nsCString* password,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
char* u;
|
|
|
|
uint32_t ulen;
|
|
|
|
char* p;
|
|
|
|
uint32_t plen;
|
|
|
|
|
|
|
|
*result = mNPNIface->getauthenticationinfo(mNPP, protocol.get(),
|
|
|
|
host.get(), port,
|
|
|
|
scheme.get(), realm.get(),
|
|
|
|
&u, &ulen, &p, &plen);
|
2010-01-21 11:35:00 -08:00
|
|
|
if (NPERR_NO_ERROR == *result) {
|
2010-01-15 08:26:46 -08:00
|
|
|
username->Adopt(u, ulen);
|
|
|
|
password->Adopt(p, plen);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-03-26 13:55:56 -07:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_ConvertPoint(const double& sourceX,
|
2010-05-20 12:22:54 -07:00
|
|
|
const bool& ignoreDestX,
|
2010-03-26 13:55:56 -07:00
|
|
|
const double& sourceY,
|
2010-05-20 12:22:54 -07:00
|
|
|
const bool& ignoreDestY,
|
2010-03-26 13:55:56 -07:00
|
|
|
const NPCoordinateSpace& sourceSpace,
|
|
|
|
const NPCoordinateSpace& destSpace,
|
|
|
|
double *destX,
|
|
|
|
double *destY,
|
|
|
|
bool *result)
|
|
|
|
{
|
|
|
|
*result = mNPNIface->convertpoint(mNPP, sourceX, sourceY, sourceSpace,
|
|
|
|
ignoreDestX ? nsnull : destX,
|
|
|
|
ignoreDestY ? nsnull : destY,
|
|
|
|
destSpace);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
|
2010-01-26 13:40:15 -08:00
|
|
|
/*
|
|
|
|
plugin focus changes between processes
|
|
|
|
|
|
|
|
focus from dom -> child:
|
2010-03-26 13:55:56 -07:00
|
|
|
Focus manager calls on widget to set the focus on the window.
|
2010-01-26 13:40:15 -08:00
|
|
|
We pick up the resulting wm_setfocus event here, and forward
|
|
|
|
that over ipc to the child which calls set focus on itself.
|
|
|
|
|
|
|
|
focus from child -> focus manager:
|
|
|
|
Child picks up the local wm_setfocus and sends it via ipc over
|
|
|
|
here. We then post a custom event to widget/src/windows/nswindow
|
|
|
|
which fires off a gui event letting the browser know.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static const PRUnichar kPluginInstanceParentProperty[] =
|
|
|
|
L"PluginInstanceParentProperty";
|
|
|
|
|
|
|
|
// static
|
|
|
|
LRESULT CALLBACK
|
|
|
|
PluginInstanceParent::PluginWindowHookProc(HWND hWnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wParam,
|
|
|
|
LPARAM lParam)
|
|
|
|
{
|
|
|
|
PluginInstanceParent* self = reinterpret_cast<PluginInstanceParent*>(
|
|
|
|
::GetPropW(hWnd, kPluginInstanceParentProperty));
|
|
|
|
if (!self) {
|
|
|
|
NS_NOTREACHED("PluginInstanceParent::PluginWindowHookProc null this ptr!");
|
|
|
|
return DefWindowProc(hWnd, message, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(self->mPluginHWND == hWnd, "Wrong window!");
|
|
|
|
|
|
|
|
switch (message) {
|
|
|
|
case WM_SETFOCUS:
|
2010-02-22 17:09:27 -08:00
|
|
|
// Let the child plugin window know it should take focus.
|
|
|
|
self->CallSetPluginFocus();
|
2010-01-26 13:40:15 -08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_CLOSE:
|
|
|
|
self->UnsubclassPluginWindow();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ::CallWindowProc(self->mPluginWndProc, hWnd, message, wParam,
|
|
|
|
lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceParent::SubclassPluginWindow(HWND aWnd)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!(mPluginHWND && aWnd != mPluginHWND),
|
|
|
|
"PluginInstanceParent::SubclassPluginWindow hwnd is not our window!");
|
|
|
|
|
|
|
|
if (!mPluginHWND) {
|
|
|
|
mPluginHWND = aWnd;
|
|
|
|
mPluginWndProc =
|
|
|
|
(WNDPROC)::SetWindowLongPtrA(mPluginHWND, GWLP_WNDPROC,
|
2010-07-11 21:49:12 -07:00
|
|
|
reinterpret_cast<LONG_PTR>(PluginWindowHookProc));
|
2010-01-26 13:40:15 -08:00
|
|
|
bool bRes = ::SetPropW(mPluginHWND, kPluginInstanceParentProperty, this);
|
|
|
|
NS_ASSERTION(mPluginWndProc,
|
|
|
|
"PluginInstanceParent::SubclassPluginWindow failed to set subclass!");
|
|
|
|
NS_ASSERTION(bRes,
|
|
|
|
"PluginInstanceParent::SubclassPluginWindow failed to set prop!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceParent::UnsubclassPluginWindow()
|
|
|
|
{
|
|
|
|
if (mPluginHWND && mPluginWndProc) {
|
|
|
|
::SetWindowLongPtrA(mPluginHWND, GWLP_WNDPROC,
|
2010-07-11 21:49:12 -07:00
|
|
|
reinterpret_cast<LONG_PTR>(mPluginWndProc));
|
2010-01-26 13:40:15 -08:00
|
|
|
|
|
|
|
::RemovePropW(mPluginHWND, kPluginInstanceParentProperty);
|
|
|
|
|
|
|
|
mPluginWndProc = NULL;
|
|
|
|
mPluginHWND = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
/* windowless drawing helpers */
|
|
|
|
|
2009-12-14 16:28:51 -08:00
|
|
|
/*
|
|
|
|
* Origin info:
|
|
|
|
*
|
|
|
|
* windowless, offscreen:
|
|
|
|
*
|
|
|
|
* WM_WINDOWPOSCHANGED: origin is relative to container
|
|
|
|
* setwindow: origin is 0,0
|
|
|
|
* WM_PAINT: origin is 0,0
|
|
|
|
*
|
|
|
|
* windowless, native:
|
|
|
|
*
|
|
|
|
* WM_WINDOWPOSCHANGED: origin is relative to container
|
|
|
|
* setwindow: origin is relative to container
|
|
|
|
* WM_PAINT: origin is relative to container
|
|
|
|
*
|
|
|
|
* PluginInstanceParent:
|
|
|
|
*
|
|
|
|
* painting: mPluginPort (nsIntRect, saved in SetWindow)
|
|
|
|
*/
|
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
void
|
|
|
|
PluginInstanceParent::SharedSurfaceRelease()
|
|
|
|
{
|
|
|
|
mSharedSurfaceDib.Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceParent::SharedSurfaceSetWindow(const NPWindow* aWindow,
|
|
|
|
NPRemoteWindow& aRemoteWindow)
|
|
|
|
{
|
|
|
|
aRemoteWindow.window = nsnull;
|
2010-10-27 06:09:37 -07:00
|
|
|
aRemoteWindow.x = aWindow->x;
|
|
|
|
aRemoteWindow.y = aWindow->y;
|
2009-12-01 13:05:26 -08:00
|
|
|
aRemoteWindow.width = aWindow->width;
|
|
|
|
aRemoteWindow.height = aWindow->height;
|
|
|
|
aRemoteWindow.type = aWindow->type;
|
|
|
|
|
|
|
|
nsIntRect newPort(aWindow->x, aWindow->y, aWindow->width, aWindow->height);
|
|
|
|
|
|
|
|
// save the the rect location within the browser window.
|
|
|
|
mPluginPort = newPort;
|
|
|
|
|
|
|
|
// move the port to our shared surface origin
|
|
|
|
newPort.MoveTo(0,0);
|
|
|
|
|
|
|
|
// check to see if we have the room in shared surface
|
|
|
|
if (mSharedSurfaceDib.IsValid() && mSharedSize.Contains(newPort)) {
|
|
|
|
// ok to paint
|
|
|
|
aRemoteWindow.surfaceHandle = 0;
|
|
|
|
return true;
|
|
|
|
}
|
2009-12-14 16:28:51 -08:00
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
// allocate a new shared surface
|
|
|
|
SharedSurfaceRelease();
|
|
|
|
if (NS_FAILED(mSharedSurfaceDib.Create(reinterpret_cast<HDC>(aWindow->window),
|
2010-10-27 06:03:09 -07:00
|
|
|
newPort.width, newPort.height, false)))
|
2009-12-01 13:05:26 -08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// save the new shared surface size we just allocated
|
|
|
|
mSharedSize = newPort;
|
2009-12-14 16:28:51 -08:00
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
base::SharedMemoryHandle handle;
|
|
|
|
if (NS_FAILED(mSharedSurfaceDib.ShareToProcess(mParent->ChildProcessHandle(), &handle)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
aRemoteWindow.surfaceHandle = handle;
|
2009-12-14 16:28:51 -08:00
|
|
|
|
2009-12-01 13:05:26 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-12-14 16:27:25 -08:00
|
|
|
void
|
2009-12-01 13:05:26 -08:00
|
|
|
PluginInstanceParent::SharedSurfaceBeforePaint(RECT& rect,
|
|
|
|
NPRemoteEvent& npremoteevent)
|
|
|
|
{
|
|
|
|
RECT* dr = (RECT*)npremoteevent.event.lParam;
|
|
|
|
HDC parentHdc = (HDC)npremoteevent.event.wParam;
|
|
|
|
|
|
|
|
nsIntRect dirtyRect(dr->left, dr->top, dr->right-dr->left, dr->bottom-dr->top);
|
|
|
|
dirtyRect.MoveBy(-mPluginPort.x, -mPluginPort.y); // should always be smaller than dirtyRect
|
|
|
|
|
|
|
|
::BitBlt(mSharedSurfaceDib.GetHDC(),
|
|
|
|
dirtyRect.x,
|
|
|
|
dirtyRect.y,
|
|
|
|
dirtyRect.width,
|
|
|
|
dirtyRect.height,
|
|
|
|
parentHdc,
|
|
|
|
dr->left,
|
|
|
|
dr->top,
|
|
|
|
SRCCOPY);
|
|
|
|
|
|
|
|
// setup the translated dirty rect we'll send to the child
|
|
|
|
rect.left = dirtyRect.x;
|
|
|
|
rect.top = dirtyRect.y;
|
2009-12-14 16:27:25 -08:00
|
|
|
rect.right = dirtyRect.x + dirtyRect.width;
|
|
|
|
rect.bottom = dirtyRect.y + dirtyRect.height;
|
2009-12-01 13:05:26 -08:00
|
|
|
|
|
|
|
npremoteevent.event.wParam = WPARAM(0);
|
|
|
|
npremoteevent.event.lParam = LPARAM(&rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PluginInstanceParent::SharedSurfaceAfterPaint(NPEvent* npevent)
|
|
|
|
{
|
|
|
|
RECT* dr = (RECT*)npevent->lParam;
|
|
|
|
HDC parentHdc = (HDC)npevent->wParam;
|
|
|
|
|
|
|
|
nsIntRect dirtyRect(dr->left, dr->top, dr->right-dr->left, dr->bottom-dr->top);
|
|
|
|
dirtyRect.MoveBy(-mPluginPort.x, -mPluginPort.y);
|
|
|
|
|
|
|
|
// src copy the shared dib into the parent surface we are handed.
|
|
|
|
::BitBlt(parentHdc,
|
|
|
|
dr->left,
|
|
|
|
dr->top,
|
|
|
|
dirtyRect.width,
|
|
|
|
dirtyRect.height,
|
|
|
|
mSharedSurfaceDib.GetHDC(),
|
|
|
|
dirtyRect.x,
|
|
|
|
dirtyRect.y,
|
|
|
|
SRCCOPY);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // defined(OS_WIN)
|
2010-01-26 13:40:15 -08:00
|
|
|
|
|
|
|
bool
|
2010-06-23 10:08:56 -07:00
|
|
|
PluginInstanceParent::AnswerPluginFocusChange(const bool& gotFocus)
|
2010-01-26 13:40:15 -08:00
|
|
|
{
|
|
|
|
PLUGIN_LOG_DEBUG(("%s", FULLFUNCTION));
|
|
|
|
|
|
|
|
// Currently only in use on windows - an rpc event we receive from the
|
|
|
|
// child when it's plugin window (or one of it's children) receives keyboard
|
|
|
|
// focus. We forward the event down to widget so the dom/focus manager can
|
|
|
|
// be updated.
|
|
|
|
#if defined(OS_WIN)
|
2010-06-23 10:08:56 -07:00
|
|
|
::SendMessage(mPluginHWND, gOOPPPluginFocusEvent, gotFocus ? 1 : 0, 0);
|
2010-01-26 13:40:15 -08:00
|
|
|
return true;
|
|
|
|
#else
|
2010-06-23 10:08:56 -07:00
|
|
|
NS_NOTREACHED("PluginInstanceParent::AnswerPluginFocusChange not implemented!");
|
2010-01-26 13:40:15 -08:00
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
2010-02-09 14:34:38 -08:00
|
|
|
|
2010-04-20 07:52:19 -07:00
|
|
|
#ifdef OS_MACOSX
|
|
|
|
void
|
|
|
|
PluginInstanceParent::Invalidate()
|
|
|
|
{
|
2010-11-01 06:47:23 -07:00
|
|
|
NPRect windowRect = {0, 0, mShHeight, mShWidth};
|
2010-04-20 07:52:19 -07:00
|
|
|
RecvNPN_InvalidateRect(windowRect);
|
|
|
|
}
|
|
|
|
#endif
|