blob: 1ebb0e8990fb7c2ba1241ffea4dfc4c7b98ea2bd [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 *
18 * Author:
19 */
20
21#include "ccnx-decoding-helper.h"
22
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070023#include "ns3/ccnx-interest-header.h"
24#include "ns3/ccnx-content-object-header.h"
25
26#include "ns3/ccnb-parser-interest-visitor.h"
27#include "ns3/ccnb-parser-content-object-visitor.h"
28#include "ns3/ccnb-parser-block.h"
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070029
30namespace ns3 {
31
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070032size_t
33CcnxDecodingHelper::Deserialize (Buffer::Iterator start, const CcnxInterestHeader &interest)
34{
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070035 static CcnbParser::InterestVisitor interestVisitor;
Alexander Afanasyev8b379052011-08-21 16:58:20 -070036
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070037 Buffer::Iterator i = start;
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070038 Ptr<CcnbParser::Block> root = CcnbParser::Block::ParseBlock (i);
Alexander Afanasyev8b379052011-08-21 16:58:20 -070039 root->accept (interestVisitor, interest);
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070040
41 return i.GetDistanceFrom (start);
42}
43
44size_t
45CcnxDecodingHelper::Deserialize (Buffer::Iterator start, const CcnxContentObjectHeader &contentObject)
46{
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070047 static CcnbParser::ContentObjectVisitor contentObjectVisitor;
Alexander Afanasyev8b379052011-08-21 16:58:20 -070048
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070049 Buffer::Iterator i = start;
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070050 Ptr<CcnbParser::Block> root = CcnbParser::Block::ParseBlock (i);
Alexander Afanasyev8b379052011-08-21 16:58:20 -070051 root->accept (contentObjectVisitor, contentObject);
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070052
53 return i.GetDistanceFrom (start);
54}
55
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070056} // namespace ns3