Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Side by Side Diff: mojo/public/cpp/bindings/array_traits_carray.h

Issue 2046563005: Add ArrayTraits<CArray<T>> utility template (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary constructor Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/public/cpp/bindings/BUILD.gn ('k') | mojo/public/cpp/bindings/lib/serialization.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_ARRAY_TRAITS_CARRAY_H_
6 #define MOJO_PUBLIC_CPP_BINDINGS_ARRAY_TRAITS_CARRAY_H_
7
8 #include "mojo/public/cpp/bindings/array_traits.h"
9
10 namespace mojo {
11
12 template <typename T>
13 struct CArray {
14 CArray() : size(0), max_size(0), data(nullptr) {}
15 CArray(size_t size, size_t max_size, T* data)
16 : size(size), max_size(max_size), data(data) {}
17 size_t size;
18 const size_t max_size;
19 T* const data;
20 };
21
22 template <typename T>
23 struct ArrayTraits<CArray<T>> {
24 using Element = T;
25
26 static bool IsNull(const CArray<T>& input) { return !input.data; }
yzshen1 2016/06/08 16:09:17 SetToNull() is also needed. That means we either n
27
28 static size_t GetSize(const CArray<T>& input) { return input.size; }
29
30 static T* GetData(CArray<T>& input) { return input.data; }
31
32 static const T* GetData(const CArray<T>& input) { return input.data; }
33
34 static T& GetAt(CArray<T>& input, size_t index) { return input.data[index]; }
35
36 static const T& GetAt(const CArray<T>& input, size_t index) {
37 return input.data[index];
38 }
39
40 static bool Resize(CArray<T>& input, size_t size) {
41 if (size > input.max_size)
42 return false;
43
44 input.size = size;
45 return true;
46 }
47 };
48
49 } // namespace mojo
50
51 #endif // MOJO_PUBLIC_CPP_BINDINGS_ARRAY_TRAITS_CARRAY_H_
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/BUILD.gn ('k') | mojo/public/cpp/bindings/lib/serialization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698