blob: 0f763f7e280e91a1572226ee53a4575360fd3ae8 [file] [log] [blame]
Sungtak Leebbe37b62018-08-29 15:15:48 -07001/*
2 * Copyright (C) 2018 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#define LOG_TAG "BufferPoolClient"
18//#define LOG_NDEBUG 0
19
20#include <thread>
21#include <utils/Log.h>
22#include "BufferPoolClient.h"
23#include "Connection.h"
24
25namespace android {
26namespace hardware {
27namespace media {
28namespace bufferpool {
29namespace V2_0 {
30namespace implementation {
31
32static constexpr int64_t kReceiveTimeoutUs = 1000000; // 100ms
33static constexpr int kPostMaxRetry = 3;
34static constexpr int kCacheTtlUs = 1000000; // TODO: tune
35
36class BufferPoolClient::Impl
37 : public std::enable_shared_from_this<BufferPoolClient::Impl> {
38public:
39 explicit Impl(const sp<Accessor> &accessor);
40
41 explicit Impl(const sp<IAccessor> &accessor);
42
43 bool isValid() {
44 return mValid;
45 }
46
47 bool isLocal() {
48 return mValid && mLocal;
49 }
50
51 ConnectionId getConnectionId() {
52 return mConnectionId;
53 }
54
55 sp<IAccessor> &getAccessor() {
56 return mAccessor;
57 }
58
59 bool isActive(int64_t *lastTransactionUs, bool clearCache);
60
61 ResultStatus allocate(const std::vector<uint8_t> &params,
62 native_handle_t **handle,
63 std::shared_ptr<BufferPoolData> *buffer);
64
65 ResultStatus receive(
66 TransactionId transactionId, BufferId bufferId,
67 int64_t timestampUs,
68 native_handle_t **handle, std::shared_ptr<BufferPoolData> *buffer);
69
70 void postBufferRelease(BufferId bufferId);
71
72 bool postSend(
73 BufferId bufferId, ConnectionId receiver,
74 TransactionId *transactionId, int64_t *timestampUs);
75private:
76
77 bool postReceive(
78 BufferId bufferId, TransactionId transactionId,
79 int64_t timestampUs);
80
81 bool postReceiveResult(
82 BufferId bufferId, TransactionId transactionId, bool result, bool *needsSync);
83
84 void trySyncFromRemote();
85
86 bool syncReleased();
87
88 void evictCaches(bool clearCache = false);
89
90 ResultStatus allocateBufferHandle(
91 const std::vector<uint8_t>& params, BufferId *bufferId,
92 native_handle_t **handle);
93
94 ResultStatus fetchBufferHandle(
95 TransactionId transactionId, BufferId bufferId,
96 native_handle_t **handle);
97
98 struct BlockPoolDataDtor;
99 struct ClientBuffer;
100
101 bool mLocal;
102 bool mValid;
103 sp<IAccessor> mAccessor;
104 sp<Connection> mLocalConnection;
105 sp<IConnection> mRemoteConnection;
106 uint32_t mSeqId;
107 ConnectionId mConnectionId;
108 int64_t mLastEvictCacheUs;
109
110 // CachedBuffers
111 struct BufferCache {
112 std::mutex mLock;
113 bool mCreating;
114 std::condition_variable mCreateCv;
115 std::map<BufferId, std::unique_ptr<ClientBuffer>> mBuffers;
116 int mActive;
117 int64_t mLastChangeUs;
118
119 BufferCache() : mCreating(false), mActive(0), mLastChangeUs(getTimestampNow()) {}
120
121 void incActive_l() {
122 ++mActive;
123 mLastChangeUs = getTimestampNow();
124 }
125
126 void decActive_l() {
127 --mActive;
128 mLastChangeUs = getTimestampNow();
129 }
130 } mCache;
131
132 // FMQ - release notifier
133 struct {
134 std::mutex mLock;
135 // TODO: use only one list?(using one list may dealy sending messages?)
136 std::list<BufferId> mReleasingIds;
137 std::list<BufferId> mReleasedIds;
138 std::unique_ptr<BufferStatusChannel> mStatusChannel;
139 } mReleasing;
140
141 // This lock is held during synchronization from remote side.
142 // In order to minimize remote calls and locking durtaion, this lock is held
143 // by best effort approach using try_lock().
144 std::mutex mRemoteSyncLock;
145};
146
147struct BufferPoolClient::Impl::BlockPoolDataDtor {
148 BlockPoolDataDtor(const std::shared_ptr<BufferPoolClient::Impl> &impl)
149 : mImpl(impl) {}
150
151 void operator()(BufferPoolData *buffer) {
152 BufferId id = buffer->mId;
153 delete buffer;
154
155 auto impl = mImpl.lock();
156 if (impl && impl->isValid()) {
157 impl->postBufferRelease(id);
158 }
159 }
160 const std::weak_ptr<BufferPoolClient::Impl> mImpl;
161};
162
163struct BufferPoolClient::Impl::ClientBuffer {
164private:
165 bool mInvalidated; // TODO: implement
166 int64_t mExpireUs;
167 bool mHasCache;
168 ConnectionId mConnectionId;
169 BufferId mId;
170 native_handle_t *mHandle;
171 std::weak_ptr<BufferPoolData> mCache;
172
173 void updateExpire() {
174 mExpireUs = getTimestampNow() + kCacheTtlUs;
175 }
176
177public:
178 ClientBuffer(
179 ConnectionId connectionId, BufferId id, native_handle_t *handle)
180 : mInvalidated(false), mHasCache(false),
181 mConnectionId(connectionId), mId(id), mHandle(handle) {
182 (void)mInvalidated;
183 mExpireUs = getTimestampNow() + kCacheTtlUs;
184 }
185
186 ~ClientBuffer() {
187 if (mHandle) {
188 native_handle_close(mHandle);
189 native_handle_delete(mHandle);
190 }
191 }
192
193 bool expire() const {
194 int64_t now = getTimestampNow();
195 return now >= mExpireUs;
196 }
197
198 bool hasCache() const {
199 return mHasCache;
200 }
201
202 std::shared_ptr<BufferPoolData> fetchCache(native_handle_t **pHandle) {
203 if (mHasCache) {
204 std::shared_ptr<BufferPoolData> cache = mCache.lock();
205 if (cache) {
206 *pHandle = mHandle;
207 }
208 return cache;
209 }
210 return nullptr;
211 }
212
213 std::shared_ptr<BufferPoolData> createCache(
214 const std::shared_ptr<BufferPoolClient::Impl> &impl,
215 native_handle_t **pHandle) {
216 if (!mHasCache) {
217 // Allocates a raw ptr in order to avoid sending #postBufferRelease
218 // from deleter, in case of native_handle_clone failure.
219 BufferPoolData *ptr = new BufferPoolData(mConnectionId, mId);
220 if (ptr) {
221 std::shared_ptr<BufferPoolData> cache(ptr, BlockPoolDataDtor(impl));
222 if (cache) {
223 mCache = cache;
224 mHasCache = true;
225 *pHandle = mHandle;
226 return cache;
227 }
228 }
229 if (ptr) {
230 delete ptr;
231 }
232 }
233 return nullptr;
234 }
235
236 bool onCacheRelease() {
237 if (mHasCache) {
238 // TODO: verify mCache is not valid;
239 updateExpire();
240 mHasCache = false;
241 return true;
242 }
243 return false;
244 }
245};
246
247BufferPoolClient::Impl::Impl(const sp<Accessor> &accessor)
248 : mLocal(true), mValid(false), mAccessor(accessor), mSeqId(0),
249 mLastEvictCacheUs(getTimestampNow()) {
Sungtak Lee1cb0ccb2018-09-05 14:47:36 -0700250 const StatusDescriptor *fmqDesc;
Sungtak Leebbe37b62018-08-29 15:15:48 -0700251 ResultStatus status = accessor->connect(
252 &mLocalConnection, &mConnectionId, &fmqDesc, true);
253 if (status == ResultStatus::OK) {
254 mReleasing.mStatusChannel =
255 std::make_unique<BufferStatusChannel>(*fmqDesc);
256 mValid = mReleasing.mStatusChannel &&
257 mReleasing.mStatusChannel->isValid();
258 }
259}
260
261BufferPoolClient::Impl::Impl(const sp<IAccessor> &accessor)
262 : mLocal(false), mValid(false), mAccessor(accessor), mSeqId(0),
263 mLastEvictCacheUs(getTimestampNow()) {
264 bool valid = false;
Sungtak Leed491f1f2018-10-05 15:56:56 -0700265 sp<IObserver> observer; // TODO
Sungtak Leebbe37b62018-08-29 15:15:48 -0700266 sp<IConnection>& outConnection = mRemoteConnection;
267 ConnectionId& id = mConnectionId;
268 std::unique_ptr<BufferStatusChannel>& outChannel =
269 mReleasing.mStatusChannel;
270 Return<void> transResult = accessor->connect(
Sungtak Leed491f1f2018-10-05 15:56:56 -0700271 observer,
Sungtak Leebbe37b62018-08-29 15:15:48 -0700272 [&valid, &outConnection, &id, &outChannel]
273 (ResultStatus status, sp<IConnection> connection,
Sungtak Lee1cb0ccb2018-09-05 14:47:36 -0700274 ConnectionId connectionId, const StatusDescriptor& desc,
275 const InvalidationDescriptor& invDesc) {
276 (void) invDesc;
Sungtak Leebbe37b62018-08-29 15:15:48 -0700277 if (status == ResultStatus::OK) {
278 outConnection = connection;
279 id = connectionId;
280 outChannel = std::make_unique<BufferStatusChannel>(desc);
281 if (outChannel && outChannel->isValid()) {
282 valid = true;
283 }
284 }
285 });
286 mValid = transResult.isOk() && valid;
287}
288
289bool BufferPoolClient::Impl::isActive(int64_t *lastTransactionUs, bool clearCache) {
290 bool active = false;
291 {
292 std::lock_guard<std::mutex> lock(mCache.mLock);
293 syncReleased();
294 evictCaches(clearCache);
295 *lastTransactionUs = mCache.mLastChangeUs;
296 active = mCache.mActive > 0;
297 }
298 if (mValid && mLocal && mLocalConnection) {
299 mLocalConnection->cleanUp(clearCache);
300 return true;
301 }
302 return active;
303}
304
305ResultStatus BufferPoolClient::Impl::allocate(
306 const std::vector<uint8_t> &params,
307 native_handle_t **pHandle,
308 std::shared_ptr<BufferPoolData> *buffer) {
309 if (!mLocal || !mLocalConnection || !mValid) {
310 return ResultStatus::CRITICAL_ERROR;
311 }
312 BufferId bufferId;
313 native_handle_t *handle = nullptr;
314 buffer->reset();
315 ResultStatus status = allocateBufferHandle(params, &bufferId, &handle);
316 if (status == ResultStatus::OK) {
317 if (handle) {
318 std::unique_lock<std::mutex> lock(mCache.mLock);
319 syncReleased();
320 evictCaches();
321 auto cacheIt = mCache.mBuffers.find(bufferId);
322 if (cacheIt != mCache.mBuffers.end()) {
323 // TODO: verify it is recycled. (not having active ref)
324 mCache.mBuffers.erase(cacheIt);
325 }
326 auto clientBuffer = std::make_unique<ClientBuffer>(
327 mConnectionId, bufferId, handle);
328 if (clientBuffer) {
329 auto result = mCache.mBuffers.insert(std::make_pair(
330 bufferId, std::move(clientBuffer)));
331 if (result.second) {
332 *buffer = result.first->second->createCache(
333 shared_from_this(), pHandle);
334 if (*buffer) {
335 mCache.incActive_l();
336 }
337 }
338 }
339 }
340 if (!*buffer) {
341 ALOGV("client cache creation failure %d: %lld",
342 handle != nullptr, (long long)mConnectionId);
343 status = ResultStatus::NO_MEMORY;
344 postBufferRelease(bufferId);
345 }
346 }
347 return status;
348}
349
350ResultStatus BufferPoolClient::Impl::receive(
351 TransactionId transactionId, BufferId bufferId, int64_t timestampUs,
352 native_handle_t **pHandle,
353 std::shared_ptr<BufferPoolData> *buffer) {
354 if (!mValid) {
355 return ResultStatus::CRITICAL_ERROR;
356 }
357 if (timestampUs != 0) {
358 timestampUs += kReceiveTimeoutUs;
359 }
360 if (!postReceive(bufferId, transactionId, timestampUs)) {
361 return ResultStatus::CRITICAL_ERROR;
362 }
363 ResultStatus status = ResultStatus::CRITICAL_ERROR;
364 buffer->reset();
365 while(1) {
366 std::unique_lock<std::mutex> lock(mCache.mLock);
367 syncReleased();
368 evictCaches();
369 auto cacheIt = mCache.mBuffers.find(bufferId);
370 if (cacheIt != mCache.mBuffers.end()) {
371 if (cacheIt->second->hasCache()) {
372 *buffer = cacheIt->second->fetchCache(pHandle);
373 if (!*buffer) {
374 // check transfer time_out
375 lock.unlock();
376 std::this_thread::yield();
377 continue;
378 }
379 ALOGV("client receive from reference %lld", (long long)mConnectionId);
380 break;
381 } else {
382 *buffer = cacheIt->second->createCache(shared_from_this(), pHandle);
383 if (*buffer) {
384 mCache.incActive_l();
385 }
386 ALOGV("client receive from cache %lld", (long long)mConnectionId);
387 break;
388 }
389 } else {
390 if (!mCache.mCreating) {
391 mCache.mCreating = true;
392 lock.unlock();
393 native_handle_t* handle = nullptr;
394 status = fetchBufferHandle(transactionId, bufferId, &handle);
395 lock.lock();
396 if (status == ResultStatus::OK) {
397 if (handle) {
398 auto clientBuffer = std::make_unique<ClientBuffer>(
399 mConnectionId, bufferId, handle);
400 if (clientBuffer) {
401 auto result = mCache.mBuffers.insert(
402 std::make_pair(bufferId, std::move(
403 clientBuffer)));
404 if (result.second) {
405 *buffer = result.first->second->createCache(
406 shared_from_this(), pHandle);
407 if (*buffer) {
408 mCache.incActive_l();
409 }
410 }
411 }
412 }
413 if (!*buffer) {
414 status = ResultStatus::NO_MEMORY;
415 }
416 }
417 mCache.mCreating = false;
418 lock.unlock();
419 mCache.mCreateCv.notify_all();
420 break;
421 }
422 mCache.mCreateCv.wait(lock);
423 }
424 }
425 bool needsSync = false;
426 bool posted = postReceiveResult(bufferId, transactionId,
427 *buffer ? true : false, &needsSync);
428 ALOGV("client receive %lld - %u : %s (%d)", (long long)mConnectionId, bufferId,
429 *buffer ? "ok" : "fail", posted);
430 if (mValid && mLocal && mLocalConnection) {
431 mLocalConnection->cleanUp(false);
432 }
433 if (needsSync && mRemoteConnection) {
434 trySyncFromRemote();
435 }
436 if (*buffer) {
437 if (!posted) {
438 buffer->reset();
439 return ResultStatus::CRITICAL_ERROR;
440 }
441 return ResultStatus::OK;
442 }
443 return status;
444}
445
446
447void BufferPoolClient::Impl::postBufferRelease(BufferId bufferId) {
448 std::lock_guard<std::mutex> lock(mReleasing.mLock);
449 mReleasing.mReleasingIds.push_back(bufferId);
450 mReleasing.mStatusChannel->postBufferRelease(
451 mConnectionId, mReleasing.mReleasingIds, mReleasing.mReleasedIds);
452}
453
454// TODO: revise ad-hoc posting data structure
455bool BufferPoolClient::Impl::postSend(
456 BufferId bufferId, ConnectionId receiver,
457 TransactionId *transactionId, int64_t *timestampUs) {
458 bool ret = false;
459 bool needsSync = false;
460 {
461 std::lock_guard<std::mutex> lock(mReleasing.mLock);
462 *timestampUs = getTimestampNow();
463 *transactionId = (mConnectionId << 32) | mSeqId++;
464 // TODO: retry, add timeout, target?
465 ret = mReleasing.mStatusChannel->postBufferStatusMessage(
466 *transactionId, bufferId, BufferStatus::TRANSFER_TO, mConnectionId,
467 receiver, mReleasing.mReleasingIds, mReleasing.mReleasedIds);
468 needsSync = !mLocal && mReleasing.mStatusChannel->needsSync();
469 }
470 if (mValid && mLocal && mLocalConnection) {
471 mLocalConnection->cleanUp(false);
472 }
473 if (needsSync && mRemoteConnection) {
474 trySyncFromRemote();
475 }
476 return ret;
477}
478
479bool BufferPoolClient::Impl::postReceive(
480 BufferId bufferId, TransactionId transactionId, int64_t timestampUs) {
481 for (int i = 0; i < kPostMaxRetry; ++i) {
482 std::unique_lock<std::mutex> lock(mReleasing.mLock);
483 int64_t now = getTimestampNow();
484 if (timestampUs == 0 || now < timestampUs) {
485 bool result = mReleasing.mStatusChannel->postBufferStatusMessage(
486 transactionId, bufferId, BufferStatus::TRANSFER_FROM,
487 mConnectionId, -1, mReleasing.mReleasingIds,
488 mReleasing.mReleasedIds);
489 if (result) {
490 return true;
491 }
492 lock.unlock();
493 std::this_thread::yield();
494 } else {
495 mReleasing.mStatusChannel->postBufferStatusMessage(
496 transactionId, bufferId, BufferStatus::TRANSFER_TIMEOUT,
497 mConnectionId, -1, mReleasing.mReleasingIds,
498 mReleasing.mReleasedIds);
499 return false;
500 }
501 }
502 return false;
503}
504
505bool BufferPoolClient::Impl::postReceiveResult(
506 BufferId bufferId, TransactionId transactionId, bool result, bool *needsSync) {
507 std::lock_guard<std::mutex> lock(mReleasing.mLock);
508 // TODO: retry, add timeout
509 bool ret = mReleasing.mStatusChannel->postBufferStatusMessage(
510 transactionId, bufferId,
511 result ? BufferStatus::TRANSFER_OK : BufferStatus::TRANSFER_ERROR,
512 mConnectionId, -1, mReleasing.mReleasingIds,
513 mReleasing.mReleasedIds);
514 *needsSync = !mLocal && mReleasing.mStatusChannel->needsSync();
515 return ret;
516}
517
518void BufferPoolClient::Impl::trySyncFromRemote() {
519 if (mRemoteSyncLock.try_lock()) {
520 bool needsSync = false;
521 {
522 std::lock_guard<std::mutex> lock(mReleasing.mLock);
523 needsSync = mReleasing.mStatusChannel->needsSync();
524 }
525 if (needsSync) {
526 TransactionId transactionId = (mConnectionId << 32);
527 BufferId bufferId = Connection::SYNC_BUFFERID;
528 Return<void> transResult = mRemoteConnection->fetch(
529 transactionId, bufferId,
530 []
531 (ResultStatus outStatus, Buffer outBuffer) {
532 (void) outStatus;
533 (void) outBuffer;
534 });
535 }
536 mRemoteSyncLock.unlock();
537 }
538}
539
540// should have mCache.mLock
541bool BufferPoolClient::Impl::syncReleased() {
542 std::lock_guard<std::mutex> lock(mReleasing.mLock);
543 if (mReleasing.mReleasingIds.size() > 0) {
544 mReleasing.mStatusChannel->postBufferRelease(
545 mConnectionId, mReleasing.mReleasingIds,
546 mReleasing.mReleasedIds);
547 }
548 if (mReleasing.mReleasedIds.size() > 0) {
549 for (BufferId& id: mReleasing.mReleasedIds) {
550 ALOGV("client release buffer %lld - %u", (long long)mConnectionId, id);
551 auto found = mCache.mBuffers.find(id);
552 if (found != mCache.mBuffers.end()) {
553 if (found->second->onCacheRelease()) {
554 mCache.decActive_l();
555 } else {
556 // should not happen!
557 ALOGW("client %lld cache release status inconsitent!",
558 (long long)mConnectionId);
559 }
560 } else {
561 // should not happen!
562 ALOGW("client %lld cache status inconsitent!", (long long)mConnectionId);
563 }
564 }
565 mReleasing.mReleasedIds.clear();
566 return true;
567 }
568 return false;
569}
570
571// should have mCache.mLock
572void BufferPoolClient::Impl::evictCaches(bool clearCache) {
573 int64_t now = getTimestampNow();
574 if (now >= mLastEvictCacheUs + kCacheTtlUs || clearCache) {
575 size_t evicted = 0;
576 for (auto it = mCache.mBuffers.begin(); it != mCache.mBuffers.end();) {
577 if (!it->second->hasCache() && (it->second->expire() || clearCache)) {
578 it = mCache.mBuffers.erase(it);
579 ++evicted;
580 } else {
581 ++it;
582 }
583 }
584 ALOGV("cache count %lld : total %zu, active %d, evicted %zu",
585 (long long)mConnectionId, mCache.mBuffers.size(), mCache.mActive, evicted);
586 mLastEvictCacheUs = now;
587 }
588}
589
590ResultStatus BufferPoolClient::Impl::allocateBufferHandle(
591 const std::vector<uint8_t>& params, BufferId *bufferId,
592 native_handle_t** handle) {
593 if (mLocalConnection) {
594 const native_handle_t* allocHandle = nullptr;
595 ResultStatus status = mLocalConnection->allocate(
596 params, bufferId, &allocHandle);
597 if (status == ResultStatus::OK) {
598 *handle = native_handle_clone(allocHandle);
599 }
600 ALOGV("client allocate result %lld %d : %u clone %p",
601 (long long)mConnectionId, status == ResultStatus::OK,
602 *handle ? *bufferId : 0 , *handle);
603 return status;
604 }
605 return ResultStatus::CRITICAL_ERROR;
606}
607
608ResultStatus BufferPoolClient::Impl::fetchBufferHandle(
609 TransactionId transactionId, BufferId bufferId,
610 native_handle_t **handle) {
611 sp<IConnection> connection;
612 if (mLocal) {
613 connection = mLocalConnection;
614 } else {
615 connection = mRemoteConnection;
616 }
617 ResultStatus status;
618 Return<void> transResult = connection->fetch(
619 transactionId, bufferId,
620 [&status, &handle]
621 (ResultStatus outStatus, Buffer outBuffer) {
622 status = outStatus;
623 if (status == ResultStatus::OK) {
624 *handle = native_handle_clone(
625 outBuffer.buffer.getNativeHandle());
626 }
627 });
628 return transResult.isOk() ? status : ResultStatus::CRITICAL_ERROR;
629}
630
631
632BufferPoolClient::BufferPoolClient(const sp<Accessor> &accessor) {
633 mImpl = std::make_shared<Impl>(accessor);
634}
635
636BufferPoolClient::BufferPoolClient(const sp<IAccessor> &accessor) {
637 mImpl = std::make_shared<Impl>(accessor);
638}
639
640BufferPoolClient::~BufferPoolClient() {
641 // TODO: how to handle orphaned buffers?
642}
643
644bool BufferPoolClient::isValid() {
645 return mImpl && mImpl->isValid();
646}
647
648bool BufferPoolClient::isLocal() {
649 return mImpl && mImpl->isLocal();
650}
651
652bool BufferPoolClient::isActive(int64_t *lastTransactionUs, bool clearCache) {
653 if (!isValid()) {
654 *lastTransactionUs = 0;
655 return false;
656 }
657 return mImpl->isActive(lastTransactionUs, clearCache);
658}
659
660ConnectionId BufferPoolClient::getConnectionId() {
661 if (isValid()) {
662 return mImpl->getConnectionId();
663 }
664 return -1;
665}
666
667ResultStatus BufferPoolClient::getAccessor(sp<IAccessor> *accessor) {
668 if (isValid()) {
669 *accessor = mImpl->getAccessor();
670 return ResultStatus::OK;
671 }
672 return ResultStatus::CRITICAL_ERROR;
673}
674
675ResultStatus BufferPoolClient::allocate(
676 const std::vector<uint8_t> &params,
677 native_handle_t **handle,
678 std::shared_ptr<BufferPoolData> *buffer) {
679 if (isValid()) {
680 return mImpl->allocate(params, handle, buffer);
681 }
682 return ResultStatus::CRITICAL_ERROR;
683}
684
685ResultStatus BufferPoolClient::receive(
686 TransactionId transactionId, BufferId bufferId, int64_t timestampUs,
687 native_handle_t **handle, std::shared_ptr<BufferPoolData> *buffer) {
688 if (isValid()) {
689 return mImpl->receive(transactionId, bufferId, timestampUs, handle, buffer);
690 }
691 return ResultStatus::CRITICAL_ERROR;
692}
693
694ResultStatus BufferPoolClient::postSend(
695 ConnectionId receiverId,
696 const std::shared_ptr<BufferPoolData> &buffer,
697 TransactionId *transactionId,
698 int64_t *timestampUs) {
699 if (isValid()) {
700 bool result = mImpl->postSend(
701 buffer->mId, receiverId, transactionId, timestampUs);
702 return result ? ResultStatus::OK : ResultStatus::CRITICAL_ERROR;
703 }
704 return ResultStatus::CRITICAL_ERROR;
705}
706
707} // namespace implementation
708} // namespace V2_0
709} // namespace bufferpool
710} // namespace media
711} // namespace hardware
712} // namespace android