[nx] Add stubbed NsoHeader

This commit is contained in:
jakcron 2018-05-27 20:33:21 +08:00
parent a930e0e04c
commit aad9f75239
2 changed files with 111 additions and 0 deletions

View file

@ -0,0 +1,46 @@
#pragma once
#include <nx/xci.h>
#include <fnd/MemoryBlob.h>
#include <fnd/List.h>
#include <fnd/ISerialiseableBinary.h>
namespace nx
{
class NsoHeader :
public fnd::ISerialiseableBinary
{
public:
NsoHeader();
NsoHeader(const NsoHeader& other);
NsoHeader(const byte_t* bytes, size_t len);
bool operator==(const NsoHeader& other) const;
bool operator!=(const NsoHeader& other) const;
void operator=(const NsoHeader& other);
// to be used after export
const byte_t* getBytes() const;
size_t getSize() const;
// export/import binary
void exportBinary();
void importBinary(const byte_t* bytes, size_t len);
// variables
void clear();
private:
const std::string kModuleName = "NSO_HEADER";
// binary
fnd::MemoryBlob mBinaryBlob;
// data
// helpers
bool isEqual(const NsoHeader& other) const;
void copyFrom(const NsoHeader& other);
};
}

View file

@ -0,0 +1,65 @@
#include <nx/NsoHeader.h>
nx::NsoHeader::NsoHeader()
{
}
nx::NsoHeader::NsoHeader(const NsoHeader& other)
{
copyFrom(other);
}
nx::NsoHeader::NsoHeader(const byte_t* bytes, size_t len)
{
importBinary(bytes, len);
}
bool nx::NsoHeader::operator==(const NsoHeader& other) const
{
return isEqual(other);
}
bool nx::NsoHeader::operator!=(const NsoHeader& other) const
{
return !(*this == other);
}
void nx::NsoHeader::operator=(const NsoHeader& other)
{
copyFrom(other);
}
const byte_t* nx::NsoHeader::getBytes() const
{
return mBinaryBlob.getBytes();
}
size_t nx::NsoHeader::getSize() const
{
return mBinaryBlob.getSize();
}
void nx::NsoHeader::exportBinary()
{
throw fnd::Exception(kModuleName, "exportBinary() not implemented");
}
void nx::NsoHeader::importBinary(const byte_t* bytes, size_t len)
{
throw fnd::Exception(kModuleName, "importBinary() not implemented");
}
void nx::NsoHeader::clear()
{
}
bool nx::NsoHeader::isEqual(const NsoHeader& other) const
{
return false;
}
void nx::NsoHeader::copyFrom(const NsoHeader& other)
{
}