consumer.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2020, The University of Memphis
4  *
5  * This file is part of PSync.
6  * See AUTHORS.md for complete list of PSync authors and contributors.
7  *
8  * PSync is free software: you can redistribute it and/or modify it under the terms
9  * of the GNU Lesser General Public License as published by the Free Software Foundation,
10  * either version 3 of the License, or (at your option) any later version.
11  *
12  * PSync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14  * PURPOSE. See the GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License along with
17  * PSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18  **/
19 
20 #include "PSync/consumer.hpp"
21 #include "PSync/detail/state.hpp"
22 
23 #include <ndn-cxx/util/logger.hpp>
24 #include <ndn-cxx/security/validator-null.hpp>
25 
26 #include <boost/algorithm/string.hpp>
27 
28 namespace psync {
29 
31 
32 Consumer::Consumer(const ndn::Name& syncPrefix,
33  ndn::Face& face,
34  const ReceiveHelloCallback& onReceiveHelloData,
35  const UpdateCallback& onUpdate,
36  unsigned int count,
37  double false_positive = 0.001,
38  ndn::time::milliseconds helloInterestLifetime,
39  ndn::time::milliseconds syncInterestLifetime)
40  : m_face(face)
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)
53 {
54 }
55 
56 bool
57 Consumer::addSubscription(const ndn::Name& prefix)
58 {
59  auto it = m_prefixes.insert(std::pair<ndn::Name, uint64_t>(prefix, 0));
60  if (!it.second) {
61  return false;
62  }
63  m_subscriptionList.insert(prefix);
64  m_bloomFilter.insert(prefix.toUri());
65  return true;
66 }
67 
68 void
70 {
71  m_scheduler.cancelAllEvents();
72 
73  if (m_syncFetcher) {
74  m_syncFetcher->stop();
75  m_syncFetcher.reset();
76  }
77 
78  if (m_helloFetcher) {
79  m_helloFetcher->stop();
80  m_helloFetcher.reset();
81  }
82 }
83 
84 void
86 {
87  ndn::Interest helloInterest(m_helloInterestPrefix);
88  NDN_LOG_DEBUG("Send Hello Interest " << helloInterest);
89 
90  if (m_helloFetcher) {
91  m_helloFetcher->stop();
92  }
93 
94  using ndn::util::SegmentFetcher;
95  SegmentFetcher::Options options;
96  options.interestLifetime = m_helloInterestLifetime;
97  options.maxTimeout = m_helloInterestLifetime;
98  options.rttOptions.initialRto = m_syncInterestLifetime;
99 
100  m_helloFetcher = SegmentFetcher::start(m_face, helloInterest,
101  ndn::security::v2::getAcceptAllValidator(), options);
102 
103  m_helloFetcher->afterSegmentValidated.connect([this] (const ndn::Data& data) {
104  if (data.getFinalBlock()) {
105  m_helloDataName = data.getName().getPrefix(-2);
106  }
107  });
108 
109  m_helloFetcher->onComplete.connect([this] (const ndn::ConstBufferPtr& bufferPtr) {
110  onHelloData(bufferPtr);
111  });
112 
113  m_helloFetcher->onError.connect([this] (uint32_t errorCode, const std::string& msg) {
114  NDN_LOG_TRACE("Cannot fetch hello data, error: " << errorCode << " message: " << msg);
115  ndn::time::milliseconds after(m_rangeUniformRandom(m_rng));
116  NDN_LOG_TRACE("Scheduling after " << after);
117  m_scheduler.schedule(after, [this] { sendHelloInterest(); });
118  });
119 }
120 
121 void
122 Consumer::onHelloData(const ndn::ConstBufferPtr& bufferPtr)
123 {
124  NDN_LOG_DEBUG("On Hello Data");
125 
126  // Extract IBF from name which is the last element in hello data's name
127  m_iblt = m_helloDataName.getSubName(m_helloDataName.size()-1, 1);
128 
129  NDN_LOG_TRACE("m_iblt: " << std::hash<std::string>{}(m_iblt.toUri()));
130 
131  State state{ndn::Block{bufferPtr}};
132 
133  std::vector<MissingDataInfo> updates;
134  std::vector<ndn::Name> availableSubscriptions;
135 
136  NDN_LOG_DEBUG("Hello Data: " << state);
137 
138  for (const auto& content : state.getContent()) {
139  const ndn::Name& prefix = content.getPrefix(-1);
140  uint64_t seq = content.get(content.size()-1).toNumber();
141  // If consumer is subscribed then prefix must already be present in
142  // m_prefixes (see addSubscription). So [] operator is safe to use.
143  if (isSubscribed(prefix) && seq > m_prefixes[prefix]) {
144  // In case we are behind on this prefix and consumer is subscribed to it
145  updates.push_back(MissingDataInfo{prefix, m_prefixes[prefix] + 1, seq});
146  m_prefixes[prefix] = seq;
147  }
148  availableSubscriptions.push_back(prefix);
149  }
150 
151  m_onReceiveHelloData(availableSubscriptions);
152 
153  if (!updates.empty()) {
154  NDN_LOG_DEBUG("Updating application with missed updates");
155  m_onUpdate(updates);
156  }
157 }
158 
159 void
161 {
162  BOOST_ASSERT(!m_iblt.empty());
163 
164  ndn::Name syncInterestName(m_syncInterestPrefix);
165 
166  // Append subscription list
167  m_bloomFilter.appendToName(syncInterestName);
168 
169  // Append IBF received in hello/sync data
170  syncInterestName.append(m_iblt);
171 
172  ndn::Interest syncInterest(syncInterestName);
173 
174  NDN_LOG_DEBUG("sendSyncInterest, nonce: " << syncInterest.getNonce() <<
175  " hash: " << std::hash<std::string>{}(syncInterest.getName().toUri()));
176 
177  if (m_syncFetcher) {
178  m_syncFetcher->stop();
179  }
180 
181  using ndn::util::SegmentFetcher;
182  SegmentFetcher::Options options;
183  options.interestLifetime = m_syncInterestLifetime;
184  options.maxTimeout = m_syncInterestLifetime;;
185  options.rttOptions.initialRto = m_syncInterestLifetime;
186 
187  m_syncFetcher = SegmentFetcher::start(m_face, syncInterest,
188  ndn::security::v2::getAcceptAllValidator(), options);
189 
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();
194  }
195 
196  if (m_syncDataContentType == ndn::tlv::ContentType_Nack) {
197  NDN_LOG_DEBUG("Received application Nack from producer, sending hello again");
199  }
200  });
201 
202  m_syncFetcher->onComplete.connect([this] (const ndn::ConstBufferPtr& bufferPtr) {
203  if (m_syncDataContentType == ndn::tlv::ContentType_Nack) {
204  m_syncDataContentType = ndn::tlv::ContentType_Blob;
205  return;
206  }
207  NDN_LOG_TRACE("Segment fetcher got sync data");
208  onSyncData(bufferPtr);
209  });
210 
211  m_syncFetcher->onError.connect([this] (uint32_t errorCode, const std::string& msg) {
212  NDN_LOG_TRACE("Cannot fetch sync data, error: " << errorCode << " message: " << msg);
213  ndn::time::milliseconds after(m_rangeUniformRandom(m_rng));
214  NDN_LOG_TRACE("Scheduling after " << after);
215  m_scheduler.schedule(after, [this] { sendSyncInterest(); });
216  });
217 }
218 
219 void
220 Consumer::onSyncData(const ndn::ConstBufferPtr& bufferPtr)
221 {
222  // Extract IBF from sync data name which is the last component
223  m_iblt = m_syncDataName.getSubName(m_syncDataName.size() - 1, 1);
224 
225  State state{ndn::Block{bufferPtr}};
226 
227  std::vector<MissingDataInfo> updates;
228 
229  for (const auto& content : state.getContent()) {
230  NDN_LOG_DEBUG(content);
231  const ndn::Name& prefix = content.getPrefix(-1);
232  uint64_t seq = content.get(content.size() - 1).toNumber();
233  if (m_prefixes.find(prefix) == m_prefixes.end() || seq > m_prefixes[prefix]) {
234  // If this is just the next seq number then we had already informed the consumer about
235  // the previous sequence number and hence seq low and seq high should be equal to current seq
236  updates.push_back(MissingDataInfo{prefix, m_prefixes[prefix] + 1, seq});
237  m_prefixes[prefix] = seq;
238  }
239  // Else updates will be empty and consumer will not be notified.
240  }
241 
242  NDN_LOG_DEBUG("Sync Data: " << state);
243 
244  if (!updates.empty()) {
245  m_onUpdate(updates);
246  }
247 
249 }
250 
251 } // namespace psync
Consumer logic to subscribe to producer&#39;s data.
Definition: consumer.hpp:63
NDN_LOG_INIT(psync.Consumer)
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
Definition: consumer.cpp:32
bool addSubscription(const ndn::Name &prefix)
Add prefix to subscription list.
Definition: consumer.cpp:57
void appendToName(ndn::Name &name) const
Append our bloom filter to the given name.
bool isSubscribed(const ndn::Name &prefix) const
Definition: consumer.hpp:119
void sendSyncInterest()
send sync interest /<sync-prefix>/sync/<BF>/<producers-IBF>
Definition: consumer.cpp:160
void stop()
Stop segment fetcher to stop the sync and free resources.
Definition: consumer.cpp:69
void insert(const std::string &key)
void sendHelloInterest()
send hello interest /<sync-prefix>/hello/
Definition: consumer.cpp:85
std::function< void(const std::vector< MissingDataInfo > &)> UpdateCallback
Definition: consumer.hpp:41
std::function< void(const std::vector< ndn::Name > &)> ReceiveHelloCallback
Definition: consumer.hpp:40