• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2007 Apple Inc.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25 #ifndef NPFUNCTIONS_H
26 #define NPFUNCTIONS_H
27 
28 
29 #include "npruntime.h"
30 #include "npapi.h"
31 #if defined(ANDROID_PLUGINS)
32 #include "nativehelper/jni.h"
33 #endif
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
39 #if defined(XP_WIN)
40 #define EXPORTED_CALLBACK(_type, _name) _type (__stdcall * _name)
41 #else
42 #define EXPORTED_CALLBACK(_type, _name) _type (* _name)
43 #endif
44 
45 typedef NPError (*NPN_GetURLNotifyProcPtr)(NPP instance, const char* URL, const char* window, void* notifyData);
46 typedef NPError (*NPN_PostURLNotifyProcPtr)(NPP instance, const char* URL, const char* window, uint32 len, const char* buf, NPBool file, void* notifyData);
47 typedef NPError (*NPN_RequestReadProcPtr)(NPStream* stream, NPByteRange* rangeList);
48 typedef NPError (*NPN_NewStreamProcPtr)(NPP instance, NPMIMEType type, const char* window, NPStream** stream);
49 typedef int32 (*NPN_WriteProcPtr)(NPP instance, NPStream* stream, int32 len, void* buffer);
50 typedef NPError (*NPN_DestroyStreamProcPtr)(NPP instance, NPStream* stream, NPReason reason);
51 typedef void (*NPN_StatusProcPtr)(NPP instance, const char* message);
52 typedef const char*(*NPN_UserAgentProcPtr)(NPP instance);
53 typedef void* (*NPN_MemAllocProcPtr)(uint32 size);
54 typedef void (*NPN_MemFreeProcPtr)(void* ptr);
55 typedef uint32 (*NPN_MemFlushProcPtr)(uint32 size);
56 typedef void (*NPN_ReloadPluginsProcPtr)(NPBool reloadPages);
57 typedef NPError (*NPN_GetValueProcPtr)(NPP instance, NPNVariable variable, void *ret_value);
58 typedef NPError (*NPN_SetValueProcPtr)(NPP instance, NPPVariable variable, void *value);
59 typedef void (*NPN_InvalidateRectProcPtr)(NPP instance, NPRect *rect);
60 typedef void (*NPN_InvalidateRegionProcPtr)(NPP instance, NPRegion region);
61 typedef void (*NPN_ForceRedrawProcPtr)(NPP instance);
62 typedef NPError (*NPN_GetURLProcPtr)(NPP instance, const char* URL, const char* window);
63 typedef NPError (*NPN_PostURLProcPtr)(NPP instance, const char* URL, const char* window, uint32 len, const char* buf, NPBool file);
64 typedef void* (*NPN_GetJavaEnvProcPtr)(void);
65 typedef void* (*NPN_GetJavaPeerProcPtr)(NPP instance);
66 typedef void  (*NPN_PushPopupsEnabledStateProcPtr)(NPP instance, NPBool enabled);
67 typedef void  (*NPN_PopPopupsEnabledStateProcPtr)(NPP instance);
68 typedef void (*NPN_PluginThreadAsyncCallProcPtr)(NPP npp, void (*func)(void *), void *userData);
69 typedef NPError (*NPN_GetValueForURLProcPtr)(NPP npp, NPNURLVariable variable, const char* url, char** value, uint32* len);
70 typedef NPError (*NPN_SetValueForURLProcPtr)(NPP npp, NPNURLVariable variable, const char* url, const char* value, uint32 len);
71 typedef NPError (*NPN_GetAuthenticationInfoProcPtr)(NPP npp, const char* protocol, const char* host, int32 port, const char* scheme, const char *realm, char** username, uint32* ulen, char** password, uint32* plen);
72 
73 typedef uint32 (*NPN_ScheduleTimerProcPtr)(NPP npp, uint32 interval, NPBool repeat, void (*timerFunc)(NPP npp, uint32 timerID));
74 typedef void (*NPN_UnscheduleTimerProcPtr)(NPP npp, uint32 timerID);
75 typedef NPError (*NPN_PopUpContextMenuProcPtr)(NPP instance, NPMenu* menu);
76 typedef NPBool (*NPN_ConvertPointProcPtr)(NPP npp, double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace);
77 
78 typedef void (*NPN_ReleaseVariantValueProcPtr) (NPVariant *variant);
79 
80 typedef NPIdentifier (*NPN_GetStringIdentifierProcPtr) (const NPUTF8 *name);
81 typedef void (*NPN_GetStringIdentifiersProcPtr) (const NPUTF8 **names, int32_t nameCount, NPIdentifier *identifiers);
82 typedef NPIdentifier (*NPN_GetIntIdentifierProcPtr) (int32_t intid);
83 typedef int32_t (*NPN_IntFromIdentifierProcPtr) (NPIdentifier identifier);
84 typedef bool (*NPN_IdentifierIsStringProcPtr) (NPIdentifier identifier);
85 typedef NPUTF8 *(*NPN_UTF8FromIdentifierProcPtr) (NPIdentifier identifier);
86 
87 typedef NPObject* (*NPN_CreateObjectProcPtr) (NPP, NPClass *aClass);
88 typedef NPObject* (*NPN_RetainObjectProcPtr) (NPObject *obj);
89 typedef void (*NPN_ReleaseObjectProcPtr) (NPObject *obj);
90 typedef bool (*NPN_InvokeProcPtr) (NPP npp, NPObject *obj, NPIdentifier methodName, const NPVariant *args, unsigned argCount, NPVariant *result);
91 typedef bool (*NPN_InvokeDefaultProcPtr) (NPP npp, NPObject *obj, const NPVariant *args, unsigned argCount, NPVariant *result);
92 typedef bool (*NPN_EvaluateProcPtr) (NPP npp, NPObject *obj, NPString *script, NPVariant *result);
93 typedef bool (*NPN_GetPropertyProcPtr) (NPP npp, NPObject *obj, NPIdentifier  propertyName, NPVariant *result);
94 typedef bool (*NPN_SetPropertyProcPtr) (NPP npp, NPObject *obj, NPIdentifier  propertyName, const NPVariant *value);
95 typedef bool (*NPN_HasPropertyProcPtr) (NPP, NPObject *npobj, NPIdentifier propertyName);
96 typedef bool (*NPN_HasMethodProcPtr) (NPP npp, NPObject *npobj, NPIdentifier methodName);
97 typedef bool (*NPN_RemovePropertyProcPtr) (NPP npp, NPObject *obj, NPIdentifier propertyName);
98 typedef void (*NPN_SetExceptionProcPtr) (NPObject *obj, const NPUTF8 *message);
99 typedef bool (*NPN_EnumerateProcPtr) (NPP npp, NPObject *npobj, NPIdentifier **identifier, uint32_t *count);
100 typedef bool (*NPN_ConstructProcPtr)(NPP npp, NPObject* obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
101 
102 typedef NPError (*NPP_NewProcPtr)(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc, char* argn[], char* argv[], NPSavedData* saved);
103 typedef NPError (*NPP_DestroyProcPtr)(NPP instance, NPSavedData** save);
104 typedef NPError (*NPP_SetWindowProcPtr)(NPP instance, NPWindow* window);
105 typedef NPError (*NPP_NewStreamProcPtr)(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype);
106 typedef NPError (*NPP_DestroyStreamProcPtr)(NPP instance, NPStream* stream, NPReason reason);
107 typedef void (*NPP_StreamAsFileProcPtr)(NPP instance, NPStream* stream, const char* fname);
108 typedef int32 (*NPP_WriteReadyProcPtr)(NPP instance, NPStream* stream);
109 typedef int32 (*NPP_WriteProcPtr)(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer);
110 typedef void (*NPP_PrintProcPtr)(NPP instance, NPPrint* platformPrint);
111 typedef int16 (*NPP_HandleEventProcPtr)(NPP instance, void* event);
112 typedef void (*NPP_URLNotifyProcPtr)(NPP instance, const char* URL, NPReason reason, void* notifyData);
113 typedef NPError (*NPP_GetValueProcPtr)(NPP instance, NPPVariable variable, void *ret_value);
114 typedef NPError (*NPP_SetValueProcPtr)(NPP instance, NPNVariable variable, void *value);
115 
116 typedef void *(*NPP_GetJavaClassProcPtr)(void);
117 typedef void* JRIGlobalRef; //not using this right now
118 
119 typedef struct _NPNetscapeFuncs {
120     uint16 size;
121     uint16 version;
122 
123     NPN_GetURLProcPtr geturl;
124     NPN_PostURLProcPtr posturl;
125     NPN_RequestReadProcPtr requestread;
126     NPN_NewStreamProcPtr newstream;
127     NPN_WriteProcPtr write;
128     NPN_DestroyStreamProcPtr destroystream;
129     NPN_StatusProcPtr status;
130     NPN_UserAgentProcPtr uagent;
131     NPN_MemAllocProcPtr memalloc;
132     NPN_MemFreeProcPtr memfree;
133     NPN_MemFlushProcPtr memflush;
134     NPN_ReloadPluginsProcPtr reloadplugins;
135     NPN_GetJavaEnvProcPtr getJavaEnv;
136     NPN_GetJavaPeerProcPtr getJavaPeer;
137     NPN_GetURLNotifyProcPtr geturlnotify;
138     NPN_PostURLNotifyProcPtr posturlnotify;
139     NPN_GetValueProcPtr getvalue;
140     NPN_SetValueProcPtr setvalue;
141     NPN_InvalidateRectProcPtr invalidaterect;
142     NPN_InvalidateRegionProcPtr invalidateregion;
143     NPN_ForceRedrawProcPtr forceredraw;
144 
145     NPN_GetStringIdentifierProcPtr getstringidentifier;
146     NPN_GetStringIdentifiersProcPtr getstringidentifiers;
147     NPN_GetIntIdentifierProcPtr getintidentifier;
148     NPN_IdentifierIsStringProcPtr identifierisstring;
149     NPN_UTF8FromIdentifierProcPtr utf8fromidentifier;
150     NPN_IntFromIdentifierProcPtr intfromidentifier;
151     NPN_CreateObjectProcPtr createobject;
152     NPN_RetainObjectProcPtr retainobject;
153     NPN_ReleaseObjectProcPtr releaseobject;
154     NPN_InvokeProcPtr invoke;
155     NPN_InvokeDefaultProcPtr invokeDefault;
156     NPN_EvaluateProcPtr evaluate;
157     NPN_GetPropertyProcPtr getproperty;
158     NPN_SetPropertyProcPtr setproperty;
159     NPN_RemovePropertyProcPtr removeproperty;
160     NPN_HasPropertyProcPtr hasproperty;
161     NPN_HasMethodProcPtr hasmethod;
162     NPN_ReleaseVariantValueProcPtr releasevariantvalue;
163     NPN_SetExceptionProcPtr setexception;
164     NPN_PushPopupsEnabledStateProcPtr pushpopupsenabledstate;
165     NPN_PopPopupsEnabledStateProcPtr poppopupsenabledstate;
166     NPN_EnumerateProcPtr enumerate;
167     NPN_PluginThreadAsyncCallProcPtr pluginthreadasynccall;
168     NPN_ConstructProcPtr construct;
169     NPN_GetValueForURLProcPtr getvalueforurl;
170     NPN_SetValueForURLProcPtr setvalueforurl;
171     NPN_GetAuthenticationInfoProcPtr getauthenticationinfo;
172     NPN_ScheduleTimerProcPtr scheduletimer;
173     NPN_UnscheduleTimerProcPtr unscheduletimer;
174     NPN_PopUpContextMenuProcPtr popupcontextmenu;
175     NPN_ConvertPointProcPtr convertpoint;
176 } NPNetscapeFuncs;
177 
178 typedef struct _NPPluginFuncs {
179     uint16 size;
180     uint16 version;
181     NPP_NewProcPtr newp;
182     NPP_DestroyProcPtr destroy;
183     NPP_SetWindowProcPtr setwindow;
184     NPP_NewStreamProcPtr newstream;
185     NPP_DestroyStreamProcPtr destroystream;
186     NPP_StreamAsFileProcPtr asfile;
187     NPP_WriteReadyProcPtr writeready;
188     NPP_WriteProcPtr write;
189     NPP_PrintProcPtr print;
190     NPP_HandleEventProcPtr event;
191     NPP_URLNotifyProcPtr urlnotify;
192     JRIGlobalRef javaClass;
193     NPP_GetValueProcPtr getvalue;
194     NPP_SetValueProcPtr setvalue;
195 } NPPluginFuncs;
196 
197 typedef EXPORTED_CALLBACK(NPError, NP_GetEntryPointsFuncPtr)(NPPluginFuncs*);
198 typedef EXPORTED_CALLBACK(void, NPP_ShutdownProcPtr)(void);
199 
200 #if defined(XP_MACOSX)
201 typedef void (*BP_CreatePluginMIMETypesPreferencesFuncPtr)(void);
202 typedef NPError (*MainFuncPtr)(NPNetscapeFuncs*, NPPluginFuncs*, NPP_ShutdownProcPtr*);
203 #endif
204 
205 #if defined(XP_UNIX)
206 typedef EXPORTED_CALLBACK(NPError, NP_InitializeFuncPtr)(NPNetscapeFuncs*, NPPluginFuncs*);
207 typedef EXPORTED_CALLBACK(char*, NP_GetMIMEDescriptionFuncPtr)(void);
208 #elif defined(ANDROID_PLUGINS)
209 typedef EXPORTED_CALLBACK(NPError, NP_InitializeFuncPtr)(NPNetscapeFuncs*, NPPluginFuncs*, JNIEnv *java_environment);
210 typedef EXPORTED_CALLBACK(char*, NP_GetMIMEDescriptionFuncPtr)(void);
211 #else
212 typedef EXPORTED_CALLBACK(NPError, NP_InitializeFuncPtr)(NPNetscapeFuncs*);
213 #endif
214 
215 #ifdef __cplusplus
216 }
217 #endif
218 
219 #endif
220