blob: 2a23e6f98eeab62fb21626b400ce81d4ac01bd3a [file] [log] [blame]
Howard Chen4904f962017-12-08 18:11:05 +08001/*
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#define LOG_TAG "libhidlmemory"
17
18#include <map>
19#include <mutex>
20#include <string>
21
22#include <hidlmemory/mapping.h>
23
24#include <android-base/logging.h>
25#include <hidl/HidlSupport.h>
26#include "HidlMemoryCache.h"
27
28using android::hardware::HidlMemoryCache;
29using android::hidl::memory::block::V1_0::MemoryBlock;
30using android::hidl::memory::token::V1_0::IMemoryToken;
31using android::hidl::memory::V1_0::IMemory;
32
33namespace android {
34namespace hardware {
35
36sp<IMemory> mapMemory(const ::android::hidl::memory::block::V1_0::MemoryBlock& block) {
37 sp<HidlMemoryCache> c = HidlMemoryCache::getInstance();
38 return c->map(block);
39}
40
41sp<RefBase> lockMemoryCache(const sp<::android::hidl::memory::token::V1_0::IMemoryToken> key) {
42 sp<HidlMemoryCache> c = HidlMemoryCache::getInstance();
43 return c->lockGuard(key);
44}
45
46} // namespace hardware
47} // namespace android