2019-12-24 01:41:04 +01:00
|
|
|
/**
|
|
|
|
* @file PoolRawAccessHelper.cpp
|
|
|
|
*
|
|
|
|
* @date 22.12.2019
|
2019-12-24 22:15:39 +01:00
|
|
|
* @author R. Mueller
|
2019-12-24 01:41:04 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <framework/datapool/PoolRawAccessHelper.h>
|
2019-12-26 16:44:50 +01:00
|
|
|
#include <framework/datapool/DataSet.h>
|
2019-12-24 01:41:04 +01:00
|
|
|
|
2020-01-09 19:04:33 +01:00
|
|
|
PoolRawAccessHelper::PoolRawAccessHelper(uint32_t * poolIdBuffer_,
|
2019-12-26 16:44:50 +01:00
|
|
|
uint8_t numberOfParameters_):
|
2020-01-09 19:04:33 +01:00
|
|
|
poolIdBuffer(reinterpret_cast<uint8_t * >(poolIdBuffer_)),
|
2019-12-24 22:15:39 +01:00
|
|
|
numberOfParameters(numberOfParameters_), validBufferIndex(0), validBufferIndexBit(1){
|
2019-12-24 01:41:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
PoolRawAccessHelper::~PoolRawAccessHelper() {
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t PoolRawAccessHelper::serialize(uint8_t **buffer, uint32_t *size,
|
|
|
|
const uint32_t max_size, bool bigEndian) {
|
2019-12-29 01:59:02 +01:00
|
|
|
SerializationArgs serializationArgs = {buffer, size, max_size, bigEndian};
|
2019-12-24 22:15:39 +01:00
|
|
|
ReturnValue_t result;
|
2019-12-24 01:41:04 +01:00
|
|
|
int32_t remainingParametersSize = numberOfParameters * 4;
|
|
|
|
for(uint8_t count=0; count < numberOfParameters; count++) {
|
2019-12-29 01:59:02 +01:00
|
|
|
result = serializeCurrentPoolEntryIntoBuffer(serializationArgs,
|
|
|
|
&remainingParametersSize, false);
|
2019-12-24 22:15:39 +01:00
|
|
|
if(result != RETURN_OK) {
|
|
|
|
return result;
|
|
|
|
}
|
2019-12-24 01:41:04 +01:00
|
|
|
}
|
2019-12-26 16:44:50 +01:00
|
|
|
if(remainingParametersSize != 0) {
|
|
|
|
debug << "Pool Raw Access: Remaining parameters size not 0 !" << std::endl;
|
|
|
|
result = RETURN_FAILED;
|
|
|
|
}
|
|
|
|
return result;
|
2019-12-24 01:41:04 +01:00
|
|
|
}
|
|
|
|
|
2019-12-29 01:59:02 +01:00
|
|
|
ReturnValue_t PoolRawAccessHelper::serializeWithValidityMask(uint8_t ** buffer, uint32_t * size,
|
|
|
|
const uint32_t max_size, bool bigEndian) {
|
2019-12-24 22:15:39 +01:00
|
|
|
ReturnValue_t result;
|
2019-12-29 01:59:02 +01:00
|
|
|
SerializationArgs argStruct = {buffer, size, max_size, bigEndian};
|
2019-12-24 22:15:39 +01:00
|
|
|
int32_t remainingParametersSize = numberOfParameters * 4;
|
|
|
|
uint8_t validityMaskSize = numberOfParameters/8;
|
|
|
|
uint8_t validityMask[validityMaskSize];
|
|
|
|
memset(validityMask,0, validityMaskSize);
|
2019-12-26 16:44:50 +01:00
|
|
|
for(uint8_t count = 0; count < numberOfParameters; count++) {
|
2019-12-29 01:59:02 +01:00
|
|
|
result = serializeCurrentPoolEntryIntoBuffer(argStruct,
|
|
|
|
&remainingParametersSize,true,validityMask);
|
2019-12-24 22:15:39 +01:00
|
|
|
if (result != RETURN_OK) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
2019-12-26 16:44:50 +01:00
|
|
|
if(remainingParametersSize != 0) {
|
|
|
|
debug << "Pool Raw Access: Remaining parameters size not 0 !" << std::endl;
|
|
|
|
result = RETURN_FAILED;
|
|
|
|
}
|
2019-12-24 22:15:39 +01:00
|
|
|
memcpy(*buffer + *size, validityMask, validityMaskSize);
|
|
|
|
*size += validityMaskSize;
|
|
|
|
validBufferIndex = 1;
|
|
|
|
validBufferIndexBit = 0;
|
2019-12-26 16:44:50 +01:00
|
|
|
return result;
|
2019-12-24 01:41:04 +01:00
|
|
|
}
|
|
|
|
|
2019-12-29 01:59:02 +01:00
|
|
|
ReturnValue_t PoolRawAccessHelper::serializeCurrentPoolEntryIntoBuffer(SerializationArgs argStruct,
|
|
|
|
int32_t * remainingParameters, bool withValidMask, uint8_t * validityMask) {
|
2019-12-24 01:41:04 +01:00
|
|
|
uint32_t currentPoolId;
|
|
|
|
// Deserialize current pool ID from pool ID buffer
|
|
|
|
ReturnValue_t result = AutoSerializeAdapter::deSerialize(¤tPoolId,
|
2019-12-26 16:44:50 +01:00
|
|
|
&poolIdBuffer,remainingParameters,true);
|
2019-12-24 01:41:04 +01:00
|
|
|
if(result != RETURN_OK) {
|
|
|
|
debug << std::hex << "Pool Raw Access Helper: Error deSeralizing pool IDs" << std::dec << std::endl;
|
2019-12-24 22:15:39 +01:00
|
|
|
return result;
|
2019-12-24 01:41:04 +01:00
|
|
|
}
|
2019-12-29 01:59:02 +01:00
|
|
|
result = handlePoolEntrySerialization(currentPoolId, argStruct, withValidMask, validityMask);
|
|
|
|
return result;
|
|
|
|
}
|
2019-12-26 16:44:50 +01:00
|
|
|
|
2019-12-29 01:59:02 +01:00
|
|
|
ReturnValue_t PoolRawAccessHelper::handlePoolEntrySerialization(uint32_t currentPoolId,SerializationArgs argStruct,
|
|
|
|
bool withValidMask, uint8_t * validityMask) {
|
2020-01-10 00:57:09 +01:00
|
|
|
ReturnValue_t result = RETURN_FAILED;
|
2019-12-29 01:59:02 +01:00
|
|
|
uint8_t arrayPosition = 0;
|
2020-01-10 00:57:09 +01:00
|
|
|
uint8_t counter = 0;
|
2019-12-29 01:59:02 +01:00
|
|
|
bool poolEntrySerialized = false;
|
2020-01-10 00:57:09 +01:00
|
|
|
info << "Pool Raw Access Helper: Handling Pool ID: " << std::hex << currentPoolId << std::endl;
|
2019-12-29 01:59:02 +01:00
|
|
|
while(not poolEntrySerialized) {
|
2020-01-10 00:57:09 +01:00
|
|
|
|
|
|
|
if(counter > DataSet::DATA_SET_MAX_SIZE) {
|
|
|
|
error << "Pool Raw Access Helper: Config error, max. number of possible data set variables exceeded" << std::endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
counter ++;
|
|
|
|
|
2019-12-29 01:59:02 +01:00
|
|
|
DataSet currentDataSet = DataSet();
|
|
|
|
PoolRawAccess currentPoolRawAccess(currentPoolId,arrayPosition,¤tDataSet,PoolVariableIF::VAR_READ);
|
2020-01-10 00:57:09 +01:00
|
|
|
|
2019-12-29 01:59:02 +01:00
|
|
|
result = currentDataSet.read();
|
|
|
|
if (result != RETURN_OK) {
|
2020-01-10 00:57:09 +01:00
|
|
|
debug << std::hex << "Pool Raw Access Helper: Error reading raw dataset with returncode "
|
|
|
|
<< result << std::dec << std::endl;
|
2019-12-29 01:59:02 +01:00
|
|
|
return result;
|
|
|
|
}
|
2020-01-10 00:57:09 +01:00
|
|
|
|
|
|
|
result = checkRemainingSize(¤tPoolRawAccess, &poolEntrySerialized, &arrayPosition);
|
|
|
|
if(result != RETURN_OK) {
|
|
|
|
error << "Pool Raw Access Helper: Configuration Error at pool ID " << std::hex << currentPoolId
|
|
|
|
<< ". Size till end smaller than 0" << std::dec << std::endl;
|
2019-12-29 01:59:02 +01:00
|
|
|
return result;
|
|
|
|
}
|
2020-01-10 00:57:09 +01:00
|
|
|
|
2019-12-29 01:59:02 +01:00
|
|
|
// set valid mask bit if necessary
|
|
|
|
if(withValidMask) {
|
|
|
|
if(currentPoolRawAccess.isValid()) {
|
|
|
|
handleMaskModification(validityMask);
|
2019-12-24 22:15:39 +01:00
|
|
|
}
|
|
|
|
}
|
2020-01-10 00:57:09 +01:00
|
|
|
|
2019-12-29 01:59:02 +01:00
|
|
|
result = currentDataSet.serialize(argStruct.buffer, argStruct.size,
|
|
|
|
argStruct.max_size, argStruct.bigEndian);
|
|
|
|
if (result != RETURN_OK) {
|
2020-01-10 00:57:09 +01:00
|
|
|
debug << "Pool Raw Access Helper: Error serializing pool data with ID 0x" << std::hex <<
|
|
|
|
currentPoolId << " into send buffer with return code " << result << std::dec << std::endl;
|
2019-12-29 01:59:02 +01:00
|
|
|
return result;
|
|
|
|
}
|
2020-01-10 00:57:09 +01:00
|
|
|
|
2019-12-24 22:15:39 +01:00
|
|
|
}
|
2019-12-29 01:59:02 +01:00
|
|
|
return result;
|
|
|
|
}
|
2019-12-24 22:15:39 +01:00
|
|
|
|
2020-01-10 00:57:09 +01:00
|
|
|
ReturnValue_t PoolRawAccessHelper::checkRemainingSize(PoolRawAccess * currentPoolRawAccess,
|
|
|
|
bool * isSerialized, uint8_t * arrayPosition) {
|
|
|
|
int8_t remainingSize = currentPoolRawAccess->getSizeTillEnd() - currentPoolRawAccess->getSizeOfType();
|
|
|
|
if(remainingSize == 0) {
|
|
|
|
*isSerialized = true;
|
|
|
|
}
|
|
|
|
else if(remainingSize > 0) {
|
|
|
|
*arrayPosition += currentPoolRawAccess->getSizeOfType();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return RETURN_FAILED;
|
|
|
|
}
|
|
|
|
return RETURN_OK;
|
|
|
|
}
|
|
|
|
|
2019-12-29 01:59:02 +01:00
|
|
|
void PoolRawAccessHelper::handleMaskModification(uint8_t * validityMask) {
|
|
|
|
validityMask[validBufferIndex] =
|
|
|
|
bitSetter(validityMask[validBufferIndex], validBufferIndexBit, true);
|
|
|
|
validBufferIndexBit ++;
|
|
|
|
if(validBufferIndexBit == 8) {
|
|
|
|
validBufferIndex ++;
|
|
|
|
validBufferIndexBit = 1;
|
2019-12-24 01:41:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t PoolRawAccessHelper::bitSetter(uint8_t byte, uint8_t position, bool value) {
|
|
|
|
if(position < 1 or position > 8) {
|
|
|
|
debug << "Pool Raw Access: Bit setting invalid position" << std::endl;
|
|
|
|
return byte;
|
|
|
|
}
|
|
|
|
uint8_t shiftNumber = position + (6 - 2 * (position - 1));
|
|
|
|
byte = (byte | value) << shiftNumber;
|
|
|
|
return byte;
|
|
|
|
}
|