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 MojoCdmService for |key_system|. Returns nullptr if |key_system| is |
22 mojo::InterfaceRequest<mojo::ContentDecryptionModule> request); | 26 // not supported. The returned object is owned by the caller. |
| 27 static MojoCdmService* Create( |
| 28 MojoCdmServiceContext* context, |
| 29 const mojo::String& key_system, |
| 30 mojo::InterfaceRequest<mojo::ContentDecryptionModule> request); |
| 31 |
23 ~MojoCdmService() final; | 32 ~MojoCdmService() final; |
24 | 33 |
25 // mojo::ContentDecryptionModule implementation. | 34 // mojo::ContentDecryptionModule implementation. |
26 void SetClient(mojo::ContentDecryptionModuleClientPtr client) final; | 35 void SetClient(mojo::ContentDecryptionModuleClientPtr client) final; |
27 void SetServerCertificate( | 36 void SetServerCertificate( |
28 mojo::Array<uint8_t> certificate_data, | 37 mojo::Array<uint8_t> certificate_data, |
29 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; | 38 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; |
30 void CreateSessionAndGenerateRequest( | 39 void CreateSessionAndGenerateRequest( |
31 mojo::ContentDecryptionModule::SessionType session_type, | 40 mojo::ContentDecryptionModule::SessionType session_type, |
32 mojo::ContentDecryptionModule::InitDataType init_data_type, | 41 mojo::ContentDecryptionModule::InitDataType init_data_type, |
33 mojo::Array<uint8_t> init_data, | 42 mojo::Array<uint8_t> init_data, |
34 const mojo::Callback<void(mojo::CdmPromiseResultPtr, mojo::String)>& | 43 const mojo::Callback<void(mojo::CdmPromiseResultPtr, mojo::String)>& |
35 callback) final; | 44 callback) final; |
36 void LoadSession(mojo::ContentDecryptionModule::SessionType session_type, | 45 void LoadSession(mojo::ContentDecryptionModule::SessionType session_type, |
37 const mojo::String& session_id, | 46 const mojo::String& session_id, |
38 const mojo::Callback<void(mojo::CdmPromiseResultPtr, | 47 const mojo::Callback<void(mojo::CdmPromiseResultPtr, |
39 mojo::String)>& callback) final; | 48 mojo::String)>& callback) final; |
40 void UpdateSession( | 49 void UpdateSession( |
41 const mojo::String& session_id, | 50 const mojo::String& session_id, |
42 mojo::Array<uint8_t> response, | 51 mojo::Array<uint8_t> response, |
43 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; | 52 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; |
44 void CloseSession( | 53 void CloseSession( |
45 const mojo::String& session_id, | 54 const mojo::String& session_id, |
46 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; | 55 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; |
47 void RemoveSession( | 56 void RemoveSession( |
48 const mojo::String& session_id, | 57 const mojo::String& session_id, |
49 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; | 58 const mojo::Callback<void(mojo::CdmPromiseResultPtr)>& callback) final; |
50 void GetCdmContext(int32_t cdm_id, | 59 void GetDecryptor(mojo::InterfaceRequest<mojo::Decryptor> decryptor) final; |
51 mojo::InterfaceRequest<mojo::Decryptor> decryptor) final; | 60 |
| 61 // Get CdmContext to be used by the media pipeline. |
| 62 CdmContext* GetCdmContext(); |
52 | 63 |
53 private: | 64 private: |
| 65 MojoCdmService(MojoCdmServiceContext* context, |
| 66 const mojo::String& key_system, |
| 67 mojo::InterfaceRequest<mojo::ContentDecryptionModule> request); |
| 68 |
| 69 // mojo::ErrorHandler implementation. |
| 70 void OnConnectionError() override; |
| 71 |
54 // Callbacks for firing session events. | 72 // Callbacks for firing session events. |
55 void OnSessionMessage(const std::string& session_id, | 73 void OnSessionMessage(const std::string& session_id, |
56 MediaKeys::MessageType message_type, | 74 MediaKeys::MessageType message_type, |
57 const std::vector<uint8_t>& message, | 75 const std::vector<uint8_t>& message, |
58 const GURL& legacy_destination_url); | 76 const GURL& legacy_destination_url); |
59 void OnSessionKeysChange(const std::string& session_id, | 77 void OnSessionKeysChange(const std::string& session_id, |
60 bool has_additional_usable_key, | 78 bool has_additional_usable_key, |
61 CdmKeysInfo keys_info); | 79 CdmKeysInfo keys_info); |
62 void OnSessionExpirationUpdate(const std::string& session_id, | 80 void OnSessionExpirationUpdate(const std::string& session_id, |
63 const base::Time& new_expiry_time); | 81 const base::Time& new_expiry_time); |
64 void OnSessionClosed(const std::string& session_id); | 82 void OnSessionClosed(const std::string& session_id); |
65 void OnLegacySessionError(const std::string& session_id, | 83 void OnLegacySessionError(const std::string& session_id, |
66 MediaKeys::Exception exception, | 84 MediaKeys::Exception exception, |
67 uint32_t system_code, | 85 uint32_t system_code, |
68 const std::string& error_message); | 86 const std::string& error_message); |
69 | 87 |
70 mojo::StrongBinding<mojo::ContentDecryptionModule> binding_; | 88 mojo::Binding<mojo::ContentDecryptionModule> binding_; |
71 | 89 |
| 90 MojoCdmServiceContext* context_; |
72 scoped_ptr<MediaKeys> cdm_; | 91 scoped_ptr<MediaKeys> cdm_; |
73 | 92 |
74 mojo::ContentDecryptionModuleClientPtr client_; | 93 mojo::ContentDecryptionModuleClientPtr client_; |
75 | 94 |
76 base::WeakPtr<MojoCdmService> weak_this_; | 95 base::WeakPtr<MojoCdmService> weak_this_; |
77 base::WeakPtrFactory<MojoCdmService> weak_factory_; | 96 base::WeakPtrFactory<MojoCdmService> weak_factory_; |
78 | 97 |
79 DISALLOW_COPY_AND_ASSIGN(MojoCdmService); | 98 DISALLOW_COPY_AND_ASSIGN(MojoCdmService); |
80 }; | 99 }; |
81 | 100 |
82 } // namespace media | 101 } // namespace media |
83 | 102 |
84 #endif // MEDIA_MOJO_SERVICES_MOJO_CDM_SERVICE_H_ | 103 #endif // MEDIA_MOJO_SERVICES_MOJO_CDM_SERVICE_H_ |
OLD | NEW |