blob: 9e0ef7898e345923ba78e78a30207f4e5326e498 [file] [log] [blame]
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012 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: Zhenkai Zhu <zhenkai@cs.ucla.edu>
19 * 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
20 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
22
Alexander Afanasyev146a51b2012-03-05 10:47:35 -080023#ifndef STANDALONE
24
Alexander Afanasyevde505f22012-03-02 11:45:45 -080025#include "sync-ns3-name-info.h"
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080026#include "ns3/ccnx-name-components.h"
27
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080028#include <boost/foreach.hpp>
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080029#include <boost/lexical_cast.hpp>
Alexander Afanasyeva4ce9cf2012-03-06 14:29:58 -080030#include <boost/make_shared.hpp>
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080031#include <utility>
32
33using namespace std;
34using namespace boost;
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080035
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080036namespace Sync {
37
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080038
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080039NameInfoConstPtr
Alexander Afanasyevde505f22012-03-02 11:45:45 -080040Ns3NameInfo::FindOrCreate (ns3::Ptr<const ns3::CcnxNameComponents> name)
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080041{
42 string key = lexical_cast<string> (*name);
43
Alexander Afanasyeva4ce9cf2012-03-06 14:29:58 -080044 NameMap::iterator item = m_names.find (key);
45 if (item == m_names.end ())
46 {
47 NameInfoPtr value = NameInfoPtr (new Ns3NameInfo (name));
48 pair<NameMap::iterator,bool> inserted =
49 m_names.insert (make_pair (key, value));
50 BOOST_ASSERT (inserted.second); // previous call has to insert value
51 item = inserted.first;
52 }
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080053
Alexander Afanasyeva4ce9cf2012-03-06 14:29:58 -080054 return item->second;
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080055}
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080056
Alexander Afanasyevde505f22012-03-02 11:45:45 -080057Ns3NameInfo::Ns3NameInfo (ns3::Ptr<const ns3::CcnxNameComponents> name)
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080058 : m_name (name)
59{
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080060 m_id = m_ids ++; // set ID for a newly inserted element
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080061 m_digest << *name;
62 m_digest.getHash (); // finalize digest
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080063}
64
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080065string
Alexander Afanasyevde505f22012-03-02 11:45:45 -080066Ns3NameInfo::toString () const
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080067{
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080068 return lexical_cast<std::string> (*m_name);
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080069}
70
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080071bool
Alexander Afanasyevde505f22012-03-02 11:45:45 -080072Ns3NameInfo::operator == (const NameInfo &info) const
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080073{
74 try
75 {
Alexander Afanasyevde505f22012-03-02 11:45:45 -080076 return *m_name == *dynamic_cast<const Ns3NameInfo&> (info).m_name;
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080077 }
78 catch (...)
79 {
80 return false;
81 }
82}
83
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080084Digest &
85operator << (Digest &digest, const ns3::CcnxNameComponents &name)
86{
87 BOOST_FOREACH (const std::string &component, name.GetComponents ())
88 {
89 Digest subhash;
90 subhash << component;
91 subhash.getHash (); // finalize hash
92
93 digest << subhash;
94 }
95
96 return digest;
97}
98
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080099
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -0800100} // Sync
Alexander Afanasyev146a51b2012-03-05 10:47:35 -0800101
102#endif
103