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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
|
/*
* Copyright 2018, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gui/bufferqueue/1.0/Conversion.h>
namespace android {
namespace conversion {
// native_handle_t helper functions.
/**
* \brief Take an fd and create a native handle containing only the given fd.
* The created handle will need to be deleted manually with
* `native_handle_delete()`.
*
* \param[in] fd The source file descriptor (of type `int`).
* \return The create `native_handle_t*` that contains the given \p fd. If the
* supplied \p fd is negative, the created native handle will contain no file
* descriptors.
*
* If the native handle cannot be created, the return value will be
* `nullptr`.
*
* This function does not duplicate the file descriptor.
*/
native_handle_t* native_handle_create_from_fd(int fd) {
if (fd < 2) {
return native_handle_create(0, 0);
}
native_handle_t* nh = native_handle_create(1, 0);
if (nh == nullptr) {
return nullptr;
}
nh->data[0] = fd;
return nh;
}
/**
* \brief Extract a file descriptor from a native handle.
*
* \param[in] nh The source `native_handle_t*`.
* \param[in] index The index of the file descriptor in \p nh to read from. This
* input has the default value of `0`.
* \return The `index`-th file descriptor in \p nh. If \p nh does not have
* enough file descriptors, the returned value will be `-1`.
*
* This function does not duplicate the file descriptor.
*/
int native_handle_read_fd(native_handle_t const* nh, int index) {
return ((nh == nullptr) || (nh->numFds == 0) ||
(nh->numFds <= index) || (index < 0)) ?
-1 : nh->data[index];
}
/**
* Conversion functions
* ====================
*
* There are two main directions of conversion:
* - `inTargetType(...)`: Create a wrapper whose lifetime depends on the
* input. The wrapper has type `TargetType`.
* - `toTargetType(...)`: Create a standalone object of type `TargetType` that
* corresponds to the input. The lifetime of the output does not depend on the
* lifetime of the input.
* - `wrapIn(TargetType*, ...)`: Same as `inTargetType()`, but for `TargetType`
* that cannot be copied and/or moved efficiently, or when there are multiple
* output arguments.
* - `convertTo(TargetType*, ...)`: Same as `toTargetType()`, but for
* `TargetType` that cannot be copied and/or moved efficiently, or when there
* are multiple output arguments.
*
* `wrapIn()` and `convertTo()` functions will take output arguments before
* input arguments. Some of these functions might return a value to indicate
* success or error.
*
* In converting or wrapping something as a Treble type that contains a
* `hidl_handle`, `native_handle_t*` will need to be created and returned as
* an additional output argument, hence only `wrapIn()` or `convertTo()` would
* be available. The caller must call `native_handle_delete()` to deallocate the
* returned native handle when it is no longer needed.
*
* For types that contain file descriptors, `inTargetType()` and `wrapAs()` do
* not perform duplication of file descriptors, while `toTargetType()` and
* `convertTo()` do.
*/
/**
* \brief Convert `Return<void>` to `status_t`. This is for legacy binder calls.
*
* \param[in] t The source `Return<void>`.
* \return The corresponding `status_t`.
*/
// convert: Return<void> -> status_t
status_t toStatusT(Return<void> const& t) {
return t.isOk() ? OK : (t.isDeadObject() ? DEAD_OBJECT : UNKNOWN_ERROR);
}
/**
* \brief Wrap `native_handle_t*` in `hidl_handle`.
*
* \param[in] nh The source `native_handle_t*`.
* \return The `hidl_handle` that points to \p nh.
*/
// wrap: native_handle_t* -> hidl_handle
hidl_handle inHidlHandle(native_handle_t const* nh) {
return hidl_handle(nh);
}
/**
* \brief Convert `int32_t` to `Dataspace`.
*
* \param[in] l The source `int32_t`.
* \result The corresponding `Dataspace`.
*/
// convert: int32_t -> Dataspace
Dataspace toHardwareDataspace(int32_t l) {
return static_cast<Dataspace>(l);
}
/**
* \brief Convert `Dataspace` to `int32_t`.
*
* \param[in] t The source `Dataspace`.
* \result The corresponding `int32_t`.
*/
// convert: Dataspace -> int32_t
int32_t toRawDataspace(Dataspace const& t) {
return static_cast<int32_t>(t);
}
/**
* \brief Wrap an opaque buffer inside a `hidl_vec<uint8_t>`.
*
* \param[in] l The pointer to the beginning of the opaque buffer.
* \param[in] size The size of the buffer.
* \return A `hidl_vec<uint8_t>` that points to the buffer.
*/
// wrap: void*, size_t -> hidl_vec<uint8_t>
hidl_vec<uint8_t> inHidlBytes(void const* l, size_t size) {
hidl_vec<uint8_t> t;
t.setToExternal(static_cast<uint8_t*>(const_cast<void*>(l)), size, false);
return t;
}
/**
* \brief Create a `hidl_vec<uint8_t>` that is a copy of an opaque buffer.
*
* \param[in] l The pointer to the beginning of the opaque buffer.
* \param[in] size The size of the buffer.
* \return A `hidl_vec<uint8_t>` that is a copy of the input buffer.
*/
// convert: void*, size_t -> hidl_vec<uint8_t>
hidl_vec<uint8_t> toHidlBytes(void const* l, size_t size) {
hidl_vec<uint8_t> t;
t.resize(size);
uint8_t const* src = static_cast<uint8_t const*>(l);
std::copy(src, src + size, t.data());
return t;
}
/**
* \brief Wrap `GraphicBuffer` in `AnwBuffer`.
*
* \param[out] t The wrapper of type `AnwBuffer`.
* \param[in] l The source `GraphicBuffer`.
*/
// wrap: GraphicBuffer -> AnwBuffer
void wrapAs(AnwBuffer* t, GraphicBuffer const& l) {
t->attr.width = l.getWidth();
t->attr.height = l.getHeight();
t->attr.stride = l.getStride();
t->attr.format = static_cast<PixelFormat>(l.getPixelFormat());
t->attr.layerCount = l.getLayerCount();
t->attr.usage = static_cast<uint32_t>(l.getUsage());
t->attr.id = l.getId();
t->attr.generationNumber = l.getGenerationNumber();
t->nativeHandle = hidl_handle(l.handle);
}
/**
* \brief Convert `AnwBuffer` to `GraphicBuffer`.
*
* \param[out] l The destination `GraphicBuffer`.
* \param[in] t The source `AnwBuffer`.
*
* This function will duplicate all file descriptors in \p t.
*/
// convert: AnwBuffer -> GraphicBuffer
// Ref: frameworks/native/libs/ui/GraphicBuffer.cpp: GraphicBuffer::flatten
bool convertTo(GraphicBuffer* l, AnwBuffer const& t) {
native_handle_t* handle = t.nativeHandle == nullptr ?
nullptr : native_handle_clone(t.nativeHandle);
size_t const numInts = 12 + static_cast<size_t>(handle ? handle->numInts : 0);
int32_t* ints = new int32_t[numInts];
size_t numFds = static_cast<size_t>(handle ? handle->numFds : 0);
int* fds = new int[numFds];
ints[0] = 'GBFR';
ints[1] = static_cast<int32_t>(t.attr.width);
ints[2] = static_cast<int32_t>(t.attr.height);
ints[3] = static_cast<int32_t>(t.attr.stride);
ints[4] = static_cast<int32_t>(t.attr.format);
ints[5] = static_cast<int32_t>(t.attr.layerCount);
ints[6] = static_cast<int32_t>(t.attr.usage);
ints[7] = static_cast<int32_t>(t.attr.id >> 32);
ints[8] = static_cast<int32_t>(t.attr.id & 0xFFFFFFFF);
ints[9] = static_cast<int32_t>(t.attr.generationNumber);
ints[10] = 0;
ints[11] = 0;
if (handle) {
ints[10] = static_cast<int32_t>(handle->numFds);
ints[11] = static_cast<int32_t>(handle->numInts);
int* intsStart = handle->data + handle->numFds;
std::copy(handle->data, intsStart, fds);
std::copy(intsStart, intsStart + handle->numInts, &ints[12]);
}
void const* constBuffer = static_cast<void const*>(ints);
size_t size = numInts * sizeof(int32_t);
int const* constFds = static_cast<int const*>(fds);
status_t status = l->unflatten(constBuffer, size, constFds, numFds);
delete [] fds;
delete [] ints;
native_handle_delete(handle);
return status == NO_ERROR;
}
/**
* Conversion functions for types outside media
* ============================================
*
* Some objects in libui and libgui that were made to go through binder calls do
* not expose ways to read or write their fields to the public. To pass an
* object of this kind through the HIDL boundary, translation functions need to
* work around the access restriction by using the publicly available
* `flatten()` and `unflatten()` functions.
*
* All `flatten()` and `unflatten()` overloads follow the same convention as
* follows:
*
* status_t flatten(ObjectType const& object,
* [OtherType const& other, ...]
* void*& buffer, size_t& size,
* int*& fds, size_t& numFds)
*
* status_t unflatten(ObjectType* object,
* [OtherType* other, ...,]
* void*& buffer, size_t& size,
* int*& fds, size_t& numFds)
*
* The number of `other` parameters varies depending on the `ObjectType`. For
* example, in the process of unflattening an object that contains
* `hidl_handle`, `other` is needed to hold `native_handle_t` objects that will
* be created.
*
* The last four parameters always work the same way in all overloads of
* `flatten()` and `unflatten()`:
* - For `flatten()`, `buffer` is the pointer to the non-fd buffer to be filled,
* `size` is the size (in bytes) of the non-fd buffer pointed to by `buffer`,
* `fds` is the pointer to the fd buffer to be filled, and `numFds` is the
* size (in ints) of the fd buffer pointed to by `fds`.
* - For `unflatten()`, `buffer` is the pointer to the non-fd buffer to be read
* from, `size` is the size (in bytes) of the non-fd buffer pointed to by
* `buffer`, `fds` is the pointer to the fd buffer to be read from, and
* `numFds` is the size (in ints) of the fd buffer pointed to by `fds`.
* - After a successful call to `flatten()` or `unflatten()`, `buffer` and `fds`
* will be advanced, while `size` and `numFds` will be decreased to reflect
* how much storage/data of the two buffers (fd and non-fd) have been used.
* - After an unsuccessful call, the values of `buffer`, `size`, `fds` and
* `numFds` are invalid.
*
* The return value of a successful `flatten()` or `unflatten()` call will be
* `OK` (also aliased as `NO_ERROR`). Any other values indicate a failure.
*
* For each object type that supports flattening, there will be two accompanying
* functions: `getFlattenedSize()` and `getFdCount()`. `getFlattenedSize()` will
* return the size of the non-fd buffer that the object will need for
* flattening. `getFdCount()` will return the size of the fd buffer that the
* object will need for flattening.
*
* The set of these four functions, `getFlattenedSize()`, `getFdCount()`,
* `flatten()` and `unflatten()`, are similar to functions of the same name in
* the abstract class `Flattenable`. The only difference is that functions in
* this file are not member functions of the object type. For example, we write
*
* flatten(x, buffer, size, fds, numFds)
*
* instead of
*
* x.flatten(buffer, size, fds, numFds)
*
* because we cannot modify the type of `x`.
*
* There is one exception to the naming convention: `hidl_handle` that
* represents a fence. The four functions for this "Fence" type have the word
* "Fence" attched to their names because the object type, which is
* `hidl_handle`, does not carry the special meaning that the object itself can
* only contain zero or one file descriptor.
*/
// Ref: frameworks/native/libs/ui/Fence.cpp
/**
* \brief Return the size of the non-fd buffer required to flatten a fence.
*
* \param[in] fence The input fence of type `hidl_handle`.
* \return The required size of the flat buffer.
*
* The current version of this function always returns 4, which is the number of
* bytes required to store the number of file descriptors contained in the fd
* part of the flat buffer.
*/
size_t getFenceFlattenedSize(hidl_handle const& /* fence */) {
return 4;
};
/**
* \brief Return the number of file descriptors contained in a fence.
*
* \param[in] fence The input fence of type `hidl_handle`.
* \return `0` if \p fence does not contain a valid file descriptor, or `1`
* otherwise.
*/
size_t getFenceFdCount(hidl_handle const& fence) {
return native_handle_read_fd(fence) == -1 ? 0 : 1;
}
/**
* \brief Unflatten `Fence` to `hidl_handle`.
*
* \param[out] fence The destination `hidl_handle`.
* \param[out] nh The underlying native handle.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*
* If the return value is `NO_ERROR`, \p nh will point to a newly created
* native handle, which needs to be deleted with `native_handle_delete()`
* afterwards.
*/
status_t unflattenFence(hidl_handle* fence, native_handle_t** nh,
void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
if (size < 4) {
return NO_MEMORY;
}
uint32_t numFdsInHandle;
FlattenableUtils::read(buffer, size, numFdsInHandle);
if (numFdsInHandle > 1) {
return BAD_VALUE;
}
if (numFds < numFdsInHandle) {
return NO_MEMORY;
}
if (numFdsInHandle) {
*nh = native_handle_create_from_fd(*fds);
if (*nh == nullptr) {
return NO_MEMORY;
}
*fence = *nh;
++fds;
--numFds;
} else {
*nh = nullptr;
*fence = hidl_handle();
}
return NO_ERROR;
}
/**
* \brief Flatten `hidl_handle` as `Fence`.
*
* \param[in] t The source `hidl_handle`.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*/
status_t flattenFence(hidl_handle const& fence,
void*& buffer, size_t& size, int*& fds, size_t& numFds) {
if (size < getFenceFlattenedSize(fence) ||
numFds < getFenceFdCount(fence)) {
return NO_MEMORY;
}
// Cast to uint32_t since the size of a size_t can vary between 32- and
// 64-bit processes
FlattenableUtils::write(buffer, size,
static_cast<uint32_t>(getFenceFdCount(fence)));
int fd = native_handle_read_fd(fence);
if (fd != -1) {
*fds = fd;
++fds;
--numFds;
}
return NO_ERROR;
}
/**
* \brief Wrap `Fence` in `hidl_handle`.
*
* \param[out] t The wrapper of type `hidl_handle`.
* \param[out] nh The native handle pointed to by \p t.
* \param[in] l The source `Fence`.
*
* On success, \p nh will hold a newly created native handle, which must be
* deleted manually with `native_handle_delete()` afterwards.
*/
// wrap: Fence -> hidl_handle
bool wrapAs(hidl_handle* t, native_handle_t** nh, Fence const& l) {
size_t const baseSize = l.getFlattenedSize();
std::unique_ptr<uint8_t[]> baseBuffer(
new (std::nothrow) uint8_t[baseSize]);
if (!baseBuffer) {
return false;
}
size_t const baseNumFds = l.getFdCount();
std::unique_ptr<int[]> baseFds(
new (std::nothrow) int[baseNumFds]);
if (!baseFds) {
return false;
}
void* buffer = static_cast<void*>(baseBuffer.get());
size_t size = baseSize;
int* fds = static_cast<int*>(baseFds.get());
size_t numFds = baseNumFds;
if (l.flatten(buffer, size, fds, numFds) != NO_ERROR) {
return false;
}
void const* constBuffer = static_cast<void const*>(baseBuffer.get());
size = baseSize;
int const* constFds = static_cast<int const*>(baseFds.get());
numFds = baseNumFds;
if (unflattenFence(t, nh, constBuffer, size, constFds, numFds)
!= NO_ERROR) {
return false;
}
return true;
}
/**
* \brief Convert `hidl_handle` to `Fence`.
*
* \param[out] l The destination `Fence`. `l` must not have been used
* (`l->isValid()` must return `false`) before this function is called.
* \param[in] t The source `hidl_handle`.
*
* If \p t contains a valid file descriptor, it will be duplicated.
*/
// convert: hidl_handle -> Fence
bool convertTo(Fence* l, hidl_handle const& t) {
int fd = native_handle_read_fd(t);
if (fd != -1) {
fd = dup(fd);
if (fd == -1) {
return false;
}
}
native_handle_t* nh = native_handle_create_from_fd(fd);
if (nh == nullptr) {
if (fd != -1) {
close(fd);
}
return false;
}
size_t const baseSize = getFenceFlattenedSize(t);
std::unique_ptr<uint8_t[]> baseBuffer(
new (std::nothrow) uint8_t[baseSize]);
if (!baseBuffer) {
native_handle_delete(nh);
return false;
}
size_t const baseNumFds = getFenceFdCount(t);
std::unique_ptr<int[]> baseFds(
new (std::nothrow) int[baseNumFds]);
if (!baseFds) {
native_handle_delete(nh);
return false;
}
void* buffer = static_cast<void*>(baseBuffer.get());
size_t size = baseSize;
int* fds = static_cast<int*>(baseFds.get());
size_t numFds = baseNumFds;
if (flattenFence(hidl_handle(nh), buffer, size, fds, numFds) != NO_ERROR) {
native_handle_delete(nh);
return false;
}
native_handle_delete(nh);
void const* constBuffer = static_cast<void const*>(baseBuffer.get());
size = baseSize;
int const* constFds = static_cast<int const*>(baseFds.get());
numFds = baseNumFds;
if (l->unflatten(constBuffer, size, constFds, numFds) != NO_ERROR) {
return false;
}
return true;
}
// Ref: frameworks/native/libs/ui/FenceTime.cpp: FenceTime::Snapshot
/**
* \brief Return the size of the non-fd buffer required to flatten
* `FenceTimeSnapshot`.
*
* \param[in] t The input `FenceTimeSnapshot`.
* \return The required size of the flat buffer.
*/
size_t getFlattenedSize(
HGraphicBufferProducer::FenceTimeSnapshot const& t) {
constexpr size_t min = sizeof(t.state);
switch (t.state) {
case HGraphicBufferProducer::FenceTimeSnapshot::State::EMPTY:
return min;
case HGraphicBufferProducer::FenceTimeSnapshot::State::FENCE:
return min + getFenceFlattenedSize(t.fence);
case HGraphicBufferProducer::FenceTimeSnapshot::State::SIGNAL_TIME:
return min + sizeof(
::android::FenceTime::Snapshot::signalTime);
}
return 0;
}
/**
* \brief Return the number of file descriptors contained in
* `FenceTimeSnapshot`.
*
* \param[in] t The input `FenceTimeSnapshot`.
* \return The number of file descriptors contained in \p snapshot.
*/
size_t getFdCount(
HGraphicBufferProducer::FenceTimeSnapshot const& t) {
return t.state ==
HGraphicBufferProducer::FenceTimeSnapshot::State::FENCE ?
getFenceFdCount(t.fence) : 0;
}
/**
* \brief Flatten `FenceTimeSnapshot`.
*
* \param[in] t The source `FenceTimeSnapshot`.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*
* This function will duplicate the file descriptor in `t.fence` if `t.state ==
* FENCE`.
*/
status_t flatten(HGraphicBufferProducer::FenceTimeSnapshot const& t,
void*& buffer, size_t& size, int*& fds, size_t& numFds) {
if (size < getFlattenedSize(t)) {
return NO_MEMORY;
}
switch (t.state) {
case HGraphicBufferProducer::FenceTimeSnapshot::State::EMPTY:
FlattenableUtils::write(buffer, size,
::android::FenceTime::Snapshot::State::EMPTY);
return NO_ERROR;
case HGraphicBufferProducer::FenceTimeSnapshot::State::FENCE:
FlattenableUtils::write(buffer, size,
::android::FenceTime::Snapshot::State::FENCE);
return flattenFence(t.fence, buffer, size, fds, numFds);
case HGraphicBufferProducer::FenceTimeSnapshot::State::SIGNAL_TIME:
FlattenableUtils::write(buffer, size,
::android::FenceTime::Snapshot::State::SIGNAL_TIME);
FlattenableUtils::write(buffer, size, t.signalTimeNs);
return NO_ERROR;
}
return NO_ERROR;
}
/**
* \brief Unflatten `FenceTimeSnapshot`.
*
* \param[out] t The destination `FenceTimeSnapshot`.
* \param[out] nh The underlying native handle.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*
* If the return value is `NO_ERROR` and the constructed snapshot contains a
* file descriptor, \p nh will be created to hold that file descriptor. In this
* case, \p nh needs to be deleted with `native_handle_delete()` afterwards.
*/
status_t unflatten(
HGraphicBufferProducer::FenceTimeSnapshot* t, native_handle_t** nh,
void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
if (size < sizeof(t->state)) {
return NO_MEMORY;
}
*nh = nullptr;
::android::FenceTime::Snapshot::State state;
FlattenableUtils::read(buffer, size, state);
switch (state) {
case ::android::FenceTime::Snapshot::State::EMPTY:
t->state = HGraphicBufferProducer::FenceTimeSnapshot::State::EMPTY;
return NO_ERROR;
case ::android::FenceTime::Snapshot::State::FENCE:
t->state = HGraphicBufferProducer::FenceTimeSnapshot::State::FENCE;
return unflattenFence(&t->fence, nh, buffer, size, fds, numFds);
case ::android::FenceTime::Snapshot::State::SIGNAL_TIME:
t->state = HGraphicBufferProducer::FenceTimeSnapshot::State::SIGNAL_TIME;
if (size < sizeof(t->signalTimeNs)) {
return NO_MEMORY;
}
FlattenableUtils::read(buffer, size, t->signalTimeNs);
return NO_ERROR;
}
return NO_ERROR;
}
// Ref: frameworks/native/libs/gui/FrameTimestamps.cpp: FrameEventsDelta
/**
* \brief Return a lower bound on the size of the non-fd buffer required to
* flatten `FrameEventsDelta`.
*
* \param[in] t The input `FrameEventsDelta`.
* \return A lower bound on the size of the flat buffer.
*/
constexpr size_t minFlattenedSize(
HGraphicBufferProducer::FrameEventsDelta const& /* t */) {
return sizeof(uint64_t) + // mFrameNumber
sizeof(uint8_t) + // mIndex
sizeof(uint8_t) + // mAddPostCompositeCalled
sizeof(uint8_t) + // mAddRetireCalled
sizeof(uint8_t) + // mAddReleaseCalled
sizeof(nsecs_t) + // mPostedTime
sizeof(nsecs_t) + // mRequestedPresentTime
sizeof(nsecs_t) + // mLatchTime
sizeof(nsecs_t) + // mFirstRefreshStartTime
sizeof(nsecs_t); // mLastRefreshStartTime
}
/**
* \brief Return the size of the non-fd buffer required to flatten
* `FrameEventsDelta`.
*
* \param[in] t The input `FrameEventsDelta`.
* \return The required size of the flat buffer.
*/
size_t getFlattenedSize(
HGraphicBufferProducer::FrameEventsDelta const& t) {
return minFlattenedSize(t) +
getFlattenedSize(t.gpuCompositionDoneFence) +
getFlattenedSize(t.displayPresentFence) +
getFlattenedSize(t.displayRetireFence) +
getFlattenedSize(t.releaseFence);
};
/**
* \brief Return the number of file descriptors contained in
* `FrameEventsDelta`.
*
* \param[in] t The input `FrameEventsDelta`.
* \return The number of file descriptors contained in \p t.
*/
size_t getFdCount(
HGraphicBufferProducer::FrameEventsDelta const& t) {
return getFdCount(t.gpuCompositionDoneFence) +
getFdCount(t.displayPresentFence) +
getFdCount(t.displayRetireFence) +
getFdCount(t.releaseFence);
};
/**
* \brief Unflatten `FrameEventsDelta`.
*
* \param[out] t The destination `FrameEventsDelta`.
* \param[out] nh The underlying array of native handles.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*
* If the return value is `NO_ERROR`, \p nh will have length 4, and it will be
* populated with `nullptr` or newly created handles. Each non-null slot in \p
* nh will need to be deleted manually with `native_handle_delete()`.
*/
status_t unflatten(HGraphicBufferProducer::FrameEventsDelta* t,
std::vector<native_handle_t*>* nh,
void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
if (size < minFlattenedSize(*t)) {
return NO_MEMORY;
}
FlattenableUtils::read(buffer, size, t->frameNumber);
// These were written as uint8_t for alignment.
uint8_t temp = 0;
FlattenableUtils::read(buffer, size, temp);
t->index = static_cast<uint32_t>(temp);
FlattenableUtils::read(buffer, size, temp);
t->addPostCompositeCalled = static_cast<bool>(temp);
FlattenableUtils::read(buffer, size, temp);
t->addRetireCalled = static_cast<bool>(temp);
FlattenableUtils::read(buffer, size, temp);
t->addReleaseCalled = static_cast<bool>(temp);
FlattenableUtils::read(buffer, size, t->postedTimeNs);
FlattenableUtils::read(buffer, size, t->requestedPresentTimeNs);
FlattenableUtils::read(buffer, size, t->latchTimeNs);
FlattenableUtils::read(buffer, size, t->firstRefreshStartTimeNs);
FlattenableUtils::read(buffer, size, t->lastRefreshStartTimeNs);
FlattenableUtils::read(buffer, size, t->dequeueReadyTime);
// Fences
HGraphicBufferProducer::FenceTimeSnapshot* tSnapshot[4];
tSnapshot[0] = &t->gpuCompositionDoneFence;
tSnapshot[1] = &t->displayPresentFence;
tSnapshot[2] = &t->displayRetireFence;
tSnapshot[3] = &t->releaseFence;
nh->resize(4);
for (size_t snapshotIndex = 0; snapshotIndex < 4; ++snapshotIndex) {
status_t status = unflatten(
tSnapshot[snapshotIndex], &((*nh)[snapshotIndex]),
buffer, size, fds, numFds);
if (status != NO_ERROR) {
while (snapshotIndex > 0) {
--snapshotIndex;
if ((*nh)[snapshotIndex] != nullptr) {
native_handle_delete((*nh)[snapshotIndex]);
}
}
return status;
}
}
return NO_ERROR;
}
/**
* \brief Flatten `FrameEventsDelta`.
*
* \param[in] t The source `FrameEventsDelta`.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*
* This function will duplicate file descriptors contained in \p t.
*/
// Ref: frameworks/native/libs/gui/FrameTimestamp.cpp:
// FrameEventsDelta::flatten
status_t flatten(HGraphicBufferProducer::FrameEventsDelta const& t,
void*& buffer, size_t& size, int*& fds, size_t numFds) {
// Check that t.index is within a valid range.
if (t.index > UINT8_MAX || t.index < 0) {
return BAD_VALUE;
}
FlattenableUtils::write(buffer, size, t.frameNumber);
// These are static_cast to uint8_t for alignment.
FlattenableUtils::write(buffer, size, static_cast<uint8_t>(t.index));
FlattenableUtils::write(
buffer, size, static_cast<uint8_t>(t.addPostCompositeCalled));
FlattenableUtils::write(
buffer, size, static_cast<uint8_t>(t.addRetireCalled));
FlattenableUtils::write(
buffer, size, static_cast<uint8_t>(t.addReleaseCalled));
FlattenableUtils::write(buffer, size, t.postedTimeNs);
FlattenableUtils::write(buffer, size, t.requestedPresentTimeNs);
FlattenableUtils::write(buffer, size, t.latchTimeNs);
FlattenableUtils::write(buffer, size, t.firstRefreshStartTimeNs);
FlattenableUtils::write(buffer, size, t.lastRefreshStartTimeNs);
FlattenableUtils::write(buffer, size, t.dequeueReadyTime);
// Fences
HGraphicBufferProducer::FenceTimeSnapshot const* tSnapshot[4];
tSnapshot[0] = &t.gpuCompositionDoneFence;
tSnapshot[1] = &t.displayPresentFence;
tSnapshot[2] = &t.displayRetireFence;
tSnapshot[3] = &t.releaseFence;
for (size_t snapshotIndex = 0; snapshotIndex < 4; ++snapshotIndex) {
status_t status = flatten(
*(tSnapshot[snapshotIndex]), buffer, size, fds, numFds);
if (status != NO_ERROR) {
return status;
}
}
return NO_ERROR;
}
// Ref: frameworks/native/libs/gui/FrameTimestamps.cpp: FrameEventHistoryDelta
/**
* \brief Return the size of the non-fd buffer required to flatten
* `HGraphicBufferProducer::FrameEventHistoryDelta`.
*
* \param[in] t The input `HGraphicBufferProducer::FrameEventHistoryDelta`.
* \return The required size of the flat buffer.
*/
size_t getFlattenedSize(
HGraphicBufferProducer::FrameEventHistoryDelta const& t) {
size_t size = 4 + // mDeltas.size()
sizeof(t.compositorTiming);
for (size_t i = 0; i < t.deltas.size(); ++i) {
size += getFlattenedSize(t.deltas[i]);
}
return size;
}
/**
* \brief Return the number of file descriptors contained in
* `HGraphicBufferProducer::FrameEventHistoryDelta`.
*
* \param[in] t The input `HGraphicBufferProducer::FrameEventHistoryDelta`.
* \return The number of file descriptors contained in \p t.
*/
size_t getFdCount(
HGraphicBufferProducer::FrameEventHistoryDelta const& t) {
size_t numFds = 0;
for (size_t i = 0; i < t.deltas.size(); ++i) {
numFds += getFdCount(t.deltas[i]);
}
return numFds;
}
/**
* \brief Unflatten `FrameEventHistoryDelta`.
*
* \param[out] t The destination `FrameEventHistoryDelta`.
* \param[out] nh The underlying array of arrays of native handles.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*
* If the return value is `NO_ERROR`, \p nh will be populated with `nullptr` or
* newly created handles. The second dimension of \p nh will be 4. Each non-null
* slot in \p nh will need to be deleted manually with `native_handle_delete()`.
*/
status_t unflatten(
HGraphicBufferProducer::FrameEventHistoryDelta* t,
std::vector<std::vector<native_handle_t*> >* nh,
void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
if (size < 4) {
return NO_MEMORY;
}
FlattenableUtils::read(buffer, size, t->compositorTiming);
uint32_t deltaCount = 0;
FlattenableUtils::read(buffer, size, deltaCount);
if (deltaCount > UINT8_MAX) {
return BAD_VALUE;
}
t->deltas.resize(deltaCount);
nh->resize(deltaCount);
for (size_t deltaIndex = 0; deltaIndex < deltaCount; ++deltaIndex) {
status_t status = unflatten(
&(t->deltas[deltaIndex]), &((*nh)[deltaIndex]),
buffer, size, fds, numFds);
if (status != NO_ERROR) {
return status;
}
}
return NO_ERROR;
}
/**
* \brief Flatten `FrameEventHistoryDelta`.
*
* \param[in] t The source `FrameEventHistoryDelta`.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*
* This function will duplicate file descriptors contained in \p t.
*/
status_t flatten(
HGraphicBufferProducer::FrameEventHistoryDelta const& t,
void*& buffer, size_t& size, int*& fds, size_t& numFds) {
if (t.deltas.size() > UINT8_MAX) {
return BAD_VALUE;
}
if (size < getFlattenedSize(t)) {
return NO_MEMORY;
}
FlattenableUtils::write(buffer, size, t.compositorTiming);
FlattenableUtils::write(buffer, size, static_cast<uint32_t>(t.deltas.size()));
for (size_t deltaIndex = 0; deltaIndex < t.deltas.size(); ++deltaIndex) {
status_t status = flatten(t.deltas[deltaIndex], buffer, size, fds, numFds);
if (status != NO_ERROR) {
return status;
}
}
return NO_ERROR;
}
/**
* \brief Wrap `::android::FrameEventHistoryData` in
* `HGraphicBufferProducer::FrameEventHistoryDelta`.
*
* \param[out] t The wrapper of type
* `HGraphicBufferProducer::FrameEventHistoryDelta`.
* \param[out] nh The array of array of native handles that are referred to by
* members of \p t.
* \param[in] l The source `::android::FrameEventHistoryDelta`.
*
* On success, each member of \p nh will be either `nullptr` or a newly created
* native handle. All the non-`nullptr` elements must be deleted individually
* with `native_handle_delete()`.
*/
bool wrapAs(HGraphicBufferProducer::FrameEventHistoryDelta* t,
std::vector<std::vector<native_handle_t*> >* nh,
::android::FrameEventHistoryDelta const& l) {
size_t const baseSize = l.getFlattenedSize();
std::unique_ptr<uint8_t[]> baseBuffer(
new (std::nothrow) uint8_t[baseSize]);
if (!baseBuffer) {
return false;
}
size_t const baseNumFds = l.getFdCount();
std::unique_ptr<int[]> baseFds(
new (std::nothrow) int[baseNumFds]);
if (!baseFds) {
return false;
}
void* buffer = static_cast<void*>(baseBuffer.get());
size_t size = baseSize;
int* fds = baseFds.get();
size_t numFds = baseNumFds;
if (l.flatten(buffer, size, fds, numFds) != NO_ERROR) {
return false;
}
void const* constBuffer = static_cast<void const*>(baseBuffer.get());
size = baseSize;
int const* constFds = static_cast<int const*>(baseFds.get());
numFds = baseNumFds;
if (unflatten(t, nh, constBuffer, size, constFds, numFds) != NO_ERROR) {
return false;
}
return true;
}
/**
* \brief Convert `HGraphicBufferProducer::FrameEventHistoryDelta` to
* `::android::FrameEventHistoryDelta`.
*
* \param[out] l The destination `::android::FrameEventHistoryDelta`.
* \param[in] t The source `HGraphicBufferProducer::FrameEventHistoryDelta`.
*
* This function will duplicate all file descriptors contained in \p t.
*/
bool convertTo(
::android::FrameEventHistoryDelta* l,
HGraphicBufferProducer::FrameEventHistoryDelta const& t) {
size_t const baseSize = getFlattenedSize(t);
std::unique_ptr<uint8_t[]> baseBuffer(
new (std::nothrow) uint8_t[baseSize]);
if (!baseBuffer) {
return false;
}
size_t const baseNumFds = getFdCount(t);
std::unique_ptr<int[]> baseFds(
new (std::nothrow) int[baseNumFds]);
if (!baseFds) {
return false;
}
void* buffer = static_cast<void*>(baseBuffer.get());
size_t size = baseSize;
int* fds = static_cast<int*>(baseFds.get());
size_t numFds = baseNumFds;
if (flatten(t, buffer, size, fds, numFds) != NO_ERROR) {
return false;
}
void const* constBuffer = static_cast<void const*>(baseBuffer.get());
size = baseSize;
int const* constFds = static_cast<int const*>(baseFds.get());
numFds = baseNumFds;
if (l->unflatten(constBuffer, size, constFds, numFds) != NO_ERROR) {
return false;
}
return true;
}
// Ref: frameworks/native/libs/ui/Region.cpp
/**
* \brief Return the size of the buffer required to flatten `Region`.
*
* \param[in] t The input `Region`.
* \return The required size of the flat buffer.
*/
size_t getFlattenedSize(Region const& t) {
return sizeof(uint32_t) + t.size() * sizeof(::android::Rect);
}
/**
* \brief Unflatten `Region`.
*
* \param[out] t The destination `Region`.
* \param[in,out] buffer The pointer to the flat buffer.
* \param[in,out] size The size of the flat buffer.
* \return `NO_ERROR` on success; other value on failure.
*/
status_t unflatten(Region* t, void const*& buffer, size_t& size) {
if (size < sizeof(uint32_t)) {
return NO_MEMORY;
}
uint32_t numRects = 0;
FlattenableUtils::read(buffer, size, numRects);
if (size < numRects * sizeof(Rect)) {
return NO_MEMORY;
}
if (numRects > (UINT32_MAX / sizeof(Rect))) {
return NO_MEMORY;
}
t->resize(numRects);
for (size_t r = 0; r < numRects; ++r) {
::android::Rect rect(::android::Rect::EMPTY_RECT);
status_t status = rect.unflatten(buffer, size);
if (status != NO_ERROR) {
return status;
}
FlattenableUtils::advance(buffer, size, sizeof(rect));
(*t)[r] = Rect{
static_cast<int32_t>(rect.left),
static_cast<int32_t>(rect.top),
static_cast<int32_t>(rect.right),
static_cast<int32_t>(rect.bottom)};
}
return NO_ERROR;
}
/**
* \brief Flatten `Region`.
*
* \param[in] t The source `Region`.
* \param[in,out] buffer The pointer to the flat buffer.
* \param[in,out] size The size of the flat buffer.
* \return `NO_ERROR` on success; other value on failure.
*/
status_t flatten(Region const& t, void*& buffer, size_t& size) {
if (size < getFlattenedSize(t)) {
return NO_MEMORY;
}
FlattenableUtils::write(buffer, size, static_cast<uint32_t>(t.size()));
for (size_t r = 0; r < t.size(); ++r) {
::android::Rect rect(
static_cast<int32_t>(t[r].left),
static_cast<int32_t>(t[r].top),
static_cast<int32_t>(t[r].right),
static_cast<int32_t>(t[r].bottom));
status_t status = rect.flatten(buffer, size);
if (status != NO_ERROR) {
return status;
}
FlattenableUtils::advance(buffer, size, sizeof(rect));
}
return NO_ERROR;
}
/**
* \brief Convert `::android::Region` to `Region`.
*
* \param[out] t The destination `Region`.
* \param[in] l The source `::android::Region`.
*/
// convert: ::android::Region -> Region
bool convertTo(Region* t, ::android::Region const& l) {
size_t const baseSize = l.getFlattenedSize();
std::unique_ptr<uint8_t[]> baseBuffer(
new (std::nothrow) uint8_t[baseSize]);
if (!baseBuffer) {
return false;
}
void* buffer = static_cast<void*>(baseBuffer.get());
size_t size = baseSize;
if (l.flatten(buffer, size) != NO_ERROR) {
return false;
}
void const* constBuffer = static_cast<void const*>(baseBuffer.get());
size = baseSize;
if (unflatten(t, constBuffer, size) != NO_ERROR) {
return false;
}
return true;
}
/**
* \brief Convert `Region` to `::android::Region`.
*
* \param[out] l The destination `::android::Region`.
* \param[in] t The source `Region`.
*/
// convert: Region -> ::android::Region
bool convertTo(::android::Region* l, Region const& t) {
size_t const baseSize = getFlattenedSize(t);
std::unique_ptr<uint8_t[]> baseBuffer(
new (std::nothrow) uint8_t[baseSize]);
if (!baseBuffer) {
return false;
}
void* buffer = static_cast<void*>(baseBuffer.get());
size_t size = baseSize;
if (flatten(t, buffer, size) != NO_ERROR) {
return false;
}
void const* constBuffer = static_cast<void const*>(baseBuffer.get());
size = baseSize;
if (l->unflatten(constBuffer, size) != NO_ERROR) {
return false;
}
return true;
}
// Ref: frameworks/native/libs/gui/BGraphicBufferProducer.cpp:
// BGraphicBufferProducer::QueueBufferInput
/**
* \brief Return a lower bound on the size of the buffer required to flatten
* `HGraphicBufferProducer::QueueBufferInput`.
*
* \param[in] t The input `HGraphicBufferProducer::QueueBufferInput`.
* \return A lower bound on the size of the flat buffer.
*/
constexpr size_t minFlattenedSize(
HGraphicBufferProducer::QueueBufferInput const& /* t */) {
return sizeof(int64_t) + // timestamp
sizeof(int) + // isAutoTimestamp
sizeof(android_dataspace) + // dataSpace
sizeof(::android::Rect) + // crop
sizeof(int) + // scalingMode
sizeof(uint32_t) + // transform
sizeof(uint32_t) + // stickyTransform
sizeof(bool) + // getFrameTimestamps
sizeof(int); // slot
}
/**
* \brief Return the size of the buffer required to flatten
* `HGraphicBufferProducer::QueueBufferInput`.
*
* \param[in] t The input `HGraphicBufferProducer::QueueBufferInput`.
* \return The required size of the flat buffer.
*/
size_t getFlattenedSize(HGraphicBufferProducer::QueueBufferInput const& t) {
return minFlattenedSize(t) +
getFenceFlattenedSize(t.fence) +
getFlattenedSize(t.surfaceDamage) +
sizeof(HdrMetadata::validTypes);
}
/**
* \brief Return the number of file descriptors contained in
* `HGraphicBufferProducer::QueueBufferInput`.
*
* \param[in] t The input `HGraphicBufferProducer::QueueBufferInput`.
* \return The number of file descriptors contained in \p t.
*/
size_t getFdCount(
HGraphicBufferProducer::QueueBufferInput const& t) {
return getFenceFdCount(t.fence);
}
/**
* \brief Flatten `HGraphicBufferProducer::QueueBufferInput`.
*
* \param[in] t The source `HGraphicBufferProducer::QueueBufferInput`.
* \param[out] nh The native handle cloned from `t.fence`.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*
* This function will duplicate the file descriptor in `t.fence`. */
status_t flatten(HGraphicBufferProducer::QueueBufferInput const& t,
native_handle_t** nh,
void*& buffer, size_t& size, int*& fds, size_t& numFds) {
if (size < getFlattenedSize(t)) {
return NO_MEMORY;
}
FlattenableUtils::write(buffer, size, t.timestamp);
FlattenableUtils::write(buffer, size, static_cast<int>(t.isAutoTimestamp));
FlattenableUtils::write(buffer, size,
static_cast<android_dataspace_t>(t.dataSpace));
FlattenableUtils::write(buffer, size, ::android::Rect(
static_cast<int32_t>(t.crop.left),
static_cast<int32_t>(t.crop.top),
static_cast<int32_t>(t.crop.right),
static_cast<int32_t>(t.crop.bottom)));
FlattenableUtils::write(buffer, size, static_cast<int>(t.scalingMode));
FlattenableUtils::write(buffer, size, t.transform);
FlattenableUtils::write(buffer, size, t.stickyTransform);
FlattenableUtils::write(buffer, size, t.getFrameTimestamps);
*nh = t.fence.getNativeHandle() == nullptr ?
nullptr : native_handle_clone(t.fence);
status_t status = flattenFence(hidl_handle(*nh), buffer, size, fds, numFds);
if (status != NO_ERROR) {
return status;
}
status = flatten(t.surfaceDamage, buffer, size);
if (status != NO_ERROR) {
return status;
}
FlattenableUtils::write(buffer, size, decltype(HdrMetadata::validTypes)(0));
FlattenableUtils::write(buffer, size, -1 /*slot*/);
return NO_ERROR;
}
/**
* \brief Unflatten `HGraphicBufferProducer::QueueBufferInput`.
*
* \param[out] t The destination `HGraphicBufferProducer::QueueBufferInput`.
* \param[out] nh The underlying native handle for `t->fence`.
* \param[in,out] buffer The pointer to the flat non-fd buffer.
* \param[in,out] size The size of the flat non-fd buffer.
* \param[in,out] fds The pointer to the flat fd buffer.
* \param[in,out] numFds The size of the flat fd buffer.
* \return `NO_ERROR` on success; other value on failure.
*
* If the return value is `NO_ERROR` and `t->fence` contains a valid file
* descriptor, \p nh will be a newly created native handle holding that file
* descriptor. \p nh needs to be deleted with `native_handle_delete()`
* afterwards.
*/
status_t unflatten(
HGraphicBufferProducer::QueueBufferInput* t, native_handle_t** nh,
void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
if (size < minFlattenedSize(*t)) {
return NO_MEMORY;
}
FlattenableUtils::read(buffer, size, t->timestamp);
int lIsAutoTimestamp;
FlattenableUtils::read(buffer, size, lIsAutoTimestamp);
t->isAutoTimestamp = static_cast<int32_t>(lIsAutoTimestamp);
android_dataspace_t lDataSpace;
FlattenableUtils::read(buffer, size, lDataSpace);
t->dataSpace = static_cast<Dataspace>(lDataSpace);
Rect lCrop;
FlattenableUtils::read(buffer, size, lCrop);
t->crop = Rect{
static_cast<int32_t>(lCrop.left),
static_cast<int32_t>(lCrop.top),
static_cast<int32_t>(lCrop.right),
static_cast<int32_t>(lCrop.bottom)};
int lScalingMode;
FlattenableUtils::read(buffer, size, lScalingMode);
t->scalingMode = static_cast<int32_t>(lScalingMode);
FlattenableUtils::read(buffer, size, t->transform);
FlattenableUtils::read(buffer, size, t->stickyTransform);
FlattenableUtils::read(buffer, size, t->getFrameTimestamps);
status_t status = unflattenFence(&(t->fence), nh,
buffer, size, fds, numFds);
if (status != NO_ERROR) {
return status;
}
// HdrMetadata and slot ignored
return unflatten(&(t->surfaceDamage), buffer, size);
}
/**
* \brief Convert `HGraphicBufferProducer::QueueBufferInput` to
* `BGraphicBufferProducer::QueueBufferInput`.
*
* \param[out] l The destination `BGraphicBufferProducer::QueueBufferInput`.
* \param[in] t The source `HGraphicBufferProducer::QueueBufferInput`.
*
* If `t.fence` has a valid file descriptor, it will be duplicated.
*/
bool convertTo(
BGraphicBufferProducer::QueueBufferInput* l,
HGraphicBufferProducer::QueueBufferInput const& t) {
size_t const baseSize = getFlattenedSize(t);
std::unique_ptr<uint8_t[]> baseBuffer(
new (std::nothrow) uint8_t[baseSize]);
if (!baseBuffer) {
return false;
}
size_t const baseNumFds = getFdCount(t);
std::unique_ptr<int[]> baseFds(
new (std::nothrow) int[baseNumFds]);
if (!baseFds) {
return false;
}
void* buffer = static_cast<void*>(baseBuffer.get());
size_t size = baseSize;
int* fds = baseFds.get();
size_t numFds = baseNumFds;
native_handle_t* nh;
if (flatten(t, &nh, buffer, size, fds, numFds) != NO_ERROR) {
return false;
}
void const* constBuffer = static_cast<void const*>(baseBuffer.get());
size = baseSize;
int const* constFds = static_cast<int const*>(baseFds.get());
numFds = baseNumFds;
if (l->unflatten(constBuffer, size, constFds, numFds) != NO_ERROR) {
if (nh != nullptr) {
native_handle_close(nh);
native_handle_delete(nh);
}
return false;
}
native_handle_delete(nh);
return true;
}
// Ref: frameworks/native/libs/gui/BGraphicBufferProducer.cpp:
// BGraphicBufferProducer::QueueBufferOutput
/**
* \brief Wrap `BGraphicBufferProducer::QueueBufferOutput` in
* `HGraphicBufferProducer::QueueBufferOutput`.
*
* \param[out] t The wrapper of type
* `HGraphicBufferProducer::QueueBufferOutput`.
* \param[out] nh The array of array of native handles that are referred to by
* members of \p t.
* \param[in] l The source `BGraphicBufferProducer::QueueBufferOutput`.
*
* On success, each member of \p nh will be either `nullptr` or a newly created
* native handle. All the non-`nullptr` elements must be deleted individually
* with `native_handle_delete()`.
*/
// wrap: BGraphicBufferProducer::QueueBufferOutput ->
// HGraphicBufferProducer::QueueBufferOutput
bool wrapAs(HGraphicBufferProducer::QueueBufferOutput* t,
std::vector<std::vector<native_handle_t*> >* nh,
BGraphicBufferProducer::QueueBufferOutput const& l) {
if (!wrapAs(&(t->frameTimestamps), nh, l.frameTimestamps)) {
return false;
}
t->width = l.width;
t->height = l.height;
t->transformHint = l.transformHint;
t->numPendingBuffers = l.numPendingBuffers;
t->nextFrameNumber = l.nextFrameNumber;
t->bufferReplaced = l.bufferReplaced;
return true;
}
/**
* \brief Convert `HGraphicBufferProducer::QueueBufferOutput` to
* `BGraphicBufferProducer::QueueBufferOutput`.
*
* \param[out] l The destination `BGraphicBufferProducer::QueueBufferOutput`.
* \param[in] t The source `HGraphicBufferProducer::QueueBufferOutput`.
*
* This function will duplicate all file descriptors contained in \p t.
*/
// convert: HGraphicBufferProducer::QueueBufferOutput ->
// BGraphicBufferProducer::QueueBufferOutput
bool convertTo(
BGraphicBufferProducer::QueueBufferOutput* l,
HGraphicBufferProducer::QueueBufferOutput const& t) {
if (!convertTo(&(l->frameTimestamps), t.frameTimestamps)) {
return false;
}
l->width = t.width;
l->height = t.height;
l->transformHint = t.transformHint;
l->numPendingBuffers = t.numPendingBuffers;
l->nextFrameNumber = t.nextFrameNumber;
l->bufferReplaced = t.bufferReplaced;
return true;
}
/**
* \brief Convert `BGraphicBufferProducer::DisconnectMode` to
* `HGraphicBufferProducer::DisconnectMode`.
*
* \param[in] l The source `BGraphicBufferProducer::DisconnectMode`.
* \return The corresponding `HGraphicBufferProducer::DisconnectMode`.
*/
HGraphicBufferProducer::DisconnectMode toHidlDisconnectMode(
BGraphicBufferProducer::DisconnectMode l) {
switch (l) {
case BGraphicBufferProducer::DisconnectMode::Api:
return HGraphicBufferProducer::DisconnectMode::API;
case BGraphicBufferProducer::DisconnectMode::AllLocal:
return HGraphicBufferProducer::DisconnectMode::ALL_LOCAL;
}
return HGraphicBufferProducer::DisconnectMode::API;
}
/**
* \brief Convert `HGraphicBufferProducer::DisconnectMode` to
* `BGraphicBufferProducer::DisconnectMode`.
*
* \param[in] l The source `HGraphicBufferProducer::DisconnectMode`.
* \return The corresponding `BGraphicBufferProducer::DisconnectMode`.
*/
BGraphicBufferProducer::DisconnectMode toGuiDisconnectMode(
HGraphicBufferProducer::DisconnectMode t) {
switch (t) {
case HGraphicBufferProducer::DisconnectMode::API:
return BGraphicBufferProducer::DisconnectMode::Api;
case HGraphicBufferProducer::DisconnectMode::ALL_LOCAL:
return BGraphicBufferProducer::DisconnectMode::AllLocal;
}
return BGraphicBufferProducer::DisconnectMode::Api;
}
} // namespace conversion
} // namespace android
|