1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
media / base / cdm_promise_adapter.h [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_BASE_CDM_PROMISE_ADAPTER_H_
#define MEDIA_BASE_CDM_PROMISE_ADAPTER_H_
#include <stdint.h>
#include <memory>
#include <unordered_map>
#include "base/threading/thread_checker.h"
#include "media/base/cdm_promise.h"
#include "media/base/media_export.h"
namespace media {
// Helps convert CdmPromises to an integer identifier and vice versa. The
// integer identifier is needed where we cannot pass CdmPromises through, such
// as IPC and JNI.
class MEDIA_EXPORT CdmPromiseAdapter {
public:
CdmPromiseAdapter();
CdmPromiseAdapter(const CdmPromiseAdapter&) = delete;
CdmPromiseAdapter& operator=(const CdmPromiseAdapter&) = delete;
~CdmPromiseAdapter();
enum : uint32_t { kInvalidPromiseId = 0 };
// Takes ownership of |promise| and returns an integer promise ID.
// The optional `operation` string is for tracing events.
uint32_t SavePromise(std::unique_ptr<media::CdmPromise> promise,
const std::string& operation = "");
// Takes the promise for |promise_id|, sanity checks its |type|, and resolves
// it with |result|.
template <typename... T>
void ResolvePromise(uint32_t promise_id, const T&... result);
// Takes the promise for |promise_id| and rejects it with |exception_code|,
// |system_code| and |error_message|.
void RejectPromise(uint32_t promise_id,
CdmPromise::Exception exception_code,
uint32_t system_code,
const std::string& error_message);
enum class ClearReason {
kDestruction,
kConnectionError,
};
// Rejects and clears all |promises_|.
void Clear(ClearReason reason);
private:
// A map between promise IDs and CdmPromises.
using PromiseMap = std::unordered_map<uint32_t, std::unique_ptr<CdmPromise>>;
// Finds, takes the ownership of and returns the promise for |promise_id|.
// Returns null if no promise can be found.
std::unique_ptr<CdmPromise> TakePromise(uint32_t promise_id);
inline static uint32_t next_promise_id_ = kInvalidPromiseId + 1;
PromiseMap promises_;
base::ThreadChecker thread_checker_;
};
} // namespace media
#endif // MEDIA_BASE_CDM_PROMISE_ADAPTER_H_