Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .doc_gen/metadata/s3_metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3506,3 +3506,20 @@ s3_Scenario_ExpressBasics:
- php.example_code.s3.service.S3Service
services:
s3: {CreateVpc, DescribeRouteTables, CreateVpcEndpoint, CreateBucket, CopyObject, GetObject, PutObject, ListObjects, DeleteObject, DeleteBucket, DeleteVpcEndpoint, DeleteVpc}
s3_Scenario_DownloadS3Directory:
title: Download S3 'directories' from an &S3long; (&S3;) bucket
title_abbrev: Download S3 'directories'
synopsis: download and filter the contents of &S3; bucket 'directories'.
category: Scenarios
languages:
Java:
versions:
- sdk_version: 2
github: javav2/example_code/s3
sdkguide:
excerpts:
- description: This example show how to use the <ulink url="https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/transfer/s3/S3TransferManager.html">S3TransferManager</ulink> in the &JavaV2long; to download 'directories' from an &S3; bucket. It also demonstrates how to use <ulink url="https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/transfer/s3/config/DownloadFilter.html">DownloadFilters</ulink> in the request.
snippet_tags:
- s3.tm.java2.download-s3-directories.main
services:
s3: {}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

package com.example.dynamodb;
Expand Down
13 changes: 13 additions & 0 deletions javav2/example_code/s3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ Code examples that show you how to accomplish a specific task by calling multipl
functions within the same service.

- [Delete incomplete multipart uploads](src/main/java/com/example/s3/AbortMultipartUploadExamples.java)
- [Download S3 'directories'](src/main/java/com/example/s3/transfermanager/S3DirectoriesDownloader.java)
- [Download objects to a local directory](src/main/java/com/example/s3/transfermanager/DownloadToDirectory.java)
- [Lock Amazon S3 objects](src/main/java/com/example/s3/lockscenario/S3ObjectLockWorkflow.java)
- [Parse URIs](src/main/java/com/example/s3/ParseUri.java)
Expand Down Expand Up @@ -140,6 +141,18 @@ This example shows you how to how to delete or stop incomplete Amazon S3 multipa
<!--custom.scenarios.s3_Scenario_AbortMultipartUpload.start-->
<!--custom.scenarios.s3_Scenario_AbortMultipartUpload.end-->

#### Download S3 'directories'

This example shows you how to download and filter the contents of Amazon S3 bucket 'directories'.


<!--custom.scenario_prereqs.s3_Scenario_DownloadS3Directory.start-->
<!--custom.scenario_prereqs.s3_Scenario_DownloadS3Directory.end-->


<!--custom.scenarios.s3_Scenario_DownloadS3Directory.start-->
<!--custom.scenarios.s3_Scenario_DownloadS3Directory.end-->

#### Download objects to a local directory

This example shows you how to download all objects in an Amazon Simple Storage Service (Amazon S3) bucket to a local directory.
Expand Down
4 changes: 0 additions & 4 deletions javav2/example_code/s3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,6 @@
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>cloudformation</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import software.amazon.awssdk.regions.Region;
import software.amazon.awssdk.services.s3.S3AsyncClient;
import software.amazon.awssdk.services.s3.S3Client;
import software.amazon.awssdk.services.s3.waiters.S3Waiter;
import software.amazon.awssdk.transfer.s3.S3TransferManager;

import static software.amazon.awssdk.transfer.s3.SizeConstant.MB;
Expand All @@ -23,6 +24,7 @@
public class S3ClientFactory {
public static final S3TransferManager transferManager = createCustomTm();
public static final S3Client s3Client;
public static final S3Waiter s3Waiter;

private static S3TransferManager createCustomTm() {
// snippet-start:[s3.tm.java2.s3clientfactory.create_custom_tm]
Expand All @@ -48,9 +50,7 @@ private static S3TransferManager createDefaultTm() {
}

static {
s3Client = S3Client.builder()
.credentialsProvider(DefaultCredentialsProvider.create())
.region(Region.US_EAST_1)
.build();
s3Client = S3Client.create();
s3Waiter = s3Client.waiter();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,203 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

package com.example.s3.transfermanager;

// snippet-start:[s3.tm.java2.download-s3-directories.import]

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import software.amazon.awssdk.core.sync.RequestBody;
import software.amazon.awssdk.services.s3.model.ObjectIdentifier;
import software.amazon.awssdk.services.s3.model.S3Object;
import software.amazon.awssdk.transfer.s3.S3TransferManager;
import software.amazon.awssdk.transfer.s3.config.DownloadFilter;
import software.amazon.awssdk.transfer.s3.model.CompletedDirectoryDownload;
import software.amazon.awssdk.transfer.s3.model.DirectoryDownload;
import software.amazon.awssdk.transfer.s3.model.DownloadDirectoryRequest;

import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.HashSet;
import java.util.List;
import java.util.function.Predicate;
import java.util.stream.IntStream;
import java.util.Set;
import java.util.UUID;
import java.util.stream.Collectors;
// snippet-end:[s3.tm.java2.download-s3-directories.import]

/**
* Before running this Java V2 code example, set up your development
* environment, including your credentials.
*
* For more information, see the following documentation topic:
*
* https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/get-started.html
*/

public class S3DirectoriesDownloader {
private static final Logger logger = LoggerFactory.getLogger(S3DirectoriesDownloader.class);
public final String bucketName = "amzn-s3-demo-bucket" + UUID.randomUUID(); // Change bucket name.
public URI destinationPathURI;
private final Set<String> downloadedFileNameSet = new HashSet<>();
private final String destinationDirName = "downloadDirectory";
private final List<String> folderNames = List.of("folder1", "folder2", "folder3");
private final List<String> filterFolderNames = List.of("folder1", "folder3");

public S3DirectoriesDownloader() {
setUp();
}

public static void main(String[] args) {
S3DirectoriesDownloader downloader = new S3DirectoriesDownloader();
Integer numFilesFailedToDownload = null;
try {
numFilesFailedToDownload = downloader.downloadS3Directories(S3ClientFactory.transferManager,
downloader.destinationPathURI, downloader.bucketName);
logger.info("Number of files that failed to download [{}].", numFilesFailedToDownload);
} catch (Exception e) {
logger.error("Exception [{}]", e.getMessage(), e);
} finally {
downloader.cleanUp();
}
}

// snippet-start:[s3.tm.java2.download-s3-directories.main]
/**
* For standard buckets, S3 provides the illusion of a directory structure through the use of keys. When you upload
* an object to an S3 bucket, you specify a key, which is essentially the "path" to the object. The key can contain
* forward slashes ("/") to make it appear as if the object is stored in a directory structure, but this is just a
* logical representation, not an actual directory.
* <p><pre>
* In this example, our S3 bucket contains the following objects:
*
* folder1/file1.txt
* folder1/file2.txt
* folder1/file3.txt
* folder2/file1.txt
* folder2/file2.txt
* folder2/file3.txt
* folder3/file1.txt
* folder3/file2.txt
* folder3/file3.txt
*
* When method `downloadS3Directories` is invoked with
* `destinationPathURI` set to `/test`, the downloaded
* directory looks like:
*
* |- test
* |- folder1
* |- file1.txt
* |- file2.txt
* |- file3.txt
* |- folder3
* |- file1.txt
* |- file2.txt
* |- file3.txt
* </pre>
*
* @param transferManager An S3TransferManager instance.
* @param destinationPathURI local directory to hold the downloaded S3 'directories' and files.
* @param bucketName The S3 bucket that contains the 'directories' to download.
* @return The number of objects (files, in this case) that were downloaded.
*/
public Integer downloadS3Directories(S3TransferManager transferManager,
URI destinationPathURI, String bucketName) {

// Define the filters for which 'directories' we want to download.
DownloadFilter folder1Filter = (S3Object s3Object) -> s3Object.key().startsWith("folder1/");
DownloadFilter folder3Filter = (S3Object s3Object) -> s3Object.key().startsWith("folder3/");
DownloadFilter folderFilter = s3Object -> folder1Filter.or(folder3Filter).test(s3Object);

DirectoryDownload directoryDownload = transferManager.downloadDirectory(DownloadDirectoryRequest.builder()
.destination(Paths.get(destinationPathURI))
.bucket(bucketName)
.filter(folderFilter)
.build());
CompletedDirectoryDownload completedDirectoryDownload = directoryDownload.completionFuture().join();

Integer numFilesInFolder1 = Paths.get(destinationPathURI).resolve("folder1").toFile().list().length;
Integer numFilesInFolder3 = Paths.get(destinationPathURI).resolve("folder3").toFile().list().length;

try {
assert numFilesInFolder1 == 3;
assert numFilesInFolder3 == 3;
assert !Paths.get(destinationPathURI).resolve("folder2").toFile().exists(); // `folder2` was not downloaded.
} catch (AssertionError e) {
logger.error("An assertion failed.");
}

completedDirectoryDownload.failedTransfers()
.forEach(fail -> logger.warn("Object failed to transfer [{}]", fail.exception().getMessage()));
return numFilesInFolder1 + numFilesInFolder3;
}
// snippet-end:[s3.tm.java2.download-s3-directories.main]

private void setUp() {
S3ClientFactory.s3Client.createBucket(b -> b.bucket(bucketName));
S3ClientFactory.s3Waiter.waitUntilBucketExists(r -> r.bucket(bucketName));

RequestBody requestBody = RequestBody.fromString("Hello World.");

folderNames.forEach(folderName ->
IntStream.rangeClosed(1, 3).forEach(i -> {
String fileName = folderName + "/" + "file" + i + ".txt";
downloadedFileNameSet.add(fileName);
S3ClientFactory.s3Client.putObject(b -> b
.bucket(bucketName)
.key(fileName),
requestBody);
}));
try {
destinationPathURI = S3DirectoriesDownloader.class.getClassLoader().getResource(destinationDirName).toURI();
} catch (URISyntaxException | NullPointerException e) {
logger.error("Exception creating URI [{}]", e.getMessage());
System.exit(1);
}
}

public void cleanUp() {
// Delete items uploaded to bucket for download.
Set<ObjectIdentifier> items = downloadedFileNameSet
.stream()
.map(name -> ObjectIdentifier.builder().key(name).build())
.collect(Collectors.toSet());

S3ClientFactory.s3Client.deleteObjects(b -> b
.bucket(bucketName)
.delete(b1 -> b1.objects(items)));
// Delete bucket.
S3ClientFactory.s3Client.deleteBucket(b -> b.bucket(bucketName));

// Delete files downloaded.
Predicate<String> filterFolder1 = key -> key.startsWith("folder1");
Predicate<String> filterFolder3 = key -> key.startsWith("folder3");
Predicate<String> filterForFolders = filterFolder1.or(filterFolder3);

downloadedFileNameSet.stream()
.filter(filterForFolders)
.forEach(fileName -> {
try {
Path basePath = Paths.get(destinationPathURI);
Path fullPath = basePath.resolve(fileName);
Files.delete(fullPath);
} catch (IOException e) {
logger.error("Exception deleting file [{}]", fileName);
}
});
filterFolderNames.forEach(folderName -> {
try {
Path basePath = Paths.get(destinationPathURI);
Path fullPath = basePath.resolve(folderName);
Files.delete(fullPath);
} catch (IOException e) {
logger.error("Exception deleting folder [{}]", folderName);
}
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ public void append(LogEvent event) {
} else {
eventMap.put (eventWithParameters.toString(), null);
}
stringBuilder.append(eventWithParameters.getFormattedMessage() + "\n");
if (eventWithParameters.getFormat() != null) {
stringBuilder.append(eventWithParameters.getFormattedMessage() + "\n");
} else {
stringBuilder.append(eventWithParameters.getMessage() + "\n");
}
}

public Map<String, String> getEventMap(){
Expand Down
5 changes: 4 additions & 1 deletion javav2/example_code/s3/src/main/resources/log4j2.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
<Configuration status="WARN">
<Appenders>
<Console name="ConsoleAppender" target="SYSTEM_OUT">
<PatternLayout pattern="%d{YYYY-MM-dd HH:mm:ss} [%t] %-5p %c:%L - %m%n"/>
</Console>
<MemoryLog4jAppender name="MemoryLog4jAppender"/>
<Console name="AlignedConsoleAppender" target="SYSTEM_OUT">
<PatternLayout pattern="%m%n"/>
</Console>
<!-- Other appenders -->
</Appenders>


Expand Down
11 changes: 11 additions & 0 deletions javav2/example_code/s3/src/test/java/TransferManagerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.example.s3.transfermanager.DownloadToDirectory;
import com.example.s3.transfermanager.ObjectCopy;
import com.example.s3.transfermanager.S3ClientFactory;
import com.example.s3.transfermanager.S3DirectoriesDownloader;
import com.example.s3.transfermanager.UploadADirectory;
import com.example.s3.transfermanager.UploadFile;
import com.example.s3.transfermanager.UploadStream;
Expand Down Expand Up @@ -50,6 +51,7 @@ public static void afterAll() {
logger.info("... S3TransferManager tests finished");
}

@Test
@Tag("IntegrationTest")
public void uploadSingleFileWorks() {
UploadFile upload = new UploadFile();
Expand Down Expand Up @@ -143,6 +145,15 @@ public void uploadStreamWorks() {
}
}

@Test
@Tag("IntegrationTest")
public void s3DirectoriesDownloadWorks() {
S3DirectoriesDownloader downloader = new S3DirectoriesDownloader();
Integer numFilesDownloaded = downloader.downloadS3Directories(S3ClientFactory.transferManager, downloader.destinationPathURI, downloader.bucketName);
Assertions.assertEquals(6, numFilesDownloaded);
downloader.cleanUp();
}

private String getLoggedMessages() {
final LoggerContext context = (org.apache.logging.log4j.core.LoggerContext) LogManager.getContext(false);
final Configuration configuration = context.getConfiguration();
Expand Down
Loading