23 #include <ndn-cxx/util/logger.hpp> 24 #include <ndn-cxx/security/validator-null.hpp> 26 #include <boost/algorithm/string.hpp> 37 double false_positive = 0.001,
38 ndn::time::milliseconds helloInterestLifetime,
39 ndn::time::milliseconds syncInterestLifetime)
41 , m_scheduler(m_face.getIoService())
42 , m_syncPrefix(syncPrefix)
43 , m_helloInterestPrefix(ndn::Name(m_syncPrefix).append(
"hello"))
44 , m_syncInterestPrefix(ndn::Name(m_syncPrefix).append(
"sync"))
45 , m_syncDataContentType(ndn::tlv::ContentType_Blob)
46 , m_onReceiveHelloData(onReceiveHelloData)
47 , m_onUpdate(onUpdate)
48 , m_bloomFilter(count, false_positive)
49 , m_helloInterestLifetime(helloInterestLifetime)
50 , m_syncInterestLifetime(syncInterestLifetime)
51 , m_rng(ndn::random::getRandomNumberEngine())
52 , m_rangeUniformRandom(100, 500)
59 auto it = m_prefixes.insert(std::pair<ndn::Name, uint64_t>(prefix, 0));
63 m_subscriptionList.insert(prefix);
64 m_bloomFilter.
insert(prefix.toUri());
72 m_syncFetcher->stop();
73 m_syncFetcher.reset();
77 m_helloFetcher->stop();
78 m_helloFetcher.reset();
85 ndn::Interest helloInterest(m_helloInterestPrefix);
87 NDN_LOG_DEBUG(
"Send Hello Interest " << helloInterest);
90 m_helloFetcher->stop();
93 ndn::util::SegmentFetcher::Options options;
94 options.interestLifetime = m_helloInterestLifetime;
95 options.maxTimeout = m_helloInterestLifetime;
97 m_helloFetcher = ndn::util::SegmentFetcher::start(m_face,
99 ndn::security::v2::getAcceptAllValidator(),
102 m_helloFetcher->afterSegmentValidated.connect([
this] (
const ndn::Data& data) {
103 if (data.getFinalBlock()) {
104 m_helloDataName = data.getName().getPrefix(-2);
108 m_helloFetcher->onComplete.connect([
this] (ndn::ConstBufferPtr bufferPtr) {
109 onHelloData(bufferPtr);
112 m_helloFetcher->onError.connect([
this] (uint32_t errorCode,
const std::string& msg) {
113 NDN_LOG_TRACE(
"Cannot fetch hello data, error: " <<
114 errorCode <<
" message: " << msg);
115 ndn::time::milliseconds after(m_rangeUniformRandom(m_rng));
116 NDN_LOG_TRACE(
"Scheduling after " << after);
122 Consumer::onHelloData(
const ndn::ConstBufferPtr& bufferPtr)
124 NDN_LOG_DEBUG(
"On Hello Data");
127 m_iblt = m_helloDataName.getSubName(m_helloDataName.size()-1, 1);
129 NDN_LOG_TRACE(
"m_iblt: " << std::hash<std::string>{}(m_iblt.toUri()));
131 State state(ndn::Block(std::move(bufferPtr)));
133 std::vector<MissingDataInfo> updates;
134 std::vector<ndn::Name> availableSubscriptions;
136 NDN_LOG_DEBUG(
"Hello Data: " << state);
138 for (
const auto& content : state.
getContent()) {
139 ndn::Name prefix = content.getPrefix(-1);
140 uint64_t seq = content.get(content.size()-1).toNumber();
145 updates.push_back(
MissingDataInfo{prefix, m_prefixes[prefix] + 1, seq});
146 m_prefixes[prefix] = seq;
148 availableSubscriptions.push_back(prefix);
151 m_onReceiveHelloData(availableSubscriptions);
153 if (!updates.empty()) {
154 NDN_LOG_DEBUG(
"Updating application with missed updates");
162 BOOST_ASSERT(!m_iblt.empty());
164 ndn::Name syncInterestName(m_syncInterestPrefix);
170 syncInterestName.append(m_iblt);
172 ndn::Interest syncInterest(syncInterestName);
174 NDN_LOG_DEBUG(
"sendSyncInterest, nonce: " << syncInterest.getNonce() <<
175 " hash: " << std::hash<std::string>{}(syncInterest.getName().toUri()));
177 ndn::util::SegmentFetcher::Options options;
178 options.interestLifetime = m_syncInterestLifetime;
179 options.maxTimeout = m_syncInterestLifetime;;
182 m_syncFetcher->stop();
185 m_syncFetcher = ndn::util::SegmentFetcher::start(m_face,
187 ndn::security::v2::getAcceptAllValidator(),
190 m_syncFetcher->afterSegmentValidated.connect([
this] (
const ndn::Data& data) {
191 if (data.getFinalBlock()) {
192 m_syncDataName = data.getName().getPrefix(-2);
193 m_syncDataContentType = data.getContentType();
196 if (m_syncDataContentType == ndn::tlv::ContentType_Nack)
198 NDN_LOG_DEBUG(
"Received application" 199 <<
" Nack from producer," 200 <<
" sending hello again");
205 m_syncFetcher->onComplete.connect([
this] (ndn::ConstBufferPtr bufferPtr) {
206 if (m_syncDataContentType == ndn::tlv::ContentType_Nack) {
207 m_syncDataContentType = ndn::tlv::ContentType_Blob;
210 NDN_LOG_TRACE(
"Segment fetcher got sync data");
211 onSyncData(bufferPtr);
214 m_syncFetcher->onError.connect([
this] (uint32_t errorCode,
const std::string& msg) {
215 NDN_LOG_TRACE(
"Cannot fetch sync data, error: " 216 << errorCode <<
" message: " << msg);
217 ndn::time::milliseconds after(m_rangeUniformRandom(m_rng));
218 NDN_LOG_TRACE(
"Scheduling after " << after);
224 Consumer::onSyncData(
const ndn::ConstBufferPtr& bufferPtr)
227 m_iblt = m_syncDataName.getSubName(m_syncDataName.size()-1, 1);
229 State state(ndn::Block(std::move(bufferPtr)));
231 std::vector <MissingDataInfo> updates;
233 for (
const auto& content : state.
getContent()) {
234 NDN_LOG_DEBUG(content);
235 ndn::Name prefix = content.getPrefix(-1);
236 uint64_t seq = content.get(content.size()-1).toNumber();
237 if (m_prefixes.find(prefix) == m_prefixes.end() || seq > m_prefixes[prefix]) {
240 updates.push_back(
MissingDataInfo{prefix, m_prefixes[prefix] + 1, seq});
241 m_prefixes[prefix] = seq;
246 NDN_LOG_DEBUG(
"Sync Data: " << state);
248 if (!updates.empty()) {
Consumer logic to subscribe to producer's data.
std::vector< ndn::Name > getContent() const
void appendToName(ndn::Name &name) const
Append our bloom filter to the given name.
Consumer(const ndn::Name &syncPrefix, ndn::Face &face, const ReceiveHelloCallback &onReceiveHelloData, const UpdateCallback &onUpdate, unsigned int count, double false_positive, ndn::time::milliseconds helloInterestLifetime=HELLO_INTEREST_LIFETIME, ndn::time::milliseconds syncInterestLifetime=SYNC_INTEREST_LIFETIME)
constructor
bool addSubscription(const ndn::Name &prefix)
Add prefix to subscription list.
void sendSyncInterest()
send sync interest /<sync-prefix>/sync/<BF>/<producers-IBF>
void stop()
Stop segment fetcher to stop the sync and free resources.
void insert(const std::string &key)
void sendHelloInterest()
send hello interest /<sync-prefix>/hello/
std::function< void(const std::vector< MissingDataInfo > &)> UpdateCallback
bool isSubscribed(const ndn::Name &prefix) const
std::function< void(const std::vector< ndn::Name > &)> ReceiveHelloCallback