Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 1 | /* -*- 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 Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 21 | #include "depth-first-visitor.h" |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 22 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 23 | #include "../syntax-tree/blob.h" |
| 24 | #include "../syntax-tree/udata.h" |
| 25 | #include "../syntax-tree/tag.h" |
| 26 | #include "../syntax-tree/dtag.h" |
| 27 | #include "../syntax-tree/attr.h" |
| 28 | #include "../syntax-tree/dattr.h" |
| 29 | #include "../syntax-tree/ext.h" |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 30 | |
| 31 | #include <boost/foreach.hpp> |
| 32 | |
Alexander Afanasyev | 1043c70 | 2013-07-15 16:21:09 -0700 | [diff] [blame] | 33 | NDN_NAMESPACE_BEGIN |
| 34 | |
| 35 | namespace wire { |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 36 | namespace CcnbParser { |
| 37 | |
| 38 | boost::any |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 39 | DepthFirstVisitor::visit (Blob &n, boost::any param) |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 40 | { |
| 41 | // Buffer n.m_blob; |
| 42 | return n.m_blob; |
| 43 | } |
| 44 | |
| 45 | boost::any |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 46 | DepthFirstVisitor::visit (Udata &n, boost::any param) |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 47 | { |
| 48 | // std::string n.m_udata; |
| 49 | return n.m_udata; |
| 50 | } |
| 51 | |
| 52 | boost::any |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 53 | DepthFirstVisitor::visit (Tag &n, boost::any param) |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 54 | { |
| 55 | // std::string n.m_tag; |
| 56 | // std::list<Ptr<Block> > n.m_attrs; |
| 57 | // std::list<Ptr<Block> > n.m_nestedBlocks; |
| 58 | BOOST_FOREACH (Ptr<Block> block, n.m_attrs) |
| 59 | { |
| 60 | block->accept (*this, param); |
| 61 | } |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 62 | BOOST_FOREACH (Ptr<Block> block, n.m_nestedTags) |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 63 | { |
| 64 | block->accept (*this, param); |
| 65 | } |
| 66 | return boost::any(); |
| 67 | } |
| 68 | |
| 69 | boost::any |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 70 | DepthFirstVisitor::visit (Dtag &n, boost::any param) |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 71 | { |
| 72 | // std::string n.m_tag; |
| 73 | // std::list<Ptr<Block> > n.m_attrs; |
| 74 | // std::list<Ptr<Block> > n.m_nestedBlocks; |
| 75 | BOOST_FOREACH (Ptr<Block> block, n.m_attrs) |
| 76 | { |
| 77 | block->accept (*this, param); |
| 78 | } |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 79 | BOOST_FOREACH (Ptr<Block> block, n.m_nestedTags) |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 80 | { |
| 81 | block->accept (*this, param); |
| 82 | } |
| 83 | return boost::any (); |
| 84 | } |
| 85 | |
| 86 | boost::any |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 87 | DepthFirstVisitor::visit (Attr &n, boost::any param) |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 88 | { |
| 89 | // std::string n.m_attr; |
| 90 | // Ptr<Udata> n.m_value; |
| 91 | return boost::any (); |
| 92 | } |
| 93 | |
| 94 | boost::any |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 95 | DepthFirstVisitor::visit (Dattr &n, boost::any param) |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 96 | { |
| 97 | // uint32_t n.m_dattr; |
| 98 | // Ptr<Udata> n.m_value; |
| 99 | return boost::any (); |
| 100 | } |
| 101 | |
| 102 | boost::any |
Alexander Afanasyev | e709f3d | 2011-08-21 17:55:45 -0700 | [diff] [blame] | 103 | DepthFirstVisitor::visit (Ext &n, boost::any param) |
Alexander Afanasyev | 8b37905 | 2011-08-21 16:58:20 -0700 | [diff] [blame] | 104 | { |
| 105 | // uint64_t n.m_extSubtype; |
| 106 | return n.m_extSubtype; |
| 107 | } |
| 108 | |
Alexander Afanasyev | 1043c70 | 2013-07-15 16:21:09 -0700 | [diff] [blame] | 109 | } // CcnbParser |
| 110 | } // wire |
| 111 | |
| 112 | NDN_NAMESPACE_END |