blob: 66c2c44a1f694509ee025f630faadaffc030293b [file] [log] [blame]
Alexander Afanasyeva89bc102013-07-16 10:17:31 -07001/** -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
4 * Alexander Afanasyev
5 *
6 * GNU 3.0 license, See the LICENSE file for more information
7 *
8 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
9 */
10
11#include "wire-ndnsim.h"
12#include <boost/foreach.hpp>
13
14NDN_NAMESPACE_BEGIN
15
16namespace wire {
17
18//////////////////////////////////////////////////////////////////////
19//////////////////////////////////////////////////////////////////////
20//////////////////////////////////////////////////////////////////////
21
22size_t
23NdnSim::SerializeName (Buffer::Iterator &i, const Name &name)
24{
25 Buffer::Iterator start = i;
26
27 i.WriteU16 (static_cast<uint16_t> (SerializedSizeName (name)-2));
28
Alexander Afanasyev92136012013-07-16 20:36:30 -070029 for (Name::const_iterator item = name.begin ();
Alexander Afanasyeva89bc102013-07-16 10:17:31 -070030 item != name.end ();
31 item++)
32 {
33 i.WriteU16 (static_cast<uint16_t> (item->size ()));
Alexander Afanasyev92136012013-07-16 20:36:30 -070034 i.Write (reinterpret_cast<const uint8_t*> (item->buf ()), item->size ());
Alexander Afanasyeva89bc102013-07-16 10:17:31 -070035 }
36
37 return i.GetDistanceFrom (start);
38}
39
40size_t
41NdnSim::SerializedSizeName (const Name &name)
42{
43 size_t nameSerializedSize = 2;
44
Alexander Afanasyev92136012013-07-16 20:36:30 -070045 for (Name::const_iterator i = name.begin ();
Alexander Afanasyeva89bc102013-07-16 10:17:31 -070046 i != name.end ();
47 i++)
48 {
49 nameSerializedSize += 2 + i->size ();
50 }
51 NS_ASSERT_MSG (nameSerializedSize < 30000, "Name is too long (> 30kbytes)");
52
53 return nameSerializedSize;
54}
55
56Ptr<Name>
57NdnSim::DeserializeName (Buffer::Iterator &i)
58{
59 Ptr<Name> name = Create<Name> ();
60
61 uint16_t nameLength = i.ReadU16 ();
62 while (nameLength > 0)
63 {
64 uint16_t length = i.ReadU16 ();
65 nameLength = nameLength - 2 - length;
66
67 uint8_t tmp[length];
68 i.Read (tmp, length);
69
Alexander Afanasyev157c9e62013-07-16 20:58:04 -070070 name->append (tmp, length);
Alexander Afanasyeva89bc102013-07-16 10:17:31 -070071 }
72
73 return name;
74}
75
76} // wire
77
78NDN_NAMESPACE_END