blob: a2973e05ebe0e16337c394dde23f2aa4d940d412 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this 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.apache.iceberg.rest.responses;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonNode;
import java.io.IOException;
import java.io.StringWriter;
import java.io.UncheckedIOException;
import java.util.List;
import org.apache.iceberg.relocated.com.google.common.base.Preconditions;
import org.apache.iceberg.util.JsonUtil;
public class ErrorResponseParser {
private ErrorResponseParser() {}
private static final String ERROR = "error";
private static final String MESSAGE = "message";
private static final String TYPE = "type";
private static final String CODE = "code";
private static final String STACK = "stack";
public static String toJson(ErrorResponse errorResponse) {
return toJson(errorResponse, false);
}
public static String toJson(ErrorResponse errorResponse, boolean pretty) {
try {
StringWriter writer = new StringWriter();
JsonGenerator generator = JsonUtil.factory().createGenerator(writer);
if (pretty) {
generator.useDefaultPrettyPrinter();
}
toJson(errorResponse, generator);
generator.flush();
return writer.toString();
} catch (IOException e) {
throw new UncheckedIOException(
String.format("Failed to write error response json for: %s", errorResponse), e);
}
}
public static void toJson(ErrorResponse errorResponse, JsonGenerator generator)
throws IOException {
generator.writeStartObject();
generator.writeObjectFieldStart(ERROR);
generator.writeStringField(MESSAGE, errorResponse.message());
generator.writeStringField(TYPE, errorResponse.type());
generator.writeNumberField(CODE, errorResponse.code());
if (errorResponse.stack() != null) {
generator.writeArrayFieldStart(STACK);
for (String line : errorResponse.stack()) {
generator.writeString(line);
}
generator.writeEndArray();
}
generator.writeEndObject();
generator.writeEndObject();
}
/**
* Read ErrorResponse from a JSON string.
*
* @param json a JSON string of an ErrorResponse
* @return an ErrorResponse object
*/
public static ErrorResponse fromJson(String json) {
try {
return fromJson(JsonUtil.mapper().readValue(json, JsonNode.class));
} catch (IOException e) {
throw new UncheckedIOException("Failed to read JSON string: " + json, e);
}
}
public static ErrorResponse fromJson(JsonNode jsonNode) {
Preconditions.checkArgument(
jsonNode != null && jsonNode.isObject(),
"Cannot parse error response from non-object value: %s",
jsonNode);
Preconditions.checkArgument(jsonNode.has(ERROR), "Cannot parse missing field: error");
JsonNode error = JsonUtil.get(ERROR, jsonNode);
String message = JsonUtil.getStringOrNull(MESSAGE, error);
String type = JsonUtil.getStringOrNull(TYPE, error);
Integer code = JsonUtil.getIntOrNull(CODE, error);
List<String> stack = JsonUtil.getStringListOrNull(STACK, error);
return ErrorResponse.builder()
.withMessage(message)
.withType(type)
.responseCode(code)
.withStackTrace(stack)
.build();
}
}