summaryrefslogtreecommitdiffstats
path: root/WebKit/android/plugins/PluginWidgetAndroid.cpp
blob: 712d727f33c8931af83c1b312df8e78f3adf9d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
/*
 * Copyright 2008, The Android Open Source Project
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *  * Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *  * 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 THE COPYRIGHT HOLDERS ``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.
 */

#include "config.h"
#include "android_graphics.h"
#include "Document.h"
#include "Element.h"
#include "Frame.h"
#include "PluginPackage.h"
#include "PluginView.h"
#include "PluginWidgetAndroid.h"
#include "ScrollView.h"
#include "SkANP.h"
#include "SkFlipPixelRef.h"
#include "SkString.h"
#include "WebViewCore.h"

#define DEBUG_VISIBLE_RECTS 1 // temporary debug printfs and fixes

PluginWidgetAndroid::PluginWidgetAndroid(WebCore::PluginView* view)
        : m_pluginView(view) {
    m_flipPixelRef = NULL;
    m_core = NULL;
    m_drawingModel = kBitmap_ANPDrawingModel;
    m_eventFlags = 0;
    m_pluginWindow = NULL;
    m_requestedVisibleRectCount = 0;
    m_requestedFrameRect.setEmpty();
    m_visibleDocRect.setEmpty();
    m_pluginBounds.setEmpty();
    m_hasFocus = false;
    m_zoomLevel = 0;
    m_javaClassName = NULL;
    m_childView = NULL;
}

PluginWidgetAndroid::~PluginWidgetAndroid() {
    if (m_core) {
        m_core->removePlugin(this);
        if (m_childView) {
            m_core->destroySurface(m_childView);
        }
    }
    if (m_javaClassName) {
        free(m_javaClassName);
    }
    m_flipPixelRef->safeUnref();
}

void PluginWidgetAndroid::init(android::WebViewCore* core) {
    m_core = core;
    m_core->addPlugin(this);
}

static SkBitmap::Config computeConfig(bool isTransparent) {
    return isTransparent ? SkBitmap::kARGB_8888_Config
                         : SkBitmap::kRGB_565_Config;
}

void PluginWidgetAndroid::setWindow(NPWindow* window, bool isTransparent) {

    // store the reference locally for easy lookup
    m_pluginWindow = window;

    // make a copy of the previous bounds
    SkIRect oldPluginBounds = m_pluginBounds;

    // keep a local copy of the plugin bounds because the m_pluginWindow pointer
    // gets updated values prior to this method being called
    m_pluginBounds.set(m_pluginWindow->x, m_pluginWindow->y,
                       m_pluginWindow->x + m_pluginWindow->width,
                       m_pluginWindow->y + m_pluginWindow->height);

    if (m_drawingModel == kSurface_ANPDrawingModel) {

        IntPoint docPoint = frameToDocumentCoords(window->x, window->y);

        // if the surface exists check for changes and update accordingly
        if (m_childView && m_pluginBounds != oldPluginBounds) {

            m_core->updateSurface(m_childView, docPoint.x(), docPoint.y(),
                                  window->width, window->height);

        // if the surface does not exist then create a new surface
        } else if(!m_childView) {

            const String& libName = m_pluginView->plugin()->path();
            SkString skLibName;
            skLibName.setUTF16(libName.characters(), libName.length());

            m_childView = m_core->createSurface(skLibName.c_str(), m_javaClassName,
                                                m_pluginView->instance(),
                                                docPoint.x(), docPoint.y(),
                                                window->width, window->height);
        }
    } else {
        m_flipPixelRef->safeUnref();
        m_flipPixelRef = new SkFlipPixelRef(computeConfig(isTransparent),
                                            window->width, window->height);
    }
}

bool PluginWidgetAndroid::setPluginStubJavaClassName(const char* className) {

    if (m_javaClassName) {
        free(m_javaClassName);
    }

    // don't call strdup() if the className is to be set to NULL
    if (!className) {
        m_javaClassName = NULL;
        return true;
    }

    // make a local copy of the className
    m_javaClassName = strdup(className);
    return (m_javaClassName != NULL);
}

void PluginWidgetAndroid::requestFullScreenMode() {

    if (!m_javaClassName) {
        return;
    }

    const String& libName = m_pluginView->plugin()->path();
    SkString skLibName;
    skLibName.setUTF16(libName.characters(), libName.length());

    m_core->startFullScreenPluginActivity(skLibName.c_str(), m_javaClassName,
                                          m_pluginView->instance());
}

bool PluginWidgetAndroid::setDrawingModel(ANPDrawingModel model) {

    // disallow the surface drawing model if no java class name has been given
    if (model == kSurface_ANPDrawingModel && m_javaClassName == NULL) {
        return false;
    }

    m_drawingModel = model;
    return true;
}

void PluginWidgetAndroid::localToDocumentCoords(SkIRect* rect) const {
    if (m_pluginWindow) {
        IntPoint pluginDocCoords = frameToDocumentCoords(m_pluginWindow->x,
                                                         m_pluginWindow->y);
        rect->offset(pluginDocCoords.x(), pluginDocCoords.y());
    }
}

bool PluginWidgetAndroid::isDirty(SkIRect* rect) const {
    // nothing to report if we haven't had setWindow() called yet
    if (NULL == m_flipPixelRef) {
        return false;
    }

    const SkRegion& dirty = m_flipPixelRef->dirtyRgn();
    if (dirty.isEmpty()) {
        return false;
    } else {
        if (rect) {
            *rect = dirty.getBounds();
        }
        return true;
    }
}

void PluginWidgetAndroid::inval(const WebCore::IntRect& rect,
                                bool signalRedraw) {
    // nothing to do if we haven't had setWindow() called yet. m_flipPixelRef
    // will also be null if this is a Surface model.
    if (NULL == m_flipPixelRef) {
        return;
    }

    m_flipPixelRef->inval(rect);

    if (signalRedraw && m_flipPixelRef->isDirty()) {
        m_core->invalPlugin(this);
    }
}

void PluginWidgetAndroid::draw(SkCanvas* canvas) {
    if (NULL == m_flipPixelRef || !m_flipPixelRef->isDirty()) {
        return;
    }

    SkAutoFlipUpdate update(m_flipPixelRef);
    const SkBitmap& bitmap = update.bitmap();
    const SkRegion& dirty = update.dirty();

    ANPEvent    event;
    SkANP::InitEvent(&event, kDraw_ANPEventType);

    event.data.draw.model = m_drawingModel;
    SkANP::SetRect(&event.data.draw.clip, dirty.getBounds());

    switch (m_drawingModel) {
        case kBitmap_ANPDrawingModel: {
            WebCore::PluginPackage* pkg = m_pluginView->plugin();
            NPP instance = m_pluginView->instance();

            if (SkANP::SetBitmap(&event.data.draw.data.bitmap,
                                 bitmap) &&
                    pkg->pluginFuncs()->event(instance, &event)) {

                if (canvas && m_pluginWindow) {
                    SkBitmap bm(bitmap);
                    bm.setPixelRef(m_flipPixelRef);
                    canvas->drawBitmap(bm, SkIntToScalar(m_pluginWindow->x),
                                           SkIntToScalar(m_pluginWindow->y), NULL);
                }
            }
            break;
        }
        default:
            break;
    }
}

bool PluginWidgetAndroid::sendEvent(const ANPEvent& evt) {
    WebCore::PluginPackage* pkg = m_pluginView->plugin();
    NPP instance = m_pluginView->instance();
    // "missing" plugins won't have these
    if (pkg && instance) {

        // keep track of whether or not the plugin currently has focus
        if (evt.eventType == kLifecycle_ANPEventType) {
           if (evt.data.lifecycle.action == kLoseFocus_ANPLifecycleAction)
               m_hasFocus = false;
           else if (evt.data.lifecycle.action == kGainFocus_ANPLifecycleAction)
               m_hasFocus = true;
        }

        // make a localCopy since the actual plugin may not respect its constness,
        // and so we don't want our caller to have its param modified
        ANPEvent localCopy = evt;
        return pkg->pluginFuncs()->event(instance, &localCopy);
    }
    return false;
}

void PluginWidgetAndroid::updateEventFlags(ANPEventFlags flags) {

    // if there are no differences then immediately return
    if (m_eventFlags == flags) {
        return;
    }

    Document* doc = m_pluginView->getParentFrame()->document();
    if((m_eventFlags ^ flags) & kTouch_ANPEventFlag) {
        if(flags & kTouch_ANPEventFlag)
            doc->addTouchEventListener(m_pluginView->getElement());
        else
            doc->removeTouchEventListener(m_pluginView->getElement());
    }

    m_eventFlags = flags;
}

bool PluginWidgetAndroid::isAcceptingEvent(ANPEventFlag flag) {
    return m_eventFlags & flag;
}

void PluginWidgetAndroid::setVisibleScreen(const ANPRectI& visibleDocRect, float zoom) {
#if DEBUG_VISIBLE_RECTS
    SkDebugf("%s (%d,%d,%d,%d)", __FUNCTION__, visibleDocRect.left,
        visibleDocRect.top, visibleDocRect.right, visibleDocRect.bottom);
#endif
    // TODO update the bitmap size based on the zoom? (for kBitmap_ANPDrawingModel)

    int oldScreenW = m_visibleDocRect.width();
    int oldScreenH = m_visibleDocRect.height();

    m_visibleDocRect.set(visibleDocRect.left, visibleDocRect.top,
                         visibleDocRect.right, visibleDocRect.bottom);

    int newScreenW = m_visibleDocRect.width();
    int newScreenH = m_visibleDocRect.height();

    if (oldScreenW != newScreenW || oldScreenH != newScreenH)
        computeVisibleFrameRect();
}

void PluginWidgetAndroid::setVisibleRects(const ANPRectI rects[], int32_t count) {
#if DEBUG_VISIBLE_RECTS
    SkDebugf("%s count=%d", __FUNCTION__, count);
#endif
    // ensure the count does not exceed our allocated space
    if (count > MAX_REQUESTED_RECTS)
        count = MAX_REQUESTED_RECTS;

    // store the values in member variables
    m_requestedVisibleRectCount = count;
    memcpy(m_requestedVisibleRect, rects, count * sizeof(rects[0]));

#if DEBUG_VISIBLE_RECTS // FIXME: this fixes bad data from the plugin
    // take it out once plugin supplies better data
    for (int index = 0; index < count; index++) {
        SkDebugf("%s [%d](%d,%d,%d,%d)", __FUNCTION__, index,
            m_requestedVisibleRect[index].left,
            m_requestedVisibleRect[index].top,
            m_requestedVisibleRect[index].right,
            m_requestedVisibleRect[index].bottom);
        if (m_requestedVisibleRect[index].left ==
                m_requestedVisibleRect[index].right) {
            m_requestedVisibleRect[index].right += 1;
        }
        if (m_requestedVisibleRect[index].top ==
                m_requestedVisibleRect[index].bottom) {
            m_requestedVisibleRect[index].bottom += 1;
        }
    }
#endif
    computeVisibleFrameRect();
}

void PluginWidgetAndroid::computeVisibleFrameRect() {

    // ensure the visibleDocRect has been set (i.e. not equal to zero)
    if (m_visibleDocRect.isEmpty() || !m_pluginWindow)
        return;

    // create a rect that will contain as many of the rects that will fit on screen
    SkIRect visibleRect;
    visibleRect.setEmpty();

    for (int counter = 0; counter < m_requestedVisibleRectCount; counter++) {

        ANPRectI* rect = &m_requestedVisibleRect[counter];

        // create skia rect for easier manipulation and convert it to frame coordinates
        SkIRect pluginRect;
        pluginRect.set(rect->left, rect->top, rect->right, rect->bottom);
        pluginRect.offset(m_pluginWindow->x, m_pluginWindow->y);

        // ensure the rect falls within the plugin's bounds
        if (!m_pluginBounds.contains(pluginRect)) {
#if DEBUG_VISIBLE_RECTS
            SkDebugf("%s (%d,%d,%d,%d) !contain (%d,%d,%d,%d)", __FUNCTION__,
                     m_pluginBounds.fLeft, m_pluginBounds.fTop,
                     m_pluginBounds.fRight, m_pluginBounds.fBottom,
                pluginRect.fLeft, pluginRect.fTop,
                pluginRect.fRight, pluginRect.fBottom);
 // FIXME: assume that the desired outcome is to clamp to the container
            pluginRect.intersect(m_pluginBounds);
#endif
            continue;
        }
        // combine this new rect with the higher priority rects
        pluginRect.join(visibleRect);

        // check to see if the new rect fits within the screen bounds. If this
        // is the highest priority rect then attempt to center even if it doesn't
        // fit on the screen.
        if (counter > 0 && (m_visibleDocRect.width() < pluginRect.width() ||
                               m_visibleDocRect.height() < pluginRect.height()))
          break;

        // set the new visible rect
        visibleRect = pluginRect;
    }

    m_requestedFrameRect = visibleRect;
    scrollToVisibleFrameRect();
}

void PluginWidgetAndroid::scrollToVisibleFrameRect() {

    if (!m_hasFocus || m_requestedFrameRect.isEmpty() || m_visibleDocRect.isEmpty()) {
#if DEBUG_VISIBLE_RECTS
        SkDebugf("%s call m_hasFocus=%d m_requestedFrameRect.isEmpty()=%d"
            " m_visibleDocRect.isEmpty()=%d", __FUNCTION__, m_hasFocus,
            m_requestedFrameRect.isEmpty(), m_visibleDocRect.isEmpty());
#endif
        return;
    }
    // if the entire rect is already visible then we don't need to scroll, which
    // requires converting the m_requestedFrameRect from frame to doc coordinates
    IntPoint pluginDocPoint = frameToDocumentCoords(m_requestedFrameRect.fLeft,
                                                    m_requestedFrameRect.fTop);
    SkIRect requestedDocRect;
    requestedDocRect.set(pluginDocPoint.x(), pluginDocPoint.y(),
                         pluginDocPoint.x() + m_requestedFrameRect.width(),
                         pluginDocPoint.y() + m_requestedFrameRect.height());

    if (m_visibleDocRect.contains(requestedDocRect))
        return;

    // find the center of the visibleRect in document coordinates
    int rectCenterX = requestedDocRect.fLeft + requestedDocRect.width()/2;
    int rectCenterY = requestedDocRect.fTop + requestedDocRect.height()/2;

    // find document coordinates for center of the visible screen
    int screenCenterX = m_visibleDocRect.fLeft + m_visibleDocRect.width()/2;
    int screenCenterY = m_visibleDocRect.fTop + m_visibleDocRect.height()/2;

    //compute the delta of the two points
    int deltaX = rectCenterX - screenCenterX;
    int deltaY = rectCenterY - screenCenterY;

    ScrollView* scrollView = m_pluginView->parent();
    android::WebViewCore* core = android::WebViewCore::getWebViewCore(scrollView);
#if DEBUG_VISIBLE_RECTS
    SkDebugf("%s call scrollBy (%d,%d)", __FUNCTION__, deltaX, deltaY);
#endif
    core->scrollBy(deltaX, deltaY, true);
}

IntPoint PluginWidgetAndroid::frameToDocumentCoords(int frameX, int frameY) const {
    IntPoint docPoint = IntPoint(frameX, frameY);

    const ScrollView* currentScrollView = m_pluginView->parent();
    if (currentScrollView) {
        const ScrollView* parentScrollView = currentScrollView->parent();
        while (parentScrollView) {

            docPoint.move(currentScrollView->x(), currentScrollView->y());

            currentScrollView = parentScrollView;
            parentScrollView = parentScrollView->parent();
        }
    }

    return docPoint;
}