org.jets3t.service.S3Service Java Examples
The following examples show how to use
org.jets3t.service.S3Service.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: S3FilenameGenerator.java From red5-examples with Apache License 2.0 | 6 votes |
public static List<String> getBucketList() { logger.debug("Get the bucket list"); List<String> bucketList = new ArrayList<String>(3); try { S3Service s3Service = new RestS3Service(awsCredentials); S3Bucket[] buckets = s3Service.listAllBuckets(); for (S3Bucket bucket: buckets) { logger.debug("Bucket: {}", bucket.getName()); bucketList.add(bucket.getName()); } logger.debug("Bucket count: {}", buckets.length); } catch (S3ServiceException e) { logger.error("Error during bucket listing", e); } return bucketList; }
Example #2
Source File: S3ReaderTest.java From cc-warc-examples with MIT License | 5 votes |
public static void main(String[] args) throws IOException, S3ServiceException { // We're accessing a publicly available bucket so don't need to fill in our credentials S3Service s3s = new RestS3Service(null); // Let's grab a file out of the CommonCrawl S3 bucket String fn = "common-crawl/crawl-data/CC-MAIN-2013-48/segments/1386163035819/warc/CC-MAIN-20131204131715-00000-ip-10-33-133-15.ec2.internal.warc.gz"; S3Object f = s3s.getObject("aws-publicdatasets", fn, null, null, null, null, null, null); // The file name identifies the ArchiveReader and indicates if it should be decompressed ArchiveReader ar = WARCReaderFactory.get(fn, f.getDataInputStream(), true); // Once we have an ArchiveReader, we can work through each of the records it contains int i = 0; for(ArchiveRecord r : ar) { // The header file contains information such as the type of record, size, creation time, and URL System.out.println("Header: " + r.getHeader()); System.out.println("URL: " + r.getHeader().getUrl()); System.out.println(); // If we want to read the contents of the record, we can use the ArchiveRecord as an InputStream // Create a byte array that is as long as all the record's stated length byte[] rawData = new byte[r.available()]; r.read(rawData); // Note: potential optimization would be to have a large buffer only allocated once // Why don't we convert it to a string and print the start of it? Let's hope it's text! String content = new String(rawData); System.out.println(content.substring(0, Math.min(500, content.length()))); System.out.println((content.length() > 500 ? "..." : "")); // Pretty printing to make the output more readable System.out.println("=-=-=-=-=-=-=-=-="); if (i++ > 4) break; } }
Example #3
Source File: S3FilenameGenerator.java From red5-examples with Apache License 2.0 | 5 votes |
public static void createBucket() { logger.debug("Create bucket"); try { S3Service s3Service = new RestS3Service(awsCredentials); S3Bucket bucket = s3Service.createBucket(bucketName); logger.debug("Created bucket: {}", bucket.getName()); } catch (S3ServiceException e) { logger.error("Error creating bucket", e); } }
Example #4
Source File: S3FilenameGenerator.java From red5-examples with Apache License 2.0 | 5 votes |
public static void upload(String sessionId, String name) { logger.debug("Upload - session id: {} name: {}", sessionId, name); try { // find the file StringBuilder sb = new StringBuilder(recordPath); sb.append(sessionId); sb.append('/'); sb.append(name); sb.append(".flv"); String filePath = sb.toString(); logger.debug("File path: {}", filePath); File file = new File(filePath); if (file.exists()) { S3Service s3Service = new RestS3Service(awsCredentials); S3Bucket bucket = s3Service.createBucket(bucketName); S3Object sob = new S3Object(sessionId + "/" + name + ".flv"); // force bucket name sob.setBucketName(bucketName); // point at file sob.setDataInputFile(file); // set type sob.setContentType("video/x-flv"); // set auth / acl sob.setAcl(AccessControlList.REST_CANNED_PUBLIC_READ); logger.debug("Pre-upload: {}", sob); sob = s3Service.putObject(bucket, sob); logger.debug("Post-upload: {}", sob); } else { logger.warn("File was not found"); } file = null; } catch (S3ServiceException e) { logger.error("Error during upload", e); } }
Example #5
Source File: AmazonConnection.java From Doradus with Apache License 2.0 | 4 votes |
AmazonConnection(S3Service service, String bucket) { m_s3service = service; BUCKET = bucket; }
Example #6
Source File: S3FilenameGenerator.java From red5-examples with Apache License 2.0 | 4 votes |
@SuppressWarnings("deprecation") public String generateFilename(IScope scope, String name, String extension, GenerationType type) { logger.debug("Get stream directory: scope={}, name={}, type={}", new Object[]{scope, name, type.toString()}); StringBuilder path = new StringBuilder(); // get the session id IConnection conn = Red5.getConnectionLocal(); if (conn.hasAttribute("sessionId")) { String sessionId = conn.getStringAttribute("sessionId"); path.append(sessionId); path.append('/'); } // add resources name path.append(name); // add extension if we have one if (extension != null){ // add extension path.append(extension); } // determine whether its playback or record if (type.equals(GenerationType.PLAYBACK)) { logger.debug("Playback path used"); // look on s3 for the file first boolean found = false; try { S3Service s3Service = new RestS3Service(awsCredentials); S3Bucket bucket = s3Service.getBucket(bucketName); String objectKey = path.toString(); S3Object file = s3Service.getObject(bucket, objectKey); if (file != null) { S3Object details = s3Service.getObjectDetails(bucket, objectKey); logger.debug("Details - key: {} content type: {}", details.getKey(), details.getContentType()); path.insert(0, bucket.getLocation()); // set found flag found = true; } } catch (S3ServiceException e) { logger.warn("Error looking up media file", e); } // use local path if (!found) { logger.debug("File was not found on S3, using local playback location"); path.insert(0, playbackPath); } } else { logger.debug("Record path used"); path.insert(0, recordPath); } String fileName = path.toString(); logger.debug("Generated filename: {}", fileName); return fileName; }