Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2011 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: |
| 19 | */ |
| 20 | |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 21 | #include "ccnx-encoding-helper.h" |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 22 | |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 23 | #include "ns3/ccnx-name-components.h" |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 24 | #include "ns3/ccnx-interest-header.h" |
| 25 | #include "ns3/ccnx-content-object-header.h" |
| 26 | |
| 27 | #include <sstream> |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 28 | #include <boost/foreach.hpp> |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 29 | |
| 30 | namespace ns3 { |
| 31 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 32 | size_t |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 33 | CcnxEncodingHelper::Serialize (Buffer::Iterator start, const CcnxInterestHeader &interest) |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 34 | { |
| 35 | size_t written = 0; |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 36 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_Interest, CcnbParser::CCN_DTAG); // <Interest> |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 37 | |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 38 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_Name, CcnbParser::CCN_DTAG); // <Name> |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 39 | written += AppendNameComponents (start, interest.GetName()); // <Component>...</Component>... |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 40 | written += AppendCloser (start); // </Name> |
| 41 | |
| 42 | if (interest.GetMinSuffixComponents() >= 0) |
| 43 | { |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 44 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_MinSuffixComponents, CcnbParser::CCN_DTAG); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 45 | written += AppendNumber (start, interest.GetMinSuffixComponents ()); |
| 46 | written += AppendCloser (start); |
| 47 | } |
| 48 | if (interest.GetMaxSuffixComponents() >= 0) |
| 49 | { |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 50 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_MaxSuffixComponents, CcnbParser::CCN_DTAG); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 51 | written += AppendNumber (start, interest.GetMaxSuffixComponents ()); |
| 52 | written += AppendCloser (start); |
| 53 | } |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 54 | if (interest.IsEnabledExclude() && interest.GetExclude().size() > 0) |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 55 | { |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 56 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_Exclude, CcnbParser::CCN_DTAG); // <Exclude> |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 57 | written += AppendNameComponents (start, interest.GetExclude()); // <Component>...</Component>... |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 58 | written += AppendCloser (start); // </Exclude> |
| 59 | } |
| 60 | if (interest.IsEnabledChildSelector()) |
| 61 | { |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 62 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_ChildSelector, CcnbParser::CCN_DTAG); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 63 | written += AppendNumber (start, 1); |
| 64 | written += AppendCloser (start); |
| 65 | } |
| 66 | if (interest.IsEnabledAnswerOriginKind()) |
| 67 | { |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 68 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_AnswerOriginKind, CcnbParser::CCN_DTAG); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 69 | written += AppendNumber (start, 1); |
| 70 | written += AppendCloser (start); |
| 71 | } |
| 72 | if (interest.GetScope() >= 0) |
| 73 | { |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 74 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_Scope, CcnbParser::CCN_DTAG); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 75 | written += AppendNumber (start, interest.GetScope ()); |
| 76 | written += AppendCloser (start); |
| 77 | } |
| 78 | if (!interest.GetInterestLifetime().IsZero()) |
| 79 | { |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 80 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_InterestLifetime, CcnbParser::CCN_DTAG); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 81 | written += AppendTimestampBlob (start, interest.GetInterestLifetime()); |
| 82 | written += AppendCloser (start); |
| 83 | } |
| 84 | if (interest.GetNonce()>0) |
| 85 | { |
| 86 | uint32_t nonce = interest.GetNonce(); |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 87 | written += AppendTaggedBlob (start, CcnbParser::CCN_DTAG_Nonce, |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 88 | reinterpret_cast<const uint8_t*>(&nonce), |
| 89 | sizeof(nonce)); |
| 90 | } |
Ilya Moiseenko | d1f1951 | 2011-11-16 14:31:19 -0800 | [diff] [blame^] | 91 | |
| 92 | if (interest.IsNack ()) |
| 93 | { |
| 94 | written += AppendBlockHeader (start, CcnbParser::NDN_DTAG_Nack, CcnbParser::CCN_DTAG); |
| 95 | written += AppendNumber (start, 1); |
| 96 | written += AppendCloser (start); |
| 97 | } |
| 98 | if (interest.IsCongested ()) |
| 99 | { |
| 100 | written += AppendBlockHeader (start, CcnbParser::NDN_DTAG_Congested, CcnbParser::CCN_DTAG); |
| 101 | written += AppendNumber (start, 1); |
| 102 | written += AppendCloser (start); |
| 103 | } |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 104 | written += AppendCloser (start); // </Interest> |
| 105 | |
| 106 | return written; |
| 107 | } |
| 108 | |
| 109 | size_t |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 110 | CcnxEncodingHelper::GetSerializedSize (const CcnxInterestHeader &interest) |
| 111 | { |
| 112 | size_t written = 0; |
| 113 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_Interest); // <Interest> |
| 114 | |
| 115 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_Name); // <Name> |
| 116 | written += EstimateNameComponents (interest.GetName()); // <Component>...</Component>... |
| 117 | written += 1; // </Name> |
| 118 | |
| 119 | if (interest.GetMinSuffixComponents() >= 0) |
| 120 | { |
| 121 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_MinSuffixComponents); |
| 122 | written += EstimateNumber (interest.GetMinSuffixComponents ()); |
| 123 | written += 1; |
| 124 | } |
| 125 | if (interest.GetMaxSuffixComponents() >= 0) |
| 126 | { |
| 127 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_MaxSuffixComponents); |
| 128 | written += EstimateNumber (interest.GetMaxSuffixComponents ()); |
| 129 | written += 1; |
| 130 | } |
| 131 | if (interest.IsEnabledExclude() && interest.GetExclude().size() > 0) |
| 132 | { |
| 133 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_Exclude); |
| 134 | written += EstimateNameComponents (interest.GetExclude()); // <Component>...</Component>... |
| 135 | written += 1; // </Exclude> |
| 136 | } |
| 137 | if (interest.IsEnabledChildSelector()) |
| 138 | { |
| 139 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_ChildSelector); |
| 140 | written += EstimateNumber (1); |
| 141 | written += 1; |
| 142 | } |
| 143 | if (interest.IsEnabledAnswerOriginKind()) |
| 144 | { |
| 145 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_AnswerOriginKind); |
| 146 | written += EstimateNumber (1); |
| 147 | written += 1; |
| 148 | } |
| 149 | if (interest.GetScope() >= 0) |
| 150 | { |
| 151 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_Scope); |
| 152 | written += EstimateNumber (interest.GetScope ()); |
| 153 | written += 1; |
| 154 | } |
| 155 | if (!interest.GetInterestLifetime().IsZero()) |
| 156 | { |
| 157 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_InterestLifetime); |
| 158 | written += EstimateTimestampBlob (interest.GetInterestLifetime()); |
| 159 | written += 1; |
| 160 | } |
| 161 | if (interest.GetNonce()>0) |
| 162 | { |
| 163 | written += EstimateTaggedBlob (CcnbParser::CCN_DTAG_Nonce, sizeof(uint32_t)); |
| 164 | } |
Ilya Moiseenko | aa17c8e | 2011-10-28 13:04:30 -0700 | [diff] [blame] | 165 | if (interest.IsNack () ) |
| 166 | { |
| 167 | written += EstimateBlockHeader (CcnbParser::NDN_DTAG_Nack); |
| 168 | written += EstimateNumber (1); |
| 169 | written += 1; |
| 170 | } |
| 171 | if (interest.IsCongested () ) |
| 172 | { |
| 173 | written += EstimateBlockHeader (CcnbParser::NDN_DTAG_Congested); |
| 174 | written += EstimateNumber (1); |
| 175 | written += 1; |
| 176 | } |
| 177 | |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 178 | written += 1; // </Interest> |
| 179 | |
| 180 | return written; |
| 181 | } |
| 182 | |
| 183 | size_t |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 184 | CcnxEncodingHelper::Serialize (Buffer::Iterator start, const CcnxContentObjectHeader &contentObject) |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 185 | { |
| 186 | size_t written = 0; |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 187 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_ContentObject, CcnbParser::CCN_DTAG); // <ContentObject> |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 188 | |
| 189 | // fake signature |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 190 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_Signature, CcnbParser::CCN_DTAG); // <Signature> |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 191 | // Signature ::= DigestAlgorithm? |
| 192 | // Witness? |
| 193 | // SignatureBits |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 194 | written += AppendTaggedBlob (start, CcnbParser::CCN_DTAG_SignatureBits, 0, 0); // <SignatureBits /> |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 195 | written += AppendCloser (start); // </Signature> |
| 196 | |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 197 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_Name, CcnbParser::CCN_DTAG); // <Name> |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 198 | written += AppendNameComponents (start, contentObject.GetName()); // <Component>...</Component>... |
| 199 | written += AppendCloser (start); // </Name> |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 200 | |
| 201 | // fake signature |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 202 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_SignedInfo, CcnbParser::CCN_DTAG); // <SignedInfo> |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 203 | // SignedInfo ::= PublisherPublicKeyDigest |
| 204 | // Timestamp |
| 205 | // Type? |
| 206 | // FreshnessSeconds? |
| 207 | // FinalBlockID? |
| 208 | // KeyLocator? |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 209 | written += AppendTaggedBlob (start, CcnbParser::CCN_DTAG_PublisherPublicKeyDigest, 0, 0); // <PublisherPublicKeyDigest /> |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 210 | written += AppendCloser (start); // </SignedInfo> |
| 211 | |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 212 | written += AppendBlockHeader (start, CcnbParser::CCN_DTAG_Content, CcnbParser::CCN_DTAG); // <Content> |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 213 | |
Alexander Afanasyev | e91ab75 | 2011-08-31 19:13:40 -0700 | [diff] [blame] | 214 | // there are no closing tags !!! |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 215 | return written; |
| 216 | } |
| 217 | |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 218 | size_t |
| 219 | CcnxEncodingHelper::GetSerializedSize (const CcnxContentObjectHeader &contentObject) |
| 220 | { |
| 221 | size_t written = 0; |
| 222 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_ContentObject); // <ContentObject> |
| 223 | |
| 224 | // fake signature |
| 225 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_Signature); // <Signature> |
| 226 | // Signature ::= DigestAlgorithm? |
| 227 | // Witness? |
| 228 | // SignatureBits |
| 229 | written += EstimateTaggedBlob (CcnbParser::CCN_DTAG_SignatureBits, 0); // <SignatureBits /> |
| 230 | written += 1; // </Signature> |
| 231 | |
| 232 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_Name); // <Name> |
| 233 | written += EstimateNameComponents (contentObject.GetName()); // <Component>...</Component>... |
| 234 | written += 1; // </Name> |
| 235 | |
| 236 | // fake signature |
| 237 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_SignedInfo); // <SignedInfo> |
| 238 | // SignedInfo ::= PublisherPublicKeyDigest |
| 239 | // Timestamp |
| 240 | // Type? |
| 241 | // FreshnessSeconds? |
| 242 | // FinalBlockID? |
| 243 | // KeyLocator? |
| 244 | written += EstimateTaggedBlob (CcnbParser::CCN_DTAG_PublisherPublicKeyDigest, 0); // <PublisherPublicKeyDigest /> |
| 245 | written += 1; // </SignedInfo> |
| 246 | |
| 247 | written += EstimateBlockHeader (CcnbParser::CCN_DTAG_Content); // <Content> |
| 248 | |
Alexander Afanasyev | e91ab75 | 2011-08-31 19:13:40 -0700 | [diff] [blame] | 249 | // there are no closing tags !!! |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 250 | return written; |
| 251 | } |
| 252 | |
| 253 | ////////////////////////////////////////////////////////////////////// |
| 254 | ////////////////////////////////////////////////////////////////////// |
| 255 | ////////////////////////////////////////////////////////////////////// |
| 256 | |
| 257 | #define CCN_TT_BITS 3 |
| 258 | #define CCN_TT_MASK ((1 << CCN_TT_BITS) - 1) |
| 259 | #define CCN_MAX_TINY ((1 << (7-CCN_TT_BITS)) - 1) |
| 260 | #define CCN_TT_HBIT ((unsigned char)(1 << 7)) |
| 261 | |
| 262 | size_t |
| 263 | CcnxEncodingHelper::AppendBlockHeader (Buffer::Iterator &start, size_t val, CcnbParser::ccn_tt tt) |
| 264 | { |
| 265 | unsigned char buf[1+8*((sizeof(val)+6)/7)]; |
| 266 | unsigned char *p = &(buf[sizeof(buf)-1]); |
| 267 | size_t n = 1; |
| 268 | p[0] = (CCN_TT_HBIT & ~CcnbParser::CCN_CLOSE) | |
| 269 | ((val & CCN_MAX_TINY) << CCN_TT_BITS) | |
| 270 | (CCN_TT_MASK & tt); |
| 271 | val >>= (7-CCN_TT_BITS); |
| 272 | while (val != 0) { |
| 273 | (--p)[0] = (((unsigned char)val) & ~CCN_TT_HBIT) | CcnbParser::CCN_CLOSE; |
| 274 | n++; |
| 275 | val >>= 7; |
| 276 | } |
| 277 | start.Write (p,n); |
| 278 | return n; |
| 279 | } |
| 280 | |
| 281 | size_t |
| 282 | CcnxEncodingHelper::EstimateBlockHeader (size_t value) |
| 283 | { |
| 284 | value >>= (7-CCN_TT_BITS); |
| 285 | size_t n = 1; |
| 286 | while (value>0) |
| 287 | { |
| 288 | value >>= 7; |
| 289 | n++; |
| 290 | } |
| 291 | return n; |
| 292 | } |
| 293 | |
| 294 | size_t |
| 295 | CcnxEncodingHelper::AppendNumber (Buffer::Iterator &start, uint32_t number) |
| 296 | { |
| 297 | std::ostringstream os; |
| 298 | os << number; |
| 299 | |
| 300 | size_t written = 0; |
| 301 | written += AppendBlockHeader (start, os.str().size(), CcnbParser::CCN_UDATA); |
| 302 | written += os.str().size(); |
| 303 | start.Write (reinterpret_cast<const unsigned char*>(os.str().c_str()), os.str().size()); |
| 304 | |
| 305 | return written; |
| 306 | } |
| 307 | |
| 308 | size_t |
| 309 | CcnxEncodingHelper::EstimateNumber (uint32_t number) |
| 310 | { |
| 311 | std::ostringstream os; |
| 312 | os << number; |
| 313 | return EstimateBlockHeader (os.str ().size ()) + os.str ().size (); |
| 314 | } |
| 315 | |
| 316 | size_t |
| 317 | CcnxEncodingHelper::AppendCloser (Buffer::Iterator &start) |
| 318 | { |
| 319 | start.WriteU8 (CcnbParser::CCN_CLOSE); |
| 320 | return 1; |
| 321 | } |
| 322 | |
| 323 | size_t |
| 324 | CcnxEncodingHelper::AppendNameComponents (Buffer::Iterator &start, const CcnxNameComponents &name) |
| 325 | { |
| 326 | size_t written = 0; |
| 327 | BOOST_FOREACH (const std::string &component, name.GetComponents()) |
| 328 | { |
| 329 | written += AppendTaggedBlob (start, CcnbParser::CCN_DTAG_Component, |
| 330 | reinterpret_cast<const uint8_t*>(component.c_str()), component.size()); |
| 331 | } |
| 332 | return written; |
| 333 | } |
| 334 | |
| 335 | size_t |
| 336 | CcnxEncodingHelper::EstimateNameComponents (const CcnxNameComponents &name) |
| 337 | { |
| 338 | size_t written = 0; |
| 339 | BOOST_FOREACH (const std::string &component, name.GetComponents()) |
| 340 | { |
| 341 | written += EstimateTaggedBlob (CcnbParser::CCN_DTAG_Component, component.size()); |
| 342 | } |
| 343 | return written; |
| 344 | } |
| 345 | |
| 346 | size_t |
| 347 | CcnxEncodingHelper::AppendTimestampBlob (Buffer::Iterator &start, const Time &time) |
| 348 | { |
| 349 | // the original function implements Markers... thought not sure what are these markers for... |
| 350 | |
| 351 | // Determine miminal number of bytes required to store the timestamp |
| 352 | int required_bytes = 2; // 12 bits for fractions of a second, 4 bits left for seconds. Sometimes it is enough |
| 353 | intmax_t ts = time.ToInteger (Time::S) >> 4; |
| 354 | for (; required_bytes < 7 && ts != 0; ts >>= 8) // not more than 6 bytes? |
| 355 | required_bytes++; |
| 356 | |
| 357 | size_t len = AppendBlockHeader(start, required_bytes, CcnbParser::CCN_BLOB); |
| 358 | |
| 359 | // write part with seconds |
| 360 | ts = time.ToInteger (Time::S) >> 4; |
| 361 | for (int i = 0; i < required_bytes - 2; i++) |
| 362 | start.WriteU8 ( ts >> (8 * (required_bytes - 3 - i)) ); |
| 363 | |
| 364 | /* arithmetic contortions are to avoid overflowing 31 bits */ |
| 365 | ts = ((time.ToInteger (Time::S) & 15) << 12) + |
| 366 | (((time.ToInteger (Time::NS) % 1000000000) / 5 * 8 + 195312) / 390625); |
| 367 | for (int i = required_bytes - 2; i < required_bytes; i++) |
| 368 | start.WriteU8 ( ts >> (8 * (required_bytes - 1 - i)) ); |
| 369 | |
| 370 | return len + required_bytes; |
| 371 | } |
| 372 | |
| 373 | size_t |
| 374 | CcnxEncodingHelper::EstimateTimestampBlob (const Time &time) |
| 375 | { |
| 376 | int required_bytes = 2; // 12 bits for fractions of a second, 4 bits left for seconds. Sometimes it is enough |
| 377 | intmax_t ts = time.ToInteger (Time::S) >> 4; |
| 378 | for (; required_bytes < 7 && ts != 0; ts >>= 8) // not more than 6 bytes? |
| 379 | required_bytes++; |
| 380 | |
| 381 | return EstimateBlockHeader (required_bytes) + required_bytes; |
| 382 | } |
| 383 | |
| 384 | size_t |
| 385 | CcnxEncodingHelper::AppendTaggedBlob (Buffer::Iterator &start, CcnbParser::ccn_dtag dtag, |
| 386 | const uint8_t *data, size_t size) |
| 387 | { |
| 388 | size_t written = AppendBlockHeader (start, dtag, CcnbParser::CCN_DTAG); |
| 389 | /* 2 */ |
| 390 | if (size>0) |
| 391 | { |
| 392 | written += AppendBlockHeader (start, size, CcnbParser::CCN_BLOB); |
| 393 | start.Write (data, size); |
| 394 | written += size; |
| 395 | /* size */ |
| 396 | } |
| 397 | written += AppendCloser (start); |
| 398 | /* 1 */ |
| 399 | |
| 400 | return written; |
| 401 | } |
| 402 | |
| 403 | size_t |
| 404 | CcnxEncodingHelper::EstimateTaggedBlob (CcnbParser::ccn_dtag dtag, size_t size) |
| 405 | { |
Alexander Afanasyev | e91ab75 | 2011-08-31 19:13:40 -0700 | [diff] [blame] | 406 | if (size>0) |
| 407 | return EstimateBlockHeader (dtag) + EstimateBlockHeader (size) + size + 1; |
| 408 | else |
| 409 | return EstimateBlockHeader (dtag) + 1; |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | |
| 413 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 414 | } // namespace ns3 |