/** * Copyright 2015-2019 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.mobileconnectors.s3.transferutility; import com.amazonaws.services.s3.AmazonS3; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; /** * A holder of S3 clients for {@link TransferUtility} to pass a reference of * {@link AmazonS3} to {@link TransferService}. Usually objects are passed to a service * via intent in a parcelable form. A S3 client has too many elements to * capture. Instead, this serves as an alternative approach, not ideal though. */ class S3ClientReference { private static Map map = new ConcurrentHashMap(); /** * Insert the transferId and the corresponding {@link com.amazonaws.services.s3.AmazonS3Client} * into the map. {@link TransferService} retrieves the * {@link com.amazonaws.services.s3.AmazonS3Client} based on the transferId. * * @param transferId the id for the transfer record * @param s3 an AmazonS3 instance */ public static void put(final Integer transferId, AmazonS3 s3) { map.put(transferId, s3); } /** * Retrieves the AmazonS3 client on the given key. * * @param transferId the id for the transfer record * @return an AmazonS3 instance, or null if the key doesn't exist */ public static AmazonS3 get(final Integer transferId) { return map.get(transferId); } /** * Remove the S3 Client for the given transferId. * * @param transferId the id for the transfer record */ public static void remove(final Integer transferId) { map.remove(transferId); } /** * Clears all references. */ public static void clear() { map.clear(); } }