mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 13:54:34 -06:00
C++ assignment operators should not return const value to match behavior of primative types
79 lines
2.6 KiB
C++
79 lines
2.6 KiB
C++
// ======================================================================
|
|
// \title Hash.hpp
|
|
// \author dinkel
|
|
// \brief hpp file for Hash class
|
|
//
|
|
// \copyright
|
|
// Copyright 2009-2015, by the California Institute of Technology.
|
|
// ALL RIGHTS RESERVED. United States Government Sponsorship
|
|
// acknowledged.
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef UTILS_HASH_BUFFER_HPP
|
|
#define UTILS_HASH_BUFFER_HPP
|
|
|
|
#include <Fw/Types/BasicTypes.hpp>
|
|
#include <Fw/Types/Serializable.hpp>
|
|
#include <Fw/Types/Assert.hpp>
|
|
#include <Utils/Hash/HashConfig.hpp>
|
|
|
|
namespace Utils {
|
|
|
|
//! \class HashBuffer
|
|
//! \brief An container class for holding a hash buffer
|
|
//!
|
|
class HashBuffer : public Fw::SerializeBufferBase {
|
|
public:
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
//! Construct a HashBuffer object
|
|
//!
|
|
HashBuffer(const U8 *args, NATIVE_UINT_TYPE size);
|
|
HashBuffer(const HashBuffer& other);
|
|
HashBuffer();
|
|
|
|
//! Destroy a HashBuffer object
|
|
//!
|
|
virtual ~HashBuffer();
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Public instance methods
|
|
// ----------------------------------------------------------------------
|
|
|
|
//! Assign a hash buffer from another hash buffer
|
|
//!
|
|
HashBuffer& operator=(const HashBuffer& other);
|
|
|
|
//! Compare two hash buffers for equality
|
|
//!
|
|
bool operator==(const HashBuffer& other) const;
|
|
|
|
//! Compare two hash buffers for inequality
|
|
//!
|
|
bool operator!=(const HashBuffer& other) const;
|
|
|
|
//! Get the total buffer length of a hash buffer
|
|
//!
|
|
NATIVE_UINT_TYPE getBuffCapacity() const; // !< returns capacity, not current size, of buffer
|
|
|
|
//! Get a pointer to the buffer within the hash buffer
|
|
//!
|
|
U8* getBuffAddr();
|
|
const U8* getBuffAddr() const;
|
|
|
|
private:
|
|
// ----------------------------------------------------------------------
|
|
// Private member variables
|
|
// ----------------------------------------------------------------------
|
|
|
|
//! The buffer which stores the hash digest
|
|
//!
|
|
U8 m_bufferData[HASH_DIGEST_LENGTH]; // packet data buffer
|
|
};
|
|
}
|
|
|
|
#endif
|