All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.geode.redis.internal.ByteArrayWrapper Maven / Gradle / Ivy

Go to download

Apache Geode provides a database-like consistency model, reliable transaction processing and a shared-nothing architecture to maintain very low latency performance with high concurrency processing

There is a newer version: 1.15.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license
 * agreements. See the NOTICE file distributed with this work for additional information regarding
 * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance with the License. You may obtain a
 * copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
package org.apache.geode.redis.internal;

import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.util.Arrays;

import org.apache.geode.DataSerializable;
import org.apache.geode.DataSerializer;

/**
 * This class is a wrapper for the any Regions that need to store a byte[]. The only data this an
 * instance will store is a byte[] for the data but it is also serializable and comparable so it is
 * able to be used in querying
 * 
 *
 */
public class ByteArrayWrapper implements DataSerializable, Comparable {
  /**
   * Generated serialVerionUID
   */
  private static final long serialVersionUID = 9066391742266642992L;

  /**
   * The data portion of ValueWrapper
   */
  private byte[] value;

  /**
   * Hash of {@link #value}, this value is cached for performance
   */
  private transient int hashCode;

  private transient String toString;

  /**
   * Empty constructor for serialization
   */
  public ByteArrayWrapper() {}

  /**
   * Default constructor constructs a ValueWrapper and initialize the {@link #value}
   * 
   * @param value
   */
  public ByteArrayWrapper(byte[] value) {
    this.value = value;
    this.hashCode = Arrays.hashCode(value);
  }

  @Override
  public void toData(DataOutput out) throws IOException {
    DataSerializer.writeByteArray(value, out);
  }

  @Override
  public void fromData(DataInput in) throws IOException, ClassNotFoundException {
    this.value = DataSerializer.readByteArray(in);;
    this.hashCode = Arrays.hashCode(this.value);
  }

  @Override
  public String toString() {
    if (toString == null)
      toString = Coder.bytesToString(this.value);
    return toString;
  }

  public byte[] toBytes() {
    return this.value;
  }

  public void setBytes(byte[] bytes) {
    this.value = bytes;
    this.toString = null;
    this.hashCode = Arrays.hashCode(bytes);
  }

  /**
   * Getter for the length of the {@link #value} array
   * 
   * @return The length of the value array
   */
  public int length() {
    return value.length;
  }

  /**
   * Hash code for byte[] wrapped by this object, the actual hashcode is determined by
   * Arrays.hashCode(byte[])
   */
  @Override
  public int hashCode() {
    return this.hashCode;
  }


  /**
   * This equals is neither symmetric and therefore not transitive, because a String with the same
   * underlying bytes is considered equal. Clearly calling {@link String#equals(Object)} would not
   * yield the same result
   */
  @Override
  public boolean equals(Object other) {
    if (other instanceof ByteArrayWrapper)
      return Arrays.equals(value, ((ByteArrayWrapper) other).value);
    else if (other instanceof String) {
      return Arrays.equals(value, Coder.stringToBytes((String) other));
    }
    return false;
  }

  /**
   * This is a byte to byte comparator, it is not lexicographical but purely compares byte by byte
   * values
   */
  @Override
  public int compareTo(ByteArrayWrapper other) {
    return arrayCmp(value, other.value);

  }

  /**
   * Private helper method to compare two byte arrays, A.compareTo(B). The comparison is basically
   * numerical, for each byte index, the byte representing the greater value will be the greater
   * 
   * @param A byte[]
   * @param B byte[]
   * @return 1 if A > B, -1 if B > A, 0 if A == B
   */
  private int arrayCmp(byte[] A, byte[] B) {
    if (A == B)
      return 0;
    if (A == null) {
      return -1;
    } else if (B == null) {
      return 1;
    }

    int len = Math.min(A.length, B.length);

    for (int i = 0; i < len; i++) {
      byte a = A[i];
      byte b = B[i];
      int diff = a - b;
      if (diff > 0)
        return 1;
      else if (diff < 0)
        return -1;
    }

    if (A.length > B.length)
      return 1;
    else if (B.length > A.length)
      return -1;

    return 0;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy