mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
79 lines
No EOL
1.9 KiB
C++
79 lines
No EOL
1.9 KiB
C++
#include <cstring>
|
|
#include <nn/hac/ServiceAccessControl.h>
|
|
|
|
nn::hac::ServiceAccessControl::ServiceAccessControl()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
nn::hac::ServiceAccessControl::ServiceAccessControl(const ServiceAccessControl & other)
|
|
{
|
|
*this = other;
|
|
}
|
|
|
|
void nn::hac::ServiceAccessControl::operator=(const ServiceAccessControl & other)
|
|
{
|
|
mRawBinary = other.mRawBinary;
|
|
mServices = other.mServices;
|
|
}
|
|
|
|
bool nn::hac::ServiceAccessControl::operator==(const ServiceAccessControl & other) const
|
|
{
|
|
return (mServices == other.mServices);
|
|
}
|
|
|
|
bool nn::hac::ServiceAccessControl::operator!=(const ServiceAccessControl & other) const
|
|
{
|
|
return !(*this == other);
|
|
}
|
|
|
|
void nn::hac::ServiceAccessControl::toBytes()
|
|
{
|
|
size_t totalSize = 0;
|
|
for (size_t i = 0; i < mServices.size(); i++)
|
|
{
|
|
mServices[i].toBytes();
|
|
totalSize += mServices[i].getBytes().size();
|
|
}
|
|
|
|
mRawBinary.alloc(totalSize);
|
|
for (size_t i = 0, pos = 0; i < mServices.size(); pos += mServices[i].getBytes().size(), i++)
|
|
{
|
|
memcpy((mRawBinary.data() + pos), mServices[i].getBytes().data(), mServices[i].getBytes().size());
|
|
}
|
|
}
|
|
|
|
void nn::hac::ServiceAccessControl::fromBytes(const byte_t* data, size_t len)
|
|
{
|
|
clear();
|
|
mRawBinary.alloc(len);
|
|
memcpy(mRawBinary.data(), data, mRawBinary.size());
|
|
|
|
ServiceAccessControlEntry sac;
|
|
for (size_t pos = 0; pos < len; pos += mServices.atBack().getBytes().size())
|
|
{
|
|
sac.fromBytes((const byte_t*)(mRawBinary.data() + pos), len - pos);
|
|
mServices.addElement(sac);
|
|
}
|
|
}
|
|
|
|
const fnd::Vec<byte_t>& nn::hac::ServiceAccessControl::getBytes() const
|
|
{
|
|
return mRawBinary;
|
|
}
|
|
|
|
void nn::hac::ServiceAccessControl::clear()
|
|
{
|
|
mRawBinary.clear();
|
|
mServices.clear();
|
|
}
|
|
|
|
const fnd::List<nn::hac::ServiceAccessControlEntry>& nn::hac::ServiceAccessControl::getServiceList() const
|
|
{
|
|
return mServices;
|
|
}
|
|
|
|
void nn::hac::ServiceAccessControl::addService(const ServiceAccessControlEntry& service)
|
|
{
|
|
mServices.addElement(service);
|
|
} |