2016-06-15 23:48:41 +02:00
|
|
|
#include <framework/datapool/PoolEntry.h>
|
|
|
|
#include <framework/serviceinterface/ServiceInterfaceStream.h>
|
|
|
|
|
|
|
|
template <typename T>
|
2020-01-23 15:45:21 +01:00
|
|
|
PoolEntry<T>::PoolEntry(std::initializer_list<T> initValue, uint8_t set_length, uint8_t set_valid ) : length(set_length), valid(set_valid) {
|
2016-06-15 23:48:41 +02:00
|
|
|
this->address = new T[this->length];
|
2020-01-23 15:45:21 +01:00
|
|
|
if(initValue.size() == 0) {
|
|
|
|
memset(this->address, 0, this->getByteSize());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
memcpy(this->address, initValue.begin(), this->getByteSize());
|
2016-06-15 23:48:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//As the data pool is global, this dtor is only be called on program exit.
|
|
|
|
//Warning! Never copy pool entries!
|
|
|
|
template <typename T>
|
|
|
|
PoolEntry<T>::~PoolEntry() {
|
|
|
|
delete[] this->address;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
uint16_t PoolEntry<T>::getByteSize() {
|
|
|
|
return ( sizeof(T) * this->length );
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
uint8_t PoolEntry<T>::getSize() {
|
|
|
|
return this->length;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void* PoolEntry<T>::getRawData() {
|
|
|
|
return this->address;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void PoolEntry<T>::setValid( uint8_t isValid ) {
|
|
|
|
this->valid = isValid;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
uint8_t PoolEntry<T>::getValid() {
|
|
|
|
return valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void PoolEntry<T>::print() {
|
|
|
|
for (uint8_t size = 0; size < this->length; size++ ) {
|
|
|
|
debug << "| " << std::hex << (double)this->address[size] << (this->valid? " (valid) " : " (invalid) ");
|
|
|
|
}
|
|
|
|
debug << std::dec << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
Type PoolEntry<T>::getType() {
|
|
|
|
return PodTypeConversion<T>::type;
|
|
|
|
}
|
|
|
|
|
2019-12-27 22:43:09 +01:00
|
|
|
template class PoolEntry<bool>;
|
2016-06-15 23:48:41 +02:00
|
|
|
template class PoolEntry<uint8_t>;
|
|
|
|
template class PoolEntry<uint16_t>;
|
|
|
|
template class PoolEntry<uint32_t>;
|
|
|
|
template class PoolEntry<int8_t>;
|
|
|
|
template class PoolEntry<int16_t>;
|
|
|
|
template class PoolEntry<int32_t>;
|
|
|
|
template class PoolEntry<float>;
|
|
|
|
template class PoolEntry<double>;
|