MD5MD5CRC32FileChecksum.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.fs;
  19. import java.io.DataInput;
  20. import java.io.DataOutput;
  21. import java.io.IOException;
  22. import org.apache.hadoop.io.MD5Hash;
  23. import org.apache.hadoop.io.WritableUtils;
  24. import org.xml.sax.Attributes;
  25. import org.xml.sax.SAXException;
  26. import org.znerd.xmlenc.XMLOutputter;
  27. /** MD5 of MD5 of CRC32. */
  28. public class MD5MD5CRC32FileChecksum extends FileChecksum {
  29.   public static final int LENGTH = MD5Hash.MD5_LEN
  30.       + (Integer.SIZE + Long.SIZE)/Byte.SIZE;
  31.   private int bytesPerCRC;
  32.   private long crcPerBlock;
  33.   private MD5Hash md5;
  34.   /** Same as this(0, 0, null) */
  35.   public MD5MD5CRC32FileChecksum() {
  36.     this(0, 0, null);
  37.   }
  38.   /** Create a MD5FileChecksum */
  39.   public MD5MD5CRC32FileChecksum(int bytesPerCRC, long crcPerBlock, MD5Hash md5) {
  40.     this.bytesPerCRC = bytesPerCRC;
  41.     this.crcPerBlock = crcPerBlock;
  42.     this.md5 = md5;
  43.   }
  44.   
  45.   /** {@inheritDoc} */ 
  46.   public String getAlgorithmName() {
  47.     return "MD5-of-" + crcPerBlock + "MD5-of-" + bytesPerCRC + "CRC32";
  48.   }
  49.   /** {@inheritDoc} */ 
  50.   public int getLength() {return LENGTH;}
  51.   /** {@inheritDoc} */ 
  52.   public byte[] getBytes() {
  53.     return WritableUtils.toByteArray(this);
  54.   }
  55.   /** {@inheritDoc} */ 
  56.   public void readFields(DataInput in) throws IOException {
  57.     bytesPerCRC = in.readInt();
  58.     crcPerBlock = in.readLong();
  59.     md5 = MD5Hash.read(in);
  60.   }
  61.   /** {@inheritDoc} */ 
  62.   public void write(DataOutput out) throws IOException {
  63.     out.writeInt(bytesPerCRC);
  64.     out.writeLong(crcPerBlock);
  65.     md5.write(out);    
  66.   }
  67.   /** Write that object to xml output. */
  68.   public static void write(XMLOutputter xml, MD5MD5CRC32FileChecksum that
  69.       ) throws IOException {
  70.     xml.startTag(MD5MD5CRC32FileChecksum.class.getName());
  71.     if (that != null) {
  72.       xml.attribute("bytesPerCRC", "" + that.bytesPerCRC);
  73.       xml.attribute("crcPerBlock", "" + that.crcPerBlock);
  74.       xml.attribute("md5", "" + that.md5);
  75.     }
  76.     xml.endTag();
  77.   }
  78.   /** Return the object represented in the attributes. */
  79.   public static MD5MD5CRC32FileChecksum valueOf(Attributes attrs
  80.       ) throws SAXException {
  81.     final String bytesPerCRC = attrs.getValue("bytesPerCRC");
  82.     final String crcPerBlock = attrs.getValue("crcPerBlock");
  83.     final String md5 = attrs.getValue("md5");
  84.     if (bytesPerCRC == null || crcPerBlock == null || md5 == null) {
  85.       return null;
  86.     }
  87.     try {
  88.       return new MD5MD5CRC32FileChecksum(Integer.valueOf(bytesPerCRC),
  89.           Integer.valueOf(crcPerBlock), new MD5Hash(md5));
  90.     } catch(Exception e) {
  91.       throw new SAXException("Invalid attributes: bytesPerCRC=" + bytesPerCRC
  92.           + ", crcPerBlock=" + crcPerBlock + ", md5=" + md5, e);
  93.     }
  94.   }
  95.   /** {@inheritDoc} */ 
  96.   public String toString() {
  97.     return getAlgorithmName() + ":" + md5;
  98.   }
  99. }