2009-06-30 18:51:05 +00: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 21:05:26 +00:00
|
|
|
* Jim Mathies <jmathies@mozilla.com>
|
2009-06-30 18:51:05 +00: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-09 06:31:35 +00:00
|
|
|
#include "PluginInstanceParent.h"
|
2009-09-23 07:12:52 +00:00
|
|
|
|
2009-09-09 14:04:09 +00:00
|
|
|
#include "BrowserStreamParent.h"
|
2009-09-23 07:12:52 +00:00
|
|
|
#include "PluginModuleParent.h"
|
2009-09-21 14:51:35 +00:00
|
|
|
#include "PluginStreamParent.h"
|
2009-09-08 21:22:50 +00:00
|
|
|
#include "StreamNotifyParent.h"
|
2009-09-23 07:12:52 +00:00
|
|
|
#include "npfunctions.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
|
2009-12-15 00:28:51 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <windowsx.h>
|
|
|
|
#endif
|
|
|
|
|
2009-09-23 07:12:52 +00:00
|
|
|
using namespace mozilla::plugins;
|
|
|
|
|
|
|
|
PluginInstanceParent::PluginInstanceParent(PluginModuleParent* parent,
|
|
|
|
NPP npp,
|
|
|
|
const NPNetscapeFuncs* npniface)
|
|
|
|
: mParent(parent),
|
|
|
|
mNPP(npp),
|
2009-12-01 21:05:26 +00:00
|
|
|
mNPNIface(npniface),
|
|
|
|
mWindowType(NPWindowTypeWindow)
|
|
|
|
{
|
2009-09-23 07:12:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PluginInstanceParent::~PluginInstanceParent()
|
|
|
|
{
|
2009-12-03 20:31:01 +00:00
|
|
|
if (mNPP)
|
|
|
|
mNPP->pdata = NULL;
|
2009-09-23 07:12:52 +00:00
|
|
|
}
|
2009-08-18 20:20:03 +00:00
|
|
|
|
2010-01-15 20:35:57 +00:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::Init()
|
2010-01-15 20:35:57 +00:00
|
|
|
{
|
2010-01-15 20:35:57 +00:00
|
|
|
return !!mScriptableObjects.Init();
|
|
|
|
}
|
2010-01-19 12:00:58 +00:00
|
|
|
|
2010-01-15 20:35:57 +00: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
|
|
|
|
|
|
|
|
NPError
|
|
|
|
PluginInstanceParent::Destroy()
|
|
|
|
{
|
|
|
|
NPError retval;
|
|
|
|
if (!CallNPP_Destroy(&retval)) {
|
|
|
|
NS_WARNING("Failed to send message!");
|
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-10-07 23:50:48 +00:00
|
|
|
}
|
2009-12-01 21:05:26 +00:00
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
SharedSurfaceRelease();
|
|
|
|
#endif
|
2010-01-15 20:35:57 +00:00
|
|
|
|
|
|
|
return retval;
|
2009-10-07 23:50:48 +00:00
|
|
|
}
|
|
|
|
|
2009-09-09 22:59:06 +00:00
|
|
|
PBrowserStreamParent*
|
2009-09-22 17:31:11 +00:00
|
|
|
PluginInstanceParent::AllocPBrowserStream(const nsCString& url,
|
|
|
|
const uint32_t& length,
|
|
|
|
const uint32_t& lastmodified,
|
2009-10-16 23:31:53 +00:00
|
|
|
PStreamNotifyParent* notifyData,
|
2009-09-22 17:31:11 +00:00
|
|
|
const nsCString& headers,
|
|
|
|
const nsCString& mimeType,
|
|
|
|
const bool& seekable,
|
|
|
|
NPError* rv,
|
|
|
|
uint16_t *stype)
|
2009-08-18 20:20:03 +00:00
|
|
|
{
|
|
|
|
NS_RUNTIMEABORT("Not reachable");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-12-03 08:16:14 +00:00
|
|
|
PluginInstanceParent::DeallocPBrowserStream(PBrowserStreamParent* stream)
|
2009-08-18 20:20:03 +00:00
|
|
|
{
|
|
|
|
delete stream;
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-08-18 20:20:03 +00:00
|
|
|
}
|
2009-06-30 18:51:05 +00:00
|
|
|
|
2009-09-21 14:51:35 +00:00
|
|
|
PPluginStreamParent*
|
2009-09-22 17:31:11 +00:00
|
|
|
PluginInstanceParent::AllocPPluginStream(const nsCString& mimeType,
|
|
|
|
const nsCString& target,
|
|
|
|
NPError* result)
|
2009-09-21 14:51:35 +00:00
|
|
|
{
|
|
|
|
return new PluginStreamParent(this, mimeType, target, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-12-03 08:16:14 +00:00
|
|
|
PluginInstanceParent::DeallocPPluginStream(PPluginStreamParent* stream)
|
2009-09-21 14:51:35 +00:00
|
|
|
{
|
|
|
|
delete stream;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-09-15 20:33:24 +00:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVjavascriptEnabledBool(
|
|
|
|
bool* value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
NPBool v;
|
|
|
|
*result = mNPNIface->getvalue(mNPP, NPNVjavascriptEnabledBool, &v);
|
|
|
|
*value = v;
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-09-15 20:33:24 +00:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-09-15 20:33:24 +00:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVisOfflineBool(bool* value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
NPBool v;
|
|
|
|
*result = mNPNIface->getvalue(mNPP, NPNVisOfflineBool, &v);
|
|
|
|
*value = v;
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-09-15 20:33:24 +00:00
|
|
|
}
|
|
|
|
|
2010-01-14 01:47:38 +00:00
|
|
|
bool
|
2010-01-14 15:18:34 +00:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVnetscapeWindow(NativeWindowHandle* value,
|
|
|
|
NPError* result)
|
2010-01-14 01:47:38 +00:00
|
|
|
{
|
|
|
|
#ifdef XP_WIN
|
2010-01-14 15:18:34 +00:00
|
|
|
HWND id;
|
|
|
|
#elif defined(MOZ_X11)
|
|
|
|
XID id;
|
|
|
|
#else
|
2010-01-14 01:47:38 +00:00
|
|
|
return false;
|
2010-01-14 15:18:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
*result = mNPNIface->getvalue(mNPP, NPNVnetscapeWindow, &id);
|
|
|
|
*value = id;
|
|
|
|
return true;
|
2010-01-14 01:47:38 +00:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-10-07 23:50:48 +00:00
|
|
|
PluginInstanceParent::InternalGetValueForNPObject(
|
|
|
|
NPNVariable aVariable,
|
|
|
|
PPluginScriptableObjectParent** aValue,
|
|
|
|
NPError* aResult)
|
2009-09-15 20:33:24 +00:00
|
|
|
{
|
2009-10-07 23:50:48 +00:00
|
|
|
NPObject* npobject;
|
|
|
|
NPError result = mNPNIface->getvalue(mNPP, aVariable, (void*)&npobject);
|
2009-11-12 22:16:54 +00:00
|
|
|
if (result == NPERR_NO_ERROR) {
|
|
|
|
NS_ASSERTION(npobject, "Shouldn't return null and NPERR_NO_ERROR!");
|
2009-10-07 23:50:48 +00:00
|
|
|
|
2009-11-12 22:16:54 +00:00
|
|
|
PluginScriptableObjectParent* actor = GetActorForNPObject(npobject);
|
2009-10-07 23:50:48 +00:00
|
|
|
mNPNIface->releaseobject(npobject);
|
2009-11-12 22:16:54 +00:00
|
|
|
if (actor) {
|
|
|
|
*aValue = actor;
|
|
|
|
*aResult = NPERR_NO_ERROR;
|
|
|
|
return true;
|
|
|
|
}
|
2009-10-07 23:50:48 +00:00
|
|
|
|
2009-11-12 22:16:54 +00:00
|
|
|
NS_ERROR("Failed to get actor!");
|
|
|
|
result = NPERR_GENERIC_ERROR;
|
2009-10-07 23:50:48 +00:00
|
|
|
}
|
|
|
|
|
2009-11-12 22:16:54 +00:00
|
|
|
*aValue = nsnull;
|
|
|
|
*aResult = result;
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-09-15 20:33:24 +00:00
|
|
|
}
|
|
|
|
|
2009-10-07 23:50:48 +00:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVWindowNPObject(
|
|
|
|
PPluginScriptableObjectParent** aValue,
|
|
|
|
NPError* aResult)
|
|
|
|
{
|
|
|
|
return InternalGetValueForNPObject(NPNVWindowNPObject, aValue, aResult);
|
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-09-15 20:33:24 +00:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVPluginElementNPObject(
|
2009-10-07 23:50:48 +00:00
|
|
|
PPluginScriptableObjectParent** aValue,
|
|
|
|
NPError* aResult)
|
2009-09-15 20:33:24 +00:00
|
|
|
{
|
2009-10-07 23:50:48 +00:00
|
|
|
return InternalGetValueForNPObject(NPNVPluginElementNPObject, aValue,
|
|
|
|
aResult);
|
2009-09-15 20:33:24 +00:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-09-15 20:33:24 +00:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVprivateModeBool(bool* value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
NPBool v;
|
|
|
|
*result = mNPNIface->getvalue(mNPP, NPNVprivateModeBool, &v);
|
|
|
|
*value = v;
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-09-15 20:33:24 +00:00
|
|
|
}
|
|
|
|
|
2009-09-25 02:03:59 +00: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-09-08 21:22:50 +00:00
|
|
|
PluginInstanceParent::AnswerNPN_GetURL(const nsCString& url,
|
|
|
|
const nsCString& target,
|
|
|
|
NPError* result)
|
|
|
|
{
|
2009-09-22 02:02:15 +00:00
|
|
|
*result = mNPNIface->geturl(mNPP,
|
|
|
|
NullableStringGet(url),
|
|
|
|
NullableStringGet(target));
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-09-08 21:22:50 +00:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-09-08 21:22:50 +00:00
|
|
|
PluginInstanceParent::AnswerNPN_PostURL(const nsCString& url,
|
|
|
|
const nsCString& target,
|
|
|
|
const nsCString& buffer,
|
|
|
|
const bool& file,
|
|
|
|
NPError* result)
|
|
|
|
{
|
2009-09-22 21:06:00 +00:00
|
|
|
*result = mNPNIface->posturl(mNPP, url.get(), NullableStringGet(target),
|
2009-09-08 21:22:50 +00:00
|
|
|
buffer.Length(), buffer.get(), file);
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-09-08 21:22:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PStreamNotifyParent*
|
2009-09-22 17:31:11 +00:00
|
|
|
PluginInstanceParent::AllocPStreamNotify(const nsCString& url,
|
|
|
|
const nsCString& target,
|
|
|
|
const bool& post,
|
|
|
|
const nsCString& buffer,
|
|
|
|
const bool& file,
|
|
|
|
NPError* result)
|
2009-09-08 21:22:50 +00:00
|
|
|
{
|
2009-11-25 14:26:01 +00:00
|
|
|
return new StreamNotifyParent();
|
|
|
|
}
|
2009-09-08 21:22:50 +00:00
|
|
|
|
2009-11-25 14:26:01 +00: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 17:12:30 +00:00
|
|
|
bool streamDestroyed = false;
|
|
|
|
static_cast<StreamNotifyParent*>(actor)->
|
|
|
|
SetDestructionFlag(&streamDestroyed);
|
|
|
|
|
2009-09-08 21:22:50 +00:00
|
|
|
if (!post) {
|
2009-09-22 02:02:15 +00:00
|
|
|
*result = mNPNIface->geturlnotify(mNPP,
|
|
|
|
NullableStringGet(url),
|
|
|
|
NullableStringGet(target),
|
2009-11-25 14:26:01 +00:00
|
|
|
actor);
|
2009-09-08 21:22:50 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-09-22 02:02:15 +00:00
|
|
|
*result = mNPNIface->posturlnotify(mNPP,
|
|
|
|
NullableStringGet(url),
|
|
|
|
NullableStringGet(target),
|
2009-11-25 14:26:01 +00:00
|
|
|
buffer.Length(),
|
|
|
|
NullableStringGet(buffer),
|
|
|
|
file, actor);
|
2009-09-08 21:22:50 +00:00
|
|
|
}
|
2009-11-25 14:26:01 +00:00
|
|
|
|
2010-01-05 17:12:30 +00:00
|
|
|
if (!streamDestroyed) {
|
|
|
|
static_cast<StreamNotifyParent*>(actor)->ClearDestructionFlag();
|
|
|
|
if (*result != NPERR_NO_ERROR)
|
|
|
|
PStreamNotifyParent::Call__delete__(actor, NPERR_GENERIC_ERROR);
|
|
|
|
}
|
2009-11-25 14:26:01 +00:00
|
|
|
|
|
|
|
return true;
|
2009-09-08 21:22:50 +00:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-12-03 08:16:14 +00:00
|
|
|
PluginInstanceParent::DeallocPStreamNotify(PStreamNotifyParent* notifyData)
|
2009-09-08 21:22:50 +00:00
|
|
|
{
|
|
|
|
delete notifyData;
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-09-08 21:22:50 +00:00
|
|
|
}
|
|
|
|
|
2009-10-01 04:09:21 +00:00
|
|
|
bool
|
|
|
|
PluginInstanceParent::RecvNPN_InvalidateRect(const NPRect& rect)
|
|
|
|
{
|
|
|
|
mNPNIface->invalidaterect(mNPP, const_cast<NPRect*>(&rect));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-06-30 18:51:05 +00:00
|
|
|
NPError
|
2009-09-30 21:36:14 +00:00
|
|
|
PluginInstanceParent::NPP_SetWindow(const NPWindow* aWindow)
|
2009-06-30 18:51:05 +00:00
|
|
|
{
|
2009-12-18 22:22:51 +00:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (aWindow=%p)", FULLFUNCTION, (void*) aWindow));
|
|
|
|
|
2009-07-02 16:54:22 +00:00
|
|
|
NS_ENSURE_TRUE(aWindow, NPERR_GENERIC_ERROR);
|
2009-06-30 18:51:05 +00:00
|
|
|
|
2009-09-30 21:36:14 +00:00
|
|
|
NPRemoteWindow window;
|
2009-12-01 21:05:26 +00: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 {
|
|
|
|
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 21:36:14 +00: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 21:05:26 +00:00
|
|
|
window.clipRect = aWindow->clipRect; // MacOS specific
|
2009-09-30 21:36:14 +00:00
|
|
|
window.type = aWindow->type;
|
2009-12-01 21:05:26 +00:00
|
|
|
#endif
|
|
|
|
|
2009-09-30 21:36:14 +00: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
|
|
|
|
|
2009-07-02 16:54:22 +00:00
|
|
|
NPError prv;
|
2009-09-30 21:36:14 +00:00
|
|
|
if (!CallNPP_SetWindow(window, &prv))
|
2009-07-02 16:54:22 +00:00
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
return prv;
|
2009-06-30 18:51:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NPError
|
2009-09-23 07:12:52 +00:00
|
|
|
PluginInstanceParent::NPP_GetValue(NPPVariable aVariable,
|
|
|
|
void* _retval)
|
2009-06-30 18:51:05 +00:00
|
|
|
{
|
2009-09-23 07:12:52 +00:00
|
|
|
switch (aVariable) {
|
|
|
|
|
2009-09-25 02:03:59 +00:00
|
|
|
case NPPVpluginWindowBool: {
|
|
|
|
bool windowed;
|
|
|
|
NPError rv;
|
|
|
|
|
|
|
|
if (!CallNPP_GetValue_NPPVpluginWindow(&windowed, &rv)) {
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NPERR_NO_ERROR != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*(NPBool*)_retval) = windowed;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
case NPPVpluginTransparentBool: {
|
|
|
|
bool transparent;
|
|
|
|
NPError rv;
|
|
|
|
|
|
|
|
if (!CallNPP_GetValue_NPPVpluginTransparent(&transparent, &rv)) {
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NPERR_NO_ERROR != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*(NPBool*)_retval) = transparent;
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-02 16:54:22 +00:00
|
|
|
#ifdef OS_LINUX
|
2009-09-25 02:03:59 +00: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 16:54:22 +00:00
|
|
|
#endif
|
2009-09-17 22:15:12 +00:00
|
|
|
|
2009-09-25 02:03:59 +00:00
|
|
|
case NPPVpluginScriptableNPObject: {
|
|
|
|
PPluginScriptableObjectParent* actor;
|
|
|
|
NPError rv;
|
|
|
|
if (!CallNPP_GetValue_NPPVpluginScriptableNPObject(&actor, &rv)) {
|
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-09-19 19:24:24 +00:00
|
|
|
}
|
2009-09-23 07:12:52 +00:00
|
|
|
|
2009-09-25 02:03:59 +00:00
|
|
|
if (NPERR_NO_ERROR != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-11-11 22:01:07 +00:00
|
|
|
if (!actor) {
|
|
|
|
NS_ERROR("NPPVpluginScriptableNPObject succeeded but null.");
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
2009-11-12 01:12:01 +00:00
|
|
|
|
2009-09-25 02:03:59 +00:00
|
|
|
const NPNetscapeFuncs* npn = mParent->GetNetscapeFuncs();
|
|
|
|
if (!npn) {
|
|
|
|
NS_WARNING("No netscape functions?!");
|
2009-09-21 15:46:38 +00:00
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-09-25 02:03:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NPObject* object =
|
2010-01-15 20:35:57 +00:00
|
|
|
static_cast<PluginScriptableObjectParent*>(actor)->GetObject(true);
|
2009-09-25 02:03:59 +00:00
|
|
|
NS_ASSERTION(object, "This shouldn't ever be null!");
|
|
|
|
|
|
|
|
(*(NPObject**)_retval) = npn->retainobject(object);
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2009-12-18 22:22:51 +00:00
|
|
|
PR_LOG(gPluginLog, PR_LOG_WARNING,
|
|
|
|
("In PluginInstanceParent::NPP_GetValue: Unhandled NPPVariable %i (%s)",
|
|
|
|
(int) aVariable, NPPVariableToString(aVariable)));
|
2009-09-25 02:03:59 +00:00
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-06-30 18:51:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-19 01:19:11 +00:00
|
|
|
int16_t
|
|
|
|
PluginInstanceParent::NPP_HandleEvent(void* event)
|
|
|
|
{
|
2009-12-18 22:22:51 +00:00
|
|
|
PLUGIN_LOG_DEBUG_FUNCTION;
|
2009-09-19 01:19:11 +00:00
|
|
|
|
2009-09-25 02:03:59 +00:00
|
|
|
NPEvent* npevent = reinterpret_cast<NPEvent*>(event);
|
2009-10-27 19:58:33 +00:00
|
|
|
NPRemoteEvent npremoteevent;
|
|
|
|
npremoteevent.event = *npevent;
|
2009-12-15 00:28:51 +00:00
|
|
|
int16_t handled;
|
2009-09-25 02:03:59 +00:00
|
|
|
|
2009-12-01 21:05:26 +00:00
|
|
|
#if defined(OS_WIN)
|
2009-12-15 00:28:51 +00:00
|
|
|
if (mWindowType == NPWindowTypeDrawable) {
|
|
|
|
switch(npevent->event) {
|
|
|
|
case WM_PAINT:
|
|
|
|
{
|
|
|
|
RECT rect;
|
|
|
|
SharedSurfaceBeforePaint(rect, npremoteevent);
|
|
|
|
if (!CallNPP_HandleEvent(npremoteevent, &handled))
|
|
|
|
return 0;
|
|
|
|
if (handled)
|
|
|
|
SharedSurfaceAfterPaint(npevent);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (!CallNPP_HandleEvent(npremoteevent, &handled))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!CallNPP_HandleEvent(npremoteevent, &handled))
|
|
|
|
return 0;
|
2009-12-01 21:05:26 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-10-11 23:54:49 +00:00
|
|
|
#if defined(MOZ_X11)
|
2009-09-25 02:03:59 +00:00
|
|
|
if (GraphicsExpose == npevent->type) {
|
|
|
|
printf(" schlepping drawable 0x%lx across the pipe\n",
|
|
|
|
npevent->xgraphicsexpose.drawable);
|
2009-10-11 23:54:49 +00: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.
|
|
|
|
# ifdef MOZ_WIDGET_GTK2
|
2009-09-25 05:17:29 +00:00
|
|
|
XSync(GDK_DISPLAY(), False);
|
2009-10-11 23:54:49 +00:00
|
|
|
# endif
|
2009-09-25 02:03:59 +00:00
|
|
|
}
|
2009-12-01 21:05:26 +00:00
|
|
|
|
2009-12-15 00:28:51 +00:00
|
|
|
if (!CallNPP_HandleEvent(npremoteevent, &handled))
|
|
|
|
return 0; // no good way to handle errors here...
|
2009-12-01 21:05:26 +00:00
|
|
|
#endif
|
|
|
|
|
2009-09-19 01:19:11 +00:00
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
2009-08-18 20:20:03 +00:00
|
|
|
NPError
|
2009-09-09 06:31:35 +00:00
|
|
|
PluginInstanceParent::NPP_NewStream(NPMIMEType type, NPStream* stream,
|
|
|
|
NPBool seekable, uint16_t* stype)
|
2009-08-18 20:20:03 +00:00
|
|
|
{
|
2009-12-18 22:22:51 +00:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (type=%s, stream=%p, seekable=%i)",
|
|
|
|
FULLFUNCTION, (char*) type, (void*) stream, (int) seekable));
|
2009-11-25 15:34:59 +00:00
|
|
|
|
2009-09-21 14:51:35 +00:00
|
|
|
BrowserStreamParent* bs = new BrowserStreamParent(this, stream);
|
|
|
|
|
2009-08-18 20:20:03 +00:00
|
|
|
NPError err;
|
2009-09-21 14:51:35 +00:00
|
|
|
if (!CallPBrowserStreamConstructor(bs,
|
2009-11-25 15:34:59 +00:00
|
|
|
NullableString(stream->url),
|
2009-09-19 19:24:24 +00:00
|
|
|
stream->end,
|
|
|
|
stream->lastmodified,
|
|
|
|
static_cast<PStreamNotifyParent*>(stream->notifyData),
|
2009-11-25 15:34:59 +00:00
|
|
|
NullableString(stream->headers),
|
|
|
|
NullableString(type), seekable,
|
|
|
|
&err, stype))
|
2009-09-19 19:24:24 +00:00
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-09-21 14:51:35 +00:00
|
|
|
|
|
|
|
if (NPERR_NO_ERROR != err)
|
2009-12-03 08:16:14 +00:00
|
|
|
PBrowserStreamParent::Call__delete__(bs, NPERR_GENERIC_ERROR, true);
|
2009-09-21 14:51:35 +00:00
|
|
|
|
2009-08-18 20:20:03 +00:00
|
|
|
return err;
|
2009-09-19 19:24:24 +00:00
|
|
|
}
|
2009-08-18 20:20:03 +00:00
|
|
|
|
|
|
|
NPError
|
2009-09-09 06:31:35 +00:00
|
|
|
PluginInstanceParent::NPP_DestroyStream(NPStream* stream, NPReason reason)
|
2009-08-18 20:20:03 +00:00
|
|
|
{
|
2009-12-18 22:22:51 +00:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (stream=%p, reason=%i)",
|
|
|
|
FULLFUNCTION, (void*) stream, (int) reason));
|
2009-09-22 21:06:00 +00:00
|
|
|
|
2009-09-21 14:51:35 +00: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");
|
|
|
|
|
2009-12-03 08:16:14 +00:00
|
|
|
PBrowserStreamParent::Call__delete__(sp, reason, false);
|
2009-09-21 14:51:35 +00:00
|
|
|
return NPERR_NO_ERROR;
|
2009-09-19 19:24:24 +00:00
|
|
|
}
|
2009-09-21 14:51:35 +00:00
|
|
|
else {
|
|
|
|
PluginStreamParent* sp =
|
|
|
|
static_cast<PluginStreamParent*>(s);
|
|
|
|
if (sp->mInstance != this)
|
|
|
|
NS_RUNTIMEABORT("Mismatched plugin data");
|
2009-08-18 20:20:03 +00:00
|
|
|
|
2009-12-03 08:16:14 +00:00
|
|
|
PPluginStreamParent::Call__delete__(sp, reason, false);
|
2009-09-21 14:51:35 +00:00
|
|
|
return NPERR_NO_ERROR;
|
2009-09-19 19:24:24 +00:00
|
|
|
}
|
2009-08-18 20:20:03 +00:00
|
|
|
}
|
|
|
|
|
2009-09-09 22:59:06 +00:00
|
|
|
PPluginScriptableObjectParent*
|
2009-09-22 17:31:11 +00:00
|
|
|
PluginInstanceParent::AllocPPluginScriptableObject()
|
2009-08-10 23:28:22 +00:00
|
|
|
{
|
2010-01-15 20:35:57 +00:00
|
|
|
return new PluginScriptableObjectParent(Proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
namespace {
|
2009-09-23 07:12:52 +00:00
|
|
|
|
2010-01-15 20:35:57 +00:00
|
|
|
struct ActorSearchData
|
|
|
|
{
|
|
|
|
PluginScriptableObjectParent* actor;
|
|
|
|
bool found;
|
|
|
|
};
|
2009-09-23 07:12:52 +00:00
|
|
|
|
2010-01-15 20:35:57 +00: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 23:28:22 +00:00
|
|
|
}
|
2009-06-30 18:51:05 +00:00
|
|
|
|
2010-01-15 20:35:57 +00:00
|
|
|
} // anonymous namespace
|
|
|
|
#endif // DEBUG
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-09-23 07:12:52 +00:00
|
|
|
PluginInstanceParent::DeallocPPluginScriptableObject(
|
|
|
|
PPluginScriptableObjectParent* aObject)
|
2009-08-10 23:28:22 +00:00
|
|
|
{
|
2010-01-15 20:35:57 +00:00
|
|
|
PluginScriptableObjectParent* actor =
|
|
|
|
static_cast<PluginScriptableObjectParent*>(aObject);
|
2009-09-23 07:12:52 +00:00
|
|
|
|
2010-01-15 20:35:57 +00: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 20:35:57 +00:00
|
|
|
}
|
2010-01-15 20:35:57 +00: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 07:12:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerPPluginScriptableObjectConstructor(
|
|
|
|
PPluginScriptableObjectParent* aActor)
|
|
|
|
{
|
2009-10-07 23:50:48 +00: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 20:35:57 +00:00
|
|
|
PluginScriptableObjectParent* actor =
|
|
|
|
static_cast<PluginScriptableObjectParent*>(aActor);
|
|
|
|
NS_ASSERTION(!actor->GetObject(false), "Actor already has an object?!");
|
2009-10-07 23:50:48 +00:00
|
|
|
|
2010-01-15 20:35:57 +00:00
|
|
|
actor->InitializeProxy();
|
|
|
|
NS_ASSERTION(actor->GetObject(false), "Actor should have an object!");
|
2009-09-23 07:12:52 +00:00
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-08-10 23:28:22 +00:00
|
|
|
}
|
2009-08-18 20:20:03 +00:00
|
|
|
|
2009-09-22 21:06:00 +00:00
|
|
|
void
|
|
|
|
PluginInstanceParent::NPP_URLNotify(const char* url, NPReason reason,
|
|
|
|
void* notifyData)
|
|
|
|
{
|
2009-12-18 22:22:51 +00:00
|
|
|
PLUGIN_LOG_DEBUG(("%s (%s, %i, %p)",
|
|
|
|
FULLFUNCTION, url, (int) reason, notifyData));
|
2009-09-22 21:06:00 +00:00
|
|
|
|
|
|
|
PStreamNotifyParent* streamNotify =
|
|
|
|
static_cast<PStreamNotifyParent*>(notifyData);
|
2009-12-03 08:16:14 +00:00
|
|
|
PStreamNotifyParent::Call__delete__(streamNotify, reason);
|
2009-09-22 21:06:00 +00:00
|
|
|
}
|
2009-10-07 23:50:48 +00:00
|
|
|
|
2010-01-15 20:35:57 +00: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 23:50:48 +00:00
|
|
|
PluginScriptableObjectParent*
|
|
|
|
PluginInstanceParent::GetActorForNPObject(NPObject* aObject)
|
|
|
|
{
|
2009-10-13 17:54:41 +00: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 20:35:57 +00:00
|
|
|
PluginScriptableObjectParent* actor;
|
|
|
|
if (mScriptableObjects.Get(aObject, &actor)) {
|
|
|
|
return actor;
|
2010-01-15 20:35:57 +00:00
|
|
|
}
|
|
|
|
|
2010-01-15 20:35:57 +00:00
|
|
|
actor = new PluginScriptableObjectParent(LocalObject);
|
|
|
|
if (!actor) {
|
|
|
|
NS_ERROR("Out of memory!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!CallPPluginScriptableObjectConstructor(actor)) {
|
|
|
|
NS_WARNING("Failed to send constructor message!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
2009-10-07 23:50:48 +00:00
|
|
|
|
2010-01-15 20:35:57 +00:00
|
|
|
actor->InitializeLocal(aObject);
|
2009-10-13 17:54:41 +00:00
|
|
|
return actor;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_PushPopupsEnabledState(const bool& aState,
|
|
|
|
bool* aSuccess)
|
|
|
|
{
|
|
|
|
*aSuccess = mNPNIface->pushpopupsenabledstate(mNPP, aState ? 1 : 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceParent::AnswerNPN_PopPopupsEnabledState(bool* aSuccess)
|
|
|
|
{
|
|
|
|
*aSuccess = mNPNIface->poppopupsenabledstate(mNPP);
|
|
|
|
return true;
|
2009-10-07 23:50:48 +00:00
|
|
|
}
|
2009-12-01 21:05:26 +00:00
|
|
|
|
2010-01-15 16:26:46 +00: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);
|
|
|
|
if (NPERR_NO_ERROR == result) {
|
|
|
|
username->Adopt(u, ulen);
|
|
|
|
password->Adopt(p, plen);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-12-01 21:05:26 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
|
|
|
|
/* windowless drawing helpers */
|
|
|
|
|
2009-12-15 00:28:51 +00: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 21:05:26 +00:00
|
|
|
void
|
|
|
|
PluginInstanceParent::SharedSurfaceRelease()
|
|
|
|
{
|
|
|
|
mSharedSurfaceDib.Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PluginInstanceParent::SharedSurfaceSetWindow(const NPWindow* aWindow,
|
|
|
|
NPRemoteWindow& aRemoteWindow)
|
|
|
|
{
|
|
|
|
aRemoteWindow.window = nsnull;
|
|
|
|
aRemoteWindow.x = 0;
|
|
|
|
aRemoteWindow.y = 0;
|
|
|
|
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-15 00:28:51 +00:00
|
|
|
|
2009-12-01 21:05:26 +00:00
|
|
|
// allocate a new shared surface
|
|
|
|
SharedSurfaceRelease();
|
|
|
|
if (NS_FAILED(mSharedSurfaceDib.Create(reinterpret_cast<HDC>(aWindow->window),
|
|
|
|
newPort.width, newPort.height, 32)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// save the new shared surface size we just allocated
|
|
|
|
mSharedSize = newPort;
|
2009-12-15 00:28:51 +00:00
|
|
|
|
2009-12-01 21:05:26 +00:00
|
|
|
base::SharedMemoryHandle handle;
|
|
|
|
if (NS_FAILED(mSharedSurfaceDib.ShareToProcess(mParent->ChildProcessHandle(), &handle)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
aRemoteWindow.surfaceHandle = handle;
|
2009-12-15 00:28:51 +00:00
|
|
|
|
2009-12-01 21:05:26 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-12-15 00:27:25 +00:00
|
|
|
void
|
2009-12-01 21:05:26 +00: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-15 00:27:25 +00:00
|
|
|
rect.right = dirtyRect.x + dirtyRect.width;
|
|
|
|
rect.bottom = dirtyRect.y + dirtyRect.height;
|
2009-12-01 21:05:26 +00: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)
|