| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // VideoCaptureImplManager owns VideoCaptureImpl objects. Clients who | 5 // TODO(hclam): This class should be renamed to VideoCaptureService. |
| 6 // want access to a video capture device call UseDevice() to get a handle | 6 |
| 7 // to VideoCaptureImpl. | 7 // This class provides access to a video capture device in the browser |
| 8 // process through IPC. The main function is to deliver video frames |
| 9 // to a client. |
| 8 // | 10 // |
| 9 // THREADING | 11 // THREADING |
| 10 // | 12 // |
| 11 // VideoCaptureImplManager lives only on the render thread. All methods | 13 // VideoCaptureImplManager lives only on the render thread. All methods |
| 12 // must be called on this thread. | 14 // must be called on this thread. |
| 13 // | 15 // |
| 14 // The handle returned by UseDevice() is thread-safe. It ensures | 16 // VideoFrames are delivered on the IO thread. Callbacks provided by |
| 15 // destruction is handled on the render thread. | 17 // a client are also called on the IO thread. |
| 16 | 18 |
| 17 #ifndef CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_ | 19 #ifndef CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_ |
| 18 #define CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_ | 20 #define CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_ |
| 19 | 21 |
| 20 #include <map> | 22 #include <map> |
| 21 | 23 |
| 22 #include "base/callback.h" | 24 #include "base/callback.h" |
| 23 #include "base/memory/linked_ptr.h" | 25 #include "base/memory/linked_ptr.h" |
| 26 #include "base/memory/ref_counted.h" |
| 24 #include "base/memory/scoped_ptr.h" | 27 #include "base/memory/scoped_ptr.h" |
| 25 #include "base/memory/weak_ptr.h" | 28 #include "base/memory/weak_ptr.h" |
| 26 #include "base/message_loop/message_loop_proxy.h" | 29 #include "base/message_loop/message_loop_proxy.h" |
| 27 #include "base/synchronization/lock.h" | 30 #include "base/synchronization/lock.h" |
| 28 #include "base/threading/thread_checker.h" | 31 #include "base/threading/thread_checker.h" |
| 29 #include "content/common/content_export.h" | 32 #include "content/common/content_export.h" |
| 30 #include "media/video/capture/video_capture.h" | 33 #include "content/common/media/video_capture.h" |
| 34 #include "media/video/capture/video_capture_types.h" |
| 31 | 35 |
| 32 namespace content { | 36 namespace content { |
| 33 | 37 |
| 34 class VideoCaptureImpl; | 38 class VideoCaptureImpl; |
| 35 class VideoCaptureImplManager; | |
| 36 class VideoCaptureMessageFilter; | 39 class VideoCaptureMessageFilter; |
| 37 | 40 |
| 38 // Thread-safe wrapper for a media::VideoCapture object. During | |
| 39 // destruction |destruction_cb| is called. This mechanism is used | |
| 40 // by VideoCaptureImplManager to ensure de-initialization and | |
| 41 // destruction of the media::VideoCapture object happens on the render | |
| 42 // thread. | |
| 43 class CONTENT_EXPORT VideoCaptureHandle : media::VideoCapture { | |
| 44 public: | |
| 45 virtual ~VideoCaptureHandle(); | |
| 46 | |
| 47 // media::VideoCapture implementations. | |
| 48 virtual void StartCapture( | |
| 49 EventHandler* handler, | |
| 50 const media::VideoCaptureParams& params) OVERRIDE; | |
| 51 virtual void StopCapture(EventHandler* handler) OVERRIDE; | |
| 52 virtual bool CaptureStarted() OVERRIDE; | |
| 53 virtual int CaptureFrameRate() OVERRIDE; | |
| 54 virtual void GetDeviceSupportedFormats( | |
| 55 const DeviceFormatsCallback& callback) OVERRIDE; | |
| 56 virtual void GetDeviceFormatsInUse( | |
| 57 const DeviceFormatsInUseCallback& callback) OVERRIDE; | |
| 58 | |
| 59 private: | |
| 60 friend class VideoCaptureImplManager; | |
| 61 | |
| 62 VideoCaptureHandle(media::VideoCapture* impl, | |
| 63 base::Closure destruction_cb); | |
| 64 | |
| 65 media::VideoCapture* impl_; | |
| 66 base::Closure destruction_cb_; | |
| 67 | |
| 68 DISALLOW_COPY_AND_ASSIGN(VideoCaptureHandle); | |
| 69 }; | |
| 70 | |
| 71 class CONTENT_EXPORT VideoCaptureImplManager { | 41 class CONTENT_EXPORT VideoCaptureImplManager { |
| 72 public: | 42 public: |
| 73 VideoCaptureImplManager(); | 43 VideoCaptureImplManager(); |
| 74 virtual ~VideoCaptureImplManager(); | 44 virtual ~VideoCaptureImplManager(); |
| 75 | 45 |
| 76 // Returns a video capture device referenced by |id|. | 46 // Open a device associated with the session ID. |
| 77 scoped_ptr<VideoCaptureHandle> UseDevice(media::VideoCaptureSessionId id); | 47 // This method must be called before any methods with the same ID |
| 48 // is used. |
| 49 // Returns a callback that should be used to release the acquired |
| 50 // resources. |
| 51 base::Closure UseDevice(media::VideoCaptureSessionId id); |
| 52 |
| 53 // Start receiving video frames for the given session ID. |
| 54 // |
| 55 // |state_update_cb| will be called on the IO thread when capturing |
| 56 // state changes. |
| 57 // States will be one of the following four: |
| 58 // * VIDEO_CAPTURE_STATE_STARTED |
| 59 // * VIDEO_CAPTURE_STATE_STOPPED |
| 60 // * VIDEO_CAPTURE_STATE_PAUSED |
| 61 // * VIDEO_CAPTURE_STATE_ERROR |
| 62 // |
| 63 // |deliver_frame_cb| will be called on the IO thread when a video |
| 64 // frame is ready. |
| 65 // |
| 66 // Returns a callback that is used to stop capturing. Note that stopping |
| 67 // video capture is not synchronous. Client should handle the case where |
| 68 // callbacks are called after capturing is instructed to stop, typically |
| 69 // by binding the passed callbacks on a WeakPtr. |
| 70 base::Closure StartCapture( |
| 71 media::VideoCaptureSessionId id, |
| 72 const media::VideoCaptureParams& params, |
| 73 const VideoCaptureStateUpdateCB& state_update_cb, |
| 74 const VideoCaptureDeliverFrameCB& deliver_frame_cb); |
| 75 |
| 76 // Get supported formats supported by the device for the given session |
| 77 // ID. |callback| will be called on the IO thread. |
| 78 void GetDeviceSupportedFormats( |
| 79 media::VideoCaptureSessionId id, |
| 80 const VideoCaptureDeviceFormatsCB& callback); |
| 81 |
| 82 // Get supported formats currently in use for the given session ID. |
| 83 // |callback| will be called on the IO thread. |
| 84 void GetDeviceFormatsInUse( |
| 85 media::VideoCaptureSessionId id, |
| 86 const VideoCaptureDeviceFormatsCB& callback); |
| 78 | 87 |
| 79 // Make all existing VideoCaptureImpl instances stop/resume delivering | 88 // Make all existing VideoCaptureImpl instances stop/resume delivering |
| 80 // video frames to their clients, depends on flag |suspend|. | 89 // video frames to their clients, depends on flag |suspend|. |
| 81 void SuspendDevices(bool suspend); | 90 void SuspendDevices(bool suspend); |
| 82 | 91 |
| 83 VideoCaptureMessageFilter* video_capture_message_filter() const { | 92 VideoCaptureMessageFilter* video_capture_message_filter() const { |
| 84 return filter_.get(); | 93 return filter_.get(); |
| 85 } | 94 } |
| 86 | 95 |
| 87 protected: | 96 protected: |
| 88 // Used in tests to inject a mock VideoCaptureImpl. | 97 virtual VideoCaptureImpl* CreateVideoCaptureImplForTesting( |
| 89 virtual VideoCaptureImpl* CreateVideoCaptureImpl( | |
| 90 media::VideoCaptureSessionId id, | 98 media::VideoCaptureSessionId id, |
| 91 VideoCaptureMessageFilter* filter) const; | 99 VideoCaptureMessageFilter* filter) const; |
| 92 | 100 |
| 93 private: | 101 private: |
| 102 void StopCapture(int client_id, media::VideoCaptureSessionId id); |
| 94 void UnrefDevice(media::VideoCaptureSessionId id); | 103 void UnrefDevice(media::VideoCaptureSessionId id); |
| 95 | 104 |
| 96 // The int is used to count clients of the corresponding VideoCaptureImpl. | 105 // The int is used to count clients of the corresponding VideoCaptureImpl. |
| 106 // VideoCaptureImpl objects are owned by this object. But they are |
| 107 // destroyed on the IO thread. These are raw pointers because we destroy |
| 108 // them manually. |
| 97 typedef std::map<media::VideoCaptureSessionId, | 109 typedef std::map<media::VideoCaptureSessionId, |
| 98 std::pair<int, linked_ptr<VideoCaptureImpl> > > | 110 std::pair<int, VideoCaptureImpl*> > |
| 99 VideoCaptureDeviceMap; | 111 VideoCaptureDeviceMap; |
| 100 VideoCaptureDeviceMap devices_; | 112 VideoCaptureDeviceMap devices_; |
| 101 | 113 |
| 114 // This is an internal ID for identifying clients of VideoCaptureImpl. |
| 115 // The ID is global for the render process. |
| 116 int next_client_id_; |
| 117 |
| 102 scoped_refptr<VideoCaptureMessageFilter> filter_; | 118 scoped_refptr<VideoCaptureMessageFilter> filter_; |
| 103 | 119 |
| 104 // Bound to the render thread. | 120 // Bound to the render thread. |
| 105 base::ThreadChecker thread_checker_; | 121 base::ThreadChecker thread_checker_; |
| 106 | 122 |
| 107 // Bound to the render thread. | 123 // Bound to the render thread. |
| 108 // NOTE: Weak pointers must be invalidated before all other member variables. | 124 // NOTE: Weak pointers must be invalidated before all other member variables. |
| 109 base::WeakPtrFactory<VideoCaptureImplManager> weak_factory_; | 125 base::WeakPtrFactory<VideoCaptureImplManager> weak_factory_; |
| 110 | 126 |
| 111 DISALLOW_COPY_AND_ASSIGN(VideoCaptureImplManager); | 127 DISALLOW_COPY_AND_ASSIGN(VideoCaptureImplManager); |
| 112 }; | 128 }; |
| 113 | 129 |
| 114 } // namespace content | 130 } // namespace content |
| 115 | 131 |
| 116 #endif // CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_ | 132 #endif // CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_ |
| OLD | NEW |