UpgradeCommand.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.hdfs.server.protocol;
  19. import java.io.DataInput;
  20. import java.io.DataOutput;
  21. import java.io.IOException;
  22. import org.apache.hadoop.io.Writable;
  23. import org.apache.hadoop.io.WritableFactories;
  24. import org.apache.hadoop.io.WritableFactory;
  25. /**
  26.  * This as a generic distributed upgrade command.
  27.  * 
  28.  * During the upgrade cluster components send upgrade commands to each other
  29.  * in order to obtain or share information with them.
  30.  * It is supposed that each upgrade defines specific upgrade command by
  31.  * deriving them from this class.
  32.  * The upgrade command contains version of the upgrade, which is verified 
  33.  * on the receiving side and current status of the upgrade.
  34.  */
  35. public class UpgradeCommand extends DatanodeCommand {
  36.   final static int UC_ACTION_UNKNOWN = DatanodeProtocol.DNA_UNKNOWN;
  37.   public final static int UC_ACTION_REPORT_STATUS = 100; // report upgrade status
  38.   public final static int UC_ACTION_START_UPGRADE = 101; // start upgrade
  39.   private int version;
  40.   private short upgradeStatus;
  41.   public UpgradeCommand() {
  42.     super(UC_ACTION_UNKNOWN);
  43.     this.version = 0;
  44.     this.upgradeStatus = 0;
  45.   }
  46.   public UpgradeCommand(int action, int version, short status) {
  47.     super(action);
  48.     this.version = version;
  49.     this.upgradeStatus = status;
  50.   }
  51.   public int getVersion() {
  52.     return this.version;
  53.   }
  54.   public short getCurrentStatus() {
  55.     return this.upgradeStatus;
  56.   }
  57.   /////////////////////////////////////////////////
  58.   // Writable
  59.   /////////////////////////////////////////////////
  60.   static {                                      // register a ctor
  61.     WritableFactories.setFactory
  62.       (UpgradeCommand.class,
  63.        new WritableFactory() {
  64.          public Writable newInstance() { return new UpgradeCommand(); }
  65.        });
  66.   }
  67.   /**
  68.    */
  69.   public void write(DataOutput out) throws IOException {
  70.     super.write(out);
  71.     out.writeInt(this.version);
  72.     out.writeShort(this.upgradeStatus);
  73.   }
  74.   /**
  75.    */
  76.   public void readFields(DataInput in) throws IOException {
  77.     super.readFields(in);
  78.     this.version = in.readInt();
  79.     this.upgradeStatus = in.readShort();
  80.   }
  81. }