Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2012-2014 University of California, Los Angeles |
| 4 | * |
| 5 | * This file is part of ChronoSync, synchronization library for distributed realtime |
| 6 | * applications for NDN. |
| 7 | * |
| 8 | * ChronoSync is free software: you can redistribute it and/or modify it under the terms |
| 9 | * of the GNU General Public License as published by the Free Software Foundation, either |
| 10 | * version 3 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * ChronoSync 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 General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * ChronoSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * @author Zhenkai Zhu <http://irl.cs.ucla.edu/~zhenkai/> |
| 20 | * @author Chaoyi Bian <bcy@pku.edu.cn> |
| 21 | * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html> |
| 22 | * @author Yingdi Yu <yingdi@cs.ucla.edu> |
| 23 | */ |
| 24 | |
| 25 | #include "socket.hpp" |
| 26 | #include "logger.hpp" |
| 27 | |
| 28 | INIT_LOGGER("Socket"); |
| 29 | |
| 30 | |
| 31 | namespace chronosync { |
| 32 | |
Yingdi Yu | cd33902 | 2014-11-05 17:51:19 -0800 | [diff] [blame] | 33 | const ndn::Name Socket::DEFAULT_NAME; |
Qiuhan Ding | fb8c9e0 | 2015-01-30 14:04:55 -0800 | [diff] [blame] | 34 | const ndn::Name Socket::DEFAULT_PREFIX; |
Yingdi Yu | cd33902 | 2014-11-05 17:51:19 -0800 | [diff] [blame] | 35 | const ndn::shared_ptr<ndn::Validator> Socket::DEFAULT_VALIDATOR; |
| 36 | |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 37 | Socket::Socket(const Name& syncPrefix, |
| 38 | const Name& userPrefix, |
| 39 | ndn::Face& face, |
Yingdi Yu | cd33902 | 2014-11-05 17:51:19 -0800 | [diff] [blame] | 40 | const UpdateCallback& updateCallback, |
| 41 | const Name& signingId, |
| 42 | ndn::shared_ptr<ndn::Validator> validator) |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 43 | : m_userPrefix(userPrefix) |
| 44 | , m_face(face) |
Yingdi Yu | cd33902 | 2014-11-05 17:51:19 -0800 | [diff] [blame] | 45 | , m_logic(face, syncPrefix, userPrefix, updateCallback) |
| 46 | , m_signingId(signingId) |
| 47 | , m_validator(validator) |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 48 | { |
Qiuhan Ding | fb8c9e0 | 2015-01-30 14:04:55 -0800 | [diff] [blame] | 49 | if (m_userPrefix != DEFAULT_NAME) |
| 50 | m_registeredPrefixList[m_userPrefix] = |
| 51 | m_face.setInterestFilter(m_userPrefix, |
| 52 | bind(&Socket::onInterest, this, _1, _2), |
| 53 | [] (const Name& prefix, const std::string& msg) {}); |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Qiuhan Ding | 03b9de3 | 2015-01-30 14:03:12 -0800 | [diff] [blame^] | 56 | Socket::~Socket() |
| 57 | { |
| 58 | for(const auto& itr : m_registeredPrefixList) { |
| 59 | if (static_cast<bool>(itr.second)) |
| 60 | m_face.unsetInterestFilter(itr.second); |
| 61 | } |
| 62 | m_ims.erase("/"); |
| 63 | } |
| 64 | |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 65 | void |
Qiuhan Ding | e246b62 | 2014-12-03 21:57:48 -0800 | [diff] [blame] | 66 | Socket::addSyncNode(const Name& prefix, const Name& signingId) |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 67 | { |
Qiuhan Ding | fb8c9e0 | 2015-01-30 14:04:55 -0800 | [diff] [blame] | 68 | if (prefix == DEFAULT_NAME) |
| 69 | return; |
| 70 | |
| 71 | auto itr = m_registeredPrefixList.find(prefix); |
| 72 | if (itr != m_registeredPrefixList.end()) |
| 73 | return; |
| 74 | |
| 75 | if (m_userPrefix == DEFAULT_NAME) |
| 76 | m_userPrefix = prefix; |
Qiuhan Ding | e246b62 | 2014-12-03 21:57:48 -0800 | [diff] [blame] | 77 | m_logic.addUserNode(prefix, signingId); |
Qiuhan Ding | fb8c9e0 | 2015-01-30 14:04:55 -0800 | [diff] [blame] | 78 | m_registeredPrefixList[prefix] = |
| 79 | m_face.setInterestFilter(prefix, |
| 80 | bind(&Socket::onInterest, this, _1, _2), |
| 81 | [] (const Name& prefix, const std::string& msg) {}); |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | void |
Qiuhan Ding | 03b9de3 | 2015-01-30 14:03:12 -0800 | [diff] [blame^] | 85 | Socket::removeSyncNode(const Name& prefix) |
| 86 | { |
| 87 | if (prefix == DEFAULT_NAME) |
| 88 | return; |
| 89 | |
| 90 | auto itr = m_registeredPrefixList.find(prefix); |
| 91 | if (itr != m_registeredPrefixList.end()) { |
| 92 | if (static_cast<bool>(itr->second)) |
| 93 | m_face.unsetInterestFilter(itr->second); |
| 94 | m_registeredPrefixList.erase(itr); |
| 95 | } |
| 96 | |
| 97 | m_ims.erase(prefix); |
| 98 | m_logic.removeUserNode(prefix); |
| 99 | |
| 100 | } |
| 101 | |
| 102 | void |
Qiuhan Ding | e246b62 | 2014-12-03 21:57:48 -0800 | [diff] [blame] | 103 | Socket::publishData(const uint8_t* buf, size_t len, const ndn::time::milliseconds& freshness, |
| 104 | const Name& prefix) |
| 105 | { |
| 106 | publishData(ndn::dataBlock(ndn::tlv::Content, buf, len), freshness, prefix); |
| 107 | } |
| 108 | |
| 109 | void |
| 110 | Socket::publishData(const Block& content, const ndn::time::milliseconds& freshness, |
| 111 | const Name& prefix) |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 112 | { |
| 113 | shared_ptr<Data> data = make_shared<Data>(); |
| 114 | data->setContent(content); |
| 115 | data->setFreshnessPeriod(freshness); |
| 116 | |
Qiuhan Ding | e246b62 | 2014-12-03 21:57:48 -0800 | [diff] [blame] | 117 | SeqNo newSeq = m_logic.getSeqNo(prefix) + 1; |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 118 | Name dataName; |
Qiuhan Ding | e246b62 | 2014-12-03 21:57:48 -0800 | [diff] [blame] | 119 | dataName.append(m_logic.getSessionName(prefix)).appendNumber(newSeq); |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 120 | data->setName(dataName); |
| 121 | |
Yingdi Yu | cd33902 | 2014-11-05 17:51:19 -0800 | [diff] [blame] | 122 | if (m_signingId.empty()) |
| 123 | m_keyChain.sign(*data); |
| 124 | else |
| 125 | m_keyChain.signByIdentity(*data, m_signingId); |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 126 | |
Qiuhan Ding | fb8c9e0 | 2015-01-30 14:04:55 -0800 | [diff] [blame] | 127 | m_ims.insert(*data); |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 128 | |
Qiuhan Ding | e246b62 | 2014-12-03 21:57:48 -0800 | [diff] [blame] | 129 | m_logic.updateSeqNo(newSeq, prefix); |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | void |
| 133 | Socket::fetchData(const Name& sessionName, const SeqNo& seqNo, |
| 134 | const ndn::OnDataValidated& dataCallback, |
| 135 | int nRetries) |
| 136 | { |
| 137 | Name interestName; |
| 138 | interestName.append(sessionName).appendNumber(seqNo); |
| 139 | |
| 140 | Interest interest(interestName); |
| 141 | interest.setMustBeFresh(true); |
| 142 | |
| 143 | ndn::OnDataValidationFailed failureCallback = |
| 144 | bind(&Socket::onDataValidationFailed, this, _1, _2); |
| 145 | |
| 146 | m_face.expressInterest(interest, |
| 147 | bind(&Socket::onData, this, _1, _2, dataCallback, failureCallback), |
| 148 | bind(&Socket::onDataTimeout, this, _1, nRetries, |
| 149 | dataCallback, failureCallback)); |
| 150 | } |
| 151 | |
| 152 | void |
| 153 | Socket::fetchData(const Name& sessionName, const SeqNo& seqNo, |
| 154 | const ndn::OnDataValidated& dataCallback, |
| 155 | const ndn::OnDataValidationFailed& failureCallback, |
| 156 | const ndn::OnTimeout& onTimeout, |
| 157 | int nRetries) |
| 158 | { |
| 159 | _LOG_DEBUG(">> Socket::fetchData"); |
| 160 | Name interestName; |
| 161 | interestName.append(sessionName).appendNumber(seqNo); |
| 162 | |
| 163 | Interest interest(interestName); |
| 164 | interest.setMustBeFresh(true); |
| 165 | |
| 166 | m_face.expressInterest(interest, |
| 167 | bind(&Socket::onData, this, _1, _2, dataCallback, failureCallback), |
| 168 | onTimeout); |
| 169 | |
| 170 | _LOG_DEBUG("<< Socket::fetchData"); |
| 171 | } |
| 172 | |
| 173 | void |
Qiuhan Ding | fb8c9e0 | 2015-01-30 14:04:55 -0800 | [diff] [blame] | 174 | Socket::onInterest(const Name& prefix, const Interest& interest) |
| 175 | { |
| 176 | shared_ptr<const Data>data = m_ims.find(interest); |
| 177 | if (static_cast<bool>(data)) { |
| 178 | m_face.put(*data); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | void |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 183 | Socket::onData(const Interest& interest, Data& data, |
| 184 | const ndn::OnDataValidated& onValidated, |
| 185 | const ndn::OnDataValidationFailed& onFailed) |
| 186 | { |
| 187 | _LOG_DEBUG("Socket::onData"); |
Yingdi Yu | cd33902 | 2014-11-05 17:51:19 -0800 | [diff] [blame] | 188 | |
| 189 | if (static_cast<bool>(m_validator)) |
| 190 | m_validator->validate(data, onValidated, onFailed); |
| 191 | else |
| 192 | onValidated(data.shared_from_this()); |
Yingdi Yu | 31ad44c | 2014-08-28 14:55:42 -0700 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | void |
| 196 | Socket::onDataTimeout(const Interest& interest, int nRetries, |
| 197 | const ndn::OnDataValidated& onValidated, |
| 198 | const ndn::OnDataValidationFailed& onFailed) |
| 199 | { |
| 200 | _LOG_DEBUG("Socket::onDataTimeout"); |
| 201 | if (nRetries <= 0) |
| 202 | return; |
| 203 | |
| 204 | m_face.expressInterest(interest, |
| 205 | bind(&Socket::onData, this, _1, _2, onValidated, onFailed), |
| 206 | bind(&Socket::onDataTimeout, this, _1, nRetries - 1, |
| 207 | onValidated, onFailed)); |
| 208 | } |
| 209 | |
| 210 | void |
| 211 | Socket::onDataValidationFailed(const shared_ptr<const Data>& data, |
| 212 | const std::string& failureInfo) |
| 213 | { |
| 214 | } |
| 215 | |
| 216 | ndn::ConstBufferPtr |
| 217 | Socket::getRootDigest() const |
| 218 | { |
| 219 | return m_logic.getRootDigest(); |
| 220 | } |
| 221 | |
| 222 | } // namespace chronosync |