Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 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: Ilya Moiseenko <iliamo@cs.ucla.edu> |
| 19 | * Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 20 | */ |
| 21 | |
| 22 | #include "ccnx-content-object-header.h" |
| 23 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 24 | #include "ns3/log.h" |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame^] | 25 | #include "ns3/ccnx-encoding-helper.h" |
| 26 | #include "ns3/ccnx-decoding-helper.h" |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 27 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 28 | NS_LOG_COMPONENT_DEFINE ("CcnxContentObjectHeader"); |
| 29 | |
| 30 | namespace ns3 |
| 31 | { |
| 32 | |
| 33 | NS_OBJECT_ENSURE_REGISTERED (CcnxContentObjectHeader); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 34 | NS_OBJECT_ENSURE_REGISTERED (CcnxContentObjectTail); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 35 | |
| 36 | TypeId |
| 37 | CcnxContentObjectHeader::GetTypeId (void) |
| 38 | { |
| 39 | static TypeId tid = TypeId ("ns3::CcnxContentObjectHeader") |
| 40 | .SetParent<Header> () |
| 41 | .AddConstructor<CcnxContentObjectHeader> () |
| 42 | ; |
| 43 | return tid; |
| 44 | } |
| 45 | |
| 46 | CcnxContentObjectHeader::CcnxContentObjectHeader () |
| 47 | { |
| 48 | } |
| 49 | |
| 50 | void |
| 51 | CcnxContentObjectHeader::SetName (const Ptr<Name::Components> &name) |
| 52 | { |
| 53 | m_name = name; |
| 54 | } |
| 55 | |
| 56 | const Name::Components& |
| 57 | CcnxContentObjectHeader::GetName () const |
| 58 | { |
| 59 | return *m_name; |
| 60 | } |
| 61 | |
| 62 | uint32_t |
| 63 | CcnxContentObjectHeader::GetSerializedSize (void) const |
| 64 | { |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 65 | // Unfortunately, two serializations are required, unless we can pre-calculate header length... which is not trivial |
| 66 | Buffer tmp; |
| 67 | |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame^] | 68 | return CcnxEncodingHelper::Serialize (tmp.Begin(), *this); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | void |
| 72 | CcnxContentObjectHeader::Serialize (Buffer::Iterator start) const |
| 73 | { |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame^] | 74 | CcnxEncodingHelper::Serialize (start, *this); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | uint32_t |
| 78 | CcnxContentObjectHeader::Deserialize (Buffer::Iterator start) |
| 79 | { |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame^] | 80 | return CcnxDecodingHelper::Deserialize (start, *this); // \todo Debugging is necessary |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | TypeId |
| 84 | CcnxContentObjectHeader::GetInstanceTypeId (void) const |
| 85 | { |
| 86 | return GetTypeId (); |
| 87 | } |
| 88 | |
| 89 | void |
| 90 | CcnxContentObjectHeader::Print (std::ostream &os) const |
| 91 | { |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 92 | os << "<ContentObject><Name>" << *m_name << "</Name><Content>"; |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 95 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 96 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 97 | |
| 98 | CcnxContentObjectTail::CcnxContentObjectTail () |
| 99 | { |
| 100 | } |
| 101 | |
| 102 | TypeId |
| 103 | CcnxContentObjectTail::GetTypeId (void) |
| 104 | { |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame^] | 105 | static TypeId tid = TypeId ("ns3::CcnxContentObjectTail") |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 106 | .SetParent<Header> () |
| 107 | .AddConstructor<CcnxContentObjectHeader> () |
| 108 | ; |
| 109 | return tid; |
| 110 | } |
| 111 | |
| 112 | TypeId |
| 113 | CcnxContentObjectTail::GetInstanceTypeId (void) const |
| 114 | { |
| 115 | return GetTypeId (); |
| 116 | } |
| 117 | |
| 118 | void |
| 119 | CcnxContentObjectTail::Print (std::ostream &os) const |
| 120 | { |
| 121 | os << "</Content></ContentObject>"; |
| 122 | } |
| 123 | |
| 124 | uint32_t |
| 125 | CcnxContentObjectTail::GetSerializedSize (void) const |
| 126 | { |
| 127 | return 2; |
| 128 | } |
| 129 | |
| 130 | void |
| 131 | CcnxContentObjectTail::Serialize (Buffer::Iterator start) const |
| 132 | { |
| 133 | Buffer::Iterator i = start; |
| 134 | i.WriteU8 (0x00); // </Content> |
| 135 | i.WriteU8 (0x00); // </ContentObject> |
| 136 | } |
| 137 | |
| 138 | uint32_t |
| 139 | CcnxContentObjectTail::Deserialize (Buffer::Iterator start) |
| 140 | { |
| 141 | Buffer::Iterator i = start; |
| 142 | uint8_t __attribute__ ((unused)) closing_tag_content = i.ReadU8 (); |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame^] | 143 | NS_ASSERT_MSG (closing_tag_content==0, "Should be a closing tag </Content> (0x00)"); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 144 | |
| 145 | uint8_t __attribute__ ((unused)) closing_tag_content_object = i.ReadU8 (); |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame^] | 146 | NS_ASSERT_MSG (closing_tag_content_object==0, "Should be a closing tag </ContentObject> (0x00)"); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 147 | |
| 148 | return 2; |
| 149 | } |
| 150 | |
| 151 | } // namespace ns3 |