com.amazonaws.services.dynamodbv2.document.internal.BatchGetItemImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-dynamodb Show documentation
Show all versions of aws-java-sdk-dynamodb Show documentation
The AWS Java SDK for Amazon DynamoDB module holds the client classes that are used for communicating with Amazon DynamoDB Service
/*
* Copyright 2014-2020 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.services.dynamodbv2.document.internal;
import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
import com.amazonaws.services.dynamodbv2.document.BatchGetItemOutcome;
import com.amazonaws.services.dynamodbv2.document.PrimaryKey;
import com.amazonaws.services.dynamodbv2.document.TableKeysAndAttributes;
import com.amazonaws.services.dynamodbv2.document.api.BatchGetItemApi;
import com.amazonaws.services.dynamodbv2.document.spec.BatchGetItemSpec;
import com.amazonaws.services.dynamodbv2.model.AttributeValue;
import com.amazonaws.services.dynamodbv2.model.BatchGetItemRequest;
import com.amazonaws.services.dynamodbv2.model.BatchGetItemResult;
import com.amazonaws.services.dynamodbv2.model.KeysAndAttributes;
import com.amazonaws.services.dynamodbv2.model.ReturnConsumedCapacity;
import java.util.ArrayList;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* The implementation for BatchGetItemApi
.
*/
public class BatchGetItemImpl implements BatchGetItemApi {
private final AmazonDynamoDB client;
public BatchGetItemImpl(AmazonDynamoDB client) {
this.client = client;
}
@Override
public BatchGetItemOutcome batchGetItem(
ReturnConsumedCapacity returnConsumedCapacity,
TableKeysAndAttributes ... tableKeysAndAttributes) {
return doBatchGetItem(new BatchGetItemSpec()
.withReturnConsumedCapacity(returnConsumedCapacity)
.withTableKeyAndAttributes(tableKeysAndAttributes));
}
@Override
public BatchGetItemOutcome batchGetItem(
TableKeysAndAttributes ... tableKeysAndAttributes) {
return doBatchGetItem(new BatchGetItemSpec()
.withTableKeyAndAttributes(tableKeysAndAttributes));
}
@Override
public BatchGetItemOutcome batchGetItem(BatchGetItemSpec spec) {
return doBatchGetItem(spec);
}
private BatchGetItemOutcome doBatchGetItem(BatchGetItemSpec spec) {
final Collection tableKeysAndAttributesCol =
spec.getTableKeysAndAttributes();
// Unprocessed keys take precedence
Map requestItems = spec.getUnprocessedKeys();
if (requestItems == null || requestItems.size() == 0) {
// handle new requests only if there is no unprocessed keys
requestItems = new LinkedHashMap();
} else {
requestItems = new LinkedHashMap(requestItems);
}
if (tableKeysAndAttributesCol != null) {
for (TableKeysAndAttributes tableKeysAndAttributes: tableKeysAndAttributesCol) {
// attributes against one table
final Set attrNames = tableKeysAndAttributes.getAttributeNames();
// primary keys against one table
final List pks = tableKeysAndAttributes.getPrimaryKeys();
final List