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

网格计算

开发平台:

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.namenode;
  19. import java.io.DataInput;
  20. import java.io.DataOutput;
  21. import java.io.IOException;
  22. import org.apache.hadoop.hdfs.server.common.StorageInfo;
  23. import org.apache.hadoop.io.WritableComparable;
  24. /**
  25.  * A unique signature intended to identify checkpoint transactions.
  26.  */
  27. public class CheckpointSignature extends StorageInfo 
  28.                       implements WritableComparable<CheckpointSignature> {
  29.   private static final String FIELD_SEPARATOR = ":";
  30.   long editsTime = -1L;
  31.   long checkpointTime = -1L;
  32.   CheckpointSignature() {}
  33.   CheckpointSignature(FSImage fsImage) {
  34.     super(fsImage);
  35.     editsTime = fsImage.getEditLog().getFsEditTime();
  36.     checkpointTime = fsImage.checkpointTime;
  37.   }
  38.   CheckpointSignature(String str) {
  39.     String[] fields = str.split(FIELD_SEPARATOR);
  40.     assert fields.length == 5 : "Must be 5 fields in CheckpointSignature";
  41.     layoutVersion = Integer.valueOf(fields[0]);
  42.     namespaceID = Integer.valueOf(fields[1]);
  43.     cTime = Long.valueOf(fields[2]);
  44.     editsTime = Long.valueOf(fields[3]);
  45.     checkpointTime = Long.valueOf(fields[4]);
  46.   }
  47.   public String toString() {
  48.     return String.valueOf(layoutVersion) + FIELD_SEPARATOR
  49.          + String.valueOf(namespaceID) + FIELD_SEPARATOR
  50.          + String.valueOf(cTime) + FIELD_SEPARATOR
  51.          + String.valueOf(editsTime) + FIELD_SEPARATOR
  52.          + String.valueOf(checkpointTime);
  53.   }
  54.   void validateStorageInfo(StorageInfo si) throws IOException {
  55.     if(layoutVersion != si.layoutVersion
  56.         || namespaceID != si.namespaceID || cTime != si.cTime) {
  57.       // checkpointTime can change when the image is saved - do not compare
  58.       throw new IOException("Inconsistent checkpoint fileds. "
  59.           + "LV = " + layoutVersion + " namespaceID = " + namespaceID
  60.           + " cTime = " + cTime + ". Expecting respectively: "
  61.           + si.layoutVersion + "; " + si.namespaceID + "; " + si.cTime);
  62.     }
  63.   }
  64.   //
  65.   // Comparable interface
  66.   //
  67.   public int compareTo(CheckpointSignature o) {
  68.     return 
  69.       (layoutVersion < o.layoutVersion) ? -1 : 
  70.                   (layoutVersion > o.layoutVersion) ? 1 :
  71.       (namespaceID < o.namespaceID) ? -1 : (namespaceID > o.namespaceID) ? 1 :
  72.       (cTime < o.cTime) ? -1 : (cTime > o.cTime) ? 1 :
  73.       (editsTime < o.editsTime) ? -1 : (editsTime > o.editsTime) ? 1 :
  74.       (checkpointTime < o.checkpointTime) ? -1 : 
  75.                   (checkpointTime > o.checkpointTime) ? 1 : 0;
  76.   }
  77.   public boolean equals(Object o) {
  78.     if (!(o instanceof CheckpointSignature)) {
  79.       return false;
  80.     }
  81.     return compareTo((CheckpointSignature)o) == 0;
  82.   }
  83.   public int hashCode() {
  84.     return layoutVersion ^ namespaceID ^
  85.             (int)(cTime ^ editsTime ^ checkpointTime);
  86.   }
  87.   /////////////////////////////////////////////////
  88.   // Writable
  89.   /////////////////////////////////////////////////
  90.   public void write(DataOutput out) throws IOException {
  91.     out.writeInt(getLayoutVersion());
  92.     out.writeInt(getNamespaceID());
  93.     out.writeLong(getCTime());
  94.     out.writeLong(editsTime);
  95.     out.writeLong(checkpointTime);
  96.   }
  97.   public void readFields(DataInput in) throws IOException {
  98.     layoutVersion = in.readInt();
  99.     namespaceID = in.readInt();
  100.     cTime = in.readLong();
  101.     editsTime = in.readLong();
  102.     checkpointTime = in.readLong();
  103.   }
  104. }