use of com.liferay.portal.kernel.io.unsync.UnsyncByteArrayInputStream in project liferay-ide by liferay.
the class ClpSerializer method translateThrowable.
public static Throwable translateThrowable(Throwable throwable) {
if (_useReflectionToTranslateThrowable) {
try {
UnsyncByteArrayOutputStream unsyncByteArrayOutputStream = new UnsyncByteArrayOutputStream();
ObjectOutputStream objectOutputStream = new ObjectOutputStream(unsyncByteArrayOutputStream);
objectOutputStream.writeObject(throwable);
objectOutputStream.flush();
objectOutputStream.close();
UnsyncByteArrayInputStream unsyncByteArrayInputStream = new UnsyncByteArrayInputStream(unsyncByteArrayOutputStream.unsafeGetByteArray(), 0, unsyncByteArrayOutputStream.size());
Thread currentThread = Thread.currentThread();
ClassLoader contextClassLoader = currentThread.getContextClassLoader();
ObjectInputStream objectInputStream = new ClassLoaderObjectInputStream(unsyncByteArrayInputStream, contextClassLoader);
throwable = (Throwable) objectInputStream.readObject();
objectInputStream.close();
return throwable;
} catch (ClassNotFoundException cnfe) {
if (_log.isInfoEnabled()) {
_log.info("Do not use reflection to translate throwable");
}
_useReflectionToTranslateThrowable = false;
} catch (SecurityException se) {
if (_log.isInfoEnabled()) {
_log.info("Do not use reflection to translate throwable");
}
_useReflectionToTranslateThrowable = false;
} catch (Throwable throwable2) {
_log.error(throwable2, throwable2);
return throwable2;
}
}
Class<?> clazz = throwable.getClass();
String className = clazz.getName();
if (className.equals("com.liferay.opensocial.DuplicateGadgetURLException")) {
return new com.liferay.opensocial.DuplicateGadgetURLException(throwable.getMessage(), throwable.getCause());
}
if (className.equals("com.liferay.opensocial.GadgetPortletCategoryNamesException")) {
return new com.liferay.opensocial.GadgetPortletCategoryNamesException(throwable.getMessage(), throwable.getCause());
}
if (className.equals("com.liferay.opensocial.GadgetURLException")) {
return new com.liferay.opensocial.GadgetURLException(throwable.getMessage(), throwable.getCause());
}
if (className.equals("com.liferay.opensocial.NoSuchGadgetException")) {
return new com.liferay.opensocial.NoSuchGadgetException(throwable.getMessage(), throwable.getCause());
}
if (className.equals("com.liferay.opensocial.NoSuchOAuthConsumerException")) {
return new com.liferay.opensocial.NoSuchOAuthConsumerException(throwable.getMessage(), throwable.getCause());
}
if (className.equals("com.liferay.opensocial.NoSuchOAuthTokenException")) {
return new com.liferay.opensocial.NoSuchOAuthTokenException(throwable.getMessage(), throwable.getCause());
}
return throwable;
}
Aggregations