/***
This file is part of snapcast
Copyright (C) 2014-2024 Johannes Pohl
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
***/
#pragma once
// local headers
#include "common/time_defs.hpp"
#include "message.hpp"
// standard headers
#include
#include
#include
#include
namespace msg
{
/**
* Piece of raw data
* Has information about "when" captured (timestamp)
*/
class WireChunk : public BaseMessage
{
public:
explicit WireChunk(uint32_t size = 0) : BaseMessage(message_type::kWireChunk), payloadSize(size), payload(nullptr)
{
if (size > 0)
payload = static_cast(malloc(size * sizeof(char)));
}
WireChunk(const WireChunk& wireChunk) : BaseMessage(message_type::kWireChunk), timestamp(wireChunk.timestamp), payloadSize(wireChunk.payloadSize)
{
payload = static_cast(malloc(payloadSize));
memcpy(payload, wireChunk.payload, payloadSize);
}
~WireChunk() override
{
free(payload);
}
void read(std::istream& stream) override
{
readVal(stream, timestamp.sec);
readVal(stream, timestamp.usec);
readVal(stream, &payload, payloadSize);
}
uint32_t getSize() const override
{
return sizeof(tv) + sizeof(int32_t) + payloadSize;
}
virtual chronos::time_point_clk start() const
{
return chronos::time_point_clk(chronos::sec(timestamp.sec) + chronos::usec(timestamp.usec));
}
tv timestamp;
uint32_t payloadSize;
char* payload;
template
std::pair getPayload() const
{
return std::make_pair(reinterpret_cast(payload), payloadSize / sizeof(T));
}
protected:
void doserialize(std::ostream& stream) const override
{
writeVal(stream, timestamp.sec);
writeVal(stream, timestamp.usec);
writeVal(stream, payload, payloadSize);
}
};
} // namespace msg