RemoteException.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.ipc;
  19. import java.io.IOException;
  20. import java.lang.reflect.Constructor;
  21. import org.xml.sax.Attributes;
  22. import org.znerd.xmlenc.XMLOutputter;
  23. public class RemoteException extends IOException {
  24.   /** For java.io.Serializable */
  25.   private static final long serialVersionUID = 1L;
  26.   private String className;
  27.   
  28.   public RemoteException(String className, String msg) {
  29.     super(msg);
  30.     this.className = className;
  31.   }
  32.   
  33.   public String getClassName() {
  34.     return className;
  35.   }
  36.   /**
  37.    * If this remote exception wraps up one of the lookupTypes
  38.    * then return this exception.
  39.    * <p>
  40.    * Unwraps any IOException.
  41.    * 
  42.    * @param lookupTypes the desired exception class.
  43.    * @return IOException, which is either the lookupClass exception or this.
  44.    */
  45.   public IOException unwrapRemoteException(Class<?>... lookupTypes) {
  46.     if(lookupTypes == null)
  47.       return this;
  48.     for(Class<?> lookupClass : lookupTypes) {
  49.       if(!lookupClass.getName().equals(getClassName()))
  50.         continue;
  51.       try {
  52.         return instantiateException(lookupClass.asSubclass(IOException.class));
  53.       } catch(Exception e) {
  54.         // cannot instantiate lookupClass, just return this
  55.         return this;
  56.       }
  57.     }
  58.     // wrapped up exception is not in lookupTypes, just return this
  59.     return this;
  60.   }
  61.   /**
  62.    * Instantiate and return the exception wrapped up by this remote exception.
  63.    * 
  64.    * <p> This unwraps any <code>Throwable</code> that has a constructor taking
  65.    * a <code>String</code> as a parameter.
  66.    * Otherwise it returns this.
  67.    * 
  68.    * @return <code>Throwable
  69.    */
  70.   public IOException unwrapRemoteException() {
  71.     try {
  72.       Class<?> realClass = Class.forName(getClassName());
  73.       return instantiateException(realClass.asSubclass(IOException.class));
  74.     } catch(Exception e) {
  75.       // cannot instantiate the original exception, just return this
  76.     }
  77.     return this;
  78.   }
  79.   private IOException instantiateException(Class<? extends IOException> cls)
  80.       throws Exception {
  81.     Constructor<? extends IOException> cn = cls.getConstructor(String.class);
  82.     cn.setAccessible(true);
  83.     String firstLine = this.getMessage();
  84.     int eol = firstLine.indexOf('n');
  85.     if (eol>=0) {
  86.       firstLine = firstLine.substring(0, eol);
  87.     }
  88.     IOException ex = cn.newInstance(firstLine);
  89.     ex.initCause(this);
  90.     return ex;
  91.   }
  92.   /** Write the object to XML format */
  93.   public void writeXml(String path, XMLOutputter doc) throws IOException {
  94.     doc.startTag(RemoteException.class.getSimpleName());
  95.     doc.attribute("path", path);
  96.     doc.attribute("class", getClassName());
  97.     String msg = getLocalizedMessage();
  98.     int i = msg.indexOf("n");
  99.     if (i >= 0) {
  100.       msg = msg.substring(0, i);
  101.     }
  102.     doc.attribute("message", msg.substring(msg.indexOf(":") + 1).trim());
  103.     doc.endTag();
  104.   }
  105.   /** Create RemoteException from attributes */
  106.   public static RemoteException valueOf(Attributes attrs) {
  107.     return new RemoteException(attrs.getValue("class"),
  108.         attrs.getValue("message")); 
  109.   }
  110. }