blob: 015b7ffb55055592679c848f1c5a414a68cc7724 [file] [log] [blame]
Alexander Afanasyev834f35c2011-08-16 17:13:50 -07001/* -*- 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 Afanasyev8b379052011-08-21 16:58:20 -070018 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070019 */
20
21#ifndef _CCNX_DECODING_HELPER_H_
22#define _CCNX_DECODING_HELPER_H_
23
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070024#include <cstring>
25#include "ns3/buffer.h"
26
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070027namespace ns3 {
28
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070029class CcnxInterestHeader;
30class CcnxContentObjectHeader;
31
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070032/**
Alexander Afanasyev8b379052011-08-21 16:58:20 -070033 * \brief Helper class to decode ccnb formatted CCNx message
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070034 */
35class CcnxDecodingHelper
36{
37public:
Ilya Moiseenko332add02011-12-24 17:21:25 -080038 /**
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 Afanasyev834f35c2011-08-16 17:13:50 -070044 static size_t
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070045 Deserialize (Buffer::Iterator start, CcnxInterestHeader &interest);
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070046
Ilya Moiseenko332add02011-12-24 17:21:25 -080047 /**
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 Afanasyev834f35c2011-08-16 17:13:50 -070053 static size_t
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070054 Deserialize (Buffer::Iterator start, CcnxContentObjectHeader &contentObject);
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070055};
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070056} // namespace ns3
57
58#endif // _CCNX_DECODING_HELPER_H_