configstore: add utility library functions for configstore

am: ad54c30863

Change-Id: I4d2fed4d6c46b4ab22c955f020f590f1f66f5927
This commit is contained in:
Jaesoo Lee
2017-03-14 06:50:56 +00:00
committed by android-build-merger
3 changed files with 123 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
// This is an autogenerated file, do not edit.
subdirs = [
"1.0",
"utils",
]

View File

@@ -0,0 +1,28 @@
//
// Copyright (C) 2017 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.
//
cc_library_static {
name: "android.hardware.configstore-utils",
export_include_dirs: ["include"],
srcs: [],
shared_libs: [
"android.hardware.configstore@1.0",
],
export_shared_lib_headers: [
"android.hardware.configstore@1.0",
],
}

View File

@@ -0,0 +1,94 @@
//
// Copyright (C) 2017 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.
//
#ifndef ANDROID_HARDWARE_CONFIGSTORE_UTILS_H
#define ANDROID_HARDWARE_CONFIGSTORE_UTILS_H
#include <hidl/Status.h>
#include <stdatomic.h>
namespace android {
namespace hardware {
namespace configstore {
// arguments V: type for the value (i.e., OptionalXXX)
// I: interface class name
// func: member function pointer
using namespace V1_0;
template<typename V, typename I, android::hardware::Return<void> (I::* func)
(std::function<void(const V&)>)>
decltype(V::value) get(const decltype(V::value) &defValue) {
auto getHelper = []()->V {
V ret;
sp<I> configs = I::getService();
if (!configs.get()) {
// fallback to the default value
ret.specified = false;
} else {
(*configs.*func)([&ret](V v) {
ret = v;
});
}
return ret;
};
static V cachedValue = getHelper();
return cachedValue.specified ? cachedValue.value : defValue;
}
template<typename I, android::hardware::Return<void> (I::* func)
(std::function<void(const OptionalBool&)>)>
bool getBool(const bool defValue) {
return get<OptionalBool, I, func>(defValue);
}
template<typename I, android::hardware::Return<void> (I::* func)
(std::function<void(const OptionalInt32&)>)>
int32_t getInt32(const int32_t defValue) {
return get<OptionalInt32, I, func>(defValue);
}
template<typename I, android::hardware::Return<void> (I::* func)
(std::function<void(const OptionalUInt32&)>)>
uint32_t getUInt32(const uint32_t defValue) {
return get<OptionalUInt32, I, func>(defValue);
}
template<typename I, android::hardware::Return<void> (I::* func)
(std::function<void(const OptionalInt64&)>)>
int64_t getInt64(const int64_t defValue) {
return get<OptionalInt64, I, func>(defValue);
}
template<typename I, android::hardware::Return<void> (I::* func)
(std::function<void(const OptionalUInt64&)>)>
uint64_t getUInt64(const uint64_t defValue) {
return get<OptionalUInt64, I, func>(defValue);
}
template<typename I, android::hardware::Return<void> (I::* func)
(std::function<void(const OptionalString&)>)>
std::string getString(const std::string &defValue) {
return get<OptionalString, I, func>(defValue);
}
} // namespace configstore
} // namespace hardware
} // namespace android
#endif // ANDROID_HARDWARE_CONFIGSTORE_UTILS_H