2009-10-27 19:51:12 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-10-27 19:51:12 +00:00
|
|
|
|
|
|
|
#ifndef PluginPRLibrary_h
|
|
|
|
#define PluginPRLibrary_h 1
|
|
|
|
|
|
|
|
#include "mozilla/PluginLibrary.h"
|
|
|
|
#include "nsNPAPIPlugin.h"
|
2010-08-18 00:05:48 +00:00
|
|
|
#include "npfunctions.h"
|
2009-10-27 19:51:12 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class PluginPRLibrary : public PluginLibrary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PluginPRLibrary(const char* aFilePath, PRLibrary* aLibrary) :
|
|
|
|
#if defined(XP_UNIX) && !defined(XP_MACOSX)
|
2012-07-30 14:20:58 +00:00
|
|
|
mNP_Initialize(nullptr),
|
2009-10-27 19:51:12 +00:00
|
|
|
#else
|
2012-07-30 14:20:58 +00:00
|
|
|
mNP_Initialize(nullptr),
|
2009-10-27 19:51:12 +00:00
|
|
|
#endif
|
2012-07-30 14:20:58 +00:00
|
|
|
mNP_Shutdown(nullptr),
|
|
|
|
mNP_GetMIMEDescription(nullptr),
|
2010-08-18 00:05:48 +00:00
|
|
|
#if defined(XP_UNIX) && !defined(XP_MACOSX)
|
2012-07-30 14:20:58 +00:00
|
|
|
mNP_GetValue(nullptr),
|
2010-08-18 00:05:48 +00:00
|
|
|
#endif
|
2014-02-10 22:57:01 +00:00
|
|
|
#if defined(XP_WIN) || defined(XP_MACOSX)
|
2012-07-30 14:20:58 +00:00
|
|
|
mNP_GetEntryPoints(nullptr),
|
2009-10-27 19:51:12 +00:00
|
|
|
#endif
|
2012-07-30 14:20:58 +00:00
|
|
|
mNPP_New(nullptr),
|
|
|
|
mNPP_ClearSiteData(nullptr),
|
|
|
|
mNPP_GetSitesWithData(nullptr),
|
2011-09-16 21:34:31 +00:00
|
|
|
mLibrary(aLibrary),
|
|
|
|
mFilePath(aFilePath)
|
2009-10-27 19:51:12 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(mLibrary, "need non-null lib");
|
|
|
|
// addref here??
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~PluginPRLibrary()
|
|
|
|
{
|
|
|
|
// unref here??
|
|
|
|
}
|
|
|
|
|
2009-12-16 20:08:45 +00:00
|
|
|
virtual void SetPlugin(nsNPAPIPlugin*) { }
|
|
|
|
|
2009-10-27 19:51:12 +00:00
|
|
|
virtual bool HasRequiredFunctions() {
|
2009-10-31 19:22:02 +00:00
|
|
|
mNP_Initialize = (NP_InitializeFunc)
|
|
|
|
PR_FindFunctionSymbol(mLibrary, "NP_Initialize");
|
2009-10-27 19:51:12 +00:00
|
|
|
if (!mNP_Initialize)
|
|
|
|
return false;
|
|
|
|
|
2009-10-31 19:22:02 +00:00
|
|
|
mNP_Shutdown = (NP_ShutdownFunc)
|
|
|
|
PR_FindFunctionSymbol(mLibrary, "NP_Shutdown");
|
2009-10-27 19:51:12 +00:00
|
|
|
if (!mNP_Shutdown)
|
|
|
|
return false;
|
|
|
|
|
2009-10-31 19:22:02 +00:00
|
|
|
mNP_GetMIMEDescription = (NP_GetMIMEDescriptionFunc)
|
|
|
|
PR_FindFunctionSymbol(mLibrary, "NP_GetMIMEDescription");
|
2009-12-14 21:19:25 +00:00
|
|
|
#ifndef XP_MACOSX
|
2009-10-27 19:51:12 +00:00
|
|
|
if (!mNP_GetMIMEDescription)
|
|
|
|
return false;
|
2009-12-14 21:19:25 +00:00
|
|
|
#endif
|
2009-10-27 19:51:12 +00:00
|
|
|
|
2010-08-18 00:05:48 +00:00
|
|
|
#if defined(XP_UNIX) && !defined(XP_MACOSX)
|
2009-10-31 19:22:02 +00:00
|
|
|
mNP_GetValue = (NP_GetValueFunc)
|
|
|
|
PR_FindFunctionSymbol(mLibrary, "NP_GetValue");
|
2009-10-27 19:51:12 +00:00
|
|
|
if (!mNP_GetValue)
|
|
|
|
return false;
|
2009-12-14 21:19:25 +00:00
|
|
|
#endif
|
2009-10-27 19:51:12 +00:00
|
|
|
|
2014-02-10 22:57:01 +00:00
|
|
|
#if defined(XP_WIN) || defined(XP_MACOSX)
|
2009-10-31 19:22:02 +00:00
|
|
|
mNP_GetEntryPoints = (NP_GetEntryPointsFunc)
|
|
|
|
PR_FindFunctionSymbol(mLibrary, "NP_GetEntryPoints");
|
2009-10-27 19:51:12 +00:00
|
|
|
if (!mNP_GetEntryPoints)
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-11-11 00:17:46 +00:00
|
|
|
#if defined(XP_UNIX) && !defined(XP_MACOSX) && !defined(MOZ_WIDGET_GONK)
|
2010-04-13 16:10:00 +00:00
|
|
|
virtual nsresult NP_Initialize(NPNetscapeFuncs* bFuncs,
|
|
|
|
NPPluginFuncs* pFuncs, NPError* error);
|
2009-10-27 19:51:12 +00:00
|
|
|
#else
|
2010-04-13 16:10:00 +00:00
|
|
|
virtual nsresult NP_Initialize(NPNetscapeFuncs* bFuncs,
|
|
|
|
NPError* error);
|
2009-10-27 19:51:12 +00:00
|
|
|
#endif
|
|
|
|
|
2010-04-13 16:10:00 +00:00
|
|
|
virtual nsresult NP_Shutdown(NPError* error);
|
|
|
|
virtual nsresult NP_GetMIMEDescription(const char** mimeDesc);
|
2009-10-27 19:51:12 +00:00
|
|
|
|
|
|
|
virtual nsresult NP_GetValue(void *future, NPPVariable aVariable,
|
2010-04-13 16:10:00 +00:00
|
|
|
void *aValue, NPError* error);
|
2009-10-27 19:51:12 +00:00
|
|
|
|
2014-02-10 22:57:01 +00:00
|
|
|
#if defined(XP_WIN) || defined(XP_MACOSX)
|
2010-04-13 16:10:00 +00:00
|
|
|
virtual nsresult NP_GetEntryPoints(NPPluginFuncs* pFuncs, NPError* error);
|
2009-10-27 19:51:12 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
virtual nsresult NPP_New(NPMIMEType pluginType, NPP instance,
|
|
|
|
uint16_t mode, int16_t argc, char* argn[],
|
|
|
|
char* argv[], NPSavedData* saved,
|
2010-04-13 16:10:00 +00:00
|
|
|
NPError* error);
|
2009-10-27 19:51:12 +00:00
|
|
|
|
2011-02-08 22:16:07 +00:00
|
|
|
virtual nsresult NPP_ClearSiteData(const char* site, uint64_t flags,
|
|
|
|
uint64_t maxAge);
|
|
|
|
virtual nsresult NPP_GetSitesWithData(InfallibleTArray<nsCString>& result);
|
|
|
|
|
2010-09-10 18:28:52 +00:00
|
|
|
virtual nsresult AsyncSetWindow(NPP instance, NPWindow* window);
|
2012-11-10 15:45:52 +00:00
|
|
|
virtual nsresult GetImageContainer(NPP instance, mozilla::layers::ImageContainer** aContainer);
|
2011-02-23 05:38:09 +00:00
|
|
|
virtual nsresult GetImageSize(NPP instance, nsIntSize* aSize);
|
2012-08-01 20:34:08 +00:00
|
|
|
virtual bool IsOOP() MOZ_OVERRIDE { return false; }
|
2011-06-30 16:46:26 +00:00
|
|
|
#if defined(XP_MACOSX)
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual nsresult IsRemoteDrawingCoreAnimation(NPP instance, bool *aDrawing);
|
2012-10-16 19:41:21 +00:00
|
|
|
virtual nsresult ContentsScaleFactorChanged(NPP instance, double aContentsScaleFactor);
|
2011-06-30 16:46:26 +00:00
|
|
|
#endif
|
2012-07-06 18:15:45 +00:00
|
|
|
virtual nsresult SetBackgroundUnknown(NPP instance) MOZ_OVERRIDE;
|
2011-02-16 22:43:31 +00:00
|
|
|
virtual nsresult BeginUpdateBackground(NPP instance,
|
2012-07-06 18:15:45 +00:00
|
|
|
const nsIntRect&, gfxContext** aCtx) MOZ_OVERRIDE;
|
2011-02-16 22:43:31 +00:00
|
|
|
virtual nsresult EndUpdateBackground(NPP instance,
|
2012-07-06 18:15:45 +00:00
|
|
|
gfxContext* aCtx, const nsIntRect&) MOZ_OVERRIDE;
|
2011-09-16 21:34:31 +00:00
|
|
|
virtual void GetLibraryPath(nsACString& aPath) { aPath.Assign(mFilePath); }
|
|
|
|
|
2009-10-27 19:51:12 +00:00
|
|
|
private:
|
2009-10-31 19:22:02 +00:00
|
|
|
NP_InitializeFunc mNP_Initialize;
|
|
|
|
NP_ShutdownFunc mNP_Shutdown;
|
|
|
|
NP_GetMIMEDescriptionFunc mNP_GetMIMEDescription;
|
2010-08-18 00:05:48 +00:00
|
|
|
#if defined(XP_UNIX) && !defined(XP_MACOSX)
|
2009-10-31 19:22:02 +00:00
|
|
|
NP_GetValueFunc mNP_GetValue;
|
2010-08-18 00:05:48 +00:00
|
|
|
#endif
|
2014-02-10 22:57:01 +00:00
|
|
|
#if defined(XP_WIN) || defined(XP_MACOSX)
|
2009-10-31 19:22:02 +00:00
|
|
|
NP_GetEntryPointsFunc mNP_GetEntryPoints;
|
2009-10-27 19:51:12 +00:00
|
|
|
#endif
|
2009-10-31 19:22:02 +00:00
|
|
|
NPP_NewProcPtr mNPP_New;
|
2011-02-08 22:16:07 +00:00
|
|
|
NPP_ClearSiteDataPtr mNPP_ClearSiteData;
|
|
|
|
NPP_GetSitesWithDataPtr mNPP_GetSitesWithData;
|
2009-10-27 19:51:12 +00:00
|
|
|
PRLibrary* mLibrary;
|
2011-09-16 21:34:31 +00:00
|
|
|
nsCString mFilePath;
|
2009-10-27 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // ifndef PluginPRLibrary_h
|