HashCode.java

  1. /**
  2.  *
  3.  * Copyright 2019 Florian Schmaus.
  4.  *
  5.  * Licensed under the Apache License, Version 2.0 (the "License");
  6.  * you may not use this file except in compliance with the License.
  7.  * You may obtain a copy of the License at
  8.  *
  9.  *     http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.jivesoftware.smack.util;

  18. public class HashCode {

  19.     private static final int MULTIPLIER_VALUE = 37;

  20.     public static class Cache {
  21.         private boolean calculated;
  22.         private int hashcode;

  23.         public int getHashCode(Calculator hashCodeCalculator) {
  24.             if (calculated) {
  25.                 return hashcode;
  26.             }

  27.             HashCode.Builder hashCodeBuilder = new HashCode.Builder();
  28.             hashCodeCalculator.calculateHash(hashCodeBuilder);

  29.             calculated = true;
  30.             hashcode = hashCodeBuilder.hashcode;

  31.             return hashcode;
  32.         }

  33.     }

  34.     @FunctionalInterface
  35.     public interface Calculator {
  36.         void calculateHash(HashCode.Builder hashCodeBuilder);
  37.     }

  38.     public static Builder builder() {
  39.         return new Builder();
  40.     }

  41.     public static class Builder {
  42.         private int hashcode = 17;

  43.         private void applyHash() {
  44.             applyHash(0);
  45.         }

  46.         private void applyHash(int hash) {
  47.             hashcode = MULTIPLIER_VALUE * hashcode + hash;
  48.         }

  49.         public Builder append(Object object) {
  50.             if (object == null) {
  51.                 applyHash();
  52.                 return this;
  53.             }

  54.             if (object.getClass().isArray()) {
  55.                 if (object instanceof int[]) {
  56.                     append((int[]) object);
  57.                 } else if (object instanceof long[]) {
  58.                     append((long[]) object);
  59.                 } else if (object instanceof boolean[]) {
  60.                     append((boolean[]) object);
  61.                 } else if (object instanceof double[]) {
  62.                     append((double[]) object);
  63.                 } else if (object instanceof float[]) {
  64.                     append((float[]) object);
  65.                 } else if (object instanceof short[]) {
  66.                     append((short[]) object);
  67.                 } else if (object instanceof char[]) {
  68.                     append((char[]) object);
  69.                 } else if (object instanceof byte[]) {
  70.                     append((byte[]) object);
  71.                 } else {
  72.                     append((Object[]) object);
  73.                 }
  74.             }
  75.             applyHash(object.hashCode());
  76.             return this;
  77.         }

  78.         public Builder append(boolean value) {
  79.             applyHash(value ? 0 : 1);
  80.             return this;
  81.         }

  82.         public Builder append(boolean[] array) {
  83.             if (array == null) {
  84.                 applyHash();
  85.                 return this;
  86.             }

  87.             for (boolean bool : array) {
  88.                 append(bool);
  89.             }
  90.             return this;
  91.         }

  92.         public Builder append(byte value) {
  93.             applyHash(value);
  94.             return this;
  95.         }

  96.         public Builder append(byte[] array) {
  97.             if (array == null) {
  98.                 applyHash();
  99.                 return this;
  100.             }

  101.             for (byte b : array) {
  102.                 append(b);
  103.             }
  104.             return this;
  105.         }

  106.         public Builder append(char value) {
  107.             applyHash(value);
  108.             return this;
  109.         }

  110.         public Builder append(char[] array) {
  111.             if (array == null) {
  112.                 applyHash();
  113.                 return this;
  114.             }

  115.             for (char c : array) {
  116.                 append(c);
  117.             }
  118.             return this;
  119.         }

  120.         public Builder append(double value) {
  121.             return append(Double.doubleToLongBits(value));
  122.         }

  123.         public Builder append(double[] array) {
  124.             if (array == null) {
  125.                 applyHash();
  126.                 return this;
  127.             }

  128.             for (double d : array) {
  129.                 append(d);
  130.             }
  131.             return this;
  132.         }

  133.         public Builder append(float value) {
  134.             return append(Float.floatToIntBits(value));
  135.         }

  136.         public Builder append(float[] array) {
  137.             if (array == null) {
  138.                 applyHash();
  139.                 return this;
  140.             }

  141.             for (float f : array) {
  142.                 append(f);
  143.             }
  144.             return this;
  145.         }

  146.         public Builder append(long value) {
  147.             applyHash((int) (value ^ (value >>> 32)));
  148.             return this;
  149.         }

  150.         public Builder append(long[] array) {
  151.             if (array == null) {
  152.                 applyHash();
  153.                 return this;
  154.             }

  155.             for (long l : array) {
  156.                 append(l);
  157.             }
  158.             return this;
  159.         }

  160.         public Builder append(Object[] array) {
  161.             if (array == null) {
  162.                 applyHash();
  163.                 return this;
  164.             }

  165.             for (Object element : array) {
  166.                 append(element);
  167.             }
  168.             return this;
  169.         }

  170.         public int build() {
  171.             return hashcode;
  172.         }
  173.     }

  174. }