blob: 89b86300a089a3672db21ee80398a0c8dba12f5b [file] [log] [blame]
Andrei Popescu6fa29582009-06-19 14:54:09 +01001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.webkit;
18
19import android.content.Context;
Andrei Popescu64b86a12009-09-15 20:34:18 +010020import android.graphics.Bitmap;
21import android.graphics.BitmapFactory;
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -080022import android.graphics.SurfaceTexture;
Andrei Popescu3c946a1a2009-07-03 08:20:53 +010023import android.media.MediaPlayer;
Andrei Popescu64b86a12009-09-15 20:34:18 +010024import android.net.http.EventHandler;
25import android.net.http.Headers;
26import android.net.http.RequestHandle;
27import android.net.http.RequestQueue;
28import android.net.http.SslCertificate;
29import android.net.http.SslError;
Andrei Popescu6fa29582009-06-19 14:54:09 +010030import android.os.Handler;
31import android.os.Looper;
32import android.os.Message;
33import android.util.Log;
Andrei Popescu6fa29582009-06-19 14:54:09 +010034
Andrei Popescu64b86a12009-09-15 20:34:18 +010035import java.io.ByteArrayOutputStream;
36import java.io.IOException;
Ben Murdoch42509792011-02-18 12:34:35 +000037import java.net.MalformedURLException;
38import java.net.URL;
Andrei Popescu6fa29582009-06-19 14:54:09 +010039import java.util.HashMap;
Andrei Popescu290c34a2009-09-17 15:55:24 +010040import java.util.Map;
Andrei Popescu6fa29582009-06-19 14:54:09 +010041
42/**
Andrei Popescu3c946a1a2009-07-03 08:20:53 +010043 * <p>Proxy for HTML5 video views.
Andrei Popescu6fa29582009-06-19 14:54:09 +010044 */
Andrei Popescu290c34a2009-09-17 15:55:24 +010045class HTML5VideoViewProxy extends Handler
46 implements MediaPlayer.OnPreparedListener,
Andrei Popescu50c86232009-09-30 16:51:25 +010047 MediaPlayer.OnCompletionListener,
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -080048 MediaPlayer.OnErrorListener,
Teng-Hui Zhuc0fccd12011-03-29 10:35:11 -070049 MediaPlayer.OnInfoListener,
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -080050 SurfaceTexture.OnFrameAvailableListener {
Andrei Popescu6fa29582009-06-19 14:54:09 +010051 // Logging tag.
52 private static final String LOGTAG = "HTML5VideoViewProxy";
53
Andrei Popescu3c946a1a2009-07-03 08:20:53 +010054 // Message Ids for WebCore thread -> UI thread communication.
Andrei Popescu50c86232009-09-30 16:51:25 +010055 private static final int PLAY = 100;
56 private static final int SEEK = 101;
57 private static final int PAUSE = 102;
58 private static final int ERROR = 103;
59 private static final int LOAD_DEFAULT_POSTER = 104;
Teng-Hui Zhuc0fccd12011-03-29 10:35:11 -070060 private static final int BUFFERING_START = 105;
61 private static final int BUFFERING_END = 106;
Andrei Popescu6fa29582009-06-19 14:54:09 +010062
Andrei Popescu64b86a12009-09-15 20:34:18 +010063 // Message Ids to be handled on the WebCore thread
Andrei Popescu290c34a2009-09-17 15:55:24 +010064 private static final int PREPARED = 200;
65 private static final int ENDED = 201;
Andrei Popescu50c86232009-09-30 16:51:25 +010066 private static final int POSTER_FETCHED = 202;
Shimeng (Simon) Wang43aaa2d2010-10-18 16:25:59 -070067 private static final int PAUSED = 203;
Teng-Hui Zhub109c882011-05-04 16:19:49 -070068 private static final int STOPFULLSCREEN = 204;
Teng-Hui Zhue4c89e32012-01-10 16:00:21 -080069 private static final int RESTORESTATE = 205;
Andrei Popescu64b86a12009-09-15 20:34:18 +010070
Andrei Popescu048eb3b2010-01-11 21:12:54 +000071 // Timer thread -> UI thread
72 private static final int TIMEUPDATE = 300;
73
Andrei Popescu290c34a2009-09-17 15:55:24 +010074 // The C++ MediaPlayerPrivateAndroid object.
75 int mNativePointer;
Andrei Popescu64b86a12009-09-15 20:34:18 +010076 // The handler for WebCore thread messages;
77 private Handler mWebCoreHandler;
Jonathan Dixon3c909522012-02-28 18:45:06 +000078 // The WebViewClassic instance that created this view.
79 private WebViewClassic mWebView;
Andrei Popescu64b86a12009-09-15 20:34:18 +010080 // The poster image to be shown when the video is not playing.
Andrei Popescu50c86232009-09-30 16:51:25 +010081 // This ref prevents the bitmap from being GC'ed.
82 private Bitmap mPoster;
Andrei Popescu64b86a12009-09-15 20:34:18 +010083 // The poster downloader.
84 private PosterDownloader mPosterDownloader;
Andrei Popescu290c34a2009-09-17 15:55:24 +010085 // The seek position.
86 private int mSeekPosition;
Andrei Popescu64b86a12009-09-15 20:34:18 +010087 // A helper class to control the playback. This executes on the UI thread!
88 private static final class VideoPlayer {
89 // The proxy that is currently playing (if any).
90 private static HTML5VideoViewProxy mCurrentProxy;
91 // The VideoView instance. This is a singleton for now, at least until
92 // http://b/issue?id=1973663 is fixed.
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -080093 private static HTML5VideoView mHTML5VideoView;
Andrei Popescu048eb3b2010-01-11 21:12:54 +000094
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -080095 private static boolean isVideoSelfEnded = false;
96 // By using the baseLayer and the current video Layer ID, we can
97 // identify the exact layer on the UI thread to use the SurfaceTexture.
98 private static int mBaseLayer = 0;
Andrei Popescu3c946a1a2009-07-03 08:20:53 +010099
Teng-Hui Zhuf4d4e9e2011-03-30 14:39:56 -0700100 private static void setPlayerBuffering(boolean playerBuffering) {
101 mHTML5VideoView.setPlayerBuffering(playerBuffering);
102 }
103
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800104 // Every time webView setBaseLayer, this will be called.
105 // When we found the Video layer, then we set the Surface Texture to it.
106 // Otherwise, we may want to delete the Surface Texture to save memory.
107 public static void setBaseLayer(int layer) {
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700108 // Don't do this for full screen mode.
109 if (mHTML5VideoView != null
Teng-Hui Zhu3fafd392011-05-31 15:15:31 -0700110 && !mHTML5VideoView.isFullScreenMode()
111 && !mHTML5VideoView.surfaceTextureDeleted()) {
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800112 mBaseLayer = layer;
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800113
114 int currentVideoLayerId = mHTML5VideoView.getVideoLayerId();
Teng-Hui Zhu3fafd392011-05-31 15:15:31 -0700115 SurfaceTexture surfTexture = mHTML5VideoView.getSurfaceTexture(currentVideoLayerId);
116 int textureName = mHTML5VideoView.getTextureName();
117
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800118 if (layer != 0 && surfTexture != null && currentVideoLayerId != -1) {
Teng-Hui Zhu265db322011-03-18 14:56:10 -0700119 int playerState = mHTML5VideoView.getCurrentState();
Teng-Hui Zhuf4d4e9e2011-03-30 14:39:56 -0700120 if (mHTML5VideoView.getPlayerBuffering())
Teng-Hui Zhuc0fccd12011-03-29 10:35:11 -0700121 playerState = HTML5VideoView.STATE_NOTPREPARED;
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800122 boolean foundInTree = nativeSendSurfaceTexture(surfTexture,
123 layer, currentVideoLayerId, textureName,
Teng-Hui Zhu265db322011-03-18 14:56:10 -0700124 playerState);
Teng-Hui Zhu1e26d822011-03-23 16:54:20 -0700125 if (playerState >= HTML5VideoView.STATE_PREPARED
Teng-Hui Zhu265db322011-03-18 14:56:10 -0700126 && !foundInTree) {
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800127 mHTML5VideoView.pauseAndDispatch(mCurrentProxy);
128 mHTML5VideoView.deleteSurfaceTexture();
Andrei Popescu31d2aa12010-04-08 15:19:22 +0100129 }
Andrei Popescu64b86a12009-09-15 20:34:18 +0100130 }
Andrei Popescua41f97b2010-01-11 18:36:25 +0000131 }
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800132 }
Andrei Popescua41f97b2010-01-11 18:36:25 +0000133
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800134 // When a WebView is paused, we also want to pause the video in it.
135 public static void pauseAndDispatch() {
136 if (mHTML5VideoView != null) {
137 mHTML5VideoView.pauseAndDispatch(mCurrentProxy);
138 // When switching out, clean the video content on the old page
139 // by telling the layer not readyToUseSurfTex.
140 setBaseLayer(mBaseLayer);
141 }
142 }
143
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700144 public static void enterFullScreenVideo(int layerId, String url,
Jonathan Dixon3c909522012-02-28 18:45:06 +0000145 HTML5VideoViewProxy proxy, WebViewClassic webView) {
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700146 // Save the inline video info and inherit it in the full screen
147 int savePosition = 0;
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700148 if (mHTML5VideoView != null) {
Teng-Hui Zhu2b64c5a2012-03-19 13:56:49 -0700149 // We don't allow enter full screen mode while the previous
150 // full screen video hasn't finished yet.
151 if (!mHTML5VideoView.fullScreenExited() && mHTML5VideoView.isFullScreenMode()) {
152 Log.w(LOGTAG, "Try to reenter the full screen mode");
153 return;
154 }
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700155 // If we are playing the same video, then it is better to
156 // save the current position.
157 if (layerId == mHTML5VideoView.getVideoLayerId()) {
158 savePosition = mHTML5VideoView.getCurrentPosition();
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700159 }
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700160 mHTML5VideoView.release();
161 }
162 mHTML5VideoView = new HTML5VideoFullScreen(proxy.getContext(),
Teng-Hui Zhue4c89e32012-01-10 16:00:21 -0800163 layerId, savePosition);
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700164 mCurrentProxy = proxy;
165
166 mHTML5VideoView.setVideoURI(url, mCurrentProxy);
167
168 mHTML5VideoView.enterFullScreenVideoState(layerId, proxy, webView);
169 }
170
Teng-Hui Zhud7678a12012-01-16 15:33:09 -0800171 public static void exitFullScreenVideo(HTML5VideoViewProxy proxy,
Jonathan Dixon3c909522012-02-28 18:45:06 +0000172 WebViewClassic webView) {
Teng-Hui Zhud7678a12012-01-16 15:33:09 -0800173 if (!mHTML5VideoView.fullScreenExited() && mHTML5VideoView.isFullScreenMode()) {
174 WebChromeClient client = webView.getWebChromeClient();
175 if (client != null) {
176 client.onHideCustomView();
177 }
178 }
179 }
180
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800181 // This is on the UI thread.
182 // When native tell Java to play, we need to check whether or not it is
183 // still the same video by using videoLayerId and treat it differently.
184 public static void play(String url, int time, HTML5VideoViewProxy proxy,
185 WebChromeClient client, int videoLayerId) {
186 int currentVideoLayerId = -1;
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700187 boolean backFromFullScreenMode = false;
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700188 if (mHTML5VideoView != null) {
189 currentVideoLayerId = mHTML5VideoView.getVideoLayerId();
Teng-Hui Zhu1a88acb2011-06-01 13:28:41 -0700190 backFromFullScreenMode = mHTML5VideoView.fullScreenExited();
Teng-Hui Zhu96fae5e2012-01-18 15:25:51 -0800191
192 // When playing video back to back in full screen mode,
193 // javascript will switch the src and call play.
194 // In this case, we can just reuse the same full screen view,
195 // and play the video after prepared.
196 if (mHTML5VideoView.isFullScreenMode()
197 && !backFromFullScreenMode
198 && currentVideoLayerId != videoLayerId
199 && mCurrentProxy != proxy) {
200 mCurrentProxy = proxy;
201 mHTML5VideoView.setStartWhenPrepared(true);
202 mHTML5VideoView.setVideoURI(url, proxy);
203 mHTML5VideoView.reprepareData(proxy);
204 return;
205 }
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700206 }
207
208 if (backFromFullScreenMode
Teng-Hui Zhu3fafd392011-05-31 15:15:31 -0700209 || currentVideoLayerId != videoLayerId
210 || mHTML5VideoView.surfaceTextureDeleted()) {
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800211 // Here, we handle the case when switching to a new video,
212 // either inside a WebView or across WebViews
213 // For switching videos within a WebView or across the WebView,
214 // we need to pause the old one and re-create a new media player
215 // inside the HTML5VideoView.
216 if (mHTML5VideoView != null) {
Teng-Hui Zhu22954d42011-04-07 17:13:18 -0700217 if (!backFromFullScreenMode) {
218 mHTML5VideoView.pauseAndDispatch(mCurrentProxy);
219 }
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800220 // release the media player to avoid finalize error
221 mHTML5VideoView.release();
222 }
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800223 mCurrentProxy = proxy;
Teng-Hui Zhue4c89e32012-01-10 16:00:21 -0800224 mHTML5VideoView = new HTML5VideoInline(videoLayerId, time);
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800225
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700226 mHTML5VideoView.setVideoURI(url, mCurrentProxy);
227 mHTML5VideoView.prepareDataAndDisplayMode(proxy);
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800228 } else if (mCurrentProxy == proxy) {
229 // Here, we handle the case when we keep playing with one video
230 if (!mHTML5VideoView.isPlaying()) {
231 mHTML5VideoView.seekTo(time);
232 mHTML5VideoView.start();
233 }
234 } else if (mCurrentProxy != null) {
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700235 // Some other video is already playing. Notify the caller that
236 // its playback ended.
Andrei Popescuc4fbceb2010-04-14 13:30:23 +0100237 proxy.dispatchOnEnded();
Andrei Popescu3c946a1a2009-07-03 08:20:53 +0100238 }
Andrei Popescu3c946a1a2009-07-03 08:20:53 +0100239 }
Andrei Popescu290c34a2009-09-17 15:55:24 +0100240
Andrei Popescu048eb3b2010-01-11 21:12:54 +0000241 public static boolean isPlaying(HTML5VideoViewProxy proxy) {
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800242 return (mCurrentProxy == proxy && mHTML5VideoView != null
243 && mHTML5VideoView.isPlaying());
Andrei Popescu048eb3b2010-01-11 21:12:54 +0000244 }
245
246 public static int getCurrentPosition() {
247 int currentPosMs = 0;
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800248 if (mHTML5VideoView != null) {
249 currentPosMs = mHTML5VideoView.getCurrentPosition();
Andrei Popescu048eb3b2010-01-11 21:12:54 +0000250 }
251 return currentPosMs;
252 }
253
Andrei Popescu290c34a2009-09-17 15:55:24 +0100254 public static void seek(int time, HTML5VideoViewProxy proxy) {
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800255 if (mCurrentProxy == proxy && time >= 0 && mHTML5VideoView != null) {
256 mHTML5VideoView.seekTo(time);
Andrei Popescu290c34a2009-09-17 15:55:24 +0100257 }
258 }
259
260 public static void pause(HTML5VideoViewProxy proxy) {
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800261 if (mCurrentProxy == proxy && mHTML5VideoView != null) {
262 mHTML5VideoView.pause();
Andrei Popescu290c34a2009-09-17 15:55:24 +0100263 }
264 }
Andrei Popescubf385d72009-09-18 18:59:52 +0100265
266 public static void onPrepared() {
Teng-Hui Zhue4c89e32012-01-10 16:00:21 -0800267 if (!mHTML5VideoView.isFullScreenMode()) {
Teng-Hui Zhu05049672011-04-06 18:09:27 -0700268 mHTML5VideoView.start();
269 }
Teng-Hui Zhu265db322011-03-18 14:56:10 -0700270 if (mBaseLayer != 0) {
271 setBaseLayer(mBaseLayer);
272 }
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800273 }
274
275 public static void end() {
Teng-Hui Zhu4dd9dc82012-05-10 17:20:19 -0700276 mHTML5VideoView.showControllerInFullScreen();
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800277 if (mCurrentProxy != null) {
278 if (isVideoSelfEnded)
279 mCurrentProxy.dispatchOnEnded();
280 else
281 mCurrentProxy.dispatchOnPaused();
282 }
283 isVideoSelfEnded = false;
Andrei Popescubf385d72009-09-18 18:59:52 +0100284 }
Andrei Popescu290c34a2009-09-17 15:55:24 +0100285 }
286
287 // A bunch event listeners for our VideoView
288 // MediaPlayer.OnPreparedListener
289 public void onPrepared(MediaPlayer mp) {
Andrei Popescubf385d72009-09-18 18:59:52 +0100290 VideoPlayer.onPrepared();
Andrei Popescu290c34a2009-09-17 15:55:24 +0100291 Message msg = Message.obtain(mWebCoreHandler, PREPARED);
292 Map<String, Object> map = new HashMap<String, Object>();
293 map.put("dur", new Integer(mp.getDuration()));
294 map.put("width", new Integer(mp.getVideoWidth()));
295 map.put("height", new Integer(mp.getVideoHeight()));
296 msg.obj = map;
297 mWebCoreHandler.sendMessage(msg);
298 }
299
300 // MediaPlayer.OnCompletionListener;
301 public void onCompletion(MediaPlayer mp) {
Andrei Popescuc4fbceb2010-04-14 13:30:23 +0100302 // The video ended by itself, so we need to
303 // send a message to the UI thread to dismiss
304 // the video view and to return to the WebView.
Shimeng (Simon) Wang43aaa2d2010-10-18 16:25:59 -0700305 // arg1 == 1 means the video ends by itself.
306 sendMessage(obtainMessage(ENDED, 1, 0));
Andrei Popescu290c34a2009-09-17 15:55:24 +0100307 }
308
Andrei Popescu50c86232009-09-30 16:51:25 +0100309 // MediaPlayer.OnErrorListener
310 public boolean onError(MediaPlayer mp, int what, int extra) {
311 sendMessage(obtainMessage(ERROR));
312 return false;
313 }
314
Andrei Popescuc4fbceb2010-04-14 13:30:23 +0100315 public void dispatchOnEnded() {
Andrei Popescu290c34a2009-09-17 15:55:24 +0100316 Message msg = Message.obtain(mWebCoreHandler, ENDED);
317 mWebCoreHandler.sendMessage(msg);
Andrei Popescu64b86a12009-09-15 20:34:18 +0100318 }
Andrei Popescu3c946a1a2009-07-03 08:20:53 +0100319
Shimeng (Simon) Wang43aaa2d2010-10-18 16:25:59 -0700320 public void dispatchOnPaused() {
Teng-Hui Zhub109c882011-05-04 16:19:49 -0700321 Message msg = Message.obtain(mWebCoreHandler, PAUSED);
322 mWebCoreHandler.sendMessage(msg);
323 }
324
325 public void dispatchOnStopFullScreen() {
326 Message msg = Message.obtain(mWebCoreHandler, STOPFULLSCREEN);
327 mWebCoreHandler.sendMessage(msg);
Shimeng (Simon) Wang43aaa2d2010-10-18 16:25:59 -0700328 }
329
Teng-Hui Zhue4c89e32012-01-10 16:00:21 -0800330 public void dispatchOnRestoreState() {
331 Message msg = Message.obtain(mWebCoreHandler, RESTORESTATE);
332 mWebCoreHandler.sendMessage(msg);
333 }
334
Andrei Popescu048eb3b2010-01-11 21:12:54 +0000335 public void onTimeupdate() {
336 sendMessage(obtainMessage(TIMEUPDATE));
337 }
338
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800339 // When there is a frame ready from surface texture, we should tell WebView
340 // to refresh.
341 @Override
342 public void onFrameAvailable(SurfaceTexture surfaceTexture) {
343 // TODO: This should support partial invalidation too.
344 mWebView.invalidate();
345 }
346
Andrei Popescu048eb3b2010-01-11 21:12:54 +0000347 // Handler for the messages from WebCore or Timer thread to the UI thread.
Andrei Popescu64b86a12009-09-15 20:34:18 +0100348 @Override
349 public void handleMessage(Message msg) {
350 // This executes on the UI thread.
351 switch (msg.what) {
Andrei Popescu64b86a12009-09-15 20:34:18 +0100352 case PLAY: {
353 String url = (String) msg.obj;
354 WebChromeClient client = mWebView.getWebChromeClient();
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800355 int videoLayerID = msg.arg1;
Andrei Popescu64b86a12009-09-15 20:34:18 +0100356 if (client != null) {
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800357 VideoPlayer.play(url, mSeekPosition, this, client, videoLayerID);
Andrei Popescu64b86a12009-09-15 20:34:18 +0100358 }
359 break;
360 }
Andrei Popescu290c34a2009-09-17 15:55:24 +0100361 case SEEK: {
362 Integer time = (Integer) msg.obj;
363 mSeekPosition = time;
364 VideoPlayer.seek(mSeekPosition, this);
365 break;
366 }
367 case PAUSE: {
368 VideoPlayer.pause(this);
369 break;
370 }
Andrei Popescu46a83b42009-10-23 13:49:46 +0100371 case ENDED:
Shimeng (Simon) Wang43aaa2d2010-10-18 16:25:59 -0700372 if (msg.arg1 == 1)
373 VideoPlayer.isVideoSelfEnded = true;
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800374 VideoPlayer.end();
375 break;
Andrei Popescu50c86232009-09-30 16:51:25 +0100376 case ERROR: {
377 WebChromeClient client = mWebView.getWebChromeClient();
378 if (client != null) {
379 client.onHideCustomView();
380 }
381 break;
382 }
383 case LOAD_DEFAULT_POSTER: {
384 WebChromeClient client = mWebView.getWebChromeClient();
385 if (client != null) {
386 doSetPoster(client.getDefaultVideoPoster());
387 }
388 break;
389 }
Andrei Popescu048eb3b2010-01-11 21:12:54 +0000390 case TIMEUPDATE: {
391 if (VideoPlayer.isPlaying(this)) {
392 sendTimeupdate();
393 }
394 break;
395 }
Teng-Hui Zhuc0fccd12011-03-29 10:35:11 -0700396 case BUFFERING_START: {
Teng-Hui Zhuf4d4e9e2011-03-30 14:39:56 -0700397 VideoPlayer.setPlayerBuffering(true);
Teng-Hui Zhuc0fccd12011-03-29 10:35:11 -0700398 break;
399 }
400 case BUFFERING_END: {
Teng-Hui Zhuf4d4e9e2011-03-30 14:39:56 -0700401 VideoPlayer.setPlayerBuffering(false);
Teng-Hui Zhuc0fccd12011-03-29 10:35:11 -0700402 break;
403 }
Andrei Popescu64b86a12009-09-15 20:34:18 +0100404 }
405 }
406
Andrei Popescu64b86a12009-09-15 20:34:18 +0100407 // Everything below this comment executes on the WebCore thread, except for
408 // the EventHandler methods, which are called on the network thread.
409
410 // A helper class that knows how to download posters
411 private static final class PosterDownloader implements EventHandler {
412 // The request queue. This is static as we have one queue for all posters.
413 private static RequestQueue mRequestQueue;
414 private static int mQueueRefCount = 0;
415 // The poster URL
Ben Murdoch42509792011-02-18 12:34:35 +0000416 private URL mUrl;
Andrei Popescu64b86a12009-09-15 20:34:18 +0100417 // The proxy we're doing this for.
418 private final HTML5VideoViewProxy mProxy;
419 // The poster bytes. We only touch this on the network thread.
420 private ByteArrayOutputStream mPosterBytes;
421 // The request handle. We only touch this on the WebCore thread.
422 private RequestHandle mRequestHandle;
423 // The response status code.
424 private int mStatusCode;
425 // The response headers.
426 private Headers mHeaders;
427 // The handler to handle messages on the WebCore thread.
428 private Handler mHandler;
429
430 public PosterDownloader(String url, HTML5VideoViewProxy proxy) {
Ben Murdoch42509792011-02-18 12:34:35 +0000431 try {
432 mUrl = new URL(url);
433 } catch (MalformedURLException e) {
434 mUrl = null;
435 }
Andrei Popescu64b86a12009-09-15 20:34:18 +0100436 mProxy = proxy;
437 mHandler = new Handler();
438 }
439 // Start the download. Called on WebCore thread.
440 public void start() {
441 retainQueue();
Ben Murdoch42509792011-02-18 12:34:35 +0000442
443 if (mUrl == null) {
444 return;
445 }
446
447 // Only support downloading posters over http/https.
448 // FIXME: Add support for other schemes. WebKit seems able to load
449 // posters over other schemes e.g. file://, but gets the dimensions wrong.
450 String protocol = mUrl.getProtocol();
451 if ("http".equals(protocol) || "https".equals(protocol)) {
452 mRequestHandle = mRequestQueue.queueRequest(mUrl.toString(), "GET", null,
453 this, null, 0);
454 }
Andrei Popescu64b86a12009-09-15 20:34:18 +0100455 }
456 // Cancel the download if active and release the queue. Called on WebCore thread.
457 public void cancelAndReleaseQueue() {
458 if (mRequestHandle != null) {
459 mRequestHandle.cancel();
460 mRequestHandle = null;
461 }
462 releaseQueue();
463 }
464 // EventHandler methods. Executed on the network thread.
465 public void status(int major_version,
466 int minor_version,
467 int code,
468 String reason_phrase) {
469 mStatusCode = code;
Andrei Popescu3c946a1a2009-07-03 08:20:53 +0100470 }
471
Andrei Popescu64b86a12009-09-15 20:34:18 +0100472 public void headers(Headers headers) {
473 mHeaders = headers;
474 }
475
476 public void data(byte[] data, int len) {
477 if (mPosterBytes == null) {
478 mPosterBytes = new ByteArrayOutputStream();
479 }
480 mPosterBytes.write(data, 0, len);
481 }
482
483 public void endData() {
484 if (mStatusCode == 200) {
485 if (mPosterBytes.size() > 0) {
486 Bitmap poster = BitmapFactory.decodeByteArray(
487 mPosterBytes.toByteArray(), 0, mPosterBytes.size());
Andrei Popescu50c86232009-09-30 16:51:25 +0100488 mProxy.doSetPoster(poster);
Andrei Popescu64b86a12009-09-15 20:34:18 +0100489 }
490 cleanup();
491 } else if (mStatusCode >= 300 && mStatusCode < 400) {
492 // We have a redirect.
Ben Murdoch42509792011-02-18 12:34:35 +0000493 try {
494 mUrl = new URL(mHeaders.getLocation());
495 } catch (MalformedURLException e) {
496 mUrl = null;
497 }
Andrei Popescu64b86a12009-09-15 20:34:18 +0100498 if (mUrl != null) {
499 mHandler.post(new Runnable() {
500 public void run() {
501 if (mRequestHandle != null) {
Ben Murdoch42509792011-02-18 12:34:35 +0000502 mRequestHandle.setupRedirect(mUrl.toString(), mStatusCode,
Andrei Popescu64b86a12009-09-15 20:34:18 +0100503 new HashMap<String, String>());
504 }
505 }
506 });
507 }
508 }
509 }
510
511 public void certificate(SslCertificate certificate) {
512 // Don't care.
513 }
514
515 public void error(int id, String description) {
516 cleanup();
517 }
518
519 public boolean handleSslErrorRequest(SslError error) {
520 // Don't care. If this happens, data() will never be called so
521 // mPosterBytes will never be created, so no need to call cleanup.
522 return false;
523 }
524 // Tears down the poster bytes stream. Called on network thread.
525 private void cleanup() {
526 if (mPosterBytes != null) {
527 try {
528 mPosterBytes.close();
529 } catch (IOException ignored) {
530 // Ignored.
531 } finally {
532 mPosterBytes = null;
533 }
534 }
535 }
536
537 // Queue management methods. Called on WebCore thread.
538 private void retainQueue() {
539 if (mRequestQueue == null) {
540 mRequestQueue = new RequestQueue(mProxy.getContext());
541 }
542 mQueueRefCount++;
543 }
544
545 private void releaseQueue() {
546 if (mQueueRefCount == 0) {
547 return;
548 }
549 if (--mQueueRefCount == 0) {
550 mRequestQueue.shutdown();
551 mRequestQueue = null;
552 }
Andrei Popescu3c946a1a2009-07-03 08:20:53 +0100553 }
554 }
Andrei Popescu6fa29582009-06-19 14:54:09 +0100555
556 /**
557 * Private constructor.
Andrei Popescu290c34a2009-09-17 15:55:24 +0100558 * @param webView is the WebView that hosts the video.
559 * @param nativePtr is the C++ pointer to the MediaPlayerPrivate object.
Andrei Popescu6fa29582009-06-19 14:54:09 +0100560 */
Jonathan Dixon3c909522012-02-28 18:45:06 +0000561 private HTML5VideoViewProxy(WebViewClassic webView, int nativePtr) {
Andrei Popescu6fa29582009-06-19 14:54:09 +0100562 // This handler is for the main (UI) thread.
563 super(Looper.getMainLooper());
Andrei Popescu3c946a1a2009-07-03 08:20:53 +0100564 // Save the WebView object.
565 mWebView = webView;
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800566 // Pass Proxy into webview, such that every time we have a setBaseLayer
567 // call, we tell this Proxy to call the native to update the layer tree
568 // for the Video Layer's surface texture info
569 mWebView.setHTML5VideoViewProxy(this);
Andrei Popescu290c34a2009-09-17 15:55:24 +0100570 // Save the native ptr
571 mNativePointer = nativePtr;
Andrei Popescu64b86a12009-09-15 20:34:18 +0100572 // create the message handler for this thread
573 createWebCoreHandler();
Andrei Popescu6fa29582009-06-19 14:54:09 +0100574 }
575
Andrei Popescu64b86a12009-09-15 20:34:18 +0100576 private void createWebCoreHandler() {
577 mWebCoreHandler = new Handler() {
578 @Override
579 public void handleMessage(Message msg) {
580 switch (msg.what) {
Andrei Popescu290c34a2009-09-17 15:55:24 +0100581 case PREPARED: {
582 Map<String, Object> map = (Map<String, Object>) msg.obj;
583 Integer duration = (Integer) map.get("dur");
584 Integer width = (Integer) map.get("width");
585 Integer height = (Integer) map.get("height");
586 nativeOnPrepared(duration.intValue(), width.intValue(),
587 height.intValue(), mNativePointer);
588 break;
589 }
590 case ENDED:
Ben Murdochff19d192011-01-17 18:08:56 +0000591 mSeekPosition = 0;
Andrei Popescu290c34a2009-09-17 15:55:24 +0100592 nativeOnEnded(mNativePointer);
593 break;
Shimeng (Simon) Wang43aaa2d2010-10-18 16:25:59 -0700594 case PAUSED:
595 nativeOnPaused(mNativePointer);
596 break;
Andrei Popescu50c86232009-09-30 16:51:25 +0100597 case POSTER_FETCHED:
598 Bitmap poster = (Bitmap) msg.obj;
599 nativeOnPosterFetched(poster, mNativePointer);
600 break;
Andrei Popescu048eb3b2010-01-11 21:12:54 +0000601 case TIMEUPDATE:
602 nativeOnTimeupdate(msg.arg1, mNativePointer);
603 break;
Teng-Hui Zhub109c882011-05-04 16:19:49 -0700604 case STOPFULLSCREEN:
605 nativeOnStopFullscreen(mNativePointer);
606 break;
Teng-Hui Zhue4c89e32012-01-10 16:00:21 -0800607 case RESTORESTATE:
608 nativeOnRestoreState(mNativePointer);
609 break;
Andrei Popescu3c946a1a2009-07-03 08:20:53 +0100610 }
Andrei Popescu64b86a12009-09-15 20:34:18 +0100611 }
612 };
Andrei Popescu6fa29582009-06-19 14:54:09 +0100613 }
614
Andrei Popescu64b86a12009-09-15 20:34:18 +0100615 private void doSetPoster(Bitmap poster) {
616 if (poster == null) {
617 return;
618 }
Andrei Popescu50c86232009-09-30 16:51:25 +0100619 // Save a ref to the bitmap and send it over to the WebCore thread.
620 mPoster = poster;
621 Message msg = Message.obtain(mWebCoreHandler, POSTER_FETCHED);
622 msg.obj = poster;
623 mWebCoreHandler.sendMessage(msg);
Andrei Popescu64b86a12009-09-15 20:34:18 +0100624 }
625
Andrei Popescu048eb3b2010-01-11 21:12:54 +0000626 private void sendTimeupdate() {
627 Message msg = Message.obtain(mWebCoreHandler, TIMEUPDATE);
628 msg.arg1 = VideoPlayer.getCurrentPosition();
629 mWebCoreHandler.sendMessage(msg);
630 }
631
Andrei Popescu64b86a12009-09-15 20:34:18 +0100632 public Context getContext() {
633 return mWebView.getContext();
634 }
635
636 // The public methods below are all called from WebKit only.
Andrei Popescu6fa29582009-06-19 14:54:09 +0100637 /**
638 * Play a video stream.
639 * @param url is the URL of the video stream.
Andrei Popescu6fa29582009-06-19 14:54:09 +0100640 */
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800641 public void play(String url, int position, int videoLayerID) {
Andrei Popescu64b86a12009-09-15 20:34:18 +0100642 if (url == null) {
643 return;
644 }
Ben Murdochff19d192011-01-17 18:08:56 +0000645
646 if (position > 0) {
647 seek(position);
648 }
Andrei Popescu6fa29582009-06-19 14:54:09 +0100649 Message message = obtainMessage(PLAY);
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800650 message.arg1 = videoLayerID;
Andrei Popescu64b86a12009-09-15 20:34:18 +0100651 message.obj = url;
Andrei Popescu6fa29582009-06-19 14:54:09 +0100652 sendMessage(message);
653 }
654
Andrei Popescu64b86a12009-09-15 20:34:18 +0100655 /**
Andrei Popescu290c34a2009-09-17 15:55:24 +0100656 * Seek into the video stream.
657 * @param time is the position in the video stream.
658 */
659 public void seek(int time) {
660 Message message = obtainMessage(SEEK);
661 message.obj = new Integer(time);
662 sendMessage(message);
663 }
664
665 /**
666 * Pause the playback.
667 */
668 public void pause() {
669 Message message = obtainMessage(PAUSE);
670 sendMessage(message);
671 }
672
673 /**
Andrei Popescu50c86232009-09-30 16:51:25 +0100674 * Tear down this proxy object.
Andrei Popescu64b86a12009-09-15 20:34:18 +0100675 */
Andrei Popescu50c86232009-09-30 16:51:25 +0100676 public void teardown() {
Andrei Popescu64b86a12009-09-15 20:34:18 +0100677 // This is called by the C++ MediaPlayerPrivate dtor.
678 // Cancel any active poster download.
679 if (mPosterDownloader != null) {
680 mPosterDownloader.cancelAndReleaseQueue();
681 }
Andrei Popescu50c86232009-09-30 16:51:25 +0100682 mNativePointer = 0;
Andrei Popescu64b86a12009-09-15 20:34:18 +0100683 }
684
685 /**
686 * Load the poster image.
687 * @param url is the URL of the poster image.
688 */
689 public void loadPoster(String url) {
690 if (url == null) {
Andrei Popescu50c86232009-09-30 16:51:25 +0100691 Message message = obtainMessage(LOAD_DEFAULT_POSTER);
692 sendMessage(message);
Andrei Popescu64b86a12009-09-15 20:34:18 +0100693 return;
694 }
695 // Cancel any active poster download.
696 if (mPosterDownloader != null) {
697 mPosterDownloader.cancelAndReleaseQueue();
698 }
699 // Load the poster asynchronously
700 mPosterDownloader = new PosterDownloader(url, this);
701 mPosterDownloader.start();
Patrick Scott0a5ce012009-07-02 08:56:10 -0400702 }
703
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700704 // These three function are called from UI thread only by WebView.
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800705 public void setBaseLayer(int layer) {
706 VideoPlayer.setBaseLayer(layer);
707 }
708
709 public void pauseAndDispatch() {
710 VideoPlayer.pauseAndDispatch();
711 }
Teng-Hui Zhu10ab6542011-03-16 16:42:32 -0700712
713 public void enterFullScreenVideo(int layerId, String url) {
714 VideoPlayer.enterFullScreenVideo(layerId, url, this, mWebView);
715 }
716
Teng-Hui Zhud7678a12012-01-16 15:33:09 -0800717 public void exitFullScreenVideo() {
718 VideoPlayer.exitFullScreenVideo(this, mWebView);
719 }
720
Andrei Popescu6fa29582009-06-19 14:54:09 +0100721 /**
Andrei Popescu3c946a1a2009-07-03 08:20:53 +0100722 * The factory for HTML5VideoViewProxy instances.
Andrei Popescu6fa29582009-06-19 14:54:09 +0100723 * @param webViewCore is the WebViewCore that is requesting the proxy.
724 *
Andrei Popescu3c946a1a2009-07-03 08:20:53 +0100725 * @return a new HTML5VideoViewProxy object.
Andrei Popescu6fa29582009-06-19 14:54:09 +0100726 */
Andrei Popescu290c34a2009-09-17 15:55:24 +0100727 public static HTML5VideoViewProxy getInstance(WebViewCore webViewCore, int nativePtr) {
Jonathan Dixona6c4d8e2012-03-08 17:55:31 +0000728 return new HTML5VideoViewProxy(webViewCore.getWebViewClassic(), nativePtr);
Andrei Popescu6fa29582009-06-19 14:54:09 +0100729 }
Andrei Popescu290c34a2009-09-17 15:55:24 +0100730
Jonathan Dixon3c909522012-02-28 18:45:06 +0000731 /* package */ WebViewClassic getWebView() {
Ben Murdoch1708ad52010-11-11 15:56:16 +0000732 return mWebView;
733 }
734
Andrei Popescu290c34a2009-09-17 15:55:24 +0100735 private native void nativeOnPrepared(int duration, int width, int height, int nativePointer);
736 private native void nativeOnEnded(int nativePointer);
Shimeng (Simon) Wang43aaa2d2010-10-18 16:25:59 -0700737 private native void nativeOnPaused(int nativePointer);
Andrei Popescu50c86232009-09-30 16:51:25 +0100738 private native void nativeOnPosterFetched(Bitmap poster, int nativePointer);
Andrei Popescu048eb3b2010-01-11 21:12:54 +0000739 private native void nativeOnTimeupdate(int position, int nativePointer);
Teng-Hui Zhub109c882011-05-04 16:19:49 -0700740 private native void nativeOnStopFullscreen(int nativePointer);
Teng-Hui Zhue4c89e32012-01-10 16:00:21 -0800741 private native void nativeOnRestoreState(int nativePointer);
Teng-Hui Zhu661e8b12011-03-02 15:09:34 -0800742 private native static boolean nativeSendSurfaceTexture(SurfaceTexture texture,
743 int baseLayer, int videoLayerId, int textureName,
Teng-Hui Zhu265db322011-03-18 14:56:10 -0700744 int playerState);
Teng-Hui Zhuc0fccd12011-03-29 10:35:11 -0700745
746 @Override
747 public boolean onInfo(MediaPlayer mp, int what, int extra) {
748 if (what == MediaPlayer.MEDIA_INFO_BUFFERING_START) {
749 sendMessage(obtainMessage(BUFFERING_START, what, extra));
750 } else if (what == MediaPlayer.MEDIA_INFO_BUFFERING_END) {
751 sendMessage(obtainMessage(BUFFERING_END, what, extra));
752 }
753 return false;
754 }
Andrei Popescu6fa29582009-06-19 14:54:09 +0100755}