summaryrefslogtreecommitdiffstats
path: root/content/child/npapi/npruntime_util.cc
blob: da2f42c66aebd3c04f9bb487164d3665825407e8 (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
// Copyright (c) 2013 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 "content/child/npapi/npruntime_util.h"

#include "base/pickle.h"
#include "third_party/WebKit/public/web/WebBindings.h"

using blink::WebBindings;

namespace content {

bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle) {
  const NPUTF8* string;
  int32_t number;
  bool is_string;
  WebBindings::extractIdentifierData(identifier, string, number, is_string);

  if (!pickle->WriteBool(is_string))
    return false;
  if (is_string) {
    // Write the null byte for efficiency on the other end.
    return pickle->WriteData(string, strlen(string) + 1);
  }
  return pickle->WriteInt(number);
}

bool DeserializeNPIdentifier(PickleIterator* pickle_iter,
                             NPIdentifier* identifier) {
  bool is_string;
  if (!pickle_iter->ReadBool(&is_string))
    return false;

  if (is_string) {
    const char* data;
    int data_len;
    if (!pickle_iter->ReadData(&data, &data_len))
      return false;
    DCHECK_EQ((static_cast<size_t>(data_len)), strlen(data) + 1);
    *identifier = WebBindings::getStringIdentifier(data);
  } else {
    int number;
    if (!pickle_iter->ReadInt(&number))
      return false;
    *identifier = WebBindings::getIntIdentifier(number);
  }
  return true;
}

}  // namespace content