OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef MEDIA_MOJO_SERVICES_MOJO_CDM_SERVICE_H_ | 5 #ifndef MEDIA_MOJO_SERVICES_MOJO_CDM_SERVICE_H_ |
6 #define MEDIA_MOJO_SERVICES_MOJO_CDM_SERVICE_H_ | 6 #define MEDIA_MOJO_SERVICES_MOJO_CDM_SERVICE_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "media/base/media_keys.h" | 12 #include "media/base/media_keys.h" |
13 #include "media/mojo/interfaces/content_decryption_module.mojom.h" | 13 #include "media/mojo/interfaces/content_decryption_module.mojom.h" |
14 #include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h" | 14 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" |
| 15 #include "third_party/mojo/src/mojo/public/cpp/bindings/error_handler.h" |
15 | 16 |
16 namespace media { | 17 namespace media { |
17 | 18 |
| 19 class MojoCdmServiceContext; |
| 20 |
18 // A mojo::ContentDecryptionModule implementation backed by a media::MediaKeys. | 21 // A mojo::ContentDecryptionModule implementation backed by a media::MediaKeys. |
19 class MojoCdmService : public mojo::ContentDecryptionModule { | 22 class MojoCdmService : public mojo::ContentDecryptionModule, |
| 23 public mojo::ErrorHandler { |
20 public: | 24 public: |
21 MojoCdmService(const mojo::String& key_system, | 25 // Creates a MojoCdmService for |key_system| and weakly binds it to the |
22 mojo::InterfaceRequest<mojo::ContentDecryptionModule> request); | 26 // |request|. Returns null and drops the |request| if no MojoCdmService can be |
| 27 // created for |key_system|. When connection error happens, |
| 28 // ServiceHadConnectionError() will be called on the |context|. |
| 29 static scoped_ptr<MojoCdmService> Create( |
| 30 const mojo::String& key_system, |
| 31 MojoCdmServiceContext* context, |
| 32 mojo::InterfaceRequest<mojo::ContentDecryptionModule> request); |
| 33 |
23 ~MojoCdmService() final; | 34 ~MojoCdmService() final; |
24 | 35 |
25 // mojo::ContentDecryptionModule implementation. | 36 // mojo::ContentDecryptionModule implementation. |
26 void SetClient(mojo::ContentDecryptionModuleClientPtr client) final; | 37 void SetClient(mojo::ContentDecryptionModuleClientPtr client) final; |
27 void SetServerCertificate( | 38 void SetServerCertificate( |
28 mojo::Array<uint8_t> certificate_data, | 39 mojo::Array<uint8_t> certificate_data, |
29 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; | 40 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; |
30 void CreateSessionAndGenerateRequest( | 41 void CreateSessionAndGenerateRequest( |
31 mojo::ContentDecryptionModule::SessionType session_type, | 42 mojo::ContentDecryptionModule::SessionType session_type, |
32 mojo::ContentDecryptionModule::InitDataType init_data_type, | 43 mojo::ContentDecryptionModule::InitDataType init_data_type, |
33 mojo::Array<uint8_t> init_data, | 44 mojo::Array<uint8_t> init_data, |
34 const mojo::Callback<void(mojo::CdmPromiseResultPtr, mojo::String)>& | 45 const mojo::Callback<void(mojo::CdmPromiseResultPtr, mojo::String)>& |
35 callback) final; | 46 callback) final; |
36 void LoadSession(mojo::ContentDecryptionModule::SessionType session_type, | 47 void LoadSession(mojo::ContentDecryptionModule::SessionType session_type, |
37 const mojo::String& session_id, | 48 const mojo::String& session_id, |
38 const mojo::Callback<void(mojo::CdmPromiseResultPtr, | 49 const mojo::Callback<void(mojo::CdmPromiseResultPtr, |
39 mojo::String)>& callback) final; | 50 mojo::String)>& callback) final; |
40 void UpdateSession( | 51 void UpdateSession( |
41 const mojo::String& session_id, | 52 const mojo::String& session_id, |
42 mojo::Array<uint8_t> response, | 53 mojo::Array<uint8_t> response, |
43 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; | 54 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; |
44 void CloseSession( | 55 void CloseSession( |
45 const mojo::String& session_id, | 56 const mojo::String& session_id, |
46 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; | 57 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; |
47 void RemoveSession( | 58 void RemoveSession( |
48 const mojo::String& session_id, | 59 const mojo::String& session_id, |
49 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; | 60 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; |
| 61 // TODO(xhwang): Rename this to GetDecryptor in the mojom interface. |
50 void GetCdmContext(int32_t cdm_id, | 62 void GetCdmContext(int32_t cdm_id, |
51 mojo::InterfaceRequest<mojo::Decryptor> decryptor) final; | 63 mojo::InterfaceRequest<mojo::Decryptor> decryptor) final; |
52 | 64 |
| 65 // Get CdmContext to be used by the media pipeline. |
| 66 CdmContext* GetCdmContext(); |
| 67 |
53 private: | 68 private: |
| 69 MojoCdmService(const mojo::String& key_system, |
| 70 MojoCdmServiceContext* context, |
| 71 mojo::InterfaceRequest<mojo::ContentDecryptionModule> request); |
| 72 |
| 73 // mojo::ErrorHandler implementation. |
| 74 void OnConnectionError() override; |
| 75 |
54 // Callbacks for firing session events. | 76 // Callbacks for firing session events. |
55 void OnSessionMessage(const std::string& session_id, | 77 void OnSessionMessage(const std::string& session_id, |
56 MediaKeys::MessageType message_type, | 78 MediaKeys::MessageType message_type, |
57 const std::vector<uint8_t>& message, | 79 const std::vector<uint8_t>& message, |
58 const GURL& legacy_destination_url); | 80 const GURL& legacy_destination_url); |
59 void OnSessionKeysChange(const std::string& session_id, | 81 void OnSessionKeysChange(const std::string& session_id, |
60 bool has_additional_usable_key, | 82 bool has_additional_usable_key, |
61 CdmKeysInfo keys_info); | 83 CdmKeysInfo keys_info); |
62 void OnSessionExpirationUpdate(const std::string& session_id, | 84 void OnSessionExpirationUpdate(const std::string& session_id, |
63 const base::Time& new_expiry_time); | 85 const base::Time& new_expiry_time); |
64 void OnSessionClosed(const std::string& session_id); | 86 void OnSessionClosed(const std::string& session_id); |
65 void OnLegacySessionError(const std::string& session_id, | 87 void OnLegacySessionError(const std::string& session_id, |
66 MediaKeys::Exception exception, | 88 MediaKeys::Exception exception, |
67 uint32_t system_code, | 89 uint32_t system_code, |
68 const std::string& error_message); | 90 const std::string& error_message); |
69 | 91 |
70 mojo::StrongBinding<mojo::ContentDecryptionModule> binding_; | 92 mojo::Binding<mojo::ContentDecryptionModule> binding_; |
71 | 93 |
| 94 MojoCdmServiceContext* context_; |
72 scoped_ptr<MediaKeys> cdm_; | 95 scoped_ptr<MediaKeys> cdm_; |
73 | 96 |
74 mojo::ContentDecryptionModuleClientPtr client_; | 97 mojo::ContentDecryptionModuleClientPtr client_; |
75 | 98 |
76 base::WeakPtr<MojoCdmService> weak_this_; | 99 base::WeakPtr<MojoCdmService> weak_this_; |
77 base::WeakPtrFactory<MojoCdmService> weak_factory_; | 100 base::WeakPtrFactory<MojoCdmService> weak_factory_; |
78 | 101 |
79 DISALLOW_COPY_AND_ASSIGN(MojoCdmService); | 102 DISALLOW_COPY_AND_ASSIGN(MojoCdmService); |
80 }; | 103 }; |
81 | 104 |
82 } // namespace media | 105 } // namespace media |
83 | 106 |
84 #endif // MEDIA_MOJO_SERVICES_MOJO_CDM_SERVICE_H_ | 107 #endif // MEDIA_MOJO_SERVICES_MOJO_CDM_SERVICE_H_ |
OLD | NEW |