com.amazonaws.protocol.json.SdkStructuredJsonFactoryImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-core Show documentation
Show all versions of aws-java-sdk-core Show documentation
The AWS SDK for Java - Core module holds the classes that are used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.
/*
* Copyright 2011-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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.amazonaws.protocol.json;
import com.amazonaws.http.JsonErrorResponseHandler;
import com.amazonaws.http.JsonResponseHandler;
import com.amazonaws.internal.http.ErrorCodeParser;
import com.amazonaws.internal.http.JsonErrorCodeParser;
import com.amazonaws.internal.http.JsonErrorMessageParser;
import com.amazonaws.transform.JsonErrorUnmarshaller;
import com.amazonaws.transform.JsonUnmarshallerContext;
import com.amazonaws.transform.JsonUnmarshallerContext.UnmarshallerType;
import com.amazonaws.transform.Unmarshaller;
import com.fasterxml.jackson.core.JsonFactory;
import java.util.List;
import java.util.Map;
/**
* Generic implementation of a structured JSON factory that is pluggable for different variants of
* JSON. See {@link SdkStructuredPlainJsonFactory#SDK_JSON_FACTORY} and {@link
* SdkStructuredCborFactory#SDK_CBOR_FACTORY}.
*/
public abstract class SdkStructuredJsonFactoryImpl implements SdkStructuredJsonFactory {
private final JsonFactory jsonFactory;
private final Map, Unmarshaller, JsonUnmarshallerContext>> unmarshallers;
private final Map> customTypeUnmarshallers;
public SdkStructuredJsonFactoryImpl(JsonFactory jsonFactory,
Map, Unmarshaller, JsonUnmarshallerContext>> unmarshallers,
Map> customTypeUnmarshallers) {
this.jsonFactory = jsonFactory;
this.unmarshallers = unmarshallers;
this.customTypeUnmarshallers = customTypeUnmarshallers;
}
@Override
public StructuredJsonGenerator createWriter(String contentType) {
return createWriter(jsonFactory, contentType);
}
protected abstract StructuredJsonGenerator createWriter(JsonFactory jsonFactory,
String contentType);
@Override
public JsonResponseHandler createResponseHandler(JsonOperationMetadata operationMetadata,
Unmarshaller responseUnmarshaller) {
return new JsonResponseHandler(responseUnmarshaller, unmarshallers, customTypeUnmarshallers, jsonFactory,
operationMetadata.isHasStreamingSuccessResponse(),
operationMetadata.isPayloadJson());
}
@Override
public JsonErrorResponseHandler createErrorResponseHandler(
JsonErrorResponseMetadata jsonErrorResponseMetadata,
final List errorUnmarshallers
) {
boolean hasAwsQueryCompatible =
jsonErrorResponseMetadata != null && jsonErrorResponseMetadata.getAwsQueryCompatible();
String customErrorCodeFieldName =
jsonErrorResponseMetadata != null ? jsonErrorResponseMetadata.getCustomErrorCodeFieldName() : null;
return new JsonErrorResponseHandler(errorUnmarshallers,
unmarshallers,
customTypeUnmarshallers,
getErrorCodeParser(customErrorCodeFieldName),
hasAwsQueryCompatible,
JsonErrorMessageParser.DEFAULT_ERROR_MESSAGE_PARSER,
jsonFactory);
}
@Override
public JsonErrorResponseHandler createErrorResponseHandler(
final List errorUnmarshallers, String customErrorCodeFieldName) {
return new JsonErrorResponseHandler(errorUnmarshallers,
unmarshallers,
customTypeUnmarshallers,
getErrorCodeParser(customErrorCodeFieldName),
JsonErrorMessageParser.DEFAULT_ERROR_MESSAGE_PARSER,
jsonFactory);
}
protected ErrorCodeParser getErrorCodeParser(String customErrorCodeFieldName) {
return new JsonErrorCodeParser(customErrorCodeFieldName);
}
}