bf6a93da4e
GlobalConfigurationFixture uses unit-tests.conf to determine default and module specific logging levels. Logging will gracefully default to INFO if unit-tests.conf is not found. See unit-tests.conf.sample for a sample configuration file. refs: #1375, #1267 Change-Id: Ib0c4eb4149748e6658f94ef1afa23ddd3072c0fa
84 lines
1.7 KiB
C++
84 lines
1.7 KiB
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/**
|
|
* Copyright (C) 2014 Named Data Networking Project
|
|
* See COPYING for copyright and distribution information.
|
|
*/
|
|
|
|
#include "segment-publisher.hpp"
|
|
|
|
#include "core/logger.hpp"
|
|
#include "face/face.hpp"
|
|
|
|
#include <ndn-cpp-dev/util/time.hpp>
|
|
|
|
namespace nfd {
|
|
|
|
NFD_LOG_INIT("SegmentPublisher");
|
|
|
|
SegmentPublisher::SegmentPublisher(shared_ptr<AppFace> face,
|
|
const Name& prefix)
|
|
: m_face(face)
|
|
, m_prefix(prefix)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
SegmentPublisher::~SegmentPublisher()
|
|
{
|
|
|
|
}
|
|
|
|
void
|
|
SegmentPublisher::publish()
|
|
{
|
|
Name segmentPrefix(m_prefix);
|
|
segmentPrefix.appendVersion();
|
|
|
|
static const size_t MAX_SEGMENT_SIZE = MAX_NDN_PACKET_SIZE >> 1;
|
|
|
|
ndn::EncodingBuffer buffer;
|
|
|
|
generate(buffer);
|
|
|
|
const uint8_t* rawBuffer = buffer.buf();
|
|
const uint8_t* segmentBegin = rawBuffer;
|
|
const uint8_t* end = rawBuffer + buffer.size();
|
|
|
|
uint64_t segmentNo = 0;
|
|
while (segmentBegin < end)
|
|
{
|
|
const uint8_t* segmentEnd = segmentBegin + MAX_SEGMENT_SIZE;
|
|
if (segmentEnd > end)
|
|
{
|
|
segmentEnd = end;
|
|
}
|
|
|
|
Name segmentName(segmentPrefix);
|
|
segmentName.appendSegment(segmentNo);
|
|
|
|
shared_ptr<Data> data(make_shared<Data>(segmentName));
|
|
data->setContent(segmentBegin, segmentEnd - segmentBegin);
|
|
|
|
segmentBegin = segmentEnd;
|
|
if (segmentBegin >= end)
|
|
{
|
|
NFD_LOG_DEBUG("final block is " << segmentNo);
|
|
data->setFinalBlockId(segmentName[-1]);
|
|
}
|
|
|
|
NFD_LOG_DEBUG("publishing segment #" << segmentNo);
|
|
publishSegment(data);
|
|
segmentNo++;
|
|
}
|
|
}
|
|
|
|
void
|
|
SegmentPublisher::publishSegment(shared_ptr<Data>& data)
|
|
{
|
|
m_face->sign(*data);
|
|
m_face->put(*data);
|
|
}
|
|
|
|
} // namespace nfd
|