Chromium Code Reviews| Index: media/cdm/ppapi/cdm_adapter.cc |
| diff --git a/media/cdm/ppapi/cdm_adapter.cc b/media/cdm/ppapi/cdm_adapter.cc |
| index eb4045621f5257f7b36c63ab1a3811badd8fc77a..5550f16b1cee70df2490aa6ceaf37ad4a71edd0c 100644 |
| --- a/media/cdm/ppapi/cdm_adapter.cc |
| +++ b/media/cdm/ppapi/cdm_adapter.cc |
| @@ -4,6 +4,7 @@ |
| #include "media/cdm/ppapi/cdm_adapter.h" |
| +#include "media/base/media_keys.h" |
| #include "media/cdm/ppapi/cdm_file_io_impl.h" |
| #include "media/cdm/ppapi/cdm_helpers.h" |
| #include "media/cdm/ppapi/cdm_logging.h" |
| @@ -211,6 +212,62 @@ cdm::StreamType PpDecryptorStreamTypeToCdmStreamType( |
| return cdm::kStreamTypeVideo; |
| } |
| +cdm::SessionType PpSessionTypeToCdmSessionType(PP_SessionType session_type) { |
| + switch (session_type) { |
| + case PP_SESSIONTYPE_TEMPORARY: |
| + return cdm::kTemporary; |
| + case PP_SESSIONTYPE_PERSISTENT: |
| + return cdm::kPersistent; |
| + default: |
| + PP_NOTREACHED(); |
| + return cdm::kTemporary; |
| + } |
| +} |
| + |
| +PP_ExceptionCodeType CdmExceptionTypeToPpExceptionType(cdm::Error error) { |
| + switch (error) { |
| + case cdm::kNoModificationAllowedError: |
| + return PP_EXCEPTIONCODETYPE_NOMODIFICATIONALLOWEDERROR; |
| + case cdm::kNotFoundError: |
| + return PP_EXCEPTIONCODETYPE_NOTFOUNDERROR; |
| + case cdm::kNotSupportedError: |
| + return PP_EXCEPTIONCODETYPE_NOTSUPPORTEDERROR; |
| + case cdm::kInvalidStateError: |
| + return PP_EXCEPTIONCODETYPE_INVALIDSTATEERROR; |
| + case cdm::kSyntaxError: |
|
ddorwin
2014/05/13 22:44:02
I missed that this was still in CDM.h. I don't thi
jrummell
2014/05/15 22:38:09
Do you want it removed from cdm.h?
ddorwin
2014/05/15 23:15:32
Yes, please.
|
| + return PP_EXCEPTIONCODETYPE_SYNTAXERROR; |
| + case cdm::kInvalidModificationError: |
| + return PP_EXCEPTIONCODETYPE_INVALIDMODIFICATIONERROR; |
| + case cdm::kInvalidAccessError: |
| + return PP_EXCEPTIONCODETYPE_INVALIDACCESSERROR; |
| + case cdm::kSecurityError: |
| + return PP_EXCEPTIONCODETYPE_SECURITYERROR; |
| + case cdm::kAbortError: |
| + return PP_EXCEPTIONCODETYPE_ABORTERROR; |
| + case cdm::kQuotaExceededError: |
| + return PP_EXCEPTIONCODETYPE_QUOTAEXCEEDEDERROR; |
| + case cdm::kTimeoutError: |
| + return PP_EXCEPTIONCODETYPE_TIMEOUTERROR; |
| + case cdm::kNotReadableError: |
| + return PP_EXCEPTIONCODETYPE_NOTREADABLEERROR; |
| + case cdm::kDataError: |
| + return PP_EXCEPTIONCODETYPE_DATAERROR; |
| + case cdm::kOperationError: |
| + return PP_EXCEPTIONCODETYPE_OPERATIONERROR; |
| + case cdm::kVersionError: |
| + return PP_EXCEPTIONCODETYPE_VERSIONERROR; |
| + case cdm::kUnknownError: |
| + return PP_EXCEPTIONCODETYPE_UNKNOWNERROR; |
| + case cdm::kClientError: |
| + return PP_EXCEPTIONCODETYPE_CLIENTERROR; |
| + case cdm::kOutputError: |
| + return PP_EXCEPTIONCODETYPE_OUTPUTERROR; |
| + default: |
| + NOTREACHED(); |
| + return PP_EXCEPTIONCODETYPE_UNKNOWNERROR; |
| + } |
| +} |
| + |
| } // namespace |
| namespace media { |
| @@ -290,49 +347,67 @@ void CdmAdapter::Initialize(const std::string& key_system) { |
| key_system_ = key_system; |
| } |
| -void CdmAdapter::CreateSession(uint32_t session_id, |
| - const std::string& content_type, |
| - pp::VarArrayBuffer init_data) { |
| +void CdmAdapter::CreateSession(uint32_t promise_id, |
| + const std::string& init_data_type, |
| + pp::VarArrayBuffer init_data, |
| + PP_SessionType session_type) { |
| // Initialize() doesn't report an error, so CreateSession() can be called |
|
ddorwin
2014/05/13 22:44:02
This should all be prevented now that we have Medi
jrummell
2014/05/15 22:38:09
Added TODO.
|
| // even if Initialize() failed. |
| if (!cdm_) { |
| - OnSessionError(session_id, cdm::kUnknownError, 0); |
| + RejectPromise(promise_id, |
| + cdm::kInvalidStateError, |
| + 0, |
| + "CDM has not been initialized."); |
| return; |
| } |
| - cdm_->CreateSession(session_id, |
| - content_type.data(), |
| - content_type.size(), |
| + cdm_->CreateSession(promise_id, |
| + init_data_type.data(), |
| + init_data_type.size(), |
| static_cast<const uint8_t*>(init_data.Map()), |
| - init_data.ByteLength()); |
| + init_data.ByteLength(), |
| + PpSessionTypeToCdmSessionType(session_type)); |
| } |
| -void CdmAdapter::LoadSession(uint32_t session_id, |
| +void CdmAdapter::LoadSession(uint32_t promise_id, |
| const std::string& web_session_id) { |
| // Initialize() doesn't report an error, so LoadSession() can be called |
|
ddorwin
2014/05/13 22:44:02
ditto
jrummell
2014/05/15 22:38:09
Done.
|
| // even if Initialize() failed. |
| if (!cdm_) { |
| - OnSessionError(session_id, cdm::kUnknownError, 0); |
| + RejectPromise(promise_id, |
| + cdm::kInvalidStateError, |
| + 0, |
| + "CDM has not been initialized."); |
| return; |
| } |
| - cdm_->LoadSession(session_id, web_session_id.data(), web_session_id.size()); |
| + cdm_->LoadSession(promise_id, web_session_id.data(), web_session_id.size()); |
| } |
| -void CdmAdapter::UpdateSession(uint32_t session_id, |
| +void CdmAdapter::UpdateSession(uint32_t promise_id, |
| + const std::string& web_session_id, |
| pp::VarArrayBuffer response) { |
| const uint8_t* response_ptr = static_cast<const uint8_t*>(response.Map()); |
| const uint32_t response_size = response.ByteLength(); |
| + PP_DCHECK(!web_session_id.empty()); |
| + |
| if (!response_ptr || response_size <= 0) { |
|
ddorwin
2014/05/13 22:44:02
This really should not happen. We should try to PP
jrummell
2014/05/15 22:38:09
Converted to PP_DCHECKs.
|
| - OnSessionError(session_id, cdm::kUnknownError, 0); |
| + RejectPromise(promise_id, cdm::kSyntaxError, 0, "response is empty."); |
|
ddorwin
2014/05/13 22:44:02
Really this is an InvalidAccessError.
jrummell
2014/05/15 22:38:09
Removed.
|
| return; |
| } |
| - cdm_->UpdateSession(session_id, response_ptr, response_size); |
| + |
| + cdm_->UpdateSession(promise_id, |
| + web_session_id.data(), |
| + web_session_id.length(), |
| + response_ptr, |
| + response_size); |
| } |
| -void CdmAdapter::ReleaseSession(uint32_t session_id) { |
| - cdm_->ReleaseSession(session_id); |
| +void CdmAdapter::ReleaseSession(uint32_t promise_id, |
| + const std::string& web_session_id) { |
| + cdm_->ReleaseSession( |
| + promise_id, web_session_id.data(), web_session_id.length()); |
| } |
| // Note: In the following decryption/decoding related functions, errors are NOT |
| @@ -529,62 +604,221 @@ void CdmAdapter::TimerExpired(int32_t result, void* context) { |
| cdm_->TimerExpired(context); |
| } |
| -double CdmAdapter::GetCurrentWallTimeInSeconds() { |
| +// cdm::Host_5 methods |
| + |
| +cdm::Time CdmAdapter::GetCurrentTime() { |
| return pp::Module::Get()->core()->GetTime(); |
| } |
| -void CdmAdapter::OnSessionCreated(uint32_t session_id, |
| - const char* web_session_id, |
| - uint32_t web_session_id_length) { |
| +void CdmAdapter::OnResolvePromise(uint32_t promise_id) { |
| PostOnMain(callback_factory_.NewCallback( |
| - &CdmAdapter::SendSessionCreatedInternal, |
| - session_id, |
| + &CdmAdapter::SendPromiseResolvedInternal, promise_id)); |
| +} |
| + |
| +void CdmAdapter::OnResolveNewSessionPromise(uint32_t promise_id, |
| + const char* web_session_id, |
| + uint32_t web_session_id_length) { |
| + PostOnMain(callback_factory_.NewCallback( |
| + &CdmAdapter::SendPromiseResolvedWithSessionInternal, |
| + promise_id, |
| std::string(web_session_id, web_session_id_length))); |
| } |
| -void CdmAdapter::OnSessionMessage(uint32_t session_id, |
| +void CdmAdapter::OnRejectPromise(uint32_t promise_id, |
| + cdm::Error error, |
| + uint32_t system_code, |
| + const char* error_message, |
| + uint32_t error_message_length) { |
| + RejectPromise(promise_id, |
| + error, |
| + system_code, |
| + std::string(error_message, error_message_length)); |
| +} |
| + |
| +void CdmAdapter::RejectPromise(uint32_t promise_id, |
| + cdm::Error error, |
| + uint32_t system_code, |
| + const std::string& error_message) { |
| + PostOnMain(callback_factory_.NewCallback( |
| + &CdmAdapter::SendPromiseRejectedInternal, |
| + promise_id, |
| + SessionError(error, system_code, error_message))); |
| +} |
| + |
| +void CdmAdapter::OnSessionMessage(const char* web_session_id, |
| + uint32_t web_session_id_length, |
| const char* message, |
| uint32_t message_length, |
| const char* destination_url, |
| uint32_t destination_url_length) { |
| PostOnMain(callback_factory_.NewCallback( |
| &CdmAdapter::SendSessionMessageInternal, |
| - session_id, |
| + std::string(web_session_id, web_session_id_length), |
| std::vector<uint8>(message, message + message_length), |
| std::string(destination_url, destination_url_length))); |
| } |
| -void CdmAdapter::OnSessionReady(uint32_t session_id) { |
| +void CdmAdapter::OnSessionKeysChange(const char* web_session_id, |
| + uint32_t web_session_id_length, |
| + bool has_new_key) { |
| + // TODO(jrummell): Implement this event in subsequent CL |
| + // (http://crbug.com/370251). |
| + PP_NOTREACHED(); |
| +} |
| + |
| +void CdmAdapter::OnExpirationChange(const char* web_session_id, |
| + uint32_t web_session_id_length, |
| + cdm::Time new_expiry_time) { |
| + // TODO(jrummell): Implement this event in subsequent CL |
| + // (http://crbug.com/370251). |
| + PP_NOTREACHED(); |
| +} |
| + |
| +void CdmAdapter::OnSessionReady(const char* web_session_id, |
| + uint32_t web_session_id_length) { |
| + PostOnMain(callback_factory_.NewCallback( |
| + &CdmAdapter::SendSessionReadyInternal, |
| + std::string(web_session_id, web_session_id_length))); |
| +} |
| + |
| +void CdmAdapter::OnSessionClosed(const char* web_session_id, |
| + uint32_t web_session_id_length) { |
| PostOnMain(callback_factory_.NewCallback( |
| - &CdmAdapter::SendSessionReadyInternal, session_id)); |
| + &CdmAdapter::SendSessionClosedInternal, |
| + std::string(web_session_id, web_session_id_length))); |
| } |
| -void CdmAdapter::OnSessionClosed(uint32_t session_id) { |
| +void CdmAdapter::OnSessionError(const char* web_session_id, |
| + uint32_t web_session_id_length, |
| + cdm::Error error, |
| + uint32_t system_code, |
| + const char* error_message, |
| + uint32_t error_message_length) { |
| PostOnMain(callback_factory_.NewCallback( |
| - &CdmAdapter::SendSessionClosedInternal, session_id)); |
| + &CdmAdapter::SendSessionErrorInternal, |
| + std::string(web_session_id, web_session_id_length), |
| + SessionError(error, |
| + system_code, |
| + std::string(error_message, error_message_length)))); |
| +} |
| + |
| +// cdm::Host_4 methods |
|
ddorwin
2014/05/13 22:44:02
It seems odd to have 4 after 5.
jrummell
2014/05/15 22:38:09
Reordered.
|
| + |
| +double CdmAdapter::GetCurrentWallTimeInSeconds() { |
| + return GetCurrentTime(); |
| +} |
| + |
| +void CdmAdapter::OnSessionCreated(uint32_t session_id, |
| + const char* web_session_id, |
| + uint32_t web_session_id_length) { |
| + uint32_t promise_id = cdm_->LookupPromiseId(session_id); |
| + cdm_->AssignWebSessionId(session_id, web_session_id, web_session_id_length); |
| + OnResolveNewSessionPromise(promise_id, web_session_id, web_session_id_length); |
| +} |
| + |
| +void CdmAdapter::OnSessionMessage(uint32_t session_id, |
| + const char* message, |
| + uint32_t message_length, |
| + const char* destination_url, |
| + uint32_t destination_url_length) { |
| + std::string web_session_id = cdm_->LookupWebSessionId(session_id); |
| + OnSessionMessage(web_session_id.data(), |
| + web_session_id.length(), |
| + message, |
| + message_length, |
| + destination_url, |
| + destination_url_length); |
| +} |
| + |
| +void CdmAdapter::OnSessionReady(uint32_t session_id) { |
| + uint32_t promise_id = cdm_->LookupPromiseId(session_id); |
| + if (promise_id) { |
| + OnResolvePromise(promise_id); |
| + } else { |
| + std::string web_session_id = cdm_->LookupWebSessionId(session_id); |
| + OnSessionReady(web_session_id.data(), web_session_id.length()); |
| + } |
| +} |
| + |
| +void CdmAdapter::OnSessionClosed(uint32_t session_id) { |
| + uint32_t promise_id = cdm_->LookupPromiseId(session_id); |
| + std::string web_session_id = cdm_->LookupWebSessionId(session_id); |
| + cdm_->DropWebSessionId(web_session_id); |
| + if (promise_id) { |
| + OnResolvePromise(promise_id); |
| + } else { |
| + OnSessionClosed(web_session_id.data(), web_session_id.length()); |
| + } |
| } |
| void CdmAdapter::OnSessionError(uint32_t session_id, |
| cdm::MediaKeyError error_code, |
| uint32_t system_code) { |
| - PostOnMain(callback_factory_.NewCallback( |
| - &CdmAdapter::SendSessionErrorInternal, |
| - session_id, |
| - error_code, |
| - system_code)); |
| + uint32_t promise_id = cdm_->LookupPromiseId(session_id); |
| + |
| + // Existing cdm::MediaKeyError don't map to DOM error names. Convert them |
| + // into non-standard names so that the prefixed API can extract them. |
| + // TODO(jrummell): Remove this conversion and the inverse when CDM4 is gone. |
| + cdm::Error error; |
| + switch (error_code) { |
| + case cdm::kPrefixedClientError: |
| + error = cdm::kClientError; |
| + break; |
| + case cdm::kPrefixedOutputError: |
| + error = cdm::kOutputError; |
| + break; |
| + case cdm::kPrefixedUnknownError: |
| + default: |
| + error = cdm::kUnknownError; |
| + break; |
| + } |
| + |
| + if (promise_id) { |
| + RejectPromise(promise_id, error, system_code, std::string()); |
| + } else { |
| + std::string web_session_id = cdm_->LookupWebSessionId(session_id); |
| + OnSessionError(web_session_id.data(), |
| + web_session_id.length(), |
| + error, |
| + system_code, |
| + NULL, |
| + 0); |
| + } |
| } |
| -void CdmAdapter::SendSessionCreatedInternal(int32_t result, |
| - uint32_t session_id, |
| - const std::string& web_session_id) { |
| +// Helpers to pass the event to Pepper. |
| + |
| +void CdmAdapter::SendPromiseResolvedInternal(int32_t result, |
| + uint32_t promise_id) { |
| PP_DCHECK(result == PP_OK); |
| - pp::ContentDecryptor_Private::SessionCreated(session_id, web_session_id); |
| + pp::ContentDecryptor_Private::PromiseResolved(promise_id); |
| } |
| -void CdmAdapter::SendSessionMessageInternal(int32_t result, |
| - uint32_t session_id, |
| - const std::vector<uint8>& message, |
| - const std::string& default_url) { |
| +void CdmAdapter::SendPromiseResolvedWithSessionInternal( |
| + int32_t result, |
| + uint32_t promise_id, |
| + const std::string& web_session_id) { |
| + PP_DCHECK(result == PP_OK); |
| + pp::ContentDecryptor_Private::PromiseResolvedWithSession(promise_id, |
| + web_session_id); |
| +} |
| + |
| +void CdmAdapter::SendPromiseRejectedInternal(int32_t result, |
| + uint32_t promise_id, |
| + const SessionError& error) { |
| + PP_DCHECK(result == PP_OK); |
| + pp::ContentDecryptor_Private::PromiseRejected( |
| + promise_id, |
| + CdmExceptionTypeToPpExceptionType(error.error), |
| + error.system_code, |
| + error.error_description); |
| +} |
| + |
| +void CdmAdapter::SendSessionMessageInternal( |
| + int32_t result, |
| + const std::string& web_session_id, |
| + const std::vector<uint8>& message, |
| + const std::string& destination_url) { |
| PP_DCHECK(result == PP_OK); |
| pp::VarArrayBuffer message_array_buffer(message.size()); |
| @@ -593,27 +827,30 @@ void CdmAdapter::SendSessionMessageInternal(int32_t result, |
| } |
| pp::ContentDecryptor_Private::SessionMessage( |
| - session_id, message_array_buffer, default_url); |
| + web_session_id, message_array_buffer, destination_url); |
| } |
| -void CdmAdapter::SendSessionReadyInternal(int32_t result, uint32_t session_id) { |
| +void CdmAdapter::SendSessionReadyInternal(int32_t result, |
| + const std::string& web_session_id) { |
| PP_DCHECK(result == PP_OK); |
| - pp::ContentDecryptor_Private::SessionReady(session_id); |
| + pp::ContentDecryptor_Private::SessionReady(web_session_id); |
| } |
| void CdmAdapter::SendSessionClosedInternal(int32_t result, |
| - uint32_t session_id) { |
| + const std::string& web_session_id) { |
| PP_DCHECK(result == PP_OK); |
| - pp::ContentDecryptor_Private::SessionClosed(session_id); |
| + pp::ContentDecryptor_Private::SessionClosed(web_session_id); |
| } |
| void CdmAdapter::SendSessionErrorInternal(int32_t result, |
| - uint32_t session_id, |
| - cdm::MediaKeyError error_code, |
| - uint32_t system_code) { |
| + const std::string& web_session_id, |
| + const SessionError& error) { |
| PP_DCHECK(result == PP_OK); |
| pp::ContentDecryptor_Private::SessionError( |
| - session_id, error_code, system_code); |
| + web_session_id, |
| + CdmExceptionTypeToPpExceptionType(error.error), |
| + error.system_code, |
| + error.error_description); |
| } |
| void CdmAdapter::DeliverBlock(int32_t result, |
| @@ -942,15 +1179,12 @@ void CdmAdapter::SendPlatformChallengeDone(int32_t result) { |
| platform_key_certificate_output_.AsString(); |
| cdm::PlatformChallengeResponse response = { |
| - static_cast<uint8_t*>(signed_data_var.Map()), |
| - signed_data_var.ByteLength(), |
| - |
| - static_cast<uint8_t*>(signed_data_signature_var.Map()), |
| - signed_data_signature_var.ByteLength(), |
| - |
| - reinterpret_cast<const uint8_t*>(platform_key_certificate_string.c_str()), |
| - static_cast<uint32_t>(platform_key_certificate_string.length()) |
| - }; |
| + static_cast<uint8_t*>(signed_data_var.Map()), |
| + signed_data_var.ByteLength(), |
| + static_cast<uint8_t*>(signed_data_signature_var.Map()), |
| + signed_data_signature_var.ByteLength(), |
| + reinterpret_cast<const uint8_t*>(platform_key_certificate_string.data()), |
| + static_cast<uint32_t>(platform_key_certificate_string.length())}; |
| cdm_->OnPlatformChallengeResponse(response); |
| signed_data_var.Unmap(); |
| @@ -978,12 +1212,20 @@ void CdmAdapter::QueryOutputProtectionStatusDone(int32_t result) { |
| } |
| #endif |
| +CdmAdapter::SessionError::SessionError(cdm::Error error, |
| + uint32_t system_code, |
| + std::string error_description) |
| + : error(error), |
| + system_code(system_code), |
| + error_description(error_description) { |
| +} |
| + |
| void* GetCdmHost(int host_interface_version, void* user_data) { |
| if (!host_interface_version || !user_data) |
| return NULL; |
| COMPILE_ASSERT( |
| - cdm::ContentDecryptionModule::Host::kVersion == cdm::Host_4::kVersion, |
| + cdm::ContentDecryptionModule::Host::kVersion == cdm::Host_5::kVersion, |
| update_code_below); |
| // Ensure IsSupportedCdmHostVersion matches implementation of this function. |
| @@ -993,11 +1235,11 @@ void* GetCdmHost(int host_interface_version, void* user_data) { |
| PP_DCHECK( |
| // Future version is not supported. |
| - !IsSupportedCdmHostVersion(cdm::Host_4::kVersion + 1) && |
| + !IsSupportedCdmHostVersion(cdm::Host_5::kVersion + 1) && |
| // Current version is supported. |
| - IsSupportedCdmHostVersion(cdm::Host_4::kVersion) && |
| + IsSupportedCdmHostVersion(cdm::Host_5::kVersion) && |
| // Include all previous supported versions (if any) here. |
| - // No supported previous versions. |
| + IsSupportedCdmHostVersion(cdm::Host_4::kVersion) && |
| // One older than the oldest supported version is not supported. |
| !IsSupportedCdmHostVersion(cdm::Host_4::kVersion - 1)); |
| PP_DCHECK(IsSupportedCdmHostVersion(host_interface_version)); |
| @@ -1007,6 +1249,8 @@ void* GetCdmHost(int host_interface_version, void* user_data) { |
| switch (host_interface_version) { |
| case cdm::Host_4::kVersion: |
| return static_cast<cdm::Host_4*>(cdm_adapter); |
| + case cdm::Host_5::kVersion: |
| + return static_cast<cdm::Host_5*>(cdm_adapter); |
| default: |
| PP_NOTREACHED(); |
| return NULL; |