blob: 68fc7942b5ba372ab2ca2f42d02cc3dd6150ffda [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
21#include "ccnb-parser-dtag.h"
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070022
23#include "ccnb-parser-base-attr.h"
24#include "ccnb-parser-base-tag.h"
Alexander Afanasyev8b379052011-08-21 16:58:20 -070025
26namespace ns3 {
27namespace CcnbParser {
28
29Dtag::Dtag (Buffer::Iterator &start, uint32_t dtag)
30{
31 m_dtag = dtag;
Alexander Afanasyeve91ab752011-08-31 19:13:40 -070032 // std::cout << m_dtag << ", position: " << Block::counter << "\n";
Alexander Afanasyev8b379052011-08-21 16:58:20 -070033 /**
34 * Hack
35 *
36 * Stop processing after encountering <Content> dtag. Actual
37 * content (including virtual payload) will be stored in Packet
38 * buffer
39 */
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070040 if (dtag == CCN_DTAG_Content)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070041 return; // hack #1. Do not process nesting block for <Content>
42
43 // parse attributes until first nested block reached
Alexander Afanasyevc1e33eb2012-05-31 12:13:17 -070044 while (!start.IsEnd () && BufferIteratorPeekU8 (start)!=CCN_CLOSE)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070045 {
46 Ptr<Block> block = Block::ParseBlock (start);
47 if (DynamicCast<BaseAttr> (block)!=0)
48 m_attrs.push_back (block);
49 else
50 {
51 m_nestedTags.push_back (block);
52 break;
53 }
54 }
55
56 // parse the rest of nested blocks
Alexander Afanasyevc1e33eb2012-05-31 12:13:17 -070057 while (!start.IsEnd () && BufferIteratorPeekU8 (start)!=CCN_CLOSE)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070058 {
59 // hack #2. Stop processing nested blocks if last block was <Content>
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070060 if (m_dtag == CCN_DTAG_ContentObject && // we are in <ContentObject>
61 DynamicCast<Dtag> (m_nestedTags.back())!=0 && // last block is DTAG
62 DynamicCast<Dtag> (m_nestedTags.back())->m_dtag == CCN_DTAG_Content)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070063 {
64 return;
65 }
66
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070067 m_nestedTags.push_back (Block::ParseBlock (start));
Alexander Afanasyev8b379052011-08-21 16:58:20 -070068 }
Alexander Afanasyeve91ab752011-08-31 19:13:40 -070069
70 // hack #3. Stop processing when last tag was <ContentObject>
71 if (m_dtag == CCN_DTAG_ContentObject && // we are in <ContentObject>
72 DynamicCast<Dtag> (m_nestedTags.back())!=0 && // last block is DTAG
73 DynamicCast<Dtag> (m_nestedTags.back())->m_dtag == CCN_DTAG_Content)
74 {
75 return;
76 }
77
Alexander Afanasyev8b379052011-08-21 16:58:20 -070078 if (start.IsEnd ())
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070079 throw CcnbDecodingException ();
Alexander Afanasyev8b379052011-08-21 16:58:20 -070080
81 start.ReadU8 (); // read CCN_CLOSE
Alexander Afanasyeve91ab752011-08-31 19:13:40 -070082 // std::cout << "closer, position = " << Block::counter << "\n";
83 // Block::counter ++;
Alexander Afanasyev8b379052011-08-21 16:58:20 -070084}
85
86}
87}