blob: c896ad566942f461400813fc1d412b08e8fa6fc7 [file] [log] [blame]
Derek Sollenbergerdf8a3f312009-08-18 14:25:27 -04001/*
2 * Copyright 2009, The Android Open Source Project
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 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * 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 THE COPYRIGHT HOLDERS ``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
26#include <stdlib.h>
27#include <string.h>
28#include <stdio.h>
29#include "android_npapi.h"
30#include "main.h"
31#include "PluginObject.h"
32#include "EventPlugin.h"
33
34NPNetscapeFuncs* browser;
35#define EXPORT __attribute__((visibility("default")))
36
37NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
38 char* argn[], char* argv[], NPSavedData* saved);
39NPError NPP_Destroy(NPP instance, NPSavedData** save);
40NPError NPP_SetWindow(NPP instance, NPWindow* window);
41NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream,
42 NPBool seekable, uint16* stype);
43NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason);
44int32 NPP_WriteReady(NPP instance, NPStream* stream);
45int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len,
46 void* buffer);
47void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname);
48void NPP_Print(NPP instance, NPPrint* platformPrint);
49int16 NPP_HandleEvent(NPP instance, void* event);
50void NPP_URLNotify(NPP instance, const char* URL, NPReason reason,
51 void* notifyData);
52NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
53NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value);
54
55extern "C" {
56EXPORT NPError NP_Initialize(NPNetscapeFuncs* browserFuncs, NPPluginFuncs* pluginFuncs, void *java_env, void *application_context);
57EXPORT NPError NP_GetValue(NPP instance, NPPVariable variable, void *value);
58EXPORT const char* NP_GetMIMEDescription(void);
59EXPORT void NP_Shutdown(void);
60};
61
62ANPAudioTrackInterfaceV0 gSoundI;
63ANPBitmapInterfaceV0 gBitmapI;
64ANPCanvasInterfaceV0 gCanvasI;
65ANPLogInterfaceV0 gLogI;
66ANPPaintInterfaceV0 gPaintI;
67ANPPathInterfaceV0 gPathI;
Derek Sollenbergerdf8a3f312009-08-18 14:25:27 -040068ANPTypefaceInterfaceV0 gTypefaceI;
69ANPWindowInterfaceV0 gWindowI;
70
71#define ARRAY_COUNT(array) (sizeof(array) / sizeof(array[0]))
72
73NPError NP_Initialize(NPNetscapeFuncs* browserFuncs, NPPluginFuncs* pluginFuncs, void *java_env, void *application_context)
74{
75 // Make sure we have a function table equal or larger than we are built against.
76 if (browserFuncs->size < sizeof(NPNetscapeFuncs)) {
77 return NPERR_GENERIC_ERROR;
78 }
79
80 // Copy the function table (structure)
81 browser = (NPNetscapeFuncs*) malloc(sizeof(NPNetscapeFuncs));
82 memcpy(browser, browserFuncs, sizeof(NPNetscapeFuncs));
83
84 // Build the plugin function table
85 pluginFuncs->version = 11;
86 pluginFuncs->size = sizeof(pluginFuncs);
87 pluginFuncs->newp = NPP_New;
88 pluginFuncs->destroy = NPP_Destroy;
89 pluginFuncs->setwindow = NPP_SetWindow;
90 pluginFuncs->newstream = NPP_NewStream;
91 pluginFuncs->destroystream = NPP_DestroyStream;
92 pluginFuncs->asfile = NPP_StreamAsFile;
93 pluginFuncs->writeready = NPP_WriteReady;
94 pluginFuncs->write = (NPP_WriteProcPtr)NPP_Write;
95 pluginFuncs->print = NPP_Print;
96 pluginFuncs->event = NPP_HandleEvent;
97 pluginFuncs->urlnotify = NPP_URLNotify;
98 pluginFuncs->getvalue = NPP_GetValue;
99 pluginFuncs->setvalue = NPP_SetValue;
100
101 static const struct {
102 NPNVariable v;
103 uint32_t size;
104 ANPInterface* i;
105 } gPairs[] = {
Derek Sollenbergerdf8a3f312009-08-18 14:25:27 -0400106 { kCanvasInterfaceV0_ANPGetValue, sizeof(gCanvasI), &gCanvasI },
107 { kLogInterfaceV0_ANPGetValue, sizeof(gLogI), &gLogI },
108 { kPaintInterfaceV0_ANPGetValue, sizeof(gPaintI), &gPaintI },
Derek Sollenbergerdf8a3f312009-08-18 14:25:27 -0400109 { kTypefaceInterfaceV0_ANPGetValue, sizeof(gTypefaceI), &gTypefaceI },
Derek Sollenbergerdf8a3f312009-08-18 14:25:27 -0400110 };
111 for (size_t i = 0; i < ARRAY_COUNT(gPairs); i++) {
112 gPairs[i].i->inSize = gPairs[i].size;
113 NPError err = browser->getvalue(NULL, gPairs[i].v, gPairs[i].i);
114 if (err) {
115 return err;
116 }
117 }
118
119 return NPERR_NO_ERROR;
120}
121
122void NP_Shutdown(void)
123{
124
125}
126
127const char *NP_GetMIMEDescription(void)
128{
129 return "application/x-browsertestplugin:btp:Android Browser Test Plugin";
130}
131
132NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
133 char* argn[], char* argv[], NPSavedData* saved)
134{
135
136
Derek Sollenbergerb16749e2009-11-30 11:55:16 -0500137 gLogI.log(kDebug_ANPLogType, "creating plugin");
Derek Sollenbergerdf8a3f312009-08-18 14:25:27 -0400138
139 PluginObject *obj = NULL;
140
141 // Scripting functions appeared in NPAPI version 14
142 if (browser->version >= 14) {
143 instance->pdata = browser->createobject (instance, getPluginClass());
144 obj = static_cast<PluginObject*>(instance->pdata);
145 bzero(obj, sizeof(*obj));
146 } else {
147 return NPERR_GENERIC_ERROR;
148 }
149
150 // select the drawing model
Derek Sollenberger0b3a5d62009-09-08 18:31:40 -0400151 ANPDrawingModel model = kBitmap_ANPDrawingModel;
Derek Sollenbergerdf8a3f312009-08-18 14:25:27 -0400152
153 // notify the plugin API of the drawing model we wish to use. This must be
154 // done prior to creating certain subPlugin objects (e.g. surfaceViews)
155 NPError err = browser->setvalue(instance, kRequestDrawingModel_ANPSetValue,
156 reinterpret_cast<void*>(model));
157 if (err) {
Derek Sollenbergerb16749e2009-11-30 11:55:16 -0500158 gLogI.log(kError_ANPLogType, "request model %d err %d", model, err);
Derek Sollenbergerdf8a3f312009-08-18 14:25:27 -0400159 return err;
160 }
161
162 // create the sub-plugin
163 obj->subPlugin = new EventPlugin(instance);
164
165 return NPERR_NO_ERROR;
166}
167
168NPError NPP_Destroy(NPP instance, NPSavedData** save)
169{
170 PluginObject *obj = (PluginObject*) instance->pdata;
171 delete obj->subPlugin;
172
173 return NPERR_NO_ERROR;
174}
175
176NPError NPP_SetWindow(NPP instance, NPWindow* window)
177{
178 PluginObject *obj = (PluginObject*) instance->pdata;
179
180 // Do nothing if browser didn't support NPN_CreateObject which would have created the PluginObject.
181 if (obj != NULL) {
182 obj->window = window;
183 }
184
185 return NPERR_NO_ERROR;
186}
187
188NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype)
189{
190 *stype = NP_ASFILEONLY;
191 return NPERR_NO_ERROR;
192}
193
194NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason)
195{
196 return NPERR_NO_ERROR;
197}
198
199int32 NPP_WriteReady(NPP instance, NPStream* stream)
200{
201 return 0;
202}
203
204int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, void* buffer)
205{
206 return 0;
207}
208
209void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname)
210{
211}
212
213void NPP_Print(NPP instance, NPPrint* platformPrint)
214{
215}
216
217int16 NPP_HandleEvent(NPP instance, void* event)
218{
219 PluginObject *obj = reinterpret_cast<PluginObject*>(instance->pdata);
220 const ANPEvent* evt = reinterpret_cast<const ANPEvent*>(event);
221
222 if(!obj->subPlugin) {
Derek Sollenbergerb16749e2009-11-30 11:55:16 -0500223 gLogI.log(kError_ANPLogType, "the sub-plugin is null.");
Derek Sollenbergerdf8a3f312009-08-18 14:25:27 -0400224 return 0; // unknown or unhandled event
225 }
226 else {
227 return obj->subPlugin->handleEvent(evt);
228 }
229}
230
231void NPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData)
232{
233}
234
235EXPORT NPError NP_GetValue(NPP instance, NPPVariable variable, void *value) {
236
237 if (variable == NPPVpluginNameString) {
238 const char **str = (const char **)value;
239 *str = "Browser Test Plugin";
240 return NPERR_NO_ERROR;
241 }
242
243 if (variable == NPPVpluginDescriptionString) {
244 const char **str = (const char **)value;
245 *str = "Description of Browser Test Plugin";
246 return NPERR_NO_ERROR;
247 }
248
249 return NPERR_GENERIC_ERROR;
250}
251
252NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
253{
254 if (variable == NPPVpluginScriptableNPObject) {
255 void **v = (void **)value;
256 PluginObject *obj = (PluginObject*) instance->pdata;
257
258 if (obj)
259 browser->retainobject((NPObject*)obj);
260
261 *v = obj;
262 return NPERR_NO_ERROR;
263 }
264
265 return NPERR_GENERIC_ERROR;
266}
267
268NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value)
269{
270 return NPERR_GENERIC_ERROR;
271}
272