llhash.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:2k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llhash.h
  3.  * @brief Wrapper for a hash function.
  4.  *
  5.  * $LicenseInfo:firstyear=2004&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2004-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLHASH_H
  33. #define LL_LLHASH_H
  34. #include "llpreprocessor.h" // for GCC_VERSION
  35. #if (LL_WINDOWS)
  36. #include <hash_map>
  37. #include <algorithm>
  38. #elif LL_DARWIN || LL_LINUX
  39. #  if GCC_VERSION >= 40300 // gcc 4.3 and up
  40. #    include <backward/hashtable.h>
  41. #  elif GCC_VERSION >= 30400 // gcc 3.4 and up
  42. #    include <ext/hashtable.h>
  43. #  elif __GNUC__ >= 3
  44. #    include <ext/stl_hashtable.h>
  45. #  else
  46. #    include <hashtable.h>
  47. #  endif
  48. #elif LL_SOLARIS
  49. #include <ext/hashtable.h>
  50. #else
  51. #error Please define your platform.
  52. #endif
  53. // Warning - an earlier template-based version of this routine did not do
  54. // the correct thing on Windows.   Since this is only used to get
  55. // a string hash, it was converted to a regular routine and
  56. // unit tests added.
  57. inline size_t llhash( const char * value )
  58. {
  59. #if LL_WINDOWS
  60. return stdext::hash_value(value);
  61. #elif ( (defined _STLPORT_VERSION) || ((LL_LINUX) && (__GNUC__ <= 2)) )
  62. std::hash<const char *> H;
  63. return H(value);
  64. #elif LL_DARWIN || LL_LINUX || LL_SOLARIS
  65. __gnu_cxx::hash<const char *> H;
  66. return H(value);
  67. #else
  68. #error Please define your platform.
  69. #endif
  70. }
  71. #endif