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):
|
|
|
|
*
|
|
|
|
* 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-09 07:04:09 -07:00
|
|
|
#include "BrowserStreamParent.h"
|
2009-09-21 07:51:35 -07:00
|
|
|
#include "PluginStreamParent.h"
|
2009-09-08 14:22:50 -07:00
|
|
|
#include "StreamNotifyParent.h"
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-08-18 13:20:03 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace plugins {
|
|
|
|
|
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,
|
|
|
|
const PStreamNotifyParent* notifyData,
|
|
|
|
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-09-09 15:59:06 -07:00
|
|
|
PluginInstanceParent::AnswerPBrowserStreamDestructor(PBrowserStreamParent* stream,
|
2009-09-09 07:04:09 -07:00
|
|
|
const NPError& reason,
|
|
|
|
const bool& artificial)
|
2009-08-18 13:20:03 -07:00
|
|
|
{
|
|
|
|
if (!artificial) {
|
2009-09-09 07:04:09 -07:00
|
|
|
static_cast<BrowserStreamParent*>(stream)->NPN_DestroyStream(reason);
|
2009-08-18 13:20:03 -07:00
|
|
|
}
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-08-18 13:20:03 -07:00
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceParent::DeallocPBrowserStream(PBrowserStreamParent* stream,
|
|
|
|
const NPError& reason,
|
|
|
|
const bool& artificial)
|
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-09-22 10:31:11 -07:00
|
|
|
PluginInstanceParent::DeallocPPluginStream(PPluginStreamParent* stream,
|
|
|
|
const NPError& reason,
|
|
|
|
const bool& artificial)
|
2009-09-21 07:51:35 -07:00
|
|
|
{
|
|
|
|
if (!artificial) {
|
|
|
|
static_cast<PluginStreamParent*>(stream)->NPN_DestroyStream(reason);
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-15 13:33:24 -07:00
|
|
|
PluginInstanceParent::AnswerNPN_GetValue_NPNVWindowNPObject(
|
|
|
|
PPluginScriptableObjectParent** value,
|
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
// TODO NPRuntime
|
|
|
|
*value = NULL;
|
|
|
|
*result = NPERR_GENERIC_ERROR;
|
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_NPNVPluginElementNPObject(
|
2009-09-17 15:15:12 -07:00
|
|
|
PPluginScriptableObjectParent** value,
|
2009-09-15 13:33:24 -07:00
|
|
|
NPError* result)
|
|
|
|
{
|
|
|
|
// TODO NPRuntime
|
|
|
|
*value = NULL;
|
|
|
|
*result = NPERR_GENERIC_ERROR;
|
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_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-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
|
|
|
{
|
|
|
|
StreamNotifyParent* notifyData = new StreamNotifyParent();
|
|
|
|
|
|
|
|
if (!post) {
|
2009-09-21 19:02:15 -07:00
|
|
|
*result = mNPNIface->geturlnotify(mNPP,
|
|
|
|
NullableStringGet(url),
|
|
|
|
NullableStringGet(target),
|
2009-09-08 14:22:50 -07:00
|
|
|
notifyData);
|
|
|
|
}
|
|
|
|
else {
|
2009-09-21 19:02:15 -07:00
|
|
|
*result = mNPNIface->posturlnotify(mNPP,
|
|
|
|
NullableStringGet(url),
|
|
|
|
NullableStringGet(target),
|
2009-09-08 14:22:50 -07:00
|
|
|
buffer.Length(), buffer.get(),
|
|
|
|
file, notifyData);
|
|
|
|
}
|
|
|
|
// TODO: what if this method fails?
|
|
|
|
return notifyData;
|
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceParent::DeallocPStreamNotify(PStreamNotifyParent* notifyData,
|
|
|
|
const NPReason& reason)
|
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-06-30 11:51:05 -07:00
|
|
|
NPError
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceParent::NPP_SetWindow(NPWindow* aWindow)
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
|
|
|
_MOZ_LOG(__FUNCTION__);
|
2009-07-02 09:54:22 -07:00
|
|
|
NS_ENSURE_TRUE(aWindow, NPERR_GENERIC_ERROR);
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
NPError prv;
|
2009-09-18 18:19:11 -07:00
|
|
|
if (!CallNPP_SetWindow(*aWindow, &prv))
|
2009-07-02 09:54:22 -07:00
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
return prv;
|
2009-06-30 11:51:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NPError
|
2009-09-08 23:31:35 -07:00
|
|
|
PluginInstanceParent::NPP_GetValue(NPPVariable variable, void *ret_value)
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
|
|
|
_MOZ_LOG(__FUNCTION__);
|
|
|
|
|
|
|
|
// FIXME/cjones: HACK ALERT! should forward to child
|
|
|
|
switch(variable) {
|
2009-07-02 09:54:22 -07:00
|
|
|
#ifdef OS_LINUX
|
2009-09-19 12:24:24 -07:00
|
|
|
case NPPVpluginNeedsXEmbed:
|
|
|
|
(*(PRBool*)ret_value) = PR_TRUE;
|
|
|
|
return NPERR_NO_ERROR;
|
2009-07-02 09:54:22 -07:00
|
|
|
#endif
|
2009-09-17 15:15:12 -07:00
|
|
|
|
2009-09-19 12:24:24 -07:00
|
|
|
case NPPVpluginScriptableNPObject: {
|
|
|
|
PPluginScriptableObjectParent* actor;
|
|
|
|
NPError rv;
|
|
|
|
if (!CallNPP_GetValue_NPPVpluginScriptableNPObject(&actor, &rv)) {
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
2009-09-21 08:46:38 -07:00
|
|
|
// TODO: more values
|
|
|
|
default:
|
|
|
|
return NPERR_GENERIC_ERROR;
|
2009-06-30 11:51:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-18 18:19:11 -07:00
|
|
|
int16_t
|
|
|
|
PluginInstanceParent::NPP_HandleEvent(void* event)
|
|
|
|
{
|
|
|
|
_MOZ_LOG(__FUNCTION__);
|
|
|
|
|
|
|
|
int16_t handled;
|
|
|
|
if (!CallNPP_HandleEvent(*reinterpret_cast<NPEvent*>(event),
|
|
|
|
&handled)) {
|
|
|
|
return 0; // no good way to handle errors here...
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
_MOZ_LOG(__FUNCTION__);
|
|
|
|
|
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 19:02:15 -07:00
|
|
|
// TODO are any of these strings nullable?
|
2009-09-21 07:51:35 -07:00
|
|
|
if (!CallPBrowserStreamConstructor(bs,
|
2009-09-19 12:24:24 -07:00
|
|
|
nsCString(stream->url),
|
|
|
|
stream->end,
|
|
|
|
stream->lastmodified,
|
|
|
|
static_cast<PStreamNotifyParent*>(stream->notifyData),
|
|
|
|
nsCString(stream->headers),
|
2009-09-21 07:51:35 -07:00
|
|
|
nsCString(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)
|
|
|
|
CallPBrowserStreamDestructor(bs, NPERR_GENERIC_ERROR, true);
|
|
|
|
|
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-09-22 14:06:00 -07:00
|
|
|
_MOZ_LOG(__FUNCTION__);
|
|
|
|
|
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");
|
|
|
|
|
|
|
|
CallPBrowserStreamDestructor(sp, reason, false);
|
|
|
|
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
|
|
|
|
2009-09-21 07:51:35 -07:00
|
|
|
CallPPluginStreamDestructor(sp, reason, false);
|
|
|
|
return NPERR_NO_ERROR;
|
2009-09-19 12:24:24 -07:00
|
|
|
}
|
2009-08-18 13:20:03 -07:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2009-09-17 15:15:12 -07:00
|
|
|
return new PluginScriptableObjectParent();
|
2009-08-10 16:28:22 -07:00
|
|
|
}
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-22 10:31:11 -07:00
|
|
|
PluginInstanceParent::DeallocPPluginScriptableObject(PPluginScriptableObjectParent* aObject)
|
2009-08-10 16:28:22 -07:00
|
|
|
{
|
2009-09-17 15:15:12 -07:00
|
|
|
delete aObject;
|
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)
|
|
|
|
{
|
|
|
|
_MOZ_LOG(__FUNCTION__);
|
|
|
|
|
|
|
|
PStreamNotifyParent* streamNotify =
|
|
|
|
static_cast<PStreamNotifyParent*>(notifyData);
|
|
|
|
CallPStreamNotifyDestructor(streamNotify, reason);
|
|
|
|
}
|
|
|
|
|
2009-08-18 13:20:03 -07:00
|
|
|
} // namespace plugins
|
|
|
|
} // namespace mozilla
|