#include #include 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& nn::hac::ServiceAccessControl::getBytes() const { return mRawBinary; } void nn::hac::ServiceAccessControl::clear() { mRawBinary.clear(); mServices.clear(); } const fnd::List& nn::hac::ServiceAccessControl::getServiceList() const { return mServices; } void nn::hac::ServiceAccessControl::setServiceList(const fnd::List& list) { mServices = list; }