blob: 129b363b4baa617688061a86a4f9933215e13b03 [file] [log] [blame]
Alexander Afanasyev8b379052011-08-21 16:58:20 -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: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 */
20
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070021#include "dtag.h"
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070022
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070023#include "base-attr.h"
24#include "base-tag.h"
Alexander Afanasyev8b379052011-08-21 16:58:20 -070025
26namespace ns3 {
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070027namespace ndn {
Alexander Afanasyev8b379052011-08-21 16:58:20 -070028namespace CcnbParser {
29
30Dtag::Dtag (Buffer::Iterator &start, uint32_t dtag)
31{
32 m_dtag = dtag;
Alexander Afanasyeve91ab752011-08-31 19:13:40 -070033 // std::cout << m_dtag << ", position: " << Block::counter << "\n";
Alexander Afanasyev8b379052011-08-21 16:58:20 -070034 /**
35 * Hack
36 *
Alexander Afanasyev6315ef72012-06-01 20:56:31 -070037 * Stop processing after encountering "Content" dtag. Actual
Alexander Afanasyev8b379052011-08-21 16:58:20 -070038 * content (including virtual payload) will be stored in Packet
39 * buffer
40 */
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070041 if (dtag == CCN_DTAG_Content)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070042 return; // hack #1. Do not process nesting block for <Content>
43
44 // parse attributes until first nested block reached
Alexander Afanasyevc1e33eb2012-05-31 12:13:17 -070045 while (!start.IsEnd () && BufferIteratorPeekU8 (start)!=CCN_CLOSE)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070046 {
47 Ptr<Block> block = Block::ParseBlock (start);
48 if (DynamicCast<BaseAttr> (block)!=0)
49 m_attrs.push_back (block);
50 else
51 {
52 m_nestedTags.push_back (block);
53 break;
54 }
55 }
56
57 // parse the rest of nested blocks
Alexander Afanasyevc1e33eb2012-05-31 12:13:17 -070058 while (!start.IsEnd () && BufferIteratorPeekU8 (start)!=CCN_CLOSE)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070059 {
60 // hack #2. Stop processing nested blocks if last block was <Content>
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070061 if (m_dtag == CCN_DTAG_ContentObject && // we are in <ContentObject>
62 DynamicCast<Dtag> (m_nestedTags.back())!=0 && // last block is DTAG
63 DynamicCast<Dtag> (m_nestedTags.back())->m_dtag == CCN_DTAG_Content)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070064 {
65 return;
66 }
67
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070068 m_nestedTags.push_back (Block::ParseBlock (start));
Alexander Afanasyev8b379052011-08-21 16:58:20 -070069 }
Alexander Afanasyeve91ab752011-08-31 19:13:40 -070070
71 // hack #3. Stop processing when last tag was <ContentObject>
72 if (m_dtag == CCN_DTAG_ContentObject && // we are in <ContentObject>
73 DynamicCast<Dtag> (m_nestedTags.back())!=0 && // last block is DTAG
74 DynamicCast<Dtag> (m_nestedTags.back())->m_dtag == CCN_DTAG_Content)
75 {
76 return;
77 }
78
Alexander Afanasyev8b379052011-08-21 16:58:20 -070079 if (start.IsEnd ())
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070080 throw CcnbDecodingException ();
Alexander Afanasyev8b379052011-08-21 16:58:20 -070081
82 start.ReadU8 (); // read CCN_CLOSE
Alexander Afanasyeve91ab752011-08-31 19:13:40 -070083 // std::cout << "closer, position = " << Block::counter << "\n";
84 // Block::counter ++;
Alexander Afanasyev8b379052011-08-21 16:58:20 -070085}
86
87}
88}
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070089}