OpenSearch/src/main/java/org/elasticsearch/ExceptionsHelper.java

91 lines
3.0 KiB
Java
Raw Normal View History

2010-02-08 15:30:06 +02:00
/*
2011-12-06 02:42:25 +02:00
* Licensed to ElasticSearch and Shay Banon under one
2010-02-08 15:30:06 +02:00
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
2011-12-06 02:42:25 +02:00
* regarding copyright ownership. ElasticSearch licenses this
2010-02-08 15:30:06 +02:00
* file to you under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
*
* 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.elasticsearch;
import org.elasticsearch.common.logging.ESLogger;
import org.elasticsearch.common.logging.Loggers;
2010-02-08 15:30:06 +02:00
/**
2011-12-06 02:42:25 +02:00
*
2010-02-08 15:30:06 +02:00
*/
public final class ExceptionsHelper {
private static final ESLogger logger = Loggers.getLogger(ExceptionsHelper.class);
2010-02-08 15:30:06 +02:00
public static Throwable unwrapCause(Throwable t) {
int counter = 0;
2010-02-08 15:30:06 +02:00
Throwable result = t;
while (result instanceof ElasticSearchWrapperException) {
2010-07-01 10:27:53 +03:00
if (result.getCause() == null) {
return result;
}
2010-07-01 10:27:53 +03:00
if (result.getCause() == result) {
return result;
}
if (counter++ > 10) {
// dear god, if we got more than 10 levels down, WTF? just bail
logger.warn("Exception cause unwrapping ran for 10 levels...", t);
return result;
}
2010-07-01 10:28:57 +03:00
result = result.getCause();
2010-02-08 15:30:06 +02:00
}
return result;
}
public static String detailedMessage(Throwable t) {
return detailedMessage(t, false, 0);
}
2010-02-08 15:30:06 +02:00
public static String detailedMessage(Throwable t, boolean newLines, int initialCounter) {
if (t == null) {
return "Unknown";
}
2010-02-08 15:30:06 +02:00
int counter = initialCounter + 1;
if (t.getCause() != null) {
StringBuilder sb = new StringBuilder();
while (t != null) {
if (t.getMessage() != null) {
2010-02-22 08:55:36 +02:00
sb.append(t.getClass().getSimpleName()).append("[");
2010-02-08 15:30:06 +02:00
sb.append(t.getMessage());
2010-02-22 08:55:36 +02:00
sb.append("]");
2010-02-08 15:30:06 +02:00
if (!newLines) {
sb.append("; ");
}
}
t = t.getCause();
if (t != null) {
if (newLines) {
sb.append("\n");
for (int i = 0; i < counter; i++) {
sb.append("\t");
}
} else {
sb.append("nested: ");
}
}
counter++;
}
return sb.toString();
} else {
2010-02-22 08:55:36 +02:00
return t.getClass().getSimpleName() + "[" + t.getMessage() + "]";
2010-02-08 15:30:06 +02:00
}
}
}