blob: a10fe2378aee34fb24192cfb36048ec910250a65 (
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
|
// Copyright 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 "mojo/public/bindings/lib/array_internal.h"
namespace mojo {
namespace internal {
ArrayDataTraits<bool>::BitRef::~BitRef() {
}
ArrayDataTraits<bool>::BitRef::BitRef(uint8_t* storage, uint8_t mask)
: storage_(storage),
mask_(mask) {
}
ArrayDataTraits<bool>::BitRef&
ArrayDataTraits<bool>::BitRef::operator=(bool value) {
if (value) {
*storage_ |= mask_;
} else {
*storage_ &= ~mask_;
}
return *this;
}
ArrayDataTraits<bool>::BitRef&
ArrayDataTraits<bool>::BitRef::operator=(const BitRef& value) {
return (*this) = static_cast<bool>(value);
}
ArrayDataTraits<bool>::BitRef::operator bool() const {
return (*storage_ & mask_) != 0;
}
// static
void ArraySerializationHelper<Handle>::EncodePointersAndHandles(
const ArrayHeader* header,
ElementType* elements,
std::vector<Handle>* handles) {
for (uint32_t i = 0; i < header->num_elements; ++i)
EncodeHandle(&elements[i], handles);
}
// static
bool ArraySerializationHelper<Handle>::DecodePointersAndHandles(
const ArrayHeader* header,
ElementType* elements,
Message* message) {
for (uint32_t i = 0; i < header->num_elements; ++i) {
if (!DecodeHandle(&elements[i], message->mutable_handles()))
return false;
}
return true;
}
} // namespace internal
} // namespace mojo
|