NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc, char *argn[], char *argv[], NPSavedData *saved) { if (browser->version >= 14) { PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass()); instance->pdata = obj; for (int16_t i = 0; i < argc; i++) { if (_stricmp(argn[i], "onstreamload") == 0 && !obj->onStreamLoad) obj->onStreamLoad = _strdup(argv[i]); else if (_stricmp(argn[i], "onStreamDestroy") == 0 && !obj->onStreamDestroy) obj->onStreamDestroy = _strdup(argv[i]); else if (_stricmp(argn[i], "onURLNotify") == 0 && !obj->onURLNotify) obj->onURLNotify = _strdup(argv[i]); else if (_stricmp(argn[i], "onDestroy") == 0 && !obj->onDestroy) obj->onDestroy = _strdup(argv[i]); else if (_stricmp(argn[i], "logSrc") == 0) { for (int i = 0; i < argc; i++) if (_stricmp(argn[i], "src") == 0) pluginLog(instance, "src: %s", argv[i]); } else if (_stricmp(argn[i], "testdocumentopenindestroystream") == 0) obj->testDocumentOpenInDestroyStream = TRUE; else if (_stricmp(argn[i], "testGetURLOnDestroy") == 0) obj->testGetURLOnDestroy = TRUE; else if (_stricmp(argn[i], "testwindowopen") == 0) obj->testWindowOpen = TRUE; else if (_stricmp(argn[i], "onSetWindow") == 0 && !obj->onSetWindow) obj->onSetWindow = strdup(argv[i]); } browser->getvalue(instance, NPNVprivateModeBool, (void *)&obj->cachedPrivateBrowsingMode); } return NPERR_NO_ERROR; }
NPError NPP_SetWindow(NPP instance, NPWindow *window) { PluginObject* obj = static_cast<PluginObject*>(instance->pdata); if (obj) { obj->lastWindow = *window; if (obj->logSetWindow) { pluginLog(instance, "NPP_SetWindow: %d %d", (int)window->width, (int)window->height); obj->logSetWindow = FALSE; } if (obj->onSetWindow) executeScript(obj, obj->onSetWindow); if (obj->testWindowOpen) { testWindowOpen(instance); obj->testWindowOpen = FALSE; } if (obj->testKeyboardFocusForPlugins) { obj->eventLogging = true; executeScript(obj, "eventSender.keyDown('A');"); } } return NPERR_NO_ERROR; }
NPError NPP_Destroy(NPP instance, NPSavedData **save) { PluginObject* obj = static_cast<PluginObject*>(instance->pdata); if (obj) { if (obj->onDestroy) { executeScript(obj, obj->onDestroy); free(obj->onDestroy); } if (obj->onStreamLoad) free(obj->onStreamLoad); if (obj->onStreamDestroy) free(obj->onStreamDestroy); if (obj->onURLNotify) free(obj->onURLNotify); if (obj->onSetWindow) free(obj->onSetWindow); if (obj->logDestroy) pluginLog(instance, "NPP_Destroy"); browser->releaseobject(&obj->header); } return NPERR_NO_ERROR; }
NPError NPP_Destroy(NPP instance, NPSavedData **save) { PluginObject *obj = (PluginObject*)instance->pdata; if (obj) { if (obj->testGetURLOnDestroy) browser->geturlnotify(obj->npp, "about:blank", "", ""); if (obj->onStreamLoad) free(obj->onStreamLoad); if (obj->onURLNotify) free(obj->onURLNotify); if (obj->onStreamDestroy) free(obj->onStreamDestroy); if (obj->onDestroy) { executeScript(obj, obj->onDestroy); free(obj->onDestroy); } if (obj->logDestroy) pluginLog(instance, "NPP_Destroy\n"); if (obj->onSetWindow) free(obj->onSetWindow); browser->releaseobject(&obj->header); } return NPERR_NO_ERROR; }
static int16_t handleEventCocoa(NPP instance, PluginObject* obj, NPCocoaEvent* event) { switch (event->type) { case NPCocoaEventWindowFocusChanged: case NPCocoaEventFocusChanged: if (event->data.focus.hasFocus) pluginLog(instance, "getFocusEvent"); else pluginLog(instance, "loseFocusEvent"); return 1; case NPCocoaEventDrawRect: return 1; case NPCocoaEventKeyDown: case NPCocoaEventKeyUp: case NPCocoaEventFlagsChanged: return 1; case NPCocoaEventMouseDown: pluginLog(instance, "mouseDown at (%d, %d)", (int)event->data.mouse.pluginX, (int)event->data.mouse.pluginY); return 1; case NPCocoaEventMouseUp: pluginLog(instance, "mouseUp at (%d, %d)", (int)event->data.mouse.pluginX, (int)event->data.mouse.pluginY); return 1; case NPCocoaEventMouseMoved: case NPCocoaEventMouseEntered: case NPCocoaEventMouseExited: case NPCocoaEventMouseDragged: case NPCocoaEventScrollWheel: case NPCocoaEventTextInput: return 1; } return 0; }
void Log(const char *fmt, ...) { va_list args; va_start(args, fmt); pluginLog(fmt, args); va_end(args); }
NPError NPP_SetWindow(NPP instance, NPWindow *window) { PluginObject* obj = static_cast<PluginObject*>(instance->pdata); if (obj) { if (obj->logSetWindow) { pluginLog(instance, "NPP_SetWindow: %d %d", (int)window->width, (int)window->height); obj->logSetWindow = false; } } return NPERR_NO_ERROR; }
static int16_t handleEventCocoa(NPP instance, PluginObject* obj, NPCocoaEvent* event) { switch (event->type) { case NPCocoaEventWindowFocusChanged: case NPCocoaEventFocusChanged: if (event->data.focus.hasFocus) pluginLog(instance, "getFocusEvent"); else pluginLog(instance, "loseFocusEvent"); return 1; case NPCocoaEventDrawRect: return 1; case NPCocoaEventKeyDown: if (event->data.key.characters) pluginLog(instance, "keyDown '%c'", CFStringGetCharacterAtIndex(reinterpret_cast<CFStringRef>(event->data.key.characters), 0)); return 1; case NPCocoaEventKeyUp: if (event->data.key.characters) { pluginLog(instance, "keyUp '%c'", CFStringGetCharacterAtIndex(reinterpret_cast<CFStringRef>(event->data.key.characters), 0)); if (obj->testKeyboardFocusForPlugins) { obj->eventLogging = false; obj->testKeyboardFocusForPlugins = FALSE; executeScript(obj, "layoutTestController.notifyDone();"); } } return 1; case NPCocoaEventFlagsChanged: return 1; case NPCocoaEventMouseDown: pluginLog(instance, "mouseDown at (%d, %d)", (int)event->data.mouse.pluginX, (int)event->data.mouse.pluginY); return 1; case NPCocoaEventMouseUp: pluginLog(instance, "mouseUp at (%d, %d)", (int)event->data.mouse.pluginX, (int)event->data.mouse.pluginY); return 1; case NPCocoaEventMouseMoved: case NPCocoaEventMouseEntered: case NPCocoaEventMouseExited: case NPCocoaEventMouseDragged: case NPCocoaEventScrollWheel: case NPCocoaEventTextInput: return 1; } return 0; }
NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc, char *argn[], char *argv[], NPSavedData *saved) { bool forceCarbon = false; // Always turn on the CG model NPBool supportsCoreGraphics; if (browser->getvalue(instance, NPNVsupportsCoreGraphicsBool, &supportsCoreGraphics) != NPERR_NO_ERROR) supportsCoreGraphics = false; if (!supportsCoreGraphics) return NPERR_INCOMPATIBLE_VERSION_ERROR; browser->setvalue(instance, NPPVpluginDrawingModel, (void *)NPDrawingModelCoreGraphics); PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass()); instance->pdata = obj; for (int i = 0; i < argc; i++) { if (strcasecmp(argn[i], "onstreamload") == 0 && !obj->onStreamLoad) obj->onStreamLoad = strdup(argv[i]); else if (strcasecmp(argn[i], "onStreamDestroy") == 0 && !obj->onStreamDestroy) obj->onStreamDestroy = strdup(argv[i]); else if (strcasecmp(argn[i], "onURLNotify") == 0 && !obj->onURLNotify) obj->onURLNotify = strdup(argv[i]); else if (strcasecmp(argn[i], "src") == 0 && strcasecmp(argv[i], "data:application/x-webkit-test-netscape,returnerrorfromnewstream") == 0) obj->returnErrorFromNewStream = TRUE; else if (strcasecmp(argn[i], "logfirstsetwindow") == 0) obj->logSetWindow = TRUE; else if (strcasecmp(argn[i], "testnpruntime") == 0) testNPRuntime(instance); else if (strcasecmp(argn[i], "forcecarbon") == 0) forceCarbon = true; else if (strcasecmp(argn[i], "logSrc") == 0) { for (int i = 0; i < argc; i++) if (strcasecmp(argn[i], "src") == 0) pluginLog(instance, "src: %s", argv[i]); } else if (strcasecmp(argn[i], "cleardocumentduringnew") == 0) executeScript(obj, "document.body.innerHTML = ''"); } #ifndef NP_NO_CARBON NPBool supportsCarbon = false; #endif NPBool supportsCocoa = false; #ifndef NP_NO_CARBON if (browser->getvalue(instance, NPNVsupportsCarbonBool, &supportsCarbon) != NPERR_NO_ERROR) supportsCarbon = false; #endif if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR) supportsCocoa = false; if (supportsCocoa && !forceCarbon) { obj->eventModel = NPEventModelCocoa; #ifndef NP_NO_CARBON } else if (supportsCarbon) { obj->eventModel = NPEventModelCarbon; #endif } else { return NPERR_INCOMPATIBLE_VERSION_ERROR; } browser->setvalue(instance, NPPVpluginEventModel, (void *)obj->eventModel); return NPERR_NO_ERROR; }
static int16_t handleEventCarbon(NPP instance, PluginObject* obj, EventRecord* event) { Point pt = { event->where.v, event->where.h }; switch (event->what) { case nullEvent: // these are delivered non-deterministically, don't log. break; case mouseDown: GlobalToLocal(&pt); pluginLog(instance, "mouseDown at (%d, %d)", pt.h, pt.v); break; case mouseUp: GlobalToLocal(&pt); pluginLog(instance, "mouseUp at (%d, %d)", pt.h, pt.v); break; case keyDown: pluginLog(instance, "keyDown '%c'", (char)(event->message & 0xFF)); break; case keyUp: pluginLog(instance, "keyUp '%c'", (char)(event->message & 0xFF)); break; case autoKey: pluginLog(instance, "autoKey '%c'", (char)(event->message & 0xFF)); break; case updateEvt: pluginLog(instance, "updateEvt"); break; case diskEvt: pluginLog(instance, "diskEvt"); break; case activateEvt: pluginLog(instance, "activateEvt"); break; case osEvt: printf("PLUGIN: osEvt - "); switch ((event->message & 0xFF000000) >> 24) { case suspendResumeMessage: printf("%s\n", (event->message & 0x1) ? "resume" : "suspend"); break; case mouseMovedMessage: printf("mouseMoved\n"); break; default: printf("%08lX\n", event->message); } break; case kHighLevelEvent: pluginLog(instance, "kHighLevelEvent"); break; // NPAPI events case getFocusEvent: pluginLog(instance, "getFocusEvent"); break; case loseFocusEvent: pluginLog(instance, "loseFocusEvent"); break; case adjustCursorEvent: pluginLog(instance, "adjustCursorEvent"); break; default: pluginLog(instance, "event %d", event->what); } return 0; }