summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/private/content_decryptor_private.cc
blob: 633215a6d4cfcb0284a7e51d76bf6a9259150d32 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
// Copyright (c) 2012 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 "ppapi/cpp/private/content_decryptor_private.h"

#include <cstring>  // memcpy

#include "ppapi/c/ppb_var.h"
#include "ppapi/c/private/ppb_content_decryptor_private.h"
#include "ppapi/c/private/ppp_content_decryptor_private.h"
#include "ppapi/cpp/instance.h"
#include "ppapi/cpp/instance_handle.h"
#include "ppapi/cpp/logging.h"
#include "ppapi/cpp/module.h"
#include "ppapi/cpp/module_impl.h"
#include "ppapi/cpp/var.h"

namespace pp {

namespace {

static const char kPPPContentDecryptorInterface[] =
    PPP_CONTENTDECRYPTOR_PRIVATE_INTERFACE;

PP_Bool GenerateKeyRequest(PP_Instance instance,
                           PP_Var key_system_arg,
                           PP_Var init_data_arg) {
  void* object =
      Instance::GetPerInstanceObject(instance, kPPPContentDecryptorInterface);
  if (!object)
    return PP_FALSE;

  pp::Var key_system_var(pp::PASS_REF, key_system_arg);
  if (key_system_var.is_string() == false)
    return PP_FALSE;

  pp::Var init_data_var(pp::PASS_REF, init_data_arg);
  if (init_data_var.is_array_buffer() == false)
    return PP_FALSE;
  pp::VarArrayBuffer init_data_array_buffer(init_data_var);

  return PP_FromBool(
      static_cast<ContentDecryptor_Private*>(object)->GenerateKeyRequest(
          key_system_var.AsString(),
          init_data_array_buffer));
}

PP_Bool AddKey(PP_Instance instance,
               PP_Var session_id_arg,
               PP_Var key_arg,
               PP_Var init_data_arg) {
  void* object =
      Instance::GetPerInstanceObject(instance, kPPPContentDecryptorInterface);
  if (!object)
    return PP_FALSE;

  pp::Var session_id_var(pp::PASS_REF, session_id_arg);
  if (session_id_var.is_string() == false)
    return PP_FALSE;

  pp::Var key_var(pp::PASS_REF, key_arg);
  if (key_var.is_array_buffer() == false)
    return PP_FALSE;
  pp::VarArrayBuffer key(key_var);

  pp::Var init_data_var(pp::PASS_REF, init_data_arg);
  if (init_data_var.is_array_buffer() == false)
    return PP_FALSE;
  pp::VarArrayBuffer init_data(init_data_var);

  return PP_FromBool(
      static_cast<ContentDecryptor_Private*>(object)->AddKey(
          session_id_var.AsString(),
          key,
          init_data));
}

PP_Bool CancelKeyRequest(PP_Instance instance,
                         PP_Var session_id_arg) {
  void* object =
      Instance::GetPerInstanceObject(instance, kPPPContentDecryptorInterface);
  if (!object)
    return PP_FALSE;

  pp::Var session_id_var(pp::PASS_REF, session_id_arg);
  if (session_id_var.is_string() == false)
    return PP_FALSE;

  return PP_FromBool(
      static_cast<ContentDecryptor_Private*>(object)->
          CancelKeyRequest(session_id_var.AsString()));
}


PP_Bool Decrypt(PP_Instance instance,
                PP_Resource encrypted_resource,
                const PP_EncryptedBlockInfo* encrypted_block_info) {
  void* object =
      Instance::GetPerInstanceObject(instance, kPPPContentDecryptorInterface);
  if (!object)
    return PP_FALSE;

  pp::Buffer_Dev encrypted_block(encrypted_resource);

  return PP_FromBool(
      static_cast<ContentDecryptor_Private*>(object)->Decrypt(
          encrypted_block,
          *encrypted_block_info));
}

PP_Bool DecryptAndDecode(PP_Instance instance,
                         PP_Resource encrypted_resource,
                         const PP_EncryptedBlockInfo* encrypted_block_info) {
  void* object =
      Instance::GetPerInstanceObject(instance, kPPPContentDecryptorInterface);
  if (!object)
    return PP_FALSE;

  pp::Buffer_Dev encrypted_block(encrypted_resource);

  return PP_FromBool(
      static_cast<ContentDecryptor_Private*>(object)->DecryptAndDecode(
          encrypted_block,
          *encrypted_block_info));
}

const PPP_ContentDecryptor_Private ppp_content_decryptor = {
  &GenerateKeyRequest,
  &AddKey,
  &CancelKeyRequest,
  &Decrypt,
  &DecryptAndDecode
};

template <> const char* interface_name<PPB_ContentDecryptor_Private>() {
  return PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE;
}

}  // namespace

ContentDecryptor_Private::ContentDecryptor_Private(Instance* instance)
    : associated_instance_(instance) {
  Module::Get()->AddPluginInterface(kPPPContentDecryptorInterface,
                                    &ppp_content_decryptor);
  instance->AddPerInstanceObject(kPPPContentDecryptorInterface, this);
}

ContentDecryptor_Private::~ContentDecryptor_Private() {
  Instance::RemovePerInstanceObject(associated_instance_,
                                    kPPPContentDecryptorInterface,
                                    this);
}

void ContentDecryptor_Private::NeedKey(const std::string& key_system,
                                       const std::string& session_id,
                                       pp::VarArrayBuffer init_data) {
  // session_id can be empty here.
  if (has_interface<PPB_ContentDecryptor_Private>()) {
    pp::Var key_system_var(key_system);
    pp::Var session_id_var(session_id);

    get_interface<PPB_ContentDecryptor_Private>()->NeedKey(
        associated_instance_.pp_instance(),
        key_system_var.pp_var(),
        session_id_var.pp_var(),
        init_data.pp_var());
  }
}

void ContentDecryptor_Private::KeyAdded(const std::string& key_system,
                                        const std::string& session_id) {
  if (has_interface<PPB_ContentDecryptor_Private>()) {
    pp::Var key_system_var(key_system);
    pp::Var session_id_var(session_id);
    get_interface<PPB_ContentDecryptor_Private>()->KeyAdded(
        associated_instance_.pp_instance(),
        key_system_var.pp_var(),
        session_id_var.pp_var());
  }
}

void ContentDecryptor_Private::KeyMessage(const std::string& key_system,
                                          const std::string& session_id,
                                          pp::Buffer_Dev message,
                                          const std::string& default_url) {
  if (has_interface<PPB_ContentDecryptor_Private>()) {
    pp::Var key_system_var(key_system);
    pp::Var session_id_var(session_id);
    pp::Var default_url_var(default_url);
    get_interface<PPB_ContentDecryptor_Private>()->KeyMessage(
        associated_instance_.pp_instance(),
        key_system_var.pp_var(),
        session_id_var.pp_var(),
        message.pp_resource(),
        default_url_var.pp_var());
  }
}

void ContentDecryptor_Private::KeyError(const std::string& key_system,
                                        const std::string& session_id,
                                        int32_t media_error,
                                        int32_t system_code) {
  if (has_interface<PPB_ContentDecryptor_Private>()) {
    pp::Var key_system_var(key_system);
    pp::Var session_id_var(session_id);
    get_interface<PPB_ContentDecryptor_Private>()->KeyError(
        associated_instance_.pp_instance(),
        key_system_var.pp_var(),
        session_id_var.pp_var(),
        media_error,
        system_code);
  }
}

void ContentDecryptor_Private::DeliverBlock(
    pp::Buffer_Dev decrypted_block,
    const PP_DecryptedBlockInfo& decrypted_block_info) {
  if (has_interface<PPB_ContentDecryptor_Private>()) {
    get_interface<PPB_ContentDecryptor_Private>()->DeliverBlock(
        associated_instance_.pp_instance(),
        decrypted_block.pp_resource(),
        &decrypted_block_info);
  }
}

void ContentDecryptor_Private::DeliverFrame(
    pp::Buffer_Dev decrypted_frame,
    const PP_DecryptedBlockInfo& decrypted_block_info) {
  if (has_interface<PPB_ContentDecryptor_Private>()) {
    get_interface<PPB_ContentDecryptor_Private>()->DeliverFrame(
        associated_instance_.pp_instance(),
        decrypted_frame.pp_resource(),
        &decrypted_block_info);
  }
}

void ContentDecryptor_Private::DeliverSamples(
    pp::Buffer_Dev decrypted_samples,
    const PP_DecryptedBlockInfo& decrypted_block_info) {
  if (has_interface<PPB_ContentDecryptor_Private>()) {
    get_interface<PPB_ContentDecryptor_Private>()->DeliverSamples(
        associated_instance_.pp_instance(),
        decrypted_samples.pp_resource(),
        &decrypted_block_info);
  }
}

}  // namespace pp