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

网格计算

开发平台:

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. import java.io.*;
  20. /** A WritableComparable for longs. */
  21. public class LongWritable implements WritableComparable {
  22.   private long value;
  23.   public LongWritable() {}
  24.   public LongWritable(long value) { set(value); }
  25.   /** Set the value of this LongWritable. */
  26.   public void set(long value) { this.value = value; }
  27.   /** Return the value of this LongWritable. */
  28.   public long get() { return value; }
  29.   public void readFields(DataInput in) throws IOException {
  30.     value = in.readLong();
  31.   }
  32.   public void write(DataOutput out) throws IOException {
  33.     out.writeLong(value);
  34.   }
  35.   /** Returns true iff <code>o</code> is a LongWritable with the same value. */
  36.   public boolean equals(Object o) {
  37.     if (!(o instanceof LongWritable))
  38.       return false;
  39.     LongWritable other = (LongWritable)o;
  40.     return this.value == other.value;
  41.   }
  42.   public int hashCode() {
  43.     return (int)value;
  44.   }
  45.   /** Compares two LongWritables. */
  46.   public int compareTo(Object o) {
  47.     long thisValue = this.value;
  48.     long thatValue = ((LongWritable)o).value;
  49.     return (thisValue<thatValue ? -1 : (thisValue==thatValue ? 0 : 1));
  50.   }
  51.   public String toString() {
  52.     return Long.toString(value);
  53.   }
  54.   /** A Comparator optimized for LongWritable. */ 
  55.   public static class Comparator extends WritableComparator {
  56.     public Comparator() {
  57.       super(LongWritable.class);
  58.     }
  59.     public int compare(byte[] b1, int s1, int l1,
  60.                        byte[] b2, int s2, int l2) {
  61.       long thisValue = readLong(b1, s1);
  62.       long thatValue = readLong(b2, s2);
  63.       return (thisValue<thatValue ? -1 : (thisValue==thatValue ? 0 : 1));
  64.     }
  65.   }
  66.   /** A decreasing Comparator optimized for LongWritable. */ 
  67.   public static class DecreasingComparator extends Comparator {
  68.     public int compare(WritableComparable a, WritableComparable b) {
  69.       return -super.compare(a, b);
  70.     }
  71.     public int compare(byte[] b1, int s1, int l1, byte[] b2, int s2, int l2) {
  72.       return -super.compare(b1, s1, l1, b2, s2, l2);
  73.     }
  74.   }
  75.   static {                                       // register default comparator
  76.     WritableComparator.define(LongWritable.class, new Comparator());
  77.   }
  78. }