blob: 54f636b76629c0f2b525d9bc79ec9335cb42a5ba [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
Alexander Afanasyeve91ab752011-08-31 19:13:40 -070030#include "ns3/ccnb-parser-dtag.h"
31
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070032namespace ns3 {
33
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070034size_t
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070035CcnxDecodingHelper::Deserialize (Buffer::Iterator start, CcnxInterestHeader &interest)
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070036{
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070037 static CcnbParser::InterestVisitor interestVisitor;
Alexander Afanasyev8b379052011-08-21 16:58:20 -070038
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070039 Buffer::Iterator i = start;
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070040 Ptr<CcnbParser::Block> root = CcnbParser::Block::ParseBlock (i);
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070041 root->accept (interestVisitor, &interest);
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070042
Alexander Afanasyevd02a5d62011-11-21 11:01:51 -080043 root = 0;
44
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070045 return i.GetDistanceFrom (start);
46}
47
48size_t
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070049CcnxDecodingHelper::Deserialize (Buffer::Iterator start, CcnxContentObjectHeader &contentObject)
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070050{
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070051 static CcnbParser::ContentObjectVisitor contentObjectVisitor;
Alexander Afanasyev8b379052011-08-21 16:58:20 -070052
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070053 Buffer::Iterator i = start;
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070054 Ptr<CcnbParser::Block> root = CcnbParser::Block::ParseBlock (i);
Alexander Afanasyev85a3bca2011-08-31 16:51:03 -070055 root->accept (contentObjectVisitor, &contentObject);
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070056
57 return i.GetDistanceFrom (start);
58}
59
Alexander Afanasyev834f35c2011-08-16 17:13:50 -070060} // namespace ns3