Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -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 | * |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | #ifndef _CCNX_DECODING_HELPER_H_ |
| 22 | #define _CCNX_DECODING_HELPER_H_ |
| 23 | |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 24 | #include <cstring> |
| 25 | #include "ns3/buffer.h" |
| 26 | |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 27 | namespace ns3 { |
| 28 | |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 29 | class CcnxInterestHeader; |
| 30 | class CcnxContentObjectHeader; |
| 31 | |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 32 | /** |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 33 | * \brief Helper class to decode ccnb formatted CCNx message |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 34 | */ |
| 35 | class CcnxDecodingHelper |
| 36 | { |
| 37 | public: |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 38 | /** |
| 39 | * \brief Deserialize Buffer::Iterator to CcnxInterestHeader |
| 40 | * @param start Buffer containing serialized CCNx message |
| 41 | * @param interest Pointer to the CcnxInterestHeader to hold deserialized value |
| 42 | * @return Number of bytes used for deserialization |
| 43 | */ |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 44 | static size_t |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 45 | Deserialize (Buffer::Iterator start, CcnxInterestHeader &interest); |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 46 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 47 | /** |
| 48 | * \brief Deserialize Buffer::Iterator to CcnxContentObjectHeader |
| 49 | * @param start Buffer containing serialized CCNx message |
| 50 | * @param contentObject Pointer to the CcnxContentObjectHeader to hold deserialized value |
| 51 | * @return Number of bytes used for deserialization |
| 52 | */ |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 53 | static size_t |
Alexander Afanasyev | 85a3bca | 2011-08-31 16:51:03 -0700 | [diff] [blame] | 54 | Deserialize (Buffer::Iterator start, CcnxContentObjectHeader &contentObject); |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 55 | }; |
Alexander Afanasyev | 834f35c | 2011-08-16 17:13:50 -0700 | [diff] [blame] | 56 | } // namespace ns3 |
| 57 | |
| 58 | #endif // _CCNX_DECODING_HELPER_H_ |