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: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 21 | #ifndef _NDN_HEADER_HELPER_H_ |
| 22 | #define _NDN_HEADER_HELPER_H_ |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 23 | |
| 24 | #include "ns3/ptr.h" |
| 25 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 26 | namespace ns3 { |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 27 | |
| 28 | class Header; |
| 29 | class Packet; |
| 30 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 31 | namespace ndn { |
| 32 | |
Alexander Afanasyev | c45c4d6 | 2013-02-01 13:01:18 -0800 | [diff] [blame] | 33 | class Name; |
| 34 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 35 | /** |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 36 | * \ingroup ndn-helpers |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 37 | * |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 38 | * \brief Class implementing functionality to detect Ndn packet type and |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 39 | * create the corresponding object |
| 40 | * |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 41 | * Ndn doesn't really have a header, so we need this class to |
| 42 | * determine type of Ndn packet and return corresponent header class, |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 43 | * InterestHeader or ContentObjectHeader |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 44 | * |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 45 | * Throws UnknownHeaderException if header type couldn't be determined |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 46 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 47 | class HeaderHelper |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 48 | { |
| 49 | public: |
Alexander Afanasyev | b4fee8b | 2012-06-06 12:54:26 -0700 | [diff] [blame] | 50 | /** |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 51 | @brief enum for Ndn packet types |
Alexander Afanasyev | b4fee8b | 2012-06-06 12:54:26 -0700 | [diff] [blame] | 52 | */ |
Alexander Afanasyev | bd9c18e | 2012-11-19 15:23:41 -0800 | [diff] [blame] | 53 | enum Type {INTEREST_CCNB, CONTENT_OBJECT_CCNB, |
Alexander Afanasyev | c45c4d6 | 2013-02-01 13:01:18 -0800 | [diff] [blame] | 54 | INTEREST_NDNSIM, CONTENT_OBJECT_NDNSIM}; |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 55 | |
| 56 | /** |
Alexander Afanasyev | c45c4d6 | 2013-02-01 13:01:18 -0800 | [diff] [blame] | 57 | * Packet ::= Version |
Alexander Afanasyev | bd9c18e | 2012-11-19 15:23:41 -0800 | [diff] [blame] | 58 | * PacketType |
| 59 | * (Interest | ContentObject) |
| 60 | * |
Alexander Afanasyev | c45c4d6 | 2013-02-01 13:01:18 -0800 | [diff] [blame] | 61 | * 0 1 |
| 62 | * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 |
Alexander Afanasyev | bd9c18e | 2012-11-19 15:23:41 -0800 | [diff] [blame] | 63 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 64 | * | Version | PacketType | |
| 65 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 66 | * |
| 67 | * For ccnb-encoding compatibility, ``Version`` / ``PacketType`` has two reserved values to denote ccnb-encoded packet: |
| 68 | * |
| 69 | * Version 0x01, PacketType 0xD2 --- ccnb-encoded ``Interest`` packet |
| 70 | * Version 0x04, PacketType 0x82 --- ccnb-encoded ``ContentObject`` packet |
| 71 | * |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 72 | * |
| 73 | * It peeks first 2 bytes of a packet. |
| 74 | * |
Alexander Afanasyev | c45c4d6 | 2013-02-01 13:01:18 -0800 | [diff] [blame] | 75 | * All interests start with |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 76 | * +-----------------+ +---+---------+-------+ |
| 77 | * | 0 0 0 0 0 0 0 1 | | 1 | 1 0 1 0 | 0 1 0 | (0x01 0xD2) |
| 78 | * +-----------------+ +---+---------+-------+ |
| 79 | * |
Alexander Afanasyev | c45c4d6 | 2013-02-01 13:01:18 -0800 | [diff] [blame] | 80 | * All content objects start with |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 81 | * +-----------------+ +---+---------+-------+ |
| 82 | * | 0 0 0 0 0 1 0 0 | | 1 | 0 0 0 0 | 0 1 0 | (0x04 0x82) |
| 83 | * +-----------------+ +---+---------+-------+ |
| 84 | * ^ ^^^^^ |
| 85 | * | | |
| 86 | * terminator DTAG (Dictionary TAG) |
| 87 | * |
Alexander Afanasyev | 9c0794a | 2012-12-10 01:02:33 -0800 | [diff] [blame] | 88 | * \see http://www.ccnx.org/releases/latest/doc/technical/BinaryEncoding.html |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 89 | */ |
Alexander Afanasyev | c45c4d6 | 2013-02-01 13:01:18 -0800 | [diff] [blame] | 90 | |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 91 | static Type |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 92 | GetNdnHeaderType (Ptr<const Packet> packet); |
Alexander Afanasyev | c45c4d6 | 2013-02-01 13:01:18 -0800 | [diff] [blame] | 93 | |
| 94 | /** |
| 95 | * @brief A heavy-weight operation to get name of the packet |
| 96 | * |
| 97 | * This function returns name of the packet by deserializing a copy of the packet to a right header |
| 98 | */ |
| 99 | static Ptr<const Name> |
| 100 | GetName (Ptr<const Packet> packet); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 101 | }; |
| 102 | |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 103 | /** |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 104 | * \ingroup ndn |
| 105 | * \defgroup ndn-exceptions Exceptions |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 106 | */ |
| 107 | /** |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 108 | * \ingroup ndn-exceptions |
| 109 | * \brief Exception thrown if Ndn stack receives unrecognized |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 110 | * message type |
| 111 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 112 | class UnknownHeaderException {}; |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 113 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 114 | } // namespace ndn |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 115 | } // namespace ns3 |
| 116 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 117 | #endif // _NDN_HEADER_HELPER_H_ |