blob: da9ae8c194183ac73cdbd4b8be351074115b0095 [file] [log] [blame]
// Copyright 2014 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.
#include "media/mojo/services/mojo_cdm_promise.h"
#include <string>
#include <utility>
#include <vector>
#include "base/bind.h"
#include "base/logging.h"
#include "media/base/decryptor.h"
namespace media {
static mojom::CdmPromiseResultPtr GetRejectResult(
CdmPromise::Exception exception,
uint32_t system_code,
const std::string& error_message) {
mojom::CdmPromiseResultPtr cdm_promise_result(mojom::CdmPromiseResult::New());
cdm_promise_result->success = false;
cdm_promise_result->exception = exception;
cdm_promise_result->system_code = system_code;
cdm_promise_result->error_message = error_message;
return cdm_promise_result;
}
template <typename... T>
MojoCdmPromise<T...>::MojoCdmPromise(const CallbackType& callback)
: callback_(callback) {
DCHECK(!callback_.is_null());
}
template <typename... T>
MojoCdmPromise<T...>::~MojoCdmPromise() {
if (IsPromiseSettled())
return;
DCHECK(!callback_.is_null());
RejectPromiseOnDestruction();
}
template <typename... T>
void MojoCdmPromise<T...>::resolve(const T&... result) {
MarkPromiseSettled();
mojom::CdmPromiseResultPtr cdm_promise_result(mojom::CdmPromiseResult::New());
cdm_promise_result->success = true;
callback_.Run(std::move(cdm_promise_result), result...);
callback_.Reset();
}
template <typename... T>
void MojoCdmPromise<T...>::reject(CdmPromise::Exception exception,
uint32_t system_code,
const std::string& error_message) {
MarkPromiseSettled();
callback_.Run(GetRejectResult(exception, system_code, error_message), T()...);
callback_.Reset();
}
template class MojoCdmPromise<>;
template class MojoCdmPromise<std::string>;
} // namespace media