#define MS_CLASS "RTC::SCTP::ProtocolViolationErrorCause"
#include "RTC/SCTP/packet/errorCauses/ProtocolViolationErrorCause.hpp"
#include "Logger.hpp"
#include "MediaSoupErrors.hpp"
namespace RTC
{
namespace SCTP
{
ProtocolViolationErrorCause* ProtocolViolationErrorCause::Parse(
const uint8_t* buffer, size_t bufferLength)
{
MS_TRACE();
ErrorCause::ErrorCauseCode causeCode;
uint16_t causeLength;
uint8_t padding;
if (!ErrorCause::IsErrorCause(buffer, bufferLength, causeCode, causeLength, padding))
{
return nullptr;
}
if (causeCode != ErrorCause::ErrorCauseCode::PROTOCOL_VIOLATION)
{
MS_WARN_DEV("invalid error cause code");
return nullptr;
}
return ProtocolViolationErrorCause::ParseStrict(buffer, bufferLength, causeLength, padding);
}
ProtocolViolationErrorCause* ProtocolViolationErrorCause::Factory(uint8_t* buffer, size_t bufferLength)
{
MS_TRACE();
if (bufferLength < ErrorCause::ErrorCauseHeaderLength)
{
MS_THROW_TYPE_ERROR("buffer too small");
}
auto* errorCause = new ProtocolViolationErrorCause(buffer, bufferLength);
errorCause->InitializeHeader(
ErrorCause::ErrorCauseCode::PROTOCOL_VIOLATION, ErrorCause::ErrorCauseHeaderLength);
return errorCause;
}
ProtocolViolationErrorCause* ProtocolViolationErrorCause::ParseStrict(
const uint8_t* buffer, size_t bufferLength, uint16_t causeLength, uint8_t padding)
{
MS_TRACE();
auto* errorCause = new ProtocolViolationErrorCause(const_cast<uint8_t*>(buffer), bufferLength);
errorCause->SetLength(causeLength + padding);
return errorCause;
}
ProtocolViolationErrorCause::ProtocolViolationErrorCause(uint8_t* buffer, size_t bufferLength)
: ErrorCause(buffer, bufferLength)
{
MS_TRACE();
SetLength(ErrorCause::ErrorCauseHeaderLength);
}
ProtocolViolationErrorCause::~ProtocolViolationErrorCause()
{
MS_TRACE();
}
void ProtocolViolationErrorCause::Dump(int indentation) const
{
MS_TRACE();
MS_DUMP_CLEAN(indentation, "<SCTP::ProtocolViolationErrorCause>");
DumpCommon(indentation);
MS_DUMP_CLEAN(
indentation,
" additional information length: %" PRIu16 " (has additional information: %s)",
GetAdditionalInformationLength(),
HasAdditionalInformation() ? "yes" : "no");
MS_DUMP_CLEAN(indentation, "</SCTP::ProtocolViolationErrorCause>");
}
ProtocolViolationErrorCause* ProtocolViolationErrorCause::Clone(
uint8_t* buffer, size_t bufferLength) const
{
MS_TRACE();
auto* clonedErrorCause = new ProtocolViolationErrorCause(buffer, bufferLength);
CloneInto(clonedErrorCause);
return clonedErrorCause;
}
void ProtocolViolationErrorCause::SetAdditionalInformation(const uint8_t* info, uint16_t infoLength)
{
MS_TRACE();
SetVariableLengthValue(info, infoLength);
}
void ProtocolViolationErrorCause::SetAdditionalInformation(const std::string& info)
{
MS_TRACE();
SetVariableLengthValue(reinterpret_cast<const uint8_t*>(info.c_str()), info.size());
}
ProtocolViolationErrorCause* ProtocolViolationErrorCause::SoftClone(const uint8_t* buffer) const
{
MS_TRACE();
auto* softClonedErrorCause =
new ProtocolViolationErrorCause(const_cast<uint8_t*>(buffer), GetLength());
SoftCloneInto(softClonedErrorCause);
return softClonedErrorCause;
}
const std::string ProtocolViolationErrorCause::ContentToString() const
{
MS_TRACE();
if (HasAdditionalInformation())
{
return "info::\"" +
std::string(
reinterpret_cast<const char*>(GetAdditionalInformation()),
GetAdditionalInformationLength()) +
"\"";
}
else
{
return "";
}
}
} }