fprime/Fw/Buffer/Buffer.cpp
M Starch ec08d43dd3
Removes NATIVE_INT_TYPE, NATIVE_UINT_TYPE, and POINTER_CAST from Fw (#3286)
* NATIVE_INT_TYPE use in toString

* NATIVE_INT_TYPE use in SimpleObjRegistry

* NATIVE_INT_TYPE use in Asserts

* NATIVE_INT_TYPE use in Fw/Comp

* NATIVE_INT_TYPE use in getCapacity

* NATIVE_INT_TYPE use in getEntries

* NATIVE_INT_TYPE use in size/length

* NATIVE_INT_TYPE use in FILE_NAME_ARG

* NATIVE_INT_TYPE use in Fw (misc)

* NATIVE_INT_TYPE use in identifier

* NATIVE_INT_TYPE use in Fw (misc II)

* POINTER_CAST in Buffer

* POINTER_CAST in Serializable

* sp

* Removing no longer used DefaultTypes.hpp

* Fixes to accomidate Fw refactor

* Unit-test and CI fixes

* Fixing review comments - pt 1
2025-03-04 14:42:48 -08:00

187 lines
4.7 KiB
C++

// ======================================================================
// \title Buffer.cpp
// \author mstarch
// \brief cpp file for Fw::Buffer implementation
//
// \copyright
// Copyright 2009-2020, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
//
// ======================================================================
#include <Fw/Buffer/Buffer.hpp>
#include <Fw/Types/Assert.hpp>
#include <FpConfig.hpp>
#if FW_SERIALIZABLE_TO_STRING
#include <Fw/Types/String.hpp>
#endif
#include <cstring>
namespace Fw {
Buffer::Buffer(): Serializable(),
m_serialize_repr(),
m_bufferData(nullptr),
m_size(0),
m_context(0xFFFFFFFF)
{}
Buffer::Buffer(const Buffer& src) : Serializable(),
m_serialize_repr(),
m_bufferData(src.m_bufferData),
m_size(src.m_size),
m_context(src.m_context)
{
if(src.m_bufferData != nullptr){
this->m_serialize_repr.setExtBuffer(src.m_bufferData, src.m_size);
}
}
Buffer::Buffer(U8* data, U32 size, U32 context) : Serializable(),
m_serialize_repr(),
m_bufferData(data),
m_size(size),
m_context(context)
{
if(m_bufferData != nullptr){
this->m_serialize_repr.setExtBuffer(this->m_bufferData, this->m_size);
}
}
Buffer& Buffer::operator=(const Buffer& src) {
// Ward against self-assignment
if (this != &src) {
this->set(src.m_bufferData, src.m_size, src.m_context);
}
return *this;
}
bool Buffer::operator==(const Buffer& src) const {
return (this->m_bufferData == src.m_bufferData) && (this->m_size == src.m_size) && (this->m_context == src.m_context);
}
bool Buffer::isValid() const {
return (this->m_bufferData != nullptr) && (this->m_size > 0);
}
U8* Buffer::getData() const {
return this->m_bufferData;
}
U32 Buffer::getSize() const {
return this->m_size;
}
U32 Buffer::getContext() const {
return this->m_context;
}
void Buffer::setData(U8* const data) {
this->m_bufferData = data;
if (m_bufferData != nullptr) {
this->m_serialize_repr.setExtBuffer(this->m_bufferData, this->m_size);
}
}
void Buffer::setSize(const U32 size) {
this->m_size = size;
if (m_bufferData != nullptr) {
this->m_serialize_repr.setExtBuffer(this->m_bufferData, this->m_size);
}
}
void Buffer::setContext(const U32 context) {
this->m_context = context;
}
void Buffer::set(U8* const data, const U32 size, const U32 context) {
this->m_bufferData = data;
this->m_size = size;
if (m_bufferData != nullptr) {
this->m_serialize_repr.setExtBuffer(this->m_bufferData, this->m_size);
}
this->m_context = context;
}
Fw::SerializeBufferBase& Buffer::getSerializeRepr() {
return m_serialize_repr;
}
Fw::SerializeStatus Buffer::serialize(Fw::SerializeBufferBase& buffer) const {
Fw::SerializeStatus stat;
#if FW_SERIALIZATION_TYPE_ID
stat = buffer.serialize(static_cast<U32>(Buffer::TYPE_ID));
if (stat != Fw::FW_SERIALIZE_OK) {
return stat;
}
#endif
stat = buffer.serialize(reinterpret_cast<PlatformPointerCastType>(this->m_bufferData));
if (stat != Fw::FW_SERIALIZE_OK) {
return stat;
}
stat = buffer.serialize(this->m_size);
if (stat != Fw::FW_SERIALIZE_OK) {
return stat;
}
stat = buffer.serialize(this->m_context);
if (stat != Fw::FW_SERIALIZE_OK) {
return stat;
}
return stat;
}
Fw::SerializeStatus Buffer::deserialize(Fw::SerializeBufferBase& buffer) {
Fw::SerializeStatus stat;
#if FW_SERIALIZATION_TYPE_ID
U32 typeId;
stat = buffer.deserialize(typeId);
if (stat != Fw::FW_SERIALIZE_OK) {
return stat;
}
if (typeId != Buffer::TYPE_ID) {
return Fw::FW_DESERIALIZE_TYPE_MISMATCH;
}
#endif
PlatformPointerCastType pointer;
stat = buffer.deserialize(pointer);
if (stat != Fw::FW_SERIALIZE_OK) {
return stat;
}
this->m_bufferData = reinterpret_cast<U8*>(pointer);
stat = buffer.deserialize(this->m_size);
if (stat != Fw::FW_SERIALIZE_OK) {
return stat;
}
stat = buffer.deserialize(this->m_context);
if (stat != Fw::FW_SERIALIZE_OK) {
return stat;
}
if (this->m_bufferData != nullptr) {
this->m_serialize_repr.setExtBuffer(this->m_bufferData, this->m_size);
}
return stat;
}
#if FW_SERIALIZABLE_TO_STRING
void Buffer::toString(Fw::StringBase& text) const {
static const char * formatString = "(data = %p, size = %u, context = %u)";
text.format(formatString, this->m_bufferData, this->m_size, this->m_context);
}
#endif
#ifdef BUILD_UT
std::ostream& operator<<(std::ostream& os, const Buffer& obj) {
Fw::String str;
obj.toString(str);
os << str.toChar();
return os;
}
#endif
} // end namespace Fw