2012-02-02 22:07:05 -08:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Android code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009-2010
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Patrick Walton <pcwalton@mozilla.com>
|
|
|
|
* Chris Lord <chrislord.net@gmail.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
package org.mozilla.gecko.gfx;
|
|
|
|
|
|
|
|
import org.mozilla.gecko.FloatUtils;
|
|
|
|
import org.mozilla.gecko.GeckoApp;
|
|
|
|
import org.mozilla.gecko.GeckoAppShell;
|
|
|
|
import org.mozilla.gecko.GeckoEvent;
|
|
|
|
import org.mozilla.gecko.GeckoEventListener;
|
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
import android.content.Context;
|
2012-02-02 23:30:41 -08:00
|
|
|
import android.graphics.Bitmap;
|
2012-02-02 22:07:05 -08:00
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.PointF;
|
|
|
|
import android.graphics.Rect;
|
|
|
|
import android.os.SystemClock;
|
|
|
|
import android.util.DisplayMetrics;
|
|
|
|
import android.util.Log;
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
|
|
|
public abstract class GeckoLayerClient extends LayerClient implements GeckoEventListener {
|
|
|
|
private static final String LOGTAG = "GeckoLayerClient";
|
|
|
|
|
2012-02-02 23:30:41 -08:00
|
|
|
public static final int LAYER_CLIENT_TYPE_NONE = 0;
|
|
|
|
public static final int LAYER_CLIENT_TYPE_SOFTWARE = 1;
|
|
|
|
public static final int LAYER_CLIENT_TYPE_GL = 2;
|
|
|
|
|
2012-02-02 22:07:05 -08:00
|
|
|
protected IntSize mScreenSize;
|
|
|
|
protected IntSize mBufferSize;
|
|
|
|
|
|
|
|
protected Layer mTileLayer;
|
|
|
|
|
|
|
|
/* The viewport that Gecko is currently displaying. */
|
|
|
|
protected ViewportMetrics mGeckoViewport;
|
|
|
|
|
|
|
|
/* The viewport that Gecko will display when drawing is finished */
|
|
|
|
protected ViewportMetrics mNewGeckoViewport;
|
|
|
|
|
2012-02-07 23:10:58 -08:00
|
|
|
private static final long MIN_VIEWPORT_CHANGE_DELAY = 25L;
|
2012-02-02 22:07:05 -08:00
|
|
|
private long mLastViewportChangeTime;
|
|
|
|
private boolean mPendingViewportAdjust;
|
|
|
|
private boolean mViewportSizeChanged;
|
|
|
|
|
|
|
|
// mUpdateViewportOnEndDraw is used to indicate that we received a
|
|
|
|
// viewport update notification while drawing. therefore, when the
|
|
|
|
// draw finishes, we need to update the entire viewport rather than
|
|
|
|
// just the page size. this boolean should always be accessed from
|
|
|
|
// inside a transaction, so no synchronization is needed.
|
|
|
|
private boolean mUpdateViewportOnEndDraw;
|
|
|
|
|
2012-02-16 09:04:37 -08:00
|
|
|
private String mLastCheckerboardColor;
|
|
|
|
|
2012-02-02 22:07:05 -08:00
|
|
|
private static Pattern sColorPattern;
|
|
|
|
|
|
|
|
/* Used by robocop for testing purposes */
|
|
|
|
private DrawListener mDrawListener;
|
|
|
|
|
|
|
|
protected abstract boolean handleDirectTextureChange(boolean hasDirectTexture);
|
|
|
|
protected abstract boolean shouldDrawProceed(int tileWidth, int tileHeight);
|
|
|
|
protected abstract void updateLayerAfterDraw(Rect updatedRect);
|
|
|
|
protected abstract IntSize getBufferSize();
|
|
|
|
protected abstract IntSize getTileSize();
|
2012-02-03 23:31:05 -08:00
|
|
|
protected abstract void tileLayerUpdated();
|
2012-02-02 23:30:41 -08:00
|
|
|
public abstract Bitmap getBitmap();
|
|
|
|
public abstract int getType();
|
2012-02-02 22:07:05 -08:00
|
|
|
|
|
|
|
public GeckoLayerClient(Context context) {
|
|
|
|
mScreenSize = new IntSize(0, 0);
|
|
|
|
mBufferSize = new IntSize(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Attaches the root layer to the layer controller so that Gecko appears. */
|
|
|
|
@Override
|
|
|
|
public void setLayerController(LayerController layerController) {
|
|
|
|
super.setLayerController(layerController);
|
|
|
|
|
|
|
|
layerController.setRoot(mTileLayer);
|
|
|
|
if (mGeckoViewport != null) {
|
|
|
|
layerController.setViewportMetrics(mGeckoViewport);
|
|
|
|
}
|
|
|
|
|
|
|
|
GeckoAppShell.registerGeckoEventListener("Viewport:UpdateAndDraw", this);
|
|
|
|
GeckoAppShell.registerGeckoEventListener("Viewport:UpdateLater", this);
|
|
|
|
|
|
|
|
sendResizeEventIfNecessary();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean beginDrawing(int width, int height, int tileWidth, int tileHeight,
|
|
|
|
String metadata, boolean hasDirectTexture) {
|
2012-02-03 15:48:26 -08:00
|
|
|
Log.e(LOGTAG, "### beginDrawing " + width + " " + height + " " + tileWidth + " " +
|
|
|
|
tileHeight + " " + hasDirectTexture);
|
|
|
|
|
2012-02-02 22:07:05 -08:00
|
|
|
// If we've changed surface types, cancel this draw
|
|
|
|
if (handleDirectTextureChange(hasDirectTexture)) {
|
2012-02-03 15:48:26 -08:00
|
|
|
Log.e(LOGTAG, "### Cancelling draw due to direct texture change");
|
2012-02-02 22:07:05 -08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!shouldDrawProceed(tileWidth, tileHeight)) {
|
2012-02-03 15:48:26 -08:00
|
|
|
Log.e(LOGTAG, "### Cancelling draw due to shouldDrawProceed()");
|
2012-02-02 22:07:05 -08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
JSONObject viewportObject = new JSONObject(metadata);
|
|
|
|
mNewGeckoViewport = new ViewportMetrics(viewportObject);
|
|
|
|
|
2012-02-03 23:31:05 -08:00
|
|
|
Log.e(LOGTAG, "### beginDrawing new Gecko viewport " + mNewGeckoViewport);
|
|
|
|
|
2012-02-02 22:07:05 -08:00
|
|
|
// Update the background color, if it's present.
|
|
|
|
String backgroundColorString = viewportObject.optString("backgroundColor");
|
2012-02-16 09:04:37 -08:00
|
|
|
if (backgroundColorString != null && !backgroundColorString.equals(mLastCheckerboardColor)) {
|
|
|
|
mLastCheckerboardColor = backgroundColorString;
|
2012-02-02 22:07:05 -08:00
|
|
|
LayerController controller = getLayerController();
|
|
|
|
controller.setCheckerboardColor(parseColorFromGecko(backgroundColorString));
|
|
|
|
}
|
|
|
|
} catch (JSONException e) {
|
|
|
|
Log.e(LOGTAG, "Aborting draw, bad viewport description: " + metadata);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
beginTransaction(mTileLayer);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: Would be cleaner if this took an android.graphics.Rect instead, but that would require
|
|
|
|
* a little more JNI magic.
|
|
|
|
*/
|
|
|
|
public void endDrawing(int x, int y, int width, int height) {
|
|
|
|
synchronized (getLayerController()) {
|
|
|
|
try {
|
|
|
|
updateViewport(!mUpdateViewportOnEndDraw);
|
|
|
|
mUpdateViewportOnEndDraw = false;
|
|
|
|
|
|
|
|
Rect rect = new Rect(x, y, x + width, y + height);
|
|
|
|
updateLayerAfterDraw(rect);
|
|
|
|
} finally {
|
|
|
|
endTransaction(mTileLayer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Log.i(LOGTAG, "zerdatime " + SystemClock.uptimeMillis() + " - endDrawing");
|
|
|
|
|
|
|
|
/* Used by robocop for testing purposes */
|
|
|
|
if (mDrawListener != null) {
|
|
|
|
mDrawListener.drawFinished(x, y, width, height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void updateViewport(boolean onlyUpdatePageSize) {
|
|
|
|
// save and restore the viewport size stored in java; never let the
|
|
|
|
// JS-side viewport dimensions override the java-side ones because
|
|
|
|
// java is the One True Source of this information, and allowing JS
|
|
|
|
// to override can lead to race conditions where this data gets clobbered.
|
|
|
|
FloatSize viewportSize = getLayerController().getViewportSize();
|
|
|
|
mGeckoViewport = mNewGeckoViewport;
|
|
|
|
mGeckoViewport.setSize(viewportSize);
|
|
|
|
|
|
|
|
LayerController controller = getLayerController();
|
|
|
|
PointF displayportOrigin = mGeckoViewport.getDisplayportOrigin();
|
|
|
|
mTileLayer.setOrigin(PointUtils.round(displayportOrigin));
|
|
|
|
mTileLayer.setResolution(mGeckoViewport.getZoomFactor());
|
|
|
|
|
2012-02-03 23:31:05 -08:00
|
|
|
this.tileLayerUpdated();
|
|
|
|
Log.e(LOGTAG, "### updateViewport onlyUpdatePageSize=" + onlyUpdatePageSize +
|
|
|
|
" getTileViewport " + mGeckoViewport);
|
|
|
|
|
2012-02-02 22:07:05 -08:00
|
|
|
if (onlyUpdatePageSize) {
|
|
|
|
// Don't adjust page size when zooming unless zoom levels are
|
|
|
|
// approximately equal.
|
|
|
|
if (FloatUtils.fuzzyEquals(controller.getZoomFactor(),
|
|
|
|
mGeckoViewport.getZoomFactor()))
|
|
|
|
controller.setPageSize(mGeckoViewport.getPageSize());
|
|
|
|
} else {
|
|
|
|
controller.setViewportMetrics(mGeckoViewport);
|
|
|
|
controller.abortPanZoomAnimation();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Informs Gecko that the screen size has changed. */
|
|
|
|
protected void sendResizeEventIfNecessary(boolean force) {
|
2012-02-03 15:48:26 -08:00
|
|
|
Log.e(LOGTAG, "### sendResizeEventIfNecessary " + force);
|
|
|
|
|
2012-02-02 22:07:05 -08:00
|
|
|
DisplayMetrics metrics = new DisplayMetrics();
|
|
|
|
GeckoApp.mAppContext.getWindowManager().getDefaultDisplay().getMetrics(metrics);
|
|
|
|
|
|
|
|
// Return immediately if the screen size hasn't changed or the viewport
|
|
|
|
// size is zero (which indicates that the rendering surface hasn't been
|
|
|
|
// allocated yet).
|
|
|
|
boolean screenSizeChanged = (metrics.widthPixels != mScreenSize.width ||
|
|
|
|
metrics.heightPixels != mScreenSize.height);
|
|
|
|
boolean viewportSizeValid = (getLayerController() != null &&
|
|
|
|
getLayerController().getViewportSize().isPositive());
|
|
|
|
if (!(force || (screenSizeChanged && viewportSizeValid))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mScreenSize = new IntSize(metrics.widthPixels, metrics.heightPixels);
|
|
|
|
IntSize bufferSize = getBufferSize(), tileSize = getTileSize();
|
|
|
|
|
2012-02-03 15:48:26 -08:00
|
|
|
Log.e(LOGTAG, "### Screen-size changed to " + mScreenSize);
|
2012-02-02 22:07:05 -08:00
|
|
|
GeckoEvent event = new GeckoEvent(GeckoEvent.SIZE_CHANGED,
|
|
|
|
bufferSize.width, bufferSize.height,
|
|
|
|
metrics.widthPixels, metrics.heightPixels,
|
|
|
|
tileSize.width, tileSize.height);
|
|
|
|
GeckoAppShell.sendEventToGecko(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parses a color from an RGB triple of the form "rgb([0-9]+, [0-9]+, [0-9]+)". If the color
|
|
|
|
// cannot be parsed, returns white.
|
|
|
|
private static int parseColorFromGecko(String string) {
|
|
|
|
if (sColorPattern == null) {
|
|
|
|
sColorPattern = Pattern.compile("rgb\\((\\d+),\\s*(\\d+),\\s*(\\d+)\\)");
|
|
|
|
}
|
|
|
|
|
|
|
|
Matcher matcher = sColorPattern.matcher(string);
|
|
|
|
if (!matcher.matches()) {
|
|
|
|
return Color.WHITE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int r = Integer.parseInt(matcher.group(1));
|
|
|
|
int g = Integer.parseInt(matcher.group(2));
|
|
|
|
int b = Integer.parseInt(matcher.group(3));
|
|
|
|
return Color.rgb(r, g, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void render() {
|
|
|
|
adjustViewportWithThrottling();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void adjustViewportWithThrottling() {
|
2012-02-13 22:48:00 -08:00
|
|
|
if (!getLayerController().getRedrawHint())
|
|
|
|
return;
|
2012-02-02 22:07:05 -08:00
|
|
|
|
|
|
|
if (mPendingViewportAdjust)
|
|
|
|
return;
|
|
|
|
|
|
|
|
long timeDelta = System.currentTimeMillis() - mLastViewportChangeTime;
|
|
|
|
if (timeDelta < MIN_VIEWPORT_CHANGE_DELAY) {
|
|
|
|
getLayerController().getView().postDelayed(
|
|
|
|
new Runnable() {
|
|
|
|
public void run() {
|
|
|
|
mPendingViewportAdjust = false;
|
|
|
|
adjustViewport();
|
|
|
|
}
|
|
|
|
}, MIN_VIEWPORT_CHANGE_DELAY - timeDelta);
|
|
|
|
mPendingViewportAdjust = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
adjustViewport();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void viewportSizeChanged() {
|
|
|
|
mViewportSizeChanged = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void adjustViewport() {
|
|
|
|
ViewportMetrics viewportMetrics =
|
|
|
|
new ViewportMetrics(getLayerController().getViewportMetrics());
|
|
|
|
|
|
|
|
PointF viewportOffset = viewportMetrics.getOptimumViewportOffset(mBufferSize);
|
|
|
|
viewportMetrics.setViewportOffset(viewportOffset);
|
|
|
|
viewportMetrics.setViewport(viewportMetrics.getClampedViewport());
|
|
|
|
|
|
|
|
GeckoAppShell.sendEventToGecko(new GeckoEvent(viewportMetrics));
|
|
|
|
if (mViewportSizeChanged) {
|
|
|
|
mViewportSizeChanged = false;
|
|
|
|
GeckoAppShell.viewSizeChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
mLastViewportChangeTime = System.currentTimeMillis();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void handleMessage(String event, JSONObject message) {
|
|
|
|
if ("Viewport:UpdateAndDraw".equals(event)) {
|
2012-02-03 23:31:05 -08:00
|
|
|
Log.e(LOGTAG, "### Java side Viewport:UpdateAndDraw()!");
|
2012-02-02 22:07:05 -08:00
|
|
|
mUpdateViewportOnEndDraw = true;
|
|
|
|
|
|
|
|
// Redraw everything.
|
|
|
|
Rect rect = new Rect(0, 0, mBufferSize.width, mBufferSize.height);
|
|
|
|
GeckoAppShell.sendEventToGecko(new GeckoEvent(GeckoEvent.DRAW, rect));
|
|
|
|
} else if ("Viewport:UpdateLater".equals(event)) {
|
2012-02-03 23:31:05 -08:00
|
|
|
Log.e(LOGTAG, "### Java side Viewport:UpdateLater()!");
|
2012-02-02 22:07:05 -08:00
|
|
|
mUpdateViewportOnEndDraw = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void geometryChanged() {
|
|
|
|
/* Let Gecko know if the screensize has changed */
|
|
|
|
sendResizeEventIfNecessary();
|
|
|
|
render();
|
|
|
|
}
|
|
|
|
|
2012-02-02 23:30:41 -08:00
|
|
|
public int getWidth() {
|
|
|
|
return mBufferSize.width;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getHeight() {
|
|
|
|
return mBufferSize.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ViewportMetrics getGeckoViewportMetrics() {
|
|
|
|
// Return a copy, as we modify this inside the Gecko thread
|
|
|
|
if (mGeckoViewport != null)
|
|
|
|
return new ViewportMetrics(mGeckoViewport);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2012-02-02 22:07:05 -08:00
|
|
|
private void sendResizeEventIfNecessary() {
|
|
|
|
sendResizeEventIfNecessary(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Used by robocop for testing purposes. Not for production use! This is called via reflection by robocop. */
|
|
|
|
public void setDrawListener(DrawListener listener) {
|
|
|
|
mDrawListener = listener;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Used by robocop for testing purposes. Not for production use! This is used via reflection by robocop. */
|
|
|
|
public interface DrawListener {
|
|
|
|
public void drawFinished(int x, int y, int width, int height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|