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 | |
| 21 | #ifndef _CCNX_HEADER_HELPER_H_ |
| 22 | #define _CCNX_HEADER_HELPER_H_ |
| 23 | |
| 24 | #include "ns3/ptr.h" |
| 25 | |
Ilya Moiseenko | a121411 | 2011-08-29 13:03:55 -0700 | [diff] [blame] | 26 | #define INTEREST_BYTE0 0x01 |
| 27 | #define INTEREST_BYTE1 0xD2 |
| 28 | |
| 29 | #define CONTENT_OBJECT_BYTE0 0x04 |
| 30 | #define CONTENT_OBJECT_BYTE1 0x82 |
| 31 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 32 | namespace ns3 |
| 33 | { |
| 34 | |
| 35 | class Header; |
| 36 | class Packet; |
| 37 | |
| 38 | /** |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 39 | * \ingroup ccnx-helpers |
| 40 | * |
| 41 | * \brief Class implementing functionality to detect CCNx packet type and |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 42 | * create the corresponding object |
| 43 | * |
| 44 | * CCNx doesn't really have a header, so we need this class to |
| 45 | * determine type of CCNx packet and return corresponent header class, |
| 46 | * CcnxInterestHeader or CcnxContentObjectHeader |
| 47 | * |
| 48 | * Throws CcnxUnknownHeaderException if header type couldn't be determined |
| 49 | */ |
| 50 | class CcnxHeaderHelper |
| 51 | { |
| 52 | public: |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 53 | enum Type {INTEREST, CONTENT_OBJECT}; |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 54 | |
| 55 | /** |
| 56 | * Static function to create an appropriate CCNx header |
| 57 | * |
| 58 | * It peeks first 2 bytes of a packet. |
| 59 | * |
| 60 | * All interests start with |
| 61 | * +-----------------+ +---+---------+-------+ |
| 62 | * | 0 0 0 0 0 0 0 1 | | 1 | 1 0 1 0 | 0 1 0 | (0x01 0xD2) |
| 63 | * +-----------------+ +---+---------+-------+ |
| 64 | * |
| 65 | * All content objects start with |
| 66 | * +-----------------+ +---+---------+-------+ |
| 67 | * | 0 0 0 0 0 1 0 0 | | 1 | 0 0 0 0 | 0 1 0 | (0x04 0x82) |
| 68 | * +-----------------+ +---+---------+-------+ |
| 69 | * ^ ^^^^^ |
| 70 | * | | |
| 71 | * terminator DTAG (Dictionary TAG) |
| 72 | * |
| 73 | * \see http://www.ccnx.org/releases/latest/doc/technical/BinaryEncoding.html |
| 74 | */ |
| 75 | |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 76 | static Type |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 77 | CreateCorrectCcnxHeader (Ptr<const Packet> packet); |
| 78 | }; |
| 79 | |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 80 | /** |
| 81 | * \ingroup ccnx |
| 82 | * \defgroup ccnx-exceptions Exceptions |
| 83 | */ |
| 84 | /** |
| 85 | * \ingroup ccnx-exceptions |
| 86 | * \brief Exception thrown if CCNx stack receives unrecognized |
| 87 | * message type |
| 88 | */ |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 89 | class CcnxUnknownHeaderException {}; |
| 90 | |
| 91 | } // namespace ns3 |
| 92 | |
| 93 | #endif // _CCNX_HEADER_HELPER_H_ |