blob: 26f9eba103e13e97b8a920c43ed9f6795c4e9ca4 [file] [log] [blame]
/*
* Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
* Copyright (C) 2008 Collabora Ltd. All rights reserved.
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __LP64__
#include "config.h"
#include "PluginView.h"
#include <runtime/JSLock.h>
#include <runtime/JSValue.h>
#include "wtf/RetainPtr.h"
#include "Document.h"
#include "DocumentLoader.h"
#include "Element.h"
#include "EventNames.h"
#include "FocusController.h"
#include "FrameLoader.h"
#include "FrameLoadRequest.h"
#include "FrameTree.h"
#include "Frame.h"
#include "FrameView.h"
#include "GraphicsContext.h"
#include "HTMLNames.h"
#include "HTMLPlugInElement.h"
#include "Image.h"
#include "JSDOMBinding.h"
#include "KeyboardEvent.h"
#include "MouseEvent.h"
#include "NotImplemented.h"
#include "npruntime_impl.h"
#include "Page.h"
#include "PlatformMouseEvent.h"
#include "PlatformKeyboardEvent.h"
#include "PluginDebug.h"
#include "PluginPackage.h"
#include "PluginMainThreadScheduler.h"
#include "RenderLayer.h"
#include "runtime.h"
#include "runtime_root.h"
#include "ScriptController.h"
#include "Settings.h"
using JSC::ExecState;
using JSC::Interpreter;
using JSC::JSLock;
using JSC::JSObject;
using JSC::JSValue;
using JSC::UString;
#if PLATFORM(QT)
#include <QWidget>
#include <QKeyEvent>
QT_BEGIN_NAMESPACE
#if QT_VERSION < 0x040500
extern Q_GUI_EXPORT WindowPtr qt_mac_window_for(const QWidget* w);
#else
extern Q_GUI_EXPORT OSWindowRef qt_mac_window_for(const QWidget* w);
#endif
QT_END_NAMESPACE
#endif
using std::min;
using namespace WTF;
namespace WebCore {
using namespace HTMLNames;
static int modifiersForEvent(UIEventWithKeyState *event);
static inline WindowRef nativeWindowFor(PlatformWidget widget)
{
#if PLATFORM(QT)
if (widget)
return static_cast<WindowRef>(qt_mac_window_for(widget));
#endif
return 0;
}
static inline CGContextRef cgHandleFor(PlatformWidget widget)
{
#if PLATFORM(QT)
if (widget)
return (CGContextRef)widget->macCGHandle();
#endif
return 0;
}
static inline IntPoint topLevelOffsetFor(PlatformWidget widget)
{
#if PLATFORM(QT)
if (widget) {
PlatformWidget topLevel = widget->window();
return widget->mapTo(topLevel, QPoint(0, 0)) + topLevel->geometry().topLeft() - topLevel->pos();
}
#endif
return IntPoint();
}
// --------------- Lifetime management -----------------
void PluginView::init()
{
LOG(Plugins, "PluginView::init(): Initializing plug-in '%s'", m_plugin->name().utf8().data());
if (m_haveInitialized)
return;
m_haveInitialized = true;
if (!m_plugin) {
ASSERT(m_status == PluginStatusCanNotFindPlugin);
return;
}
if (!m_plugin->load()) {
m_plugin = 0;
m_status = PluginStatusCanNotLoadPlugin;
return;
}
if (!start()) {
m_status = PluginStatusCanNotLoadPlugin;
stop(); // Make sure we unregister the plugin
return;
}
if (m_drawingModel == NPDrawingModel(-1)) {
// We default to QuickDraw, even though we don't support it,
// since that's what Safari does, and some plugins expect this
// behavior and never set the drawing model explicitly.
#ifndef NP_NO_QUICKDRAW
m_drawingModel = NPDrawingModelQuickDraw;
#else
// QuickDraw not available, so we have to default to CoreGraphics
m_drawingModel = NPDrawingModelCoreGraphics;
#endif
}
if (m_eventModel == NPEventModel(-1)) {
// If the plug-in did not specify an event model
// we default to Carbon, when it is available.
#ifndef NP_NO_CARBON
m_eventModel = NPEventModelCarbon;
#else
m_eventModel = NPEventModelCocoa;
#endif
}
// Gracefully handle unsupported drawing or event models. We can do this
// now since the drawing and event model can only be set during NPP_New.
NPBool eventModelSupported, drawingModelSupported;
if (getValueStatic(NPNVariable(NPNVsupportsCarbonBool + m_eventModel), &eventModelSupported) != NPERR_NO_ERROR
|| !eventModelSupported) {
m_status = PluginStatusCanNotLoadPlugin;
LOG(Plugins, "Plug-in '%s' uses unsupported event model %s",
m_plugin->name().utf8().data(), prettyNameForEventModel(m_eventModel));
stop();
return;
}
if (getValueStatic(NPNVariable(NPNVsupportsQuickDrawBool + m_drawingModel), &drawingModelSupported) != NPERR_NO_ERROR
|| !drawingModelSupported) {
m_status = PluginStatusCanNotLoadPlugin;
LOG(Plugins, "Plug-in '%s' uses unsupported drawing model %s",
m_plugin->name().utf8().data(), prettyNameForDrawingModel(m_drawingModel));
stop();
return;
}
setPlatformPluginWidget(m_parentFrame->view()->hostWindow()->platformWindow());
show();
m_status = PluginStatusLoadedSuccessfully;
// TODO: Implement null timer throttling depending on plugin activation
m_nullEventTimer.set(new Timer<PluginView>(this, &PluginView::nullEventTimerFired));
m_nullEventTimer->startRepeating(0.02);
}
PluginView::~PluginView()
{
LOG(Plugins, "PluginView::~PluginView()");
stop();
deleteAllValues(m_requests);
freeStringArray(m_paramNames, m_paramCount);
freeStringArray(m_paramValues, m_paramCount);
m_parentFrame->script()->cleanupScriptObjectsForPlugin(this);
if (m_plugin && !(m_plugin->quirks().contains(PluginQuirkDontUnloadPlugin)))
m_plugin->unload();
m_window = 0;
}
// Used before the plugin view has been initialized properly, and as a
// fallback for variables that do not require a view to resolve.
NPError PluginView::getValueStatic(NPNVariable variable, void* value)
{
LOG(Plugins, "PluginView::getValueStatic(%s)", prettyNameForNPNVariable(variable).data());
switch (variable) {
case NPNVToolkit:
*static_cast<uint32*>(value) = 0;
return NPERR_NO_ERROR;
case NPNVjavascriptEnabledBool:
*static_cast<NPBool*>(value) = true;
return NPERR_NO_ERROR;
#ifndef NP_NO_CARBON
case NPNVsupportsCarbonBool:
*static_cast<NPBool*>(value) = true;
return NPERR_NO_ERROR;
#endif
case NPNVsupportsCocoaBool:
*static_cast<NPBool*>(value) = false;
return NPERR_NO_ERROR;
// CoreGraphics is the only drawing model we support
case NPNVsupportsCoreGraphicsBool:
*static_cast<NPBool*>(value) = true;
return NPERR_NO_ERROR;
#ifndef NP_NO_QUICKDRAW
// QuickDraw is deprecated in 10.5 and not supported on 64-bit
case NPNVsupportsQuickDrawBool:
#endif
case NPNVsupportsOpenGLBool:
case NPNVsupportsCoreAnimationBool:
*static_cast<NPBool*>(value) = false;
return NPERR_NO_ERROR;
default:
return NPERR_GENERIC_ERROR;
}
}
// Used only for variables that need a view to resolve
NPError PluginView::getValue(NPNVariable variable, void* value)
{
LOG(Plugins, "PluginView::getValue(%s)", prettyNameForNPNVariable(variable).data());
switch (variable) {
case NPNVWindowNPObject: {
if (m_isJavaScriptPaused)
return NPERR_GENERIC_ERROR;
NPObject* windowScriptObject = m_parentFrame->script()->windowScriptNPObject();
// Return value is expected to be retained, as described in
// <http://www.mozilla.org/projects/plugin/npruntime.html>
if (windowScriptObject)
_NPN_RetainObject(windowScriptObject);
void** v = (void**)value;
*v = windowScriptObject;
return NPERR_NO_ERROR;
}
case NPNVPluginElementNPObject: {
if (m_isJavaScriptPaused)
return NPERR_GENERIC_ERROR;
NPObject* pluginScriptObject = 0;
if (m_element->hasTagName(appletTag) || m_element->hasTagName(embedTag) || m_element->hasTagName(objectTag))
pluginScriptObject = static_cast<HTMLPlugInElement*>(m_element)->getNPObject();
// Return value is expected to be retained, as described in
// <http://www.mozilla.org/projects/plugin/npruntime.html>
if (pluginScriptObject)
_NPN_RetainObject(pluginScriptObject);
void** v = (void**)value;
*v = pluginScriptObject;
return NPERR_NO_ERROR;
}
default:
return getValueStatic(variable, value);
}
}
void PluginView::setParent(ScrollView* parent)
{
LOG(Plugins, "PluginView::setParent(%p)", parent);
Widget::setParent(parent);
if (parent)
init();
}
// -------------- Geometry and painting ----------------
void PluginView::show()
{
LOG(Plugins, "PluginView::show()");
setSelfVisible(true);
Widget::show();
}
void PluginView::hide()
{
LOG(Plugins, "PluginView::hide()");
setSelfVisible(false);
Widget::hide();
}
void PluginView::setFocus()
{
LOG(Plugins, "PluginView::setFocus()");
if (platformPluginWidget())
platformPluginWidget()->setFocus(Qt::OtherFocusReason);
else
Widget::setFocus();
// TODO: Also handle and pass on blur events (focus lost)
EventRecord record;
record.what = getFocusEvent;
record.message = 0;
record.when = TickCount();
record.where = globalMousePosForPlugin();
record.modifiers = GetCurrentKeyModifiers();
if (!dispatchNPEvent(record))
LOG(Events, "PluginView::setFocus(): Get-focus event not accepted");
}
void PluginView::setParentVisible(bool visible)
{
if (isParentVisible() == visible)
return;
Widget::setParentVisible(visible);
}
void PluginView::setNPWindowRect(const IntRect&)
{
setNPWindowIfNeeded();
}
void PluginView::setNPWindowIfNeeded()
{
if (!m_isStarted || !parent() || !m_plugin->pluginFuncs()->setwindow)
return;
CGContextRef newContextRef = cgHandleFor(platformPluginWidget());
if (!newContextRef)
return;
WindowRef newWindowRef = nativeWindowFor(platformPluginWidget());
if (!newWindowRef)
return;
m_npWindow.type = NPWindowTypeWindow;
m_npWindow.window = (void*)&m_npCgContext;
m_npCgContext.window = newWindowRef;
m_npCgContext.context = newContextRef;
m_npWindow.x = m_windowRect.x();
m_npWindow.y = m_windowRect.y();
m_npWindow.width = m_windowRect.width();
m_npWindow.height = m_windowRect.height();
// TODO: (also clip against scrollbars, etc.)
m_npWindow.clipRect.left = max(0, m_windowRect.x());
m_npWindow.clipRect.top = max(0, m_windowRect.y());
m_npWindow.clipRect.right = m_windowRect.x() + m_windowRect.width();
m_npWindow.clipRect.bottom = m_windowRect.y() + m_windowRect.height();
LOG(Plugins, "PluginView::setNPWindowIfNeeded(): window=%p, context=%p,"
" window.x:%d window.y:%d window.width:%d window.height:%d window.clipRect size:%dx%d",
newWindowRef, newContextRef, m_npWindow.x, m_npWindow.y, m_npWindow.width, m_npWindow.height,
m_npWindow.clipRect.right - m_npWindow.clipRect.left, m_npWindow.clipRect.bottom - m_npWindow.clipRect.top);
PluginView::setCurrentPluginView(this);
JSC::JSLock::DropAllLocks dropAllLocks(JSC::SilenceAssertionsOnly);
setCallingPlugin(true);
m_plugin->pluginFuncs()->setwindow(m_instance, &m_npWindow);
setCallingPlugin(false);
PluginView::setCurrentPluginView(0);
}
void PluginView::updatePluginWidget()
{
if (!parent())
return;
ASSERT(parent()->isFrameView());
FrameView* frameView = static_cast<FrameView*>(parent());
IntRect oldWindowRect = m_windowRect;
IntRect oldClipRect = m_clipRect;
m_windowRect = frameView->contentsToWindow(frameRect());
IntPoint offset = topLevelOffsetFor(platformPluginWidget());
m_windowRect.move(offset.x(), offset.y());
m_clipRect = windowClipRect();
m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
if (platformPluginWidget() && (m_windowRect != oldWindowRect || m_clipRect != oldClipRect))
setNPWindowIfNeeded();
}
void PluginView::paint(GraphicsContext* context, const IntRect& rect)
{
if (!m_isStarted || m_status != PluginStatusLoadedSuccessfully) {
paintMissingPluginIcon(context, rect);
return;
}
if (context->paintingDisabled())
return;
setNPWindowIfNeeded();
EventRecord event;
event.what = updateEvt;
event.message = (long unsigned int)m_npCgContext.window;
event.when = TickCount();
event.where.h = 0;
event.where.v = 0;
event.modifiers = GetCurrentKeyModifiers();
CGContextRef cg = m_npCgContext.context;
CGContextSaveGState(cg);
IntPoint offset = frameRect().location();
CGContextTranslateCTM(cg, offset.x(), offset.y());
if (!dispatchNPEvent(event))
LOG(Events, "PluginView::paint(): Paint event not accepted");
CGContextRestoreGState(cg);
}
void PluginView::invalidateRect(const IntRect& rect)
{
if (platformPluginWidget())
platformPluginWidget()->update(convertToContainingWindow(rect));
}
void PluginView::invalidateRect(NPRect* rect)
{
// TODO: optimize
invalidate();
}
void PluginView::invalidateRegion(NPRegion region)
{
// TODO: optimize
invalidate();
}
void PluginView::forceRedraw()
{
notImplemented();
}
// ----------------- Event handling --------------------
void PluginView::handleMouseEvent(MouseEvent* event)
{
if (!m_isStarted)
return;
EventRecord record;
if (event->type() == eventNames().mousemoveEvent) {
// Mouse movement is handled by null timer events
return;
} else if (event->type() == eventNames().mouseoverEvent) {
record.what = adjustCursorEvent;
} else if (event->type() == eventNames().mouseoutEvent) {
record.what = adjustCursorEvent;
} else if (event->type() == eventNames().mousedownEvent) {
record.what = mouseDown;
// The plugin needs focus to receive keyboard events
if (Page* page = m_parentFrame->page())
page->focusController()->setFocusedFrame(m_parentFrame);
m_parentFrame->document()->setFocusedNode(m_element);
} else if (event->type() == eventNames().mouseupEvent) {
record.what = mouseUp;
} else {
return;
}
record.where = globalMousePosForPlugin();
record.modifiers = modifiersForEvent(event);
if (!event->buttonDown())
record.modifiers |= btnState;
if (event->button() == 2)
record.modifiers |= controlKey;
if (!dispatchNPEvent(record)) {
if (record.what == adjustCursorEvent)
return; // Signals that the plugin wants a normal cursor
LOG(Events, "PluginView::handleMouseEvent(): Mouse event type %d at %d,%d not accepted",
record.what, record.where.h, record.where.v);
} else {
event->setDefaultHandled();
}
}
void PluginView::handleKeyboardEvent(KeyboardEvent* event)
{
if (!m_isStarted)
return;
LOG(Plugins, "PluginView::handleKeyboardEvent() ----------------- ");
LOG(Plugins, "PV::hKE(): KE.keyCode: 0x%02X, KE.charCode: %d",
event->keyCode(), event->charCode());
EventRecord record;
if (event->type() == eventNames().keydownEvent) {
// This event is the result of a PlatformKeyboardEvent::KeyDown which
// was disambiguated into a PlatformKeyboardEvent::RawKeyDown. Since
// we don't have access to the text here, we return, and wait for the
// corresponding event based on PlatformKeyboardEvent::Char.
return;
} else if (event->type() == eventNames().keypressEvent) {
// Which would be this one. This event was disambiguated from the same
// PlatformKeyboardEvent::KeyDown, but to a PlatformKeyboardEvent::Char,
// which retains the text from the original event. So, we can safely pass
// on the event as a key-down event to the plugin.
record.what = keyDown;
} else if (event->type() == eventNames().keyupEvent) {
// PlatformKeyboardEvent::KeyUp events always have the text, so nothing
// fancy here.
record.what = keyUp;
} else {
return;
}
const PlatformKeyboardEvent* platformEvent = event->keyEvent();
int keyCode = platformEvent->nativeVirtualKeyCode();
const String text = platformEvent->text();
if (text.length() < 1) {
event->setDefaultHandled();
return;
}
WTF::RetainPtr<CFStringRef> cfText(WTF::AdoptCF, text.createCFString());
LOG(Plugins, "PV::hKE(): PKE.text: %s, PKE.unmodifiedText: %s, PKE.keyIdentifier: %s",
text.ascii().data(), platformEvent->unmodifiedText().ascii().data(),
platformEvent->keyIdentifier().ascii().data());
char charCodes[2] = { 0, 0 };
if (!CFStringGetCString(cfText.get(), charCodes, 2, CFStringGetSystemEncoding())) {
LOG_ERROR("Could not resolve character code using system encoding.");
event->setDefaultHandled();
return;
}
record.where = globalMousePosForPlugin();
record.modifiers = modifiersForEvent(event);
record.message = ((keyCode & 0xFF) << 8) | (charCodes[0] & 0xFF);
record.when = TickCount();
LOG(Plugins, "PV::hKE(): record.modifiers: %d", record.modifiers);
LOG(Plugins, "PV::hKE(): PKE.qtEvent()->nativeVirtualKey: 0x%02X, charCode: %d",
keyCode, int(uchar(charCodes[0])));
if (!dispatchNPEvent(record))
LOG(Events, "PluginView::handleKeyboardEvent(): Keyboard event type %d not accepted", record.what);
else
event->setDefaultHandled();
}
void PluginView::nullEventTimerFired(Timer<PluginView>*)
{
EventRecord record;
record.what = nullEvent;
record.message = 0;
record.when = TickCount();
record.where = globalMousePosForPlugin();
record.modifiers = GetCurrentKeyModifiers();
if (!Button())
record.modifiers |= btnState;
if (!dispatchNPEvent(record))
LOG(Events, "PluginView::nullEventTimerFired(): Null event not accepted");
}
static int modifiersForEvent(UIEventWithKeyState* event)
{
int modifiers = 0;
if (event->ctrlKey())
modifiers |= controlKey;
if (event->altKey())
modifiers |= optionKey;
if (event->metaKey())
modifiers |= cmdKey;
if (event->shiftKey())
modifiers |= shiftKey;
return modifiers;
}
static bool tigerOrBetter()
{
static SInt32 systemVersion = 0;
if (!systemVersion) {
if (Gestalt(gestaltSystemVersion, &systemVersion) != noErr)
return false;
}
return systemVersion >= 0x1040;
}
Point PluginView::globalMousePosForPlugin() const
{
Point pos;
GetGlobalMouse(&pos);
float scaleFactor = tigerOrBetter() ? HIGetScaleFactor() : 1;
pos.h = short(pos.h * scaleFactor);
pos.v = short(pos.v * scaleFactor);
return pos;
}
bool PluginView::dispatchNPEvent(NPEvent& event)
{
PluginView::setCurrentPluginView(this);
JSC::JSLock::DropAllLocks dropAllLocks(JSC::SilenceAssertionsOnly);
setCallingPlugin(true);
bool accepted = m_plugin->pluginFuncs()->event(m_instance, &event);
setCallingPlugin(false);
PluginView::setCurrentPluginView(0);
return accepted;
}
// ------------------- Miscellaneous ------------------
NPError PluginView::handlePostReadFile(Vector<char>& buffer, uint32 len, const char* buf)
{
String filename(buf, len);
if (filename.startsWith("file:///"))
filename = filename.substring(8);
if (!fileExists(filename))
return NPERR_FILE_NOT_FOUND;
FILE* fileHandle = fopen((filename.utf8()).data(), "r");
if (fileHandle == 0)
return NPERR_FILE_NOT_FOUND;
int bytesRead = fread(buffer.data(), 1, 0, fileHandle);
fclose(fileHandle);
if (bytesRead <= 0)
return NPERR_FILE_NOT_FOUND;
return NPERR_NO_ERROR;
}
void PluginView::platformStart()
{
}
} // namespace WebCore
#else
#include "../PluginViewNone.cpp"
#endif // !__LP64__