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 | 8a677dd | 2011-08-12 13:08:15 -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 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 22 | #ifndef _CCNX_CONTENT_OBJECT_HEADER_H_ |
| 23 | #define _CCNX_CONTENT_OBJECT_HEADER_H_ |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 24 | |
Alexander Afanasyev | 2536e20 | 2011-08-12 14:13:10 -0700 | [diff] [blame] | 25 | #include "ns3/integer.h" |
| 26 | #include "ns3/header.h" |
Alexander Afanasyev | 070aa48 | 2011-08-20 00:38:25 -0700 | [diff] [blame] | 27 | #include "ns3/trailer.h" |
Alexander Afanasyev | 9568f95 | 2012-04-05 16:09:14 -0700 | [diff] [blame] | 28 | #include "ns3/nstime.h" |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 29 | |
| 30 | #include <string> |
| 31 | #include <vector> |
| 32 | #include <list> |
| 33 | |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 34 | #include "ccnx-name-components.h" |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 35 | |
| 36 | namespace ns3 |
| 37 | { |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 38 | |
| 39 | /** |
| 40 | * CCNx XML definition of ContentObject |
| 41 | * |
| 42 | * Only few important fields are actually implemented in the simulation |
| 43 | * |
| 44 | * |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 45 | * ContentObjectHeader serializes/deserializes header up-to and including <Content> tags |
| 46 | * Necessary closing tags should be added using ContentObjectTail |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 47 | * |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 48 | * This hacks are necessary to optimize memory use (i.e., virtual payload) |
| 49 | * |
| 50 | * "<ContentObject><Signature>..</Signature><Name>...</Name><SignedInfo>...</SignedInfo><Content>" |
| 51 | * |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 52 | */ |
| 53 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 54 | class CcnxContentObjectHeader : public Header |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 55 | { |
| 56 | public: |
| 57 | /** |
| 58 | * Constructor |
| 59 | * |
| 60 | * Creates a null header |
| 61 | **/ |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 62 | CcnxContentObjectHeader (); |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 63 | |
| 64 | /** |
| 65 | * \brief Set interest name |
| 66 | * |
Ilya Moiseenko | 2bd1bc3 | 2011-08-23 16:01:35 -0700 | [diff] [blame] | 67 | * Sets name of the interest. For example, SetName( CcnxNameComponents("prefix")("postfix") ); |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 68 | **/ |
| 69 | void |
Ilya Moiseenko | 2bd1bc3 | 2011-08-23 16:01:35 -0700 | [diff] [blame] | 70 | SetName (const Ptr<CcnxNameComponents> &name); |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 71 | |
Ilya Moiseenko | 2bd1bc3 | 2011-08-23 16:01:35 -0700 | [diff] [blame] | 72 | const CcnxNameComponents& |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 73 | GetName () const; |
| 74 | |
| 75 | // void |
| 76 | // SetSignature (); |
| 77 | |
| 78 | // ? |
| 79 | // GetSignature () const; |
| 80 | |
Alexander Afanasyev | 9568f95 | 2012-04-05 16:09:14 -0700 | [diff] [blame] | 81 | void |
| 82 | SetTimestamp (const Time ×tamp); |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 83 | |
Alexander Afanasyev | 9568f95 | 2012-04-05 16:09:14 -0700 | [diff] [blame] | 84 | Time |
| 85 | GetTimestamp () const; |
| 86 | |
| 87 | void |
| 88 | SetFreshness (const Time &freshness); |
| 89 | |
| 90 | Time |
| 91 | GetFreshness () const; |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 92 | |
| 93 | ////////////////////////////////////////////////////////////////// |
| 94 | |
| 95 | static TypeId GetTypeId (void); |
| 96 | virtual TypeId GetInstanceTypeId (void) const; |
| 97 | virtual void Print (std::ostream &os) const; |
| 98 | virtual uint32_t GetSerializedSize (void) const; |
| 99 | virtual void Serialize (Buffer::Iterator start) const; |
| 100 | virtual uint32_t Deserialize (Buffer::Iterator start); |
| 101 | |
Alexander Afanasyev | 9568f95 | 2012-04-05 16:09:14 -0700 | [diff] [blame] | 102 | struct SignedInfo |
| 103 | { |
| 104 | // PublisherPublicKeyDigest |
| 105 | Time m_timestamp; |
| 106 | // Type (ContentType) |
| 107 | Time m_freshness; |
| 108 | // FinalBlockID |
| 109 | // KeyLocator |
| 110 | }; |
| 111 | |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 112 | private: |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 113 | // m_signature; |
Alexander Afanasyev | 9568f95 | 2012-04-05 16:09:14 -0700 | [diff] [blame] | 114 | Ptr<CcnxNameComponents> m_name; |
| 115 | SignedInfo m_signedInfo; |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 116 | }; |
| 117 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 118 | /** |
| 119 | * ContentObjectTail should always be 2 bytes, representing two closing tags: |
| 120 | * "</Content><ContentObject>" |
| 121 | */ |
Alexander Afanasyev | 070aa48 | 2011-08-20 00:38:25 -0700 | [diff] [blame] | 122 | class CcnxContentObjectTail : public Trailer |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 123 | { |
| 124 | public: |
| 125 | CcnxContentObjectTail (); |
| 126 | ////////////////////////////////////////////////////////////////// |
| 127 | |
| 128 | static TypeId GetTypeId (void); |
| 129 | virtual TypeId GetInstanceTypeId (void) const; |
| 130 | virtual void Print (std::ostream &os) const; |
| 131 | virtual uint32_t GetSerializedSize (void) const; |
| 132 | virtual void Serialize (Buffer::Iterator start) const; |
| 133 | virtual uint32_t Deserialize (Buffer::Iterator start); |
| 134 | }; |
| 135 | |
Alexander Afanasyev | e91ab75 | 2011-08-31 19:13:40 -0700 | [diff] [blame] | 136 | class CcnxContentObjectHeaderException {}; |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 137 | |
Alexander Afanasyev | 8a677dd | 2011-08-12 13:08:15 -0700 | [diff] [blame] | 138 | } // namespace ns3 |
| 139 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 140 | #endif // _CCNX_CONTENT_OBJECT_HEADER_H_ |