
org.tinygroup.exceptionhandler.impl.ExceptionHandlerManagerImpl Maven / Gradle / Ivy
/**
* Copyright (c) 1997-2013, www.tinygroup.org ([email protected]).
*
* Licensed under the GPL, Version 3.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.gnu.org/licenses/gpl.html
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.tinygroup.exceptionhandler.impl;
import org.tinygroup.event.Event;
import org.tinygroup.exceptionhandler.ExceptionHandler;
import org.tinygroup.exceptionhandler.ExceptionHandlerManager;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class ExceptionHandlerManagerImpl implements ExceptionHandlerManager {
private Map handlerNameMap = new HashMap();
private Map, ExceptionHandler> handlerMap = new HashMap, ExceptionHandler>();
private List> exceptionList = new ArrayList>();
public void addHandler(String exception, ExceptionHandler handler) throws ClassNotFoundException {
if (handlerNameMap.containsKey(exception)) {
return;
}
handlerNameMap.put(exception, handler);
Class> exceptionClass = Class.forName(exception);
exceptionList.add(exceptionClass);
handlerMap.put(exceptionClass, handler);
}
public boolean handle(Throwable e,Event event) {
Class> exceptionClass = e.getClass();
int index = exceptionList.indexOf(exceptionClass);
if(index!=-1){
handlerMap.get( exceptionList.get(index) ).handle(e,event);
return true;
}else{
for(int i=0;i clazz = exceptionList.get(i);
if( implementInterface(exceptionClass, clazz) ){
handlerMap.get(clazz).handle(e,event);
return true;
}
}
}
return false;
}
public boolean handleWithAllHandler(Throwable e,Event event) {
Class> exceptionClass = e.getClass();
boolean flag = false;
for(int i=0;i clazz = exceptionList.get(i);
if( implementInterface(exceptionClass, clazz) ){
handlerMap.get(clazz).handle(e,event);
flag =true;
}
}
return flag;
}
private boolean implementInterface(Class> clazz, Class> interfaceClazz) {
return interfaceClazz.isAssignableFrom(clazz);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy