RetryInvocationHandler.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.io.retry;
  19. import java.lang.reflect.InvocationHandler;
  20. import java.lang.reflect.InvocationTargetException;
  21. import java.lang.reflect.Method;
  22. import java.util.Collections;
  23. import java.util.Map;
  24. import org.apache.commons.logging.Log;
  25. import org.apache.commons.logging.LogFactory;
  26. import org.apache.hadoop.util.StringUtils;
  27. class RetryInvocationHandler implements InvocationHandler {
  28.   public static final Log LOG = LogFactory.getLog(RetryInvocationHandler.class);
  29.   private Object implementation;
  30.   
  31.   private RetryPolicy defaultPolicy;
  32.   private Map<String,RetryPolicy> methodNameToPolicyMap;
  33.   
  34.   public RetryInvocationHandler(Object implementation, RetryPolicy retryPolicy) {
  35.     this.implementation = implementation;
  36.     this.defaultPolicy = retryPolicy;
  37.     this.methodNameToPolicyMap = Collections.emptyMap();
  38.   }
  39.   
  40.   public RetryInvocationHandler(Object implementation, Map<String, RetryPolicy> methodNameToPolicyMap) {
  41.     this.implementation = implementation;
  42.     this.defaultPolicy = RetryPolicies.TRY_ONCE_THEN_FAIL;
  43.     this.methodNameToPolicyMap = methodNameToPolicyMap;
  44.   }
  45.   public Object invoke(Object proxy, Method method, Object[] args)
  46.     throws Throwable {
  47.     RetryPolicy policy = methodNameToPolicyMap.get(method.getName());
  48.     if (policy == null) {
  49.       policy = defaultPolicy;
  50.     }
  51.     
  52.     int retries = 0;
  53.     while (true) {
  54.       try {
  55.         return invokeMethod(method, args);
  56.       } catch (Exception e) {
  57.         if (!policy.shouldRetry(e, retries++)) {
  58.           LOG.info("Exception while invoking " + method.getName()
  59.                    + " of " + implementation.getClass() + ". Not retrying."
  60.                    + StringUtils.stringifyException(e));
  61.           if (!method.getReturnType().equals(Void.TYPE)) {
  62.             throw e; // non-void methods can't fail without an exception
  63.           }
  64.           return null;
  65.         }
  66.         LOG.debug("Exception while invoking " + method.getName()
  67.                  + " of " + implementation.getClass() + ". Retrying."
  68.                  + StringUtils.stringifyException(e));
  69.       }
  70.     }
  71.   }
  72.   private Object invokeMethod(Method method, Object[] args) throws Throwable {
  73.     try {
  74.       if (!method.isAccessible()) {
  75.         method.setAccessible(true);
  76.       }
  77.       return method.invoke(implementation, args);
  78.     } catch (InvocationTargetException e) {
  79.       throw e.getCause();
  80.     }
  81.   }
  82. }