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

网格计算

开发平台:

Java

  1. /**
  2.  *
  3.  * Copyright (c) 2005, European Commission project OneLab under contract 034819 
  4.  * (http://www.one-lab.org)
  5.  * 
  6.  * All rights reserved.
  7.  * Redistribution and use in source and binary forms, with or 
  8.  * without modification, are permitted provided that the following 
  9.  * conditions are met:
  10.  *  - Redistributions of source code must retain the above copyright 
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  *  - Redistributions in binary form must reproduce the above copyright 
  13.  *    notice, this list of conditions and the following disclaimer in 
  14.  *    the documentation and/or other materials provided with the distribution.
  15.  *  - Neither the name of the University Catholique de Louvain - UCL
  16.  *    nor the names of its contributors may be used to endorse or 
  17.  *    promote products derived from this software without specific prior 
  18.  *    written permission.
  19.  *    
  20.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
  21.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
  22.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
  23.  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
  24.  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
  25.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
  26.  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
  27.  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
  28.  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 
  30.  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
  31.  * POSSIBILITY OF SUCH DAMAGE.
  32.  */
  33. /**
  34.  * Licensed to the Apache Software Foundation (ASF) under one
  35.  * or more contributor license agreements.  See the NOTICE file
  36.  * distributed with this work for additional information
  37.  * regarding copyright ownership.  The ASF licenses this file
  38.  * to you under the Apache License, Version 2.0 (the
  39.  * "License"); you may not use this file except in compliance
  40.  * with the License.  You may obtain a copy of the License at
  41.  *
  42.  *     http://www.apache.org/licenses/LICENSE-2.0
  43.  *
  44.  * Unless required by applicable law or agreed to in writing, software
  45.  * distributed under the License is distributed on an "AS IS" BASIS,
  46.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  47.  * See the License for the specific language governing permissions and
  48.  * limitations under the License.
  49.  */
  50. package org.apache.hadoop.util.bloom;
  51. import org.apache.hadoop.util.hash.Hash;
  52. /**
  53.  * Implements a hash object that returns a certain number of hashed values.
  54.  * 
  55.  * @see Key The general behavior of a key being stored in a filter
  56.  * @see Filter The general behavior of a filter
  57.  */
  58. public final class HashFunction {
  59.   /** The number of hashed values. */
  60.   private int nbHash;
  61.   /** The maximum highest returned value. */
  62.   private int maxValue;
  63.   /** Hashing algorithm to use. */
  64.   private Hash hashFunction;
  65.   
  66.   /**
  67.    * Constructor.
  68.    * <p>
  69.    * Builds a hash function that must obey to a given maximum number of returned values and a highest value.
  70.    * @param maxValue The maximum highest returned value.
  71.    * @param nbHash The number of resulting hashed values.
  72.    * @param hashType type of the hashing function (see {@link Hash}).
  73.    */
  74.   public HashFunction(int maxValue, int nbHash, int hashType) {
  75.     if (maxValue <= 0) {
  76.       throw new IllegalArgumentException("maxValue must be > 0");
  77.     }
  78.     
  79.     if (nbHash <= 0) {
  80.       throw new IllegalArgumentException("nbHash must be > 0");
  81.     }
  82.     this.maxValue = maxValue;
  83.     this.nbHash = nbHash;
  84.     this.hashFunction = Hash.getInstance(hashType);
  85.     if (this.hashFunction == null)
  86.       throw new IllegalArgumentException("hashType must be known");
  87.   }
  88.   /** Clears <i>this</i> hash function. A NOOP */
  89.   public void clear() {
  90.   }
  91.   /**
  92.    * Hashes a specified key into several integers.
  93.    * @param k The specified key.
  94.    * @return The array of hashed values.
  95.    */
  96.   public int[] hash(Key k){
  97.       byte[] b = k.getBytes();
  98.       if (b == null) {
  99.         throw new NullPointerException("buffer reference is null");
  100.       }
  101.       if (b.length == 0) {
  102.         throw new IllegalArgumentException("key length must be > 0");
  103.       }
  104.       int[] result = new int[nbHash];
  105.       for (int i = 0, initval = 0; i < nbHash; i++) {
  106.   initval = hashFunction.hash(b, initval);
  107.   result[i] = Math.abs(initval % maxValue);
  108.       }
  109.       return result;
  110.   }
  111. }