blob: f81a350606049abc1179e32d2ebe4b629b87cade [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-no-argu-depth-first-visitor.h"
22
23#include "ns3/ccnb-parser-blob.h"
24#include "ns3/ccnb-parser-udata.h"
25#include "ns3/ccnb-parser-tag.h"
26#include "ns3/ccnb-parser-dtag.h"
27#include "ns3/ccnb-parser-attr.h"
28#include "ns3/ccnb-parser-dattr.h"
29#include "ns3/ccnb-parser-ext.h"
30
31#include <boost/foreach.hpp>
32
33namespace ns3 {
34namespace CcnbParser {
35
36boost::any
37NoArguDepthFirstVisitor::visit (Blob &n)
38{
39 // Buffer n.m_blob;
40 return n.m_blob;
41}
42
43boost::any
44NoArguDepthFirstVisitor::visit (Udata &n)
45{
46 // std::string n.m_udata;
47 return n.m_udata;
48}
49
50boost::any
51NoArguDepthFirstVisitor::visit (Tag &n)
52{
53 // uint32_t n.m_dtag;
54 // std::list<Ptr<Block> > n.m_attrs;
55 // std::list<Ptr<Block> > n.m_nestedBlocks;
56 BOOST_FOREACH (Ptr<Block> block, n.m_attrs)
57 {
58 block->accept (*this);
59 }
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070060 BOOST_FOREACH (Ptr<Block> block, n.m_nestedTags)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070061 {
62 block->accept (*this);
63 }
64 return boost::any ();
65}
66
67boost::any
68NoArguDepthFirstVisitor::visit (Dtag &n)
69{
70 // uint32_t n.m_dtag;
71 // std::list<Ptr<Block> > n.m_attrs;
72 // std::list<Ptr<Block> > n.m_nestedBlocks;
73 BOOST_FOREACH (Ptr<Block> block, n.m_attrs)
74 {
75 block->accept (*this);
76 }
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070077 BOOST_FOREACH (Ptr<Block> block, n.m_nestedTags)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070078 {
79 block->accept (*this);
80 }
81 return boost::any();
82}
83
84boost::any
85NoArguDepthFirstVisitor::visit (Attr &n)
86{
87 // std::string n.m_attr;
88 // Ptr<Udata> n.m_value;
89 return boost::any ();
90}
91
92boost::any
93NoArguDepthFirstVisitor::visit (Dattr &n)
94{
95 // uint32_t n.m_dattr;
96 // Ptr<Udata> n.m_value;
97 return boost::any ();
98}
99
100boost::any
101NoArguDepthFirstVisitor::visit (Ext &n)
102{
103 // uint64_t n.m_extSubtype;
104 return n.m_extSubtype;
105}
106
107}
108}