blob: e1af1ee652c5aa7c5126f42b9b93aba0ca2a65ca [file] [log] [blame]
Alexander Afanasyevc74a6022011-08-15 20:01:35 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyev3a6ea5c2011-08-11 18:15:49 -07002/*
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 "name-components.h"
Alexander Afanasyev2536e202011-08-12 14:13:10 -070022
Alexander Afanasyev3a6ea5c2011-08-11 18:15:49 -070023#include <iostream>
24
25using namespace std;
26
27namespace ns3 {
Alexander Afanasyev3a6ea5c2011-08-11 18:15:49 -070028namespace Name {
29
30Components::Components ()
31{
32 // m_value = ccn_charbuf_create ();
33 // ccn_name_init(m_value);
34}
35
36Components::Components (const string &s)
37{
38 // m_value = ccn_charbuf_create ();
39 // ccn_name_init(m_value);
40 // (*this) (s);
41 m_prefix.push_back (s);
42}
43
44Components::~Components ()
45{
46 // ccn_charbuf_destroy(&m_value);
47}
48
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070049const std::list<std::string> &
50Components::GetComponents () const
51{
52 return m_prefix;
53}
54
55
Alexander Afanasyev3a6ea5c2011-08-11 18:15:49 -070056// const ccn_charbuf*
57// Components::GetName () const
58// {
59// return m_value;
60// }
61
62Components&
63Components::operator () (const string &s)
64{
65 // ccn_name_append_str (m_value,s.c_str());
66 m_prefix.push_back (s);
67 return *this;
68}
69
70// Components::operator const unsigned char* ()
71// {
72// return m_value->buf;
73// }
74
75void
76Components::Print (std::ostream &os) const
77{
78 for (const_iterator i=m_prefix.begin(); i!=m_prefix.end(); i++)
79 {
80 os << "/" << *i;
81 }
82}
83
84std::ostream &
85operator << (std::ostream &os, const Components &components)
86{
87 components.Print (os);
88 return os;
89}
90
91}
92}
Alexander Afanasyev3a6ea5c2011-08-11 18:15:49 -070093