blob: 18e7ea2ef0ab12f6f2b245a05d6a7f350238b3f1 [file] [log] [blame]
Ilya Moiseenkod26e6822011-08-23 17:48:38 -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: Ilya Moiseenko <iliamo@cs.ucla.edu>
19 */
20
21#include "ccnx-name-components.h"
22
23#include <iostream>
24
25using namespace std;
26
27namespace ns3 {
28
29CcnxNameComponents::CcnxNameComponents ()
30{
31 // m_value = ccn_charbuf_create ();
32 // ccn_name_init(m_value);
33}
34
35CcnxNameComponents::CcnxNameComponents (const string &s)
36{
37 // m_value = ccn_charbuf_create ();
38 // ccn_name_init(m_value);
39 // (*this) (s);
40 m_prefix.push_back (s);
41}
42
43CcnxNameComponents::~CcnxNameComponents ()
44{
45 // ccn_charbuf_destroy(&m_value);
46}
47
48const std::list<std::string> &
49CcnxNameComponents::GetComponents () const
50{
51 return m_prefix;
52}
53
54
55// const ccn_charbuf*
56// Components::GetName () const
57// {
58// return m_value;
59// }
60
61CcnxNameComponents&
62CcnxNameComponents::operator () (const string &s)
63{
64 // ccn_name_append_str (m_value,s.c_str());
65 m_prefix.push_back (s);
66 return *this;
67}
68
69// Components::operator const unsigned char* ()
70// {
71// return m_value->buf;
72// }
73
74void
75CcnxNameComponents::Print (std::ostream &os) const
76{
77 for (const_iterator i=m_prefix.begin(); i!=m_prefix.end(); i++)
78 {
79 os << "/" << *i;
80 }
81}
82
83std::ostream &
84operator << (std::ostream &os, const CcnxNameComponents &components)
85{
86 components.Print (os);
87 return os;
88}
89}
90