blob: ffb242e3f0313735019e3f126c137b67a2817e92 [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 "name-components-visitor.h"
Alexander Afanasyev8b379052011-08-21 16:58:20 -070022
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070023#include "string-visitor.h"
24#include "../syntax-tree/dtag.h"
25
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -070026#include "ns3/ndn-name.h"
Alexander Afanasyev8b379052011-08-21 16:58:20 -070027
28namespace ns3 {
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070029namespace ndn {
Alexander Afanasyev8b379052011-08-21 16:58:20 -070030namespace CcnbParser {
31
32void
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -070033NameVisitor::visit (Dtag &n, boost::any param/*should be Name* */)
Alexander Afanasyev8b379052011-08-21 16:58:20 -070034{
35 // uint32_t n.m_dtag;
36 // std::list<Ptr<Block> > n.m_nestedBlocks;
37 static StringVisitor stringVisitor;
38
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -070039 Name &components = *(boost::any_cast<Name*> (param));
Alexander Afanasyev8b379052011-08-21 16:58:20 -070040
41 switch (n.m_dtag)
42 {
43 case CCN_DTAG_Component:
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070044 if (n.m_nestedTags.size()!=1) // should be exactly one UDATA inside this tag
45 throw CcnbDecodingException ();
Alexander Afanasyev8b379052011-08-21 16:58:20 -070046 components.Add (
Alexander Afanasyeve709f3d2011-08-21 17:55:45 -070047 boost::any_cast<std::string> ((*n.m_nestedTags.begin())->accept(
Alexander Afanasyev8b379052011-08-21 16:58:20 -070048 stringVisitor
49 )));
50 break;
51 default:
52 // ignore any other components
53 // when parsing Exclude, there could be <Any /> and <Bloom /> tags
54 break;
55 }
56}
57
58}
59}
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070060}