mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 15:58:43 +00:00
162 lines
5.1 KiB
C++
162 lines
5.1 KiB
C++
/*
|
|
* Copyright (C) 2016 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.
|
|
*/
|
|
|
|
#define LOG_TAG "android.hardware.vehicle@2.0-impl"
|
|
|
|
#include "VehicleObjectPool.h"
|
|
|
|
#include <log/log.h>
|
|
|
|
#include "VehicleUtils.h"
|
|
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace vehicle {
|
|
namespace V2_0 {
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtain(
|
|
VehiclePropertyType type, size_t vecSize) {
|
|
return isDisposable(type, vecSize)
|
|
? obtainDisposable(type, vecSize)
|
|
: obtainRecylable(type, vecSize);
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtain(
|
|
const VehiclePropValue& src) {
|
|
if (src.prop == VehicleProperty::INVALID) {
|
|
ALOGE("Unable to obtain an object from pool for unknown property");
|
|
return RecyclableType();
|
|
}
|
|
VehiclePropertyType type = getPropType(src.prop);
|
|
size_t vecSize = getVehicleRawValueVectorSize(src.value, type);;
|
|
auto dest = obtain(type, vecSize);
|
|
|
|
dest->prop = src.prop;
|
|
dest->areaId = src.areaId;
|
|
dest->timestamp = src.timestamp;
|
|
copyVehicleRawValue(&dest->value, src.value);
|
|
|
|
return dest;
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtainInt32(
|
|
int32_t value) {
|
|
auto val = obtain(VehiclePropertyType::INT32);
|
|
val->value.int32Values[0] = value;
|
|
return val;
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtainInt64(
|
|
int64_t value) {
|
|
auto val = obtain(VehiclePropertyType::INT64);
|
|
val->value.int64Values[0] = value;
|
|
return val;
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtainFloat(
|
|
float value) {
|
|
auto val = obtain(VehiclePropertyType::FLOAT);
|
|
val->value.floatValues[0] = value;
|
|
return val;
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtainString(
|
|
const char* cstr) {
|
|
auto val = obtain(VehiclePropertyType::STRING);
|
|
val->value.stringValue = cstr;
|
|
return val;
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtainComplex() {
|
|
return obtain(VehiclePropertyType::COMPLEX);
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtainRecylable(
|
|
VehiclePropertyType type, size_t vecSize) {
|
|
// VehiclePropertyType is not overlapping with vectorSize.
|
|
int32_t key = static_cast<int32_t>(type)
|
|
| static_cast<int32_t>(vecSize);
|
|
|
|
std::lock_guard<std::mutex> g(mLock);
|
|
auto it = mValueTypePools.find(key);
|
|
|
|
if (it == mValueTypePools.end()) {
|
|
auto newPool(std::make_unique<InternalPool>(type, vecSize));
|
|
it = mValueTypePools.emplace(key, std::move(newPool)).first;
|
|
}
|
|
return it->second->obtain();
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtainBoolean(
|
|
bool value) {
|
|
return obtainInt32(value);
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtainDisposable(
|
|
VehiclePropertyType valueType, size_t vectorSize) const {
|
|
return RecyclableType {
|
|
createVehiclePropValue(valueType, vectorSize).release(),
|
|
mDisposableDeleter
|
|
};
|
|
}
|
|
|
|
VehiclePropValuePool::RecyclableType VehiclePropValuePool::obtain(
|
|
VehiclePropertyType type) {
|
|
return obtain(type, 1);
|
|
}
|
|
|
|
|
|
void VehiclePropValuePool::InternalPool::recycle(VehiclePropValue* o) {
|
|
if (o == nullptr) {
|
|
ALOGE("Attempt to recycle nullptr");
|
|
return;
|
|
}
|
|
|
|
if (!check(&o->value)) {
|
|
ALOGE("Discarding value for prop 0x%x because it contains "
|
|
"data that is not consistent with this pool. "
|
|
"Expected type: %d, vector size: %d",
|
|
o->prop, mPropType, mVectorSize);
|
|
delete o;
|
|
} else {
|
|
ObjectPool<VehiclePropValue>::recycle(o);
|
|
}
|
|
}
|
|
|
|
bool VehiclePropValuePool::InternalPool::check(VehiclePropValue::RawValue* v) {
|
|
return check(&v->int32Values,
|
|
(VehiclePropertyType::INT32 == mPropType
|
|
|| VehiclePropertyType::INT32_VEC == mPropType
|
|
|| VehiclePropertyType::BOOLEAN == mPropType))
|
|
&& check(&v->floatValues,
|
|
(VehiclePropertyType::FLOAT == mPropType
|
|
|| VehiclePropertyType::FLOAT_VEC == mPropType))
|
|
&& check(&v->int64Values,
|
|
VehiclePropertyType::INT64 == mPropType)
|
|
&& check(&v->bytes,
|
|
VehiclePropertyType::BYTES == mPropType)
|
|
&& v->stringValue.size() == 0;
|
|
}
|
|
|
|
VehiclePropValue* VehiclePropValuePool::InternalPool::createObject() {
|
|
return createVehiclePropValue(mPropType, mVectorSize).release();
|
|
}
|
|
|
|
} // namespace V2_0
|
|
} // namespace vehicle
|
|
} // namespace hardware
|
|
} // namespace android
|