datanodeinfo.java

来自「Hadoop是一个用于运行应用程序在大型集群的廉价硬件设备上的框架。Hadoop」· Java 代码 · 共 178 行

JAVA
178
字号
/** * Copyright 2005 The Apache Software Foundation * * Licensed 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.hadoop.dfs;import org.apache.hadoop.io.*;import java.io.*;import java.util.*;/************************************************** * DatanodeInfo tracks stats on a given DataNode, * such as available storage capacity, last update * time, etc. * * @author Mike Cafarella **************************************************/class DatanodeInfo implements Writable, Comparable {    static {                                      // register a ctor      WritableFactories.setFactory        (DatanodeInfo.class,         new WritableFactory() {           public Writable newInstance() { return new DatanodeInfo(); }         });    }    private UTF8 name;    private long capacityBytes, remainingBytes, lastUpdate;    private volatile TreeSet blocks;    /** Create an empty DatanodeInfo.     */    public DatanodeInfo() {        this(new UTF8(), 0, 0);    }   /**    * @param name hostname:portNumber as UTF8 object.    */    public DatanodeInfo(UTF8 name) {        this.name = name;        this.blocks = new TreeSet();        updateHeartbeat(0, 0);            }   /**    * @param name hostname:portNumber as UTF8 object.    */    public DatanodeInfo(UTF8 name, long capacity, long remaining) {        this.name = name;        this.blocks = new TreeSet();        updateHeartbeat(capacity, remaining);    }   /**    */    public void updateBlocks(Block newBlocks[]) {        blocks.clear();        for (int i = 0; i < newBlocks.length; i++) {            blocks.add(newBlocks[i]);        }    }   /**    */    public void addBlock(Block b) {        blocks.add(b);    }    /**     */    public void updateHeartbeat(long capacity, long remaining) {        this.capacityBytes = capacity;        this.remainingBytes = remaining;        this.lastUpdate = System.currentTimeMillis();    }    /**     * @return hostname:portNumber as UTF8 object.     */    public UTF8 getName() {        return name;    }    /**     * @return hostname and no :portNumber as UTF8 object.     */    public UTF8 getHost() {        String nameStr = name.toString();        int colon = nameStr.indexOf(":");        if (colon < 0) {            return name;        } else {            return new UTF8(nameStr.substring(0, colon));        }    }    public String toString() {        return name.toString();    }    public Block[] getBlocks() {        return (Block[]) blocks.toArray(new Block[blocks.size()]);    }    public Iterator getBlockIterator() {        return blocks.iterator();    }    public long getCapacity() {        return capacityBytes;    }    public long getRemaining() {        return remainingBytes;    }    public long lastUpdate() {        return lastUpdate;    }  /** Comparable.   * Basis of compare is the UTF8 name (host:portNumber) only.   * @param o   * @return as specified by Comparable.   */    public int compareTo(Object o) {        DatanodeInfo d = (DatanodeInfo) o;        return name.compareTo(d.getName());    }    /////////////////////////////////////////////////    // Writable    /////////////////////////////////////////////////    /**     */    public void write(DataOutput out) throws IOException {        name.write(out);        out.writeLong(capacityBytes);        out.writeLong(remainingBytes);        out.writeLong(lastUpdate);        /**        out.writeInt(blocks.length);        for (int i = 0; i < blocks.length; i++) {            blocks[i].write(out);        }        **/    }    /**     */    public void readFields(DataInput in) throws IOException {        this.name = new UTF8();        this.name.readFields(in);        this.capacityBytes = in.readLong();        this.remainingBytes = in.readLong();        this.lastUpdate = in.readLong();        /**        int numBlocks = in.readInt();        this.blocks = new Block[numBlocks];        for (int i = 0; i < blocks.length; i++) {            blocks[i] = new Block();            blocks[i].readFields(in);        }        **/    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?