com.facebook.presto.jdbc.internal.client.FailureInfo Maven / Gradle / Ivy
The newest version!
/*
* Licensed 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 com.facebook.presto.jdbc.internal.client;
import com.facebook.presto.jdbc.internal.jackson.annotation.JsonCreator;
import com.facebook.presto.jdbc.internal.jackson.annotation.JsonProperty;
import com.facebook.presto.jdbc.internal.guava.collect.ImmutableList;
import com.facebook.presto.jdbc.internal.javax.annotation.Nullable;
import com.facebook.presto.jdbc.internal.javax.annotation.concurrent.Immutable;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import static java.util.Objects.requireNonNull;
@Immutable
public class FailureInfo
{
private static final Pattern STACK_TRACE_PATTERN = Pattern.compile("(.*)\\.(.*)\\(([^:]*)(?::(.*))?\\)");
private final String type;
private final String message;
private final FailureInfo cause;
private final List suppressed;
private final List stack;
private final ErrorLocation errorLocation;
@JsonCreator
public FailureInfo(
@JsonProperty("type") String type,
@JsonProperty("message") String message,
@JsonProperty("cause") FailureInfo cause,
@JsonProperty("suppressed") List suppressed,
@JsonProperty("stack") List stack,
@JsonProperty("errorLocation") @Nullable ErrorLocation errorLocation)
{
requireNonNull(type, "type is null");
requireNonNull(suppressed, "suppressed is null");
requireNonNull(stack, "stack is null");
this.type = type;
this.message = message;
this.cause = cause;
this.suppressed = ImmutableList.copyOf(suppressed);
this.stack = ImmutableList.copyOf(stack);
this.errorLocation = errorLocation;
}
@JsonProperty
public String getType()
{
return type;
}
@Nullable
@JsonProperty
public String getMessage()
{
return message;
}
@Nullable
@JsonProperty
public FailureInfo getCause()
{
return cause;
}
@JsonProperty
public List getSuppressed()
{
return suppressed;
}
@JsonProperty
public List getStack()
{
return stack;
}
@Nullable
@JsonProperty
public ErrorLocation getErrorLocation()
{
return errorLocation;
}
public RuntimeException toException()
{
return toException(this);
}
private static FailureException toException(FailureInfo failureInfo)
{
if (failureInfo == null) {
return null;
}
FailureException failure = new FailureException(failureInfo.getType(), failureInfo.getMessage(), toException(failureInfo.getCause()));
for (FailureInfo suppressed : failureInfo.getSuppressed()) {
failure.addSuppressed(toException(suppressed));
}
ImmutableList.Builder stackTraceBuilder = ImmutableList.builder();
for (String stack : failureInfo.getStack()) {
stackTraceBuilder.add(toStackTraceElement(stack));
}
ImmutableList stackTrace = stackTraceBuilder.build();
failure.setStackTrace(stackTrace.toArray(new StackTraceElement[stackTrace.size()]));
return failure;
}
public static StackTraceElement toStackTraceElement(String stack)
{
Matcher matcher = STACK_TRACE_PATTERN.matcher(stack);
if (matcher.matches()) {
String declaringClass = matcher.group(1);
String methodName = matcher.group(2);
String fileName = matcher.group(3);
int number = -1;
if (fileName.equals("Native Method")) {
fileName = null;
number = -2;
}
else if (matcher.group(4) != null) {
number = Integer.parseInt(matcher.group(4));
}
return new StackTraceElement(declaringClass, methodName, fileName, number);
}
return new StackTraceElement("Unknown", stack, null, -1);
}
private static class FailureException
extends RuntimeException
{
private final String type;
FailureException(String type, String message, FailureException cause)
{
super(message, cause);
this.type = requireNonNull(type, "type is null");
}
public String getType()
{
return type;
}
@Override
public String toString()
{
String message = getMessage();
if (message != null) {
return type + ": " + message;
}
return type;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy