blob: 15ca2fc1711982947b31c497bf523bc04922ff2e [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_
#define CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_
#include <map>
#include <memory>
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/scoped_vector.h"
#include "base/time/time.h"
#include "content/browser/android/content_video_view.h"
#include "content/common/content_export.h"
#include "ipc/ipc_message.h"
#include "media/base/android/media_player_android.h"
#include "media/base/android/media_player_manager.h"
#include "media/base/android/media_url_interceptor.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/gl/android/scoped_java_surface.h"
#include "url/gurl.h"
namespace media {
class DemuxerAndroid;
}
struct MediaPlayerHostMsg_Initialize_Params;
namespace content {
class BrowserDemuxerAndroid;
#if !defined(USE_AURA)
class ContentViewCore;
#endif
class ExternalVideoSurfaceContainer;
class RenderFrameHost;
class WebContents;
// This class manages all the MediaPlayerAndroid objects.
// It receives control operations from the the render process, and forwards
// them to corresponding MediaPlayerAndroid object. Callbacks from
// MediaPlayerAndroid objects are converted to IPCs and then sent to the render
// process.
class CONTENT_EXPORT BrowserMediaPlayerManager
: public media::MediaPlayerManager,
public ContentVideoView::Client {
public:
// Permits embedders to provide an extended version of the class.
typedef BrowserMediaPlayerManager* (*Factory)(RenderFrameHost*);
static void RegisterFactory(Factory factory);
// Permits embedders to handle custom urls.
static void RegisterMediaUrlInterceptor(
media::MediaUrlInterceptor* media_url_interceptor);
// Init the SurfaceTexturePeer.
static void InitSurfaceTexturePeer();
// Pass a java surface object to the MediaPlayerAndroid object
// identified by render process handle, render frame ID and player ID.
static void SetSurfacePeer(scoped_refptr<gfx::SurfaceTexture> surface_texture,
base::ProcessHandle render_process_handle,
int render_frame_id,
int player_id);
// Returns a new instance using the registered factory if available.
static BrowserMediaPlayerManager* Create(RenderFrameHost* rfh);
#if !defined(USE_AURA)
ContentViewCore* GetContentViewCore() const;
#endif
~BrowserMediaPlayerManager() override;
// ContentVideoView::Client implementation.
void DidExitFullscreen(bool release_media_player) override;
void SetVideoSurface(gfx::ScopedJavaSurface surface) override;
// Called when browser player wants the renderer media element to seek.
// Any actual seek started by renderer will be handled by browser in OnSeek().
void OnSeekRequest(int player_id, const base::TimeDelta& time_to_seek);
// media::MediaPlayerManager overrides.
void OnTimeUpdate(int player_id,
base::TimeDelta current_timestamp,
base::TimeTicks current_time_ticks) override;
void OnMediaMetadataChanged(int player_id,
base::TimeDelta duration,
int width,
int height,
bool success) override;
void OnPlaybackComplete(int player_id) override;
void OnMediaInterrupted(int player_id) override;
void OnBufferingUpdate(int player_id, int percentage) override;
void OnSeekComplete(int player_id,
const base::TimeDelta& current_time) override;
void OnError(int player_id, int error) override;
void OnVideoSizeChanged(int player_id, int width, int height) override;
void OnWaitingForDecryptionKey(int player_id) override;
media::MediaResourceGetter* GetMediaResourceGetter() override;
media::MediaUrlInterceptor* GetMediaUrlInterceptor() override;
media::MediaPlayerAndroid* GetFullscreenPlayer() override;
media::MediaPlayerAndroid* GetPlayer(int player_id) override;
bool RequestPlay(int player_id, base::TimeDelta duration,
bool has_audio) override;
#if defined(VIDEO_HOLE)
void AttachExternalVideoSurface(int player_id, jobject surface);
void DetachExternalVideoSurface(int player_id);
void OnFrameInfoUpdated();
#endif // defined(VIDEO_HOLE)
// Message handlers.
virtual void OnEnterFullscreen(int player_id);
virtual void OnInitialize(
const MediaPlayerHostMsg_Initialize_Params& media_player_params);
virtual void OnStart(int player_id);
virtual void OnSeek(int player_id, const base::TimeDelta& time);
virtual void OnPause(int player_id, bool is_media_related_action);
virtual void OnSetVolume(int player_id, double volume);
virtual void OnSetPoster(int player_id, const GURL& poster);
virtual void OnSuspendAndReleaseResources(int player_id);
virtual void OnDestroyPlayer(int player_id);
virtual void OnRequestRemotePlayback(int player_id);
virtual void OnRequestRemotePlaybackControl(int player_id);
virtual bool IsPlayingRemotely(int player_id);
virtual void ReleaseFullscreenPlayer(media::MediaPlayerAndroid* player);
#if defined(VIDEO_HOLE)
void OnNotifyExternalSurface(
int player_id, bool is_request, const gfx::RectF& rect);
#endif // defined(VIDEO_HOLE)
protected:
// Clients must use Create() or subclass constructor.
explicit BrowserMediaPlayerManager(RenderFrameHost* render_frame_host);
WebContents* web_contents() const { return web_contents_; }
// Adds a given player to the list. Not private to allow embedders
// to extend the manager and still utilize the base player management.
void AddPlayer(media::MediaPlayerAndroid* player, int delegate_id);
// Removes the player with the specified id.
void DestroyPlayer(int player_id);
// Release resources associated to a player.
virtual void ReleaseResources(int player_id);
// Replaces a player with the specified id with a given MediaPlayerAndroid
// object. This will also return the original MediaPlayerAndroid object that
// was replaced.
std::unique_ptr<media::MediaPlayerAndroid> SwapPlayer(
int player_id,
media::MediaPlayerAndroid* player);
// Called to request decoder resources. Returns true if the request is
// permitted, or false otherwise. The manager object maintains a list
// of active MediaPlayerAndroid objects and releases the inactive resources
// when needed. If |temporary| is true, the request is short lived
// and it will not be cleaned up when handling other requests.
// On the contrary, requests with false |temporary| value are subject to
// clean up if their players are idle.
virtual bool RequestDecoderResources(int player_id, bool temporary);
// MediaPlayerAndroid must call this to inform the manager that it has
// released the decoder resources. This can be triggered by the
// ReleasePlayer() call below, or when meta data is extracted, or when player
// is stuck in an error.
virtual void OnDecoderResourcesReleased(int player_id);
int RoutingID();
// Helper function to send messages to RenderFrameObserver.
bool Send(IPC::Message* msg);
private:
// Constructs a MediaPlayerAndroid object.
media::MediaPlayerAndroid* CreateMediaPlayer(
const MediaPlayerHostMsg_Initialize_Params& media_player_params,
bool hide_url_log,
BrowserDemuxerAndroid* demuxer);
// Instructs |player| to release its java player. This will not remove the
// player from |players_|.
void ReleasePlayer(media::MediaPlayerAndroid* player);
// Called when user approves media playback after being throttled.
void OnPlaybackPermissionGranted(int player_id, bool granted);
// Helper method to start playback.
void StartInternal(int player_id);
#if defined(VIDEO_HOLE)
void ReleasePlayerOfExternalVideoSurfaceIfNeeded(int future_player);
void OnRequestExternalSurface(int player_id, const gfx::RectF& rect);
void ReleaseExternalSurface(int player_id);
#endif // defined(VIDEO_HOLE)
RenderFrameHost* const render_frame_host_;
// An array of managed players.
ScopedVector<media::MediaPlayerAndroid> players_;
typedef std::map<int, bool> ActivePlayerMap;
// Players that have requested decoding resources. Even though resource is
// requested, a player may be in a paused or error state and the manager
// will release its resources later.
ActivePlayerMap active_players_;
// The fullscreen video view object or NULL if video is not played in
// fullscreen.
std::unique_ptr<ContentVideoView> video_view_;
#if defined(VIDEO_HOLE)
std::unique_ptr<ExternalVideoSurfaceContainer>
external_video_surface_container_;
#endif
// Player ID of the fullscreen media player.
int fullscreen_player_id_;
// Whether the fullscreen player has been Release()-d.
bool fullscreen_player_is_released_;
WebContents* const web_contents_;
// Object for retrieving resources media players.
std::unique_ptr<media::MediaResourceGetter> media_resource_getter_;
// Map of player IDs to delegate IDs for use with
// MediaWebContentsObserverAndroid.
std::map<int, int> player_id_to_delegate_id_map_;
// NOTE: Weak pointers must be invalidated before all other member variables.
base::WeakPtrFactory<BrowserMediaPlayerManager> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(BrowserMediaPlayerManager);
};
} // namespace content
#endif // CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_