BinaryComparable.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.io;
  19. /**
  20.  * Interface supported by {@link org.apache.hadoop.io.WritableComparable}
  21.  * types supporting ordering/permutation by a representative set of bytes.
  22.  */
  23. public abstract class BinaryComparable implements Comparable<BinaryComparable> {
  24.   /**
  25.    * Return n st bytes 0..n-1 from {#getBytes()} are valid.
  26.    */
  27.   public abstract int getLength();
  28.   /**
  29.    * Return representative byte array for this instance.
  30.    */
  31.   public abstract byte[] getBytes();
  32.   /**
  33.    * Compare bytes from {#getBytes()}.
  34.    * @see org.apache.hadoop.io.WritableComparator#compareBytes(byte[],int,int,byte[],int,int)
  35.    */
  36.   public int compareTo(BinaryComparable other) {
  37.     if (this == other)
  38.       return 0;
  39.     return WritableComparator.compareBytes(getBytes(), 0, getLength(),
  40.              other.getBytes(), 0, other.getLength());
  41.   }
  42.   /**
  43.    * Compare bytes from {#getBytes()} to those provided.
  44.    */
  45.   public int compareTo(byte[] other, int off, int len) {
  46.     return WritableComparator.compareBytes(getBytes(), 0, getLength(),
  47.              other, off, len);
  48.   }
  49.   /**
  50.    * Return true if bytes from {#getBytes()} match.
  51.    */
  52.   public boolean equals(Object other) {
  53.     if (!(other instanceof BinaryComparable))
  54.       return false;
  55.     BinaryComparable that = (BinaryComparable)other;
  56.     if (this.getLength() != that.getLength())
  57.       return false;
  58.     return this.compareTo(that) == 0;
  59.   }
  60.   /**
  61.    * Return a hash of the bytes returned from {#getBytes()}.
  62.    * @see org.apache.hadoop.io.WritableComparator#hashBytes(byte[],int)
  63.    */
  64.   public int hashCode() {
  65.     return WritableComparator.hashBytes(getBytes(), getLength());
  66.   }
  67. }