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

com.aliyun.odps.io.SortedMapWritable Maven / Gradle / Ivy

The 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 com.aliyun.odps.io;

import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.util.Collection;
import java.util.Comparator;
import java.util.Map;
import java.util.Set;
import java.util.SortedMap;
import java.util.TreeMap;

import com.aliyun.odps.utils.ReflectionUtils;

/**
 * 可用于序列化的{@link SortedMap}。
 */
public class SortedMapWritable extends AbstractMapWritable implements
                                                           SortedMap {

  private SortedMap instance;

  /**
   * 默认构造函数
   */
  public SortedMapWritable() {
    super();
    this.instance = new TreeMap();
  }

  public SortedMapWritable(Comparator comparator) {
    super();
    this.instance = new TreeMap(comparator);
  }

  /**
   * 拷贝构造函数{@link SortedMapWritable}
   *
   * @param 另一个待拷贝的
   */
  public SortedMapWritable(SortedMapWritable other) {
    this();
    copy(other);
  }

  @Override
  public Comparator comparator() {
    return instance.comparator();
  }

  @Override
  public WritableComparable firstKey() {
    return instance.firstKey();
  }

  @Override
  public SortedMap headMap(
      WritableComparable toKey) {
    return instance.headMap(toKey);
  }

  @Override
  public WritableComparable lastKey() {
    return instance.lastKey();
  }

  @Override
  public SortedMap subMap(
      WritableComparable fromKey, WritableComparable toKey) {
    return instance.subMap(fromKey, toKey);
  }

  @Override
  public SortedMap tailMap(
      WritableComparable fromKey) {
    return instance.tailMap(fromKey);
  }

  @Override
  public void clear() {
    instance.clear();
  }

  @Override
  public boolean containsKey(Object key) {
    return instance.containsKey(key);
  }

  @Override
  public boolean containsValue(Object value) {
    return instance.containsValue(value);
  }

  @Override
  public Set> entrySet() {
    return instance.entrySet();
  }

  @Override
  public Writable get(Object key) {
    return instance.get(key);
  }

  @Override
  public boolean isEmpty() {
    return instance.isEmpty();
  }

  @Override
  public Set keySet() {
    return instance.keySet();
  }

  @Override
  public Writable put(WritableComparable key, Writable value) {
    addToMap(key.getClass());
    addToMap(value.getClass());
    return instance.put(key, value);
  }

  @Override
  public void putAll(Map t) {
    for (Map.Entry e : t
        .entrySet()) {

      put(e.getKey(), e.getValue());
    }
  }

  @Override
  public Writable remove(Object key) {
    return instance.remove(key);
  }

  @Override
  public int size() {
    return instance.size();
  }

  @Override
  public Collection values() {
    return instance.values();
  }

  @SuppressWarnings("unchecked")
  @Override
  public void readFields(DataInput in) throws IOException {
    super.readFields(in);

    // Read the number of entries in the map
    int entries = in.readInt();

    // Then read each key/value pair
    for (int i = 0; i < entries; i++) {
      WritableComparable key = (WritableComparable) ReflectionUtils
          .newInstance(getClass(in.readByte()), getConf());

      key.readFields(in);

      Writable value = (Writable) ReflectionUtils.newInstance(
          getClass(in.readByte()), getConf());

      value.readFields(in);
      instance.put(key, value);
    }
  }

  @Override
  public void write(DataOutput out) throws IOException {
    super.write(out);

    // Write out the number of entries in the map
    out.writeInt(instance.size());

    // Then write out each key/value pair
    for (Map.Entry e : instance.entrySet()) {
      out.writeByte(getId(e.getKey().getClass()));
      e.getKey().write(out);
      out.writeByte(getId(e.getValue().getClass()));
      e.getValue().write(out);
    }
  }

  @Override
  public boolean equals(Object obj) {
    if (this == obj) {
      return true;
    }

    if (obj instanceof SortedMapWritable) {
      Map map = (Map) obj;
      if (size() != map.size()) {
        return false;
      }

      return entrySet().equals(map.entrySet());
    }

    return false;
  }

  @Override
  public int hashCode() {
    return instance.hashCode();
  }

  @Override
  public String toString() {
    StringBuffer sb = new StringBuffer("[");
    for (Map.Entry entry : entrySet()) {
      sb.append("{");
      sb.append(entry.getKey().toString());
      sb.append(":");
      sb.append(entry.getValue().toString());
      sb.append("}");
    }
    sb.append("]");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy