blob: d1c8e3190b3390cc502450e33f0a7cc4b579484e [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 Afanasyevb5547e32012-03-01 21:59:38 -080030#include <utility>
31
32using namespace std;
33using namespace boost;
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080034
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080035namespace Sync {
36
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080037
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080038NameInfoConstPtr
Alexander Afanasyevde505f22012-03-02 11:45:45 -080039Ns3NameInfo::FindOrCreate (ns3::Ptr<const ns3::CcnxNameComponents> name)
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080040{
41 string key = lexical_cast<string> (*name);
42
Alexander Afanasyevde505f22012-03-02 11:45:45 -080043 NameInfoPtr value = NameInfoPtr (new Ns3NameInfo (name));
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080044 pair<NameMap::iterator,bool> item =
45 m_names.insert (make_pair (key, value));
46
47 return item.first->second;
48}
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080049
Alexander Afanasyevde505f22012-03-02 11:45:45 -080050Ns3NameInfo::Ns3NameInfo (ns3::Ptr<const ns3::CcnxNameComponents> name)
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080051 : m_name (name)
52{
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080053 m_id = m_ids ++; // set ID for a newly inserted element
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080054 m_digest << *name;
55 m_digest.getHash (); // finalize digest
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080056}
57
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080058string
Alexander Afanasyevde505f22012-03-02 11:45:45 -080059Ns3NameInfo::toString () const
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080060{
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080061 return lexical_cast<std::string> (*m_name);
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080062}
63
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080064bool
Alexander Afanasyevde505f22012-03-02 11:45:45 -080065Ns3NameInfo::operator == (const NameInfo &info) const
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080066{
67 try
68 {
Alexander Afanasyevde505f22012-03-02 11:45:45 -080069 return *m_name == *dynamic_cast<const Ns3NameInfo&> (info).m_name;
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080070 }
71 catch (...)
72 {
73 return false;
74 }
75}
76
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080077Digest &
78operator << (Digest &digest, const ns3::CcnxNameComponents &name)
79{
80 BOOST_FOREACH (const std::string &component, name.GetComponents ())
81 {
82 Digest subhash;
83 subhash << component;
84 subhash.getHash (); // finalize hash
85
86 digest << subhash;
87 }
88
89 return digest;
90}
91
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080092
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080093} // Sync
Alexander Afanasyev146a51b2012-03-05 10:47:35 -080094
95#endif
96