| /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ |
| /* |
| * Copyright (c) 2011 University of California, Los Angeles |
| * |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 as |
| * published by the Free Software Foundation; |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with this program; if not, write to the Free Software |
| * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| * |
| * Author: Ilya Moiseenko <iliamo@cs.ucla.edu> |
| */ |
| |
| #ifndef CCNX_HASH_HELPER_H |
| #define CCNX_HASH_HELPER_H |
| |
| #include <string> |
| #include <boost/foreach.hpp> |
| #include "ccnx-name-components.h" |
| |
| namespace ns3 |
| { |
| |
| /** |
| * \ingroup ccnx-helpers |
| * \brief Helper providing hash value for the name prefix |
| * |
| * The whole prefix is considered as a long string with '/' delimiters |
| * |
| * \todo Testing is required to determine if this hash function |
| * actually provides good hash results |
| */ |
| struct CcnxPrefixHash : public std::unary_function<CcnxNameComponents, std::size_t> |
| { |
| std::size_t |
| operator() (const CcnxNameComponents &prefix) const |
| { |
| std::size_t hash = 23; |
| BOOST_FOREACH (const std::string &str, prefix.GetComponents ()) |
| { |
| hash += str.size (); |
| hash = ((hash << 6) ^ (hash >> 27)) + '/'; |
| BOOST_FOREACH (char c, str) |
| { |
| hash = ((hash << 6) ^ (hash >> 27)) + c; |
| } |
| } |
| return hash; |
| } |
| }; |
| |
| // // A collision-chaining hash table mapping strings to ints. |
| // template<typename Value> |
| // class string_key_hash_t : public boost::unordered_map<std::string,Value, string_hash, std::equal_to<std::string>,std::allocator<std::string> > |
| // { |
| // }; |
| |
| } // namespace ns3 |
| |
| #endif // CCNX_HASH_HELPER_H |