MurmurHash.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.util.hash;
  19. /**
  20.  * This is a very fast, non-cryptographic hash suitable for general hash-based
  21.  * lookup.  See http://murmurhash.googlepages.com/ for more details.
  22.  * 
  23.  * <p>The C version of MurmurHash 2.0 found at that site was ported
  24.  * to Java by Andrzej Bialecki (ab at getopt org).</p>
  25.  */
  26. public class MurmurHash extends Hash {
  27.   private static MurmurHash _instance = new MurmurHash();
  28.   
  29.   public static Hash getInstance() {
  30.     return _instance;
  31.   }
  32.   
  33.   public int hash(byte[] data, int length, int seed) {
  34.     int m = 0x5bd1e995;
  35.     int r = 24;
  36.     int h = seed ^ length;
  37.     int len_4 = length >> 2;
  38.     for (int i = 0; i < len_4; i++) {
  39.       int i_4 = i << 2;
  40.       int k = data[i_4 + 3];
  41.       k = k << 8;
  42.       k = k | (data[i_4 + 2] & 0xff);
  43.       k = k << 8;
  44.       k = k | (data[i_4 + 1] & 0xff);
  45.       k = k << 8;
  46.       k = k | (data[i_4 + 0] & 0xff);
  47.       k *= m;
  48.       k ^= k >>> r;
  49.       k *= m;
  50.       h *= m;
  51.       h ^= k;
  52.     }
  53.     // avoid calculating modulo
  54.     int len_m = len_4 << 2;
  55.     int left = length - len_m;
  56.     if (left != 0) {
  57.       if (left >= 3) {
  58.         h ^= (int) data[length - 3] << 16;
  59.       }
  60.       if (left >= 2) {
  61.         h ^= (int) data[length - 2] << 8;
  62.       }
  63.       if (left >= 1) {
  64.         h ^= (int) data[length - 1];
  65.       }
  66.       h *= m;
  67.     }
  68.     h ^= h >>> 13;
  69.     h *= m;
  70.     h ^= h >>> 15;
  71.     return h;
  72.   }
  73. }