/** * @file PoolRawAccessHelper.cpp * * @date 22.12.2019 */ #include PoolRawAccessHelper::PoolRawAccessHelper(DataSet *dataSet_, const uint8_t * poolIdBuffer_, uint8_t numberOfParameters_): dataSet(dataSet_), poolIdBuffer(poolIdBuffer_), numberOfParameters(numberOfParameters_){ } PoolRawAccessHelper::~PoolRawAccessHelper() { } ReturnValue_t PoolRawAccessHelper::serialize(uint8_t **buffer, uint32_t *size, const uint32_t max_size, bool bigEndian) { const uint8_t ** pPoolIdBuffer = &poolIdBuffer; int32_t remainingParametersSize = numberOfParameters * 4; for(uint8_t count=0; count < numberOfParameters; count++) { serializeCurrentPoolEntryIntoBuffer(pPoolIdBuffer,buffer, &remainingParametersSize,size,max_size, bigEndian, false); } return RETURN_OK; } ReturnValue_t PoolRawAccessHelper::serializeWithValidityMask(uint8_t **buffer, uint32_t *size, const uint32_t max_size, bool bigEndian) { return RETURN_OK; } void PoolRawAccessHelper::serializeCurrentPoolEntryIntoBuffer(const uint8_t ** pPoolIdBuffer, uint8_t ** buffer, int32_t * remainingParameters, uint32_t * hkDataSize, const uint32_t max_size, bool bigEndian, bool withValidMask) { uint32_t currentPoolId; // Deserialize current pool ID from pool ID buffer ReturnValue_t result = AutoSerializeAdapter::deSerialize(¤tPoolId, pPoolIdBuffer,remainingParameters,true); if(result != RETURN_OK) { debug << std::hex << "Pool Raw Access Helper: Error deSeralizing pool IDs" << std::dec << std::endl; return; } PoolRawAccess currentPoolRawAccess(currentPoolId,0,dataSet,PoolVariableIF::VAR_READ); result = dataSet->read(); if (result != RETURN_OK) { debug << std::hex << "Pool Raw Access Helper: Error read raw dataset" << std::dec << std::endl; return; } result = dataSet->serialize(buffer, hkDataSize, max_size, bigEndian); if (result != RETURN_OK) { debug << "Service 3: Error serializing pool data into send buffer" << std::endl; return; } } 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; }