blob: 3f45afd1c325880d26a0ab21c906c0fc06869ee0 [file] [log] [blame]
Martijn Coenen72110162016-08-19 14:28:25 +02001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_HIDL_SUPPORT_H
18#define ANDROID_HIDL_SUPPORT_H
19
Iliyan Malchev692070a2016-09-12 16:30:44 -070020#include <algorithm>
Yifan Hong44ab6232016-11-22 16:28:24 -080021#include <array>
Scott Randolphbb840f72016-11-21 14:39:26 -080022#include <iterator>
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +010023#include <cutils/native_handle.h>
Steven Moreland337c3ae2016-11-22 13:37:32 -080024#include <hidl/HidlInternal.h>
Yifan Honga3c31842016-10-21 10:33:14 -070025#include <hidl/Status.h>
Yifan Hong1e265bb2016-11-08 12:33:44 -080026#include <map>
Yifan Hongbe7a6882017-01-05 17:30:17 -080027#include <sstream>
Yifan Hong64fdf4d2016-12-09 16:22:45 -080028#include <stddef.h>
Andreas Huber00a985c2016-09-28 14:24:53 -070029#include <tuple>
Yifan Hong64fdf4d2016-12-09 16:22:45 -080030#include <type_traits>
Iliyan Malchev692070a2016-09-12 16:30:44 -070031#include <utils/Errors.h>
32#include <utils/RefBase.h>
33#include <utils/StrongPointer.h>
Yifan Hong7f97f442016-11-14 18:31:05 -080034#include <vector>
Martijn Coenen72110162016-08-19 14:28:25 +020035
36namespace android {
Martijn Coenen30791002016-12-01 15:40:46 +010037
Martijn Coenen9b8f9c32016-12-09 15:51:06 +010038// this file is included by all hidl interface, so we must forward declare the
39// IMemory and IBase types.
Martijn Coenen30791002016-12-01 15:40:46 +010040namespace hidl {
41namespace memory {
42namespace V1_0 {
43 struct IMemory;
44}; // namespace V1_0
45}; // namespace manager
46}; // namespace hidl
47
Martijn Coenen9b8f9c32016-12-09 15:51:06 +010048namespace hidl {
49namespace base {
50namespace V1_0 {
51 struct IBase;
52}; // namespace V1_0
53}; // namespace base
54}; // namespace hidl
55
Martijn Coenen72110162016-08-19 14:28:25 +020056namespace hardware {
57
Yifan Hong24332ef2017-03-07 16:22:19 -080058namespace details {
59// Return true on userdebug / eng builds and false on user builds.
60bool debuggable();
61} // namespace details
62
Martijn Coenen9b8f9c32016-12-09 15:51:06 +010063// hidl_death_recipient is a callback interfaced that can be used with
64// linkToDeath() / unlinkToDeath()
65struct hidl_death_recipient : public virtual RefBase {
66 virtual void serviceDied(uint64_t cookie,
67 const ::android::wp<::android::hidl::base::V1_0::IBase>& who) = 0;
68};
69
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +010070// hidl_handle wraps a pointer to a native_handle_t in a hidl_pointer,
71// so that it can safely be transferred between 32-bit and 64-bit processes.
Martijn Coenen04b91c02017-01-19 14:14:21 +010072// The ownership semantics for this are:
73// 1) The conversion constructor and assignment operator taking a const native_handle_t*
74// do not take ownership of the handle; this is because these operations are usually
75// just done for IPC, and cloning by default is a waste of resources. If you want
76// a hidl_handle to take ownership, call setTo(handle, true /*shouldOwn*/);
77// 2) The copy constructor/assignment operator taking a hidl_handle *DO* take ownership;
78// that is because it's not intuitive that this class encapsulates a native_handle_t
79// which needs cloning to be valid; in particular, this allows constructs like this:
80// hidl_handle copy;
81// foo->someHidlCall([&](auto incoming_handle) {
82// copy = incoming_handle;
83// });
84// // copy and its enclosed file descriptors will remain valid here.
85// 3) The move constructor does what you would expect; it only owns the handle if the
86// original did.
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +010087struct hidl_handle {
Martijn Coenen04b91c02017-01-19 14:14:21 +010088 hidl_handle();
89 ~hidl_handle();
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +010090
Martijn Coenen04b91c02017-01-19 14:14:21 +010091 hidl_handle(const native_handle_t *handle);
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +010092
Martijn Coenen04b91c02017-01-19 14:14:21 +010093 // copy constructor.
94 hidl_handle(const hidl_handle &other);
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +010095
96 // move constructor.
Martijn Coenen04b91c02017-01-19 14:14:21 +010097 hidl_handle(hidl_handle &&other);
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +010098
Steven Moreland6ffdc2a2017-01-23 12:34:33 -080099 // assignment operators
Martijn Coenen04b91c02017-01-19 14:14:21 +0100100 hidl_handle &operator=(const hidl_handle &other);
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +0100101
Martijn Coenen04b91c02017-01-19 14:14:21 +0100102 hidl_handle &operator=(const native_handle_t *native_handle);
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +0100103
Martijn Coenen04b91c02017-01-19 14:14:21 +0100104 hidl_handle &operator=(hidl_handle &&other);
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +0100105
Martijn Coenen04b91c02017-01-19 14:14:21 +0100106 void setTo(native_handle_t* handle, bool shouldOwn = false);
107
108 const native_handle_t* operator->() const;
109
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +0100110 // implicit conversion to const native_handle_t*
Martijn Coenen04b91c02017-01-19 14:14:21 +0100111 operator const native_handle_t *() const;
112
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +0100113 // explicit conversion
Martijn Coenen04b91c02017-01-19 14:14:21 +0100114 const native_handle_t *getNativeHandle() const;
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +0100115private:
Martijn Coenen04b91c02017-01-19 14:14:21 +0100116 void freeHandle();
117
Andreas Huber6b9cc692017-03-30 10:58:29 -0700118 details::hidl_pointer<const native_handle_t> mHandle __attribute__ ((aligned(8)));
119 bool mOwnsHandle __attribute ((aligned(8)));
Martijn Coenen4d1e9cc2016-11-18 15:20:18 +0100120};
121
Martijn Coenen72110162016-08-19 14:28:25 +0200122struct hidl_string {
123 hidl_string();
124 ~hidl_string();
125
Yifan Hong602b85a2016-10-24 13:40:01 -0700126 // copy constructor.
Martijn Coenen72110162016-08-19 14:28:25 +0200127 hidl_string(const hidl_string &);
Steven Morelanda21d84f2017-02-16 09:23:45 -0800128 // copy from a C-style string. nullptr will create an empty string
Steven Morelande03c0872016-10-24 10:43:50 -0700129 hidl_string(const char *);
Steven Moreland53120f72017-01-12 09:39:26 -0800130 // copy the first length characters from a C-style string.
131 hidl_string(const char *, size_t length);
Yifan Hong602b85a2016-10-24 13:40:01 -0700132 // copy from an std::string.
133 hidl_string(const std::string &);
134
135 // move constructor.
136 hidl_string(hidl_string &&);
Martijn Coenen72110162016-08-19 14:28:25 +0200137
138 const char *c_str() const;
139 size_t size() const;
140 bool empty() const;
141
Yifan Hong602b85a2016-10-24 13:40:01 -0700142 // copy assignment operator.
Steven Morelande03c0872016-10-24 10:43:50 -0700143 hidl_string &operator=(const hidl_string &);
Yifan Hong602b85a2016-10-24 13:40:01 -0700144 // copy from a C-style string.
Martijn Coenen72110162016-08-19 14:28:25 +0200145 hidl_string &operator=(const char *s);
Yifan Hong602b85a2016-10-24 13:40:01 -0700146 // copy from an std::string.
147 hidl_string &operator=(const std::string &);
148 // move assignment operator.
149 hidl_string &operator=(hidl_string &&other);
150 // cast to std::string.
151 operator std::string() const;
Steven Morelande03c0872016-10-24 10:43:50 -0700152
Martijn Coenen72110162016-08-19 14:28:25 +0200153 void clear();
154
155 // Reference an external char array. Ownership is _not_ transferred.
156 // Caller is responsible for ensuring that underlying memory is valid
157 // for the lifetime of this hidl_string.
158 void setToExternal(const char *data, size_t size);
159
Andreas Huberebfeb362016-08-25 13:39:05 -0700160 // offsetof(hidl_string, mBuffer) exposed since mBuffer is private.
161 static const size_t kOffsetOfBuffer;
162
Martijn Coenen72110162016-08-19 14:28:25 +0200163private:
Martijn Coenen4ca39a02016-11-11 15:58:51 +0100164 details::hidl_pointer<const char> mBuffer;
165 uint32_t mSize; // NOT including the terminating '\0'.
Yifan Hong602b85a2016-10-24 13:40:01 -0700166 bool mOwnsBuffer; // if true then mBuffer is a mutable char *
Martijn Coenen72110162016-08-19 14:28:25 +0200167
Yifan Hong602b85a2016-10-24 13:40:01 -0700168 // copy from data with size. Assume that my memory is freed
169 // (through clear(), for example)
170 void copyFrom(const char *data, size_t size);
171 // move from another hidl_string
172 void moveFrom(hidl_string &&);
Martijn Coenen72110162016-08-19 14:28:25 +0200173};
174
Steven Moreland551396a2017-02-13 18:33:20 -0800175#define HIDL_STRING_OPERATOR(OP) \
176 inline bool operator OP(const hidl_string &hs1, const hidl_string &hs2) { \
177 return strcmp(hs1.c_str(), hs2.c_str()) OP 0; \
178 } \
179 inline bool operator OP(const hidl_string &hs, const char *s) { \
180 return strcmp(hs.c_str(), s) OP 0; \
181 } \
182 inline bool operator OP(const char *s, const hidl_string &hs) { \
183 return strcmp(hs.c_str(), s) OP 0; \
184 }
Scott Randolphbb840f72016-11-21 14:39:26 -0800185
Steven Moreland551396a2017-02-13 18:33:20 -0800186HIDL_STRING_OPERATOR(==)
187HIDL_STRING_OPERATOR(!=)
188HIDL_STRING_OPERATOR(<)
189HIDL_STRING_OPERATOR(<=)
190HIDL_STRING_OPERATOR(>)
191HIDL_STRING_OPERATOR(>=)
Scott Randolphbb840f72016-11-21 14:39:26 -0800192
Steven Moreland551396a2017-02-13 18:33:20 -0800193#undef HIDL_STRING_OPERATOR
Yifan Hong5708fb42016-10-26 17:50:29 -0700194
Scott Randolpheb0c3372017-04-03 14:07:14 -0700195// Send our content to the output stream
196std::ostream& operator<<(std::ostream& os, const hidl_string& str);
197
198
Martijn Coenen30791002016-12-01 15:40:46 +0100199// hidl_memory is a structure that can be used to transfer
200// pieces of shared memory between processes. The assumption
201// of this object is that the memory remains accessible as
202// long as the file descriptors in the enclosed mHandle
203// - as well as all of its cross-process dups() - remain opened.
204struct hidl_memory {
205
Martijn Coenen04b91c02017-01-19 14:14:21 +0100206 hidl_memory() : mHandle(nullptr), mSize(0), mName("") {
Martijn Coenen30791002016-12-01 15:40:46 +0100207 }
208
209 /**
Martijn Coenen04b91c02017-01-19 14:14:21 +0100210 * Creates a hidl_memory object, but doesn't take ownership of
211 * the passed in native_handle_t; callers are responsible for
212 * making sure the handle remains valid while this object is
213 * used.
Martijn Coenen30791002016-12-01 15:40:46 +0100214 */
Martijn Coenen04b91c02017-01-19 14:14:21 +0100215 hidl_memory(const hidl_string &name, const native_handle_t *handle, size_t size)
216 : mHandle(handle),
Martijn Coenen30791002016-12-01 15:40:46 +0100217 mSize(size),
218 mName(name)
219 {}
220
221 // copy constructor
222 hidl_memory(const hidl_memory& other) {
223 *this = other;
224 }
225
226 // copy assignment
227 hidl_memory &operator=(const hidl_memory &other) {
228 if (this != &other) {
Martijn Coenen04b91c02017-01-19 14:14:21 +0100229 mHandle = other.mHandle;
Martijn Coenen30791002016-12-01 15:40:46 +0100230 mSize = other.mSize;
231 mName = other.mName;
232 }
233
234 return *this;
235 }
236
Hridya Valsaraju01268892017-02-27 08:48:38 -0800237 // move constructor
238 hidl_memory(hidl_memory&& other) {
239 *this = std::move(other);
240 }
241
242 // move assignment
243 hidl_memory &operator=(hidl_memory &&other) {
244 if (this != &other) {
245 mHandle = std::move(other.mHandle);
246 mSize = other.mSize;
247 mName = std::move(other.mName);
248 other.mSize = 0;
249 }
250
251 return *this;
252 }
253
Martijn Coenen30791002016-12-01 15:40:46 +0100254
255 ~hidl_memory() {
Martijn Coenen30791002016-12-01 15:40:46 +0100256 }
257
258 const native_handle_t* handle() const {
259 return mHandle;
260 }
261
262 const hidl_string &name() const {
263 return mName;
264 }
265
Hridya Valsaraju6d4acb12017-03-03 14:24:43 -0800266 uint64_t size() const {
Martijn Coenen30791002016-12-01 15:40:46 +0100267 return mSize;
268 }
269
270 // offsetof(hidl_memory, mHandle) exposed since mHandle is private.
271 static const size_t kOffsetOfHandle;
272 // offsetof(hidl_memory, mName) exposed since mHandle is private.
273 static const size_t kOffsetOfName;
Jeff Tinker0f3461d2017-01-03 10:40:55 -0800274
Martijn Coenen30791002016-12-01 15:40:46 +0100275private:
Hridya Valsaraju6d4acb12017-03-03 14:24:43 -0800276 hidl_handle mHandle __attribute__ ((aligned(8)));
277 uint64_t mSize __attribute__ ((aligned(8)));
278 hidl_string mName __attribute__ ((aligned(8)));
Martijn Coenen30791002016-12-01 15:40:46 +0100279};
280
Andreas Huber20dce082016-09-22 19:39:13 -0700281////////////////////////////////////////////////////////////////////////////////
282
Martijn Coenen72110162016-08-19 14:28:25 +0200283template<typename T>
Hridya Valsarajub7370302017-03-08 14:39:23 -0800284struct hidl_vec {
Martijn Coenen72110162016-08-19 14:28:25 +0200285 hidl_vec()
286 : mBuffer(NULL),
287 mSize(0),
288 mOwnsBuffer(true) {
Hridya Valsaraju6d4acb12017-03-03 14:24:43 -0800289 static_assert(hidl_vec<T>::kOffsetOfBuffer == 0, "wrong offset");
Martijn Coenen72110162016-08-19 14:28:25 +0200290 }
291
Yifan Hong602b85a2016-10-24 13:40:01 -0700292 hidl_vec(const hidl_vec<T> &other) : hidl_vec() {
Martijn Coenen72110162016-08-19 14:28:25 +0200293 *this = other;
294 }
295
Janis Danisevskisd3ddf622016-10-24 11:40:50 +0100296 hidl_vec(hidl_vec<T> &&other)
Steven Moreland9fbfe472016-11-14 16:49:17 -0800297 : mOwnsBuffer(false) {
Janis Danisevskisd3ddf622016-10-24 11:40:50 +0100298 *this = std::move(other);
Alexey Polyudov0ebdbe82016-10-18 09:31:46 -0700299 }
300
Steven Morelandb69926a2016-11-15 10:02:57 -0800301 hidl_vec(const std::initializer_list<T> list)
Yifan Hongca1d1bf2016-12-19 14:26:19 -0800302 : mOwnsBuffer(true) {
303 if (list.size() > UINT32_MAX) {
Hridya Valsarajub7370302017-03-08 14:39:23 -0800304 details::logAlwaysFatal("hidl_vec can't hold more than 2^32 elements.");
Yifan Hongca1d1bf2016-12-19 14:26:19 -0800305 }
306 mSize = static_cast<uint32_t>(list.size());
Steven Moreland9fbfe472016-11-14 16:49:17 -0800307 mBuffer = new T[mSize];
308
Steven Morelandb69926a2016-11-15 10:02:57 -0800309 size_t idx = 0;
Steven Moreland9fbfe472016-11-14 16:49:17 -0800310 for (auto it = list.begin(); it != list.end(); ++it) {
311 mBuffer[idx++] = *it;
312 }
313 }
314
Yifan Hong602b85a2016-10-24 13:40:01 -0700315 hidl_vec(const std::vector<T> &other) : hidl_vec() {
316 *this = other;
317 }
318
Tomasz Wasilczyka9f60732017-06-30 10:53:22 -0700319 template <typename InputIterator,
320 typename = typename std::enable_if<std::is_convertible<
321 typename std::iterator_traits<InputIterator>::iterator_category,
322 std::input_iterator_tag>::value>::type>
323 hidl_vec(InputIterator first, InputIterator last) : mOwnsBuffer(true) {
324 auto size = std::distance(first, last);
325 if (size > static_cast<int64_t>(UINT32_MAX)) {
326 details::logAlwaysFatal("hidl_vec can't hold more than 2^32 elements.");
327 }
328 if (size < 0) {
329 details::logAlwaysFatal("size can't be negative.");
330 }
331 mSize = static_cast<uint32_t>(size);
332 mBuffer = new T[mSize];
333
334 size_t idx = 0;
335 for (; first != last; ++first) {
336 mBuffer[idx++] = static_cast<T>(*first);
337 }
338 }
339
Martijn Coenen72110162016-08-19 14:28:25 +0200340 ~hidl_vec() {
341 if (mOwnsBuffer) {
342 delete[] mBuffer;
343 }
344 mBuffer = NULL;
345 }
346
Alexey Polyudove2299012016-10-19 09:52:00 -0700347 // Reference an existing array, optionally taking ownership. It is the
Martijn Coenen72110162016-08-19 14:28:25 +0200348 // caller's responsibility to ensure that the underlying memory stays
349 // valid for the lifetime of this hidl_vec.
Alexey Polyudove2299012016-10-19 09:52:00 -0700350 void setToExternal(T *data, size_t size, bool shouldOwn = false) {
Martijn Coenen72110162016-08-19 14:28:25 +0200351 if (mOwnsBuffer) {
352 delete [] mBuffer;
353 }
354 mBuffer = data;
Martijn Coenen4ca39a02016-11-11 15:58:51 +0100355 if (size > UINT32_MAX) {
Hridya Valsarajub7370302017-03-08 14:39:23 -0800356 details::logAlwaysFatal("external vector size exceeds 2^32 elements.");
Martijn Coenen4ca39a02016-11-11 15:58:51 +0100357 }
358 mSize = static_cast<uint32_t>(size);
Alexey Polyudove2299012016-10-19 09:52:00 -0700359 mOwnsBuffer = shouldOwn;
Martijn Coenen72110162016-08-19 14:28:25 +0200360 }
361
Alexey Polyudov6f0c9a12016-10-18 09:37:35 -0700362 T *data() {
363 return mBuffer;
364 }
365
366 const T *data() const {
367 return mBuffer;
368 }
369
Alexey Polyudovc98a99c2016-10-18 09:43:56 -0700370 T *releaseData() {
371 if (!mOwnsBuffer && mSize > 0) {
372 resize(mSize);
373 }
374 mOwnsBuffer = false;
375 return mBuffer;
376 }
377
Alexey Polyudov0ebdbe82016-10-18 09:31:46 -0700378 hidl_vec &operator=(hidl_vec &&other) {
Janis Danisevskisd3ddf622016-10-24 11:40:50 +0100379 if (mOwnsBuffer) {
380 delete[] mBuffer;
381 }
Alexey Polyudov0ebdbe82016-10-18 09:31:46 -0700382 mBuffer = other.mBuffer;
383 mSize = other.mSize;
384 mOwnsBuffer = other.mOwnsBuffer;
385 other.mOwnsBuffer = false;
386 return *this;
387 }
388
Martijn Coenen72110162016-08-19 14:28:25 +0200389 hidl_vec &operator=(const hidl_vec &other) {
390 if (this != &other) {
391 if (mOwnsBuffer) {
392 delete[] mBuffer;
393 }
Yifan Hong602b85a2016-10-24 13:40:01 -0700394 copyFrom(other, other.mSize);
Martijn Coenen72110162016-08-19 14:28:25 +0200395 }
396
397 return *this;
398 }
399
Yifan Hong602b85a2016-10-24 13:40:01 -0700400 // copy from an std::vector.
401 hidl_vec &operator=(const std::vector<T> &other) {
402 if (mOwnsBuffer) {
403 delete[] mBuffer;
404 }
405 copyFrom(other, other.size());
406 return *this;
407 }
408
409 // cast to an std::vector.
410 operator std::vector<T>() const {
411 std::vector<T> v(mSize);
412 for (size_t i = 0; i < mSize; ++i) {
413 v[i] = mBuffer[i];
414 }
415 return v;
416 }
417
Yifan Hong9fcbb362016-12-20 16:46:41 -0800418 // equality check, assuming that T::operator== is defined.
419 bool operator==(const hidl_vec &other) const {
420 if (mSize != other.size()) {
421 return false;
422 }
423 for (size_t i = 0; i < mSize; ++i) {
424 if (!(mBuffer[i] == other.mBuffer[i])) {
425 return false;
426 }
427 }
428 return true;
429 }
430
431 // inequality check, assuming that T::operator== is defined.
432 inline bool operator!=(const hidl_vec &other) const {
433 return !((*this) == other);
434 }
435
Martijn Coenen72110162016-08-19 14:28:25 +0200436 size_t size() const {
437 return mSize;
438 }
439
440 T &operator[](size_t index) {
441 return mBuffer[index];
442 }
443
444 const T &operator[](size_t index) const {
445 return mBuffer[index];
446 }
447
448 void resize(size_t size) {
Martijn Coenen4ca39a02016-11-11 15:58:51 +0100449 if (size > UINT32_MAX) {
Hridya Valsarajub7370302017-03-08 14:39:23 -0800450 details::logAlwaysFatal("hidl_vec can't hold more than 2^32 elements.");
Martijn Coenen4ca39a02016-11-11 15:58:51 +0100451 }
Martijn Coenen72110162016-08-19 14:28:25 +0200452 T *newBuffer = new T[size];
453
Martijn Coenen4ca39a02016-11-11 15:58:51 +0100454 for (size_t i = 0; i < std::min(static_cast<uint32_t>(size), mSize); ++i) {
Martijn Coenen72110162016-08-19 14:28:25 +0200455 newBuffer[i] = mBuffer[i];
456 }
457
458 if (mOwnsBuffer) {
459 delete[] mBuffer;
460 }
461 mBuffer = newBuffer;
462
Martijn Coenen4ca39a02016-11-11 15:58:51 +0100463 mSize = static_cast<uint32_t>(size);
Martijn Coenen72110162016-08-19 14:28:25 +0200464 mOwnsBuffer = true;
465 }
466
Yifan Hong089ae132016-11-11 11:32:52 -0800467 // offsetof(hidl_string, mBuffer) exposed since mBuffer is private.
468 static const size_t kOffsetOfBuffer;
Scott Randolphbb840f72016-11-21 14:39:26 -0800469
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800470private:
Scott Randolphbb840f72016-11-21 14:39:26 -0800471 // Define std interator interface for walking the array contents
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800472 template<bool is_const>
473 class iter : public std::iterator<
474 std::random_access_iterator_tag, /* Category */
475 T,
476 ptrdiff_t, /* Distance */
477 typename std::conditional<is_const, const T *, T *>::type /* Pointer */,
478 typename std::conditional<is_const, const T &, T &>::type /* Reference */>
Scott Randolphbb840f72016-11-21 14:39:26 -0800479 {
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800480 using traits = std::iterator_traits<iter>;
481 using ptr_type = typename traits::pointer;
482 using ref_type = typename traits::reference;
483 using diff_type = typename traits::difference_type;
Scott Randolphbb840f72016-11-21 14:39:26 -0800484 public:
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800485 iter(ptr_type ptr) : mPtr(ptr) { }
486 inline iter &operator++() { mPtr++; return *this; }
487 inline iter operator++(int) { iter i = *this; mPtr++; return i; }
488 inline iter &operator--() { mPtr--; return *this; }
489 inline iter operator--(int) { iter i = *this; mPtr--; return i; }
490 inline friend iter operator+(diff_type n, const iter &it) { return it.mPtr + n; }
491 inline iter operator+(diff_type n) const { return mPtr + n; }
492 inline iter operator-(diff_type n) const { return mPtr - n; }
493 inline diff_type operator-(const iter &other) const { return mPtr - other.mPtr; }
494 inline iter &operator+=(diff_type n) { mPtr += n; return *this; }
495 inline iter &operator-=(diff_type n) { mPtr -= n; return *this; }
496 inline ref_type operator*() const { return *mPtr; }
497 inline ptr_type operator->() const { return mPtr; }
498 inline bool operator==(const iter &rhs) const { return mPtr == rhs.mPtr; }
499 inline bool operator!=(const iter &rhs) const { return mPtr != rhs.mPtr; }
500 inline bool operator< (const iter &rhs) const { return mPtr < rhs.mPtr; }
501 inline bool operator> (const iter &rhs) const { return mPtr > rhs.mPtr; }
502 inline bool operator<=(const iter &rhs) const { return mPtr <= rhs.mPtr; }
503 inline bool operator>=(const iter &rhs) const { return mPtr >= rhs.mPtr; }
504 inline ref_type operator[](size_t n) const { return mPtr[n]; }
Scott Randolphbb840f72016-11-21 14:39:26 -0800505 private:
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800506 ptr_type mPtr;
Scott Randolphbb840f72016-11-21 14:39:26 -0800507 };
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800508public:
509 using iterator = iter<false /* is_const */>;
510 using const_iterator = iter<true /* is_const */>;
511
Scott Randolphbb840f72016-11-21 14:39:26 -0800512 iterator begin() { return data(); }
513 iterator end() { return data()+mSize; }
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800514 const_iterator begin() const { return data(); }
515 const_iterator end() const { return data()+mSize; }
Scott Randolphbb840f72016-11-21 14:39:26 -0800516
Martijn Coenen72110162016-08-19 14:28:25 +0200517private:
Martijn Coenen4ca39a02016-11-11 15:58:51 +0100518 details::hidl_pointer<T> mBuffer;
519 uint32_t mSize;
Martijn Coenen72110162016-08-19 14:28:25 +0200520 bool mOwnsBuffer;
Yifan Hong602b85a2016-10-24 13:40:01 -0700521
522 // copy from an array-like object, assuming my resources are freed.
523 template <typename Array>
524 void copyFrom(const Array &data, size_t size) {
Chia-I Wu4b48edc2016-12-07 22:31:17 +0800525 mSize = static_cast<uint32_t>(size);
Yifan Hong602b85a2016-10-24 13:40:01 -0700526 mOwnsBuffer = true;
527 if (mSize > 0) {
528 mBuffer = new T[size];
529 for (size_t i = 0; i < size; ++i) {
530 mBuffer[i] = data[i];
531 }
532 } else {
533 mBuffer = NULL;
534 }
535 }
Martijn Coenen72110162016-08-19 14:28:25 +0200536};
537
Yifan Hong089ae132016-11-11 11:32:52 -0800538template <typename T>
539const size_t hidl_vec<T>::kOffsetOfBuffer = offsetof(hidl_vec<T>, mBuffer);
540
Andreas Huber20dce082016-09-22 19:39:13 -0700541////////////////////////////////////////////////////////////////////////////////
542
543namespace details {
544
545 template<size_t SIZE1, size_t... SIZES>
546 struct product {
547 static constexpr size_t value = SIZE1 * product<SIZES...>::value;
548 };
549
550 template<size_t SIZE1>
551 struct product<SIZE1> {
552 static constexpr size_t value = SIZE1;
553 };
554
555 template<typename T, size_t SIZE1, size_t... SIZES>
Yifan Hong44ab6232016-11-22 16:28:24 -0800556 struct std_array {
557 using type = std::array<typename std_array<T, SIZES...>::type, SIZE1>;
558 };
559
560 template<typename T, size_t SIZE1>
561 struct std_array<T, SIZE1> {
562 using type = std::array<T, SIZE1>;
563 };
564
565 template<typename T, size_t SIZE1, size_t... SIZES>
Andreas Huber20dce082016-09-22 19:39:13 -0700566 struct accessor {
Yifan Hong44ab6232016-11-22 16:28:24 -0800567
568 using std_array_type = typename std_array<T, SIZE1, SIZES...>::type;
569
Andreas Huber20dce082016-09-22 19:39:13 -0700570 explicit accessor(T *base)
571 : mBase(base) {
572 }
573
574 accessor<T, SIZES...> operator[](size_t index) {
575 return accessor<T, SIZES...>(
576 &mBase[index * product<SIZES...>::value]);
577 }
578
Yifan Hong44ab6232016-11-22 16:28:24 -0800579 accessor &operator=(const std_array_type &other) {
580 for (size_t i = 0; i < SIZE1; ++i) {
581 (*this)[i] = other[i];
582 }
583 return *this;
584 }
585
Andreas Huber20dce082016-09-22 19:39:13 -0700586 private:
587 T *mBase;
588 };
589
590 template<typename T, size_t SIZE1>
591 struct accessor<T, SIZE1> {
Yifan Hong44ab6232016-11-22 16:28:24 -0800592
593 using std_array_type = typename std_array<T, SIZE1>::type;
594
Andreas Huber20dce082016-09-22 19:39:13 -0700595 explicit accessor(T *base)
596 : mBase(base) {
597 }
598
599 T &operator[](size_t index) {
600 return mBase[index];
601 }
602
Yifan Hong44ab6232016-11-22 16:28:24 -0800603 accessor &operator=(const std_array_type &other) {
604 for (size_t i = 0; i < SIZE1; ++i) {
605 (*this)[i] = other[i];
606 }
607 return *this;
608 }
609
Andreas Huber20dce082016-09-22 19:39:13 -0700610 private:
611 T *mBase;
612 };
613
614 template<typename T, size_t SIZE1, size_t... SIZES>
615 struct const_accessor {
Yifan Hong44ab6232016-11-22 16:28:24 -0800616
617 using std_array_type = typename std_array<T, SIZE1, SIZES...>::type;
618
Andreas Huber20dce082016-09-22 19:39:13 -0700619 explicit const_accessor(const T *base)
620 : mBase(base) {
621 }
622
Yifan Hongbe7a6882017-01-05 17:30:17 -0800623 const_accessor<T, SIZES...> operator[](size_t index) const {
Andreas Huber20dce082016-09-22 19:39:13 -0700624 return const_accessor<T, SIZES...>(
625 &mBase[index * product<SIZES...>::value]);
626 }
627
Yifan Hong44ab6232016-11-22 16:28:24 -0800628 operator std_array_type() {
629 std_array_type array;
630 for (size_t i = 0; i < SIZE1; ++i) {
631 array[i] = (*this)[i];
632 }
633 return array;
634 }
635
Andreas Huber20dce082016-09-22 19:39:13 -0700636 private:
637 const T *mBase;
638 };
639
640 template<typename T, size_t SIZE1>
641 struct const_accessor<T, SIZE1> {
Yifan Hong44ab6232016-11-22 16:28:24 -0800642
643 using std_array_type = typename std_array<T, SIZE1>::type;
644
Andreas Huber20dce082016-09-22 19:39:13 -0700645 explicit const_accessor(const T *base)
646 : mBase(base) {
647 }
648
649 const T &operator[](size_t index) const {
650 return mBase[index];
651 }
652
Yifan Hong44ab6232016-11-22 16:28:24 -0800653 operator std_array_type() {
654 std_array_type array;
655 for (size_t i = 0; i < SIZE1; ++i) {
656 array[i] = (*this)[i];
657 }
658 return array;
659 }
660
Andreas Huber20dce082016-09-22 19:39:13 -0700661 private:
662 const T *mBase;
663 };
664
665} // namespace details
666
667////////////////////////////////////////////////////////////////////////////////
668
Yifan Hong44ab6232016-11-22 16:28:24 -0800669// A multidimensional array of T's. Assumes that T::operator=(const T &) is defined.
Andreas Huber20dce082016-09-22 19:39:13 -0700670template<typename T, size_t SIZE1, size_t... SIZES>
671struct hidl_array {
Yifan Hong44ab6232016-11-22 16:28:24 -0800672
673 using std_array_type = typename details::std_array<T, SIZE1, SIZES...>::type;
674
Andreas Huber20dce082016-09-22 19:39:13 -0700675 hidl_array() = default;
676
Yifan Hong44ab6232016-11-22 16:28:24 -0800677 // Copies the data from source, using T::operator=(const T &).
678 hidl_array(const T *source) {
679 for (size_t i = 0; i < elementCount(); ++i) {
680 mBuffer[i] = source[i];
681 }
682 }
683
684 // Copies the data from the given std::array, using T::operator=(const T &).
685 hidl_array(const std_array_type &array) {
686 details::accessor<T, SIZE1, SIZES...> modifier(mBuffer);
687 modifier = array;
688 }
689
Andreas Huber20dce082016-09-22 19:39:13 -0700690 T *data() { return mBuffer; }
691 const T *data() const { return mBuffer; }
692
693 details::accessor<T, SIZES...> operator[](size_t index) {
694 return details::accessor<T, SIZES...>(
695 &mBuffer[index * details::product<SIZES...>::value]);
696 }
697
698 details::const_accessor<T, SIZES...> operator[](size_t index) const {
699 return details::const_accessor<T, SIZES...>(
700 &mBuffer[index * details::product<SIZES...>::value]);
701 }
702
Yifan Hong9fcbb362016-12-20 16:46:41 -0800703 // equality check, assuming that T::operator== is defined.
704 bool operator==(const hidl_array &other) const {
705 for (size_t i = 0; i < elementCount(); ++i) {
706 if (!(mBuffer[i] == other.mBuffer[i])) {
707 return false;
708 }
709 }
710 return true;
711 }
712
713 inline bool operator!=(const hidl_array &other) const {
714 return !((*this) == other);
715 }
716
Andreas Huber00a985c2016-09-28 14:24:53 -0700717 using size_tuple_type = std::tuple<decltype(SIZE1), decltype(SIZES)...>;
718
719 static constexpr size_tuple_type size() {
720 return std::make_tuple(SIZE1, SIZES...);
721 }
722
Yifan Hong44ab6232016-11-22 16:28:24 -0800723 static constexpr size_t elementCount() {
724 return details::product<SIZE1, SIZES...>::value;
725 }
726
727 operator std_array_type() const {
728 return details::const_accessor<T, SIZE1, SIZES...>(mBuffer);
729 }
730
Andreas Huber20dce082016-09-22 19:39:13 -0700731private:
Yifan Hong44ab6232016-11-22 16:28:24 -0800732 T mBuffer[elementCount()];
Andreas Huber20dce082016-09-22 19:39:13 -0700733};
734
Yifan Hong44ab6232016-11-22 16:28:24 -0800735// An array of T's. Assumes that T::operator=(const T &) is defined.
Andreas Huber20dce082016-09-22 19:39:13 -0700736template<typename T, size_t SIZE1>
737struct hidl_array<T, SIZE1> {
Yifan Hong44ab6232016-11-22 16:28:24 -0800738
739 using std_array_type = typename details::std_array<T, SIZE1>::type;
740
Andreas Huber20dce082016-09-22 19:39:13 -0700741 hidl_array() = default;
Yifan Hong44ab6232016-11-22 16:28:24 -0800742
743 // Copies the data from source, using T::operator=(const T &).
Sasha Levitskiy3da68482016-11-17 16:48:43 -0800744 hidl_array(const T *source) {
Yifan Hong44ab6232016-11-22 16:28:24 -0800745 for (size_t i = 0; i < elementCount(); ++i) {
746 mBuffer[i] = source[i];
747 }
Sasha Levitskiy3da68482016-11-17 16:48:43 -0800748 }
Andreas Huber20dce082016-09-22 19:39:13 -0700749
Yifan Hong44ab6232016-11-22 16:28:24 -0800750 // Copies the data from the given std::array, using T::operator=(const T &).
751 hidl_array(const std_array_type &array) : hidl_array(array.data()) {}
752
Andreas Huber20dce082016-09-22 19:39:13 -0700753 T *data() { return mBuffer; }
754 const T *data() const { return mBuffer; }
755
756 T &operator[](size_t index) {
757 return mBuffer[index];
758 }
759
760 const T &operator[](size_t index) const {
761 return mBuffer[index];
762 }
763
Yifan Hong9fcbb362016-12-20 16:46:41 -0800764 // equality check, assuming that T::operator== is defined.
765 bool operator==(const hidl_array &other) const {
766 for (size_t i = 0; i < elementCount(); ++i) {
767 if (!(mBuffer[i] == other.mBuffer[i])) {
768 return false;
769 }
770 }
771 return true;
772 }
773
774 inline bool operator!=(const hidl_array &other) const {
775 return !((*this) == other);
776 }
777
Andreas Huber00a985c2016-09-28 14:24:53 -0700778 static constexpr size_t size() { return SIZE1; }
Yifan Hong44ab6232016-11-22 16:28:24 -0800779 static constexpr size_t elementCount() { return SIZE1; }
780
781 // Copies the data to an std::array, using T::operator=(T).
782 operator std_array_type() const {
783 std_array_type array;
784 for (size_t i = 0; i < SIZE1; ++i) {
785 array[i] = mBuffer[i];
786 }
787 return array;
788 }
Andreas Huber00a985c2016-09-28 14:24:53 -0700789
Andreas Huber20dce082016-09-22 19:39:13 -0700790private:
791 T mBuffer[SIZE1];
792};
793
Martijn Coenen72110162016-08-19 14:28:25 +0200794// ----------------------------------------------------------------------
795// Version functions
796struct hidl_version {
797public:
Chia-I Wu666b76b2016-10-06 14:15:59 +0800798 constexpr hidl_version(uint16_t major, uint16_t minor) : mMajor(major), mMinor(minor) {}
Martijn Coenen72110162016-08-19 14:28:25 +0200799
Steven Moreland5d5ef7f2016-10-20 19:19:55 -0700800 bool operator==(const hidl_version& other) const {
Martijn Coenen72110162016-08-19 14:28:25 +0200801 return (mMajor == other.get_major() && mMinor == other.get_minor());
802 }
Martijn Coenenc28f1152016-08-22 14:06:56 +0200803
Eino-Ville Talvala19f4db52016-12-14 15:19:28 -0800804 bool operator<(const hidl_version& other) const {
805 return (mMajor < other.get_major() ||
806 (mMajor == other.get_major() && mMinor < other.get_minor()));
807 }
808
809 bool operator>(const hidl_version& other) const {
810 return other < *this;
811 }
812
813 bool operator<=(const hidl_version& other) const {
814 return !(*this > other);
815 }
816
817 bool operator>=(const hidl_version& other) const {
818 return !(*this < other);
819 }
820
Martijn Coenen097a7672016-09-08 16:56:41 +0200821 constexpr uint16_t get_major() const { return mMajor; }
822 constexpr uint16_t get_minor() const { return mMinor; }
Martijn Coenen72110162016-08-19 14:28:25 +0200823
Martijn Coenen72110162016-08-19 14:28:25 +0200824private:
825 uint16_t mMajor;
826 uint16_t mMinor;
827};
828
829inline android::hardware::hidl_version make_hidl_version(uint16_t major, uint16_t minor) {
830 return hidl_version(major,minor);
831}
832
Yifan Hongbe7a6882017-01-05 17:30:17 -0800833///////////////////// toString functions
834
Hridya Valsaraju4ff88a32017-03-09 16:01:02 -0800835std::string toString(const void *t);
Yifan Hongbe7a6882017-01-05 17:30:17 -0800836
837// toString alias for numeric types
838template<typename T, typename = typename std::enable_if<std::is_arithmetic<T>::value, T>::type>
839inline std::string toString(T t) {
840 return std::to_string(t);
841}
842
Hridya Valsaraju4ff88a32017-03-09 16:01:02 -0800843namespace details {
844
Yifan Hongbe7a6882017-01-05 17:30:17 -0800845template<typename T, typename = typename std::enable_if<std::is_arithmetic<T>::value, T>::type>
846inline std::string toHexString(T t, bool prefix = true) {
847 std::ostringstream os;
848 if (prefix) { os << std::showbase; }
849 os << std::hex << t;
850 return os.str();
851}
852
853template<>
854inline std::string toHexString(uint8_t t, bool prefix) {
855 return toHexString(static_cast<int32_t>(t), prefix);
856}
857
858template<>
859inline std::string toHexString(int8_t t, bool prefix) {
860 return toHexString(static_cast<int32_t>(t), prefix);
861}
862
Hridya Valsaraju4ff88a32017-03-09 16:01:02 -0800863template<typename Array>
864std::string arrayToString(const Array &a, size_t size);
865
866template<size_t SIZE1>
867std::string arraySizeToString() {
868 return std::string{"["} + toString(SIZE1) + "]";
869}
870
871template<size_t SIZE1, size_t SIZE2, size_t... SIZES>
872std::string arraySizeToString() {
873 return std::string{"["} + toString(SIZE1) + "]" + arraySizeToString<SIZE2, SIZES...>();
874}
875
876template<typename T, size_t SIZE1>
877std::string toString(details::const_accessor<T, SIZE1> a) {
878 return arrayToString(a, SIZE1);
879}
880
881template<typename Array>
882std::string arrayToString(const Array &a, size_t size) {
883 using android::hardware::toString;
884 std::string os;
885 os += "{";
886 for (size_t i = 0; i < size; ++i) {
887 if (i > 0) {
888 os += ", ";
889 }
890 os += toString(a[i]);
891 }
892 os += "}";
893 return os;
894}
895
896template<typename T, size_t SIZE1, size_t SIZE2, size_t... SIZES>
897std::string toString(details::const_accessor<T, SIZE1, SIZE2, SIZES...> a) {
898 return arrayToString(a, SIZE1);
899}
900
901} //namespace details
902
903inline std::string toString(const void *t) {
904 return details::toHexString(reinterpret_cast<uintptr_t>(t));
Yifan Hongbe7a6882017-01-05 17:30:17 -0800905}
906
907// debug string dump. There will be quotes around the string!
908inline std::string toString(const hidl_string &hs) {
909 return std::string{"\""} + hs.c_str() + "\"";
910}
911
912// debug string dump
913inline std::string toString(const hidl_handle &hs) {
914 return toString(hs.getNativeHandle());
915}
916
917inline std::string toString(const hidl_memory &mem) {
918 return std::string{"memory {.name = "} + toString(mem.name()) + ", .size = "
919 + toString(mem.size())
920 + ", .handle = " + toString(mem.handle()) + "}";
921}
922
923inline std::string toString(const sp<hidl_death_recipient> &dr) {
924 return std::string{"death_recipient@"} + toString(dr.get());
925}
926
Yifan Hongbe7a6882017-01-05 17:30:17 -0800927// debug string dump, assuming that toString(T) is defined.
928template<typename T>
929std::string toString(const hidl_vec<T> &a) {
930 std::string os;
931 os += "[" + toString(a.size()) + "]";
Hridya Valsaraju4ff88a32017-03-09 16:01:02 -0800932 os += details::arrayToString(a, a.size());
Yifan Hongbe7a6882017-01-05 17:30:17 -0800933 return os;
934}
935
Yifan Hongbe7a6882017-01-05 17:30:17 -0800936template<typename T, size_t SIZE1>
937std::string toString(const hidl_array<T, SIZE1> &a) {
Hridya Valsaraju4ff88a32017-03-09 16:01:02 -0800938 return details::arraySizeToString<SIZE1>()
939 + details::toString(details::const_accessor<T, SIZE1>(a.data()));
Yifan Hongbe7a6882017-01-05 17:30:17 -0800940}
941
942template<typename T, size_t SIZE1, size_t SIZE2, size_t... SIZES>
943std::string toString(const hidl_array<T, SIZE1, SIZE2, SIZES...> &a) {
Hridya Valsaraju4ff88a32017-03-09 16:01:02 -0800944 return details::arraySizeToString<SIZE1, SIZE2, SIZES...>()
945 + details::toString(details::const_accessor<T, SIZE1, SIZE2, SIZES...>(a.data()));
Yifan Hongbe7a6882017-01-05 17:30:17 -0800946}
947
Martijn Coenen72110162016-08-19 14:28:25 +0200948} // namespace hardware
949} // namespace android
950
Martijn Coenenc28f1152016-08-22 14:06:56 +0200951
Martijn Coenen72110162016-08-19 14:28:25 +0200952#endif // ANDROID_HIDL_SUPPORT_H