Jets3tNativeFileSystemStore.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:8k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.fs.s3native;
  19. import static org.apache.hadoop.fs.s3native.NativeS3FileSystem.PATH_DELIMITER;
  20. import java.io.BufferedInputStream;
  21. import java.io.ByteArrayInputStream;
  22. import java.io.File;
  23. import java.io.FileInputStream;
  24. import java.io.IOException;
  25. import java.io.InputStream;
  26. import java.net.URI;
  27. import org.apache.hadoop.conf.Configuration;
  28. import org.apache.hadoop.fs.s3.S3Credentials;
  29. import org.apache.hadoop.fs.s3.S3Exception;
  30. import org.jets3t.service.S3ObjectsChunk;
  31. import org.jets3t.service.S3Service;
  32. import org.jets3t.service.S3ServiceException;
  33. import org.jets3t.service.impl.rest.httpclient.RestS3Service;
  34. import org.jets3t.service.model.S3Bucket;
  35. import org.jets3t.service.model.S3Object;
  36. import org.jets3t.service.security.AWSCredentials;
  37. class Jets3tNativeFileSystemStore implements NativeFileSystemStore {
  38.   
  39.   private S3Service s3Service;
  40.   private S3Bucket bucket;
  41.   
  42.   public void initialize(URI uri, Configuration conf) throws IOException {
  43.     S3Credentials s3Credentials = new S3Credentials();
  44.     s3Credentials.initialize(uri, conf);
  45.     try {
  46.       AWSCredentials awsCredentials =
  47.         new AWSCredentials(s3Credentials.getAccessKey(),
  48.             s3Credentials.getSecretAccessKey());
  49.       this.s3Service = new RestS3Service(awsCredentials);
  50.     } catch (S3ServiceException e) {
  51.       if (e.getCause() instanceof IOException) {
  52.         throw (IOException) e.getCause();
  53.       }
  54.       throw new S3Exception(e);
  55.     }
  56.     bucket = new S3Bucket(uri.getHost());
  57.   }
  58.   
  59.   public void storeFile(String key, File file, byte[] md5Hash)
  60.     throws IOException {
  61.     
  62.     BufferedInputStream in = null;
  63.     try {
  64.       in = new BufferedInputStream(new FileInputStream(file));
  65.       S3Object object = new S3Object(key);
  66.       object.setDataInputStream(in);
  67.       object.setContentType("binary/octet-stream");
  68.       object.setContentLength(file.length());
  69.       if (md5Hash != null) {
  70.         object.setMd5Hash(md5Hash);
  71.       }
  72.       s3Service.putObject(bucket, object);
  73.     } catch (S3ServiceException e) {
  74.       if (e.getCause() instanceof IOException) {
  75.         throw (IOException) e.getCause();
  76.       }
  77.       throw new S3Exception(e);
  78.     } finally {
  79.       if (in != null) {
  80.         try {
  81.           in.close();
  82.         } catch (IOException e) {
  83.           // ignore
  84.         }
  85.       }
  86.     }
  87.   }
  88.   public void storeEmptyFile(String key) throws IOException {
  89.     try {
  90.       S3Object object = new S3Object(key);
  91.       object.setDataInputStream(new ByteArrayInputStream(new byte[0]));
  92.       object.setContentType("binary/octet-stream");
  93.       object.setContentLength(0);
  94.       s3Service.putObject(bucket, object);
  95.     } catch (S3ServiceException e) {
  96.       if (e.getCause() instanceof IOException) {
  97.         throw (IOException) e.getCause();
  98.       }
  99.       throw new S3Exception(e);
  100.     }
  101.   }
  102.   
  103.   public FileMetadata retrieveMetadata(String key) throws IOException {
  104.     try {
  105.       S3Object object = s3Service.getObjectDetails(bucket, key);
  106.       return new FileMetadata(key, object.getContentLength(),
  107.           object.getLastModifiedDate().getTime());
  108.     } catch (S3ServiceException e) {
  109.       // Following is brittle. Is there a better way?
  110.       if (e.getMessage().contains("ResponseCode=404")) {
  111.         return null;
  112.       }
  113.       if (e.getCause() instanceof IOException) {
  114.         throw (IOException) e.getCause();
  115.       }
  116.       throw new S3Exception(e);
  117.     }
  118.   }
  119.   
  120.   public InputStream retrieve(String key) throws IOException {
  121.     try {
  122.       S3Object object = s3Service.getObject(bucket, key);
  123.       return object.getDataInputStream();
  124.     } catch (S3ServiceException e) {
  125.       if ("NoSuchKey".equals(e.getS3ErrorCode())) {
  126.         return null;
  127.       }
  128.       if (e.getCause() instanceof IOException) {
  129.         throw (IOException) e.getCause();
  130.       }
  131.       throw new S3Exception(e);
  132.     }
  133.   }
  134.   
  135.   public InputStream retrieve(String key, long byteRangeStart)
  136.     throws IOException {
  137.     try {
  138.       S3Object object = s3Service.getObject(bucket, key, null, null, null,
  139.                                             null, byteRangeStart, null);
  140.       return object.getDataInputStream();
  141.     } catch (S3ServiceException e) {
  142.       if ("NoSuchKey".equals(e.getS3ErrorCode())) {
  143.         return null;
  144.       }
  145.       if (e.getCause() instanceof IOException) {
  146.         throw (IOException) e.getCause();
  147.       }
  148.       throw new S3Exception(e);
  149.     }
  150.   }
  151.   public PartialListing list(String prefix, int maxListingLength)
  152.     throws IOException {
  153.     return list(prefix, maxListingLength, null);
  154.   }
  155.   
  156.   public PartialListing list(String prefix, int maxListingLength,
  157.       String priorLastKey) throws IOException {
  158.     return list(prefix, PATH_DELIMITER, maxListingLength, priorLastKey);
  159.   }
  160.   public PartialListing listAll(String prefix, int maxListingLength,
  161.       String priorLastKey) throws IOException {
  162.     return list(prefix, null, maxListingLength, priorLastKey);
  163.   }
  164.   private PartialListing list(String prefix, String delimiter,
  165.       int maxListingLength, String priorLastKey) throws IOException {
  166.     try {
  167.       if (prefix.length() > 0 && !prefix.endsWith(PATH_DELIMITER)) {
  168.         prefix += PATH_DELIMITER;
  169.       }
  170.       S3ObjectsChunk chunk = s3Service.listObjectsChunked(bucket.getName(),
  171.           prefix, delimiter, maxListingLength, priorLastKey);
  172.       
  173.       FileMetadata[] fileMetadata =
  174.         new FileMetadata[chunk.getObjects().length];
  175.       for (int i = 0; i < fileMetadata.length; i++) {
  176.         S3Object object = chunk.getObjects()[i];
  177.         fileMetadata[i] = new FileMetadata(object.getKey(),
  178.             object.getContentLength(), object.getLastModifiedDate().getTime());
  179.       }
  180.       return new PartialListing(chunk.getPriorLastKey(), fileMetadata,
  181.           chunk.getCommonPrefixes());
  182.     } catch (S3ServiceException e) {
  183.       if (e.getCause() instanceof IOException) {
  184.         throw (IOException) e.getCause();
  185.       }
  186.       throw new S3Exception(e);
  187.     }
  188.   }
  189.   public void delete(String key) throws IOException {
  190.     try {
  191.       s3Service.deleteObject(bucket, key);
  192.     } catch (S3ServiceException e) {
  193.       if (e.getCause() instanceof IOException) {
  194.         throw (IOException) e.getCause();
  195.       }
  196.       throw new S3Exception(e);
  197.     }
  198.   }
  199.   
  200.   public void rename(String srcKey, String dstKey) throws IOException {
  201.     try {
  202.       s3Service.moveObject(bucket.getName(), srcKey, bucket.getName(),
  203.           new S3Object(dstKey), false);
  204.     } catch (S3ServiceException e) {
  205.       if (e.getCause() instanceof IOException) {
  206.         throw (IOException) e.getCause();
  207.       }
  208.       throw new S3Exception(e);
  209.     }
  210.   }
  211.   public void purge(String prefix) throws IOException {
  212.     try {
  213.       S3Object[] objects = s3Service.listObjects(bucket, prefix, null);
  214.       for (int i = 0; i < objects.length; i++) {
  215.         s3Service.deleteObject(bucket, objects[i].getKey());
  216.       }
  217.     } catch (S3ServiceException e) {
  218.       if (e.getCause() instanceof IOException) {
  219.         throw (IOException) e.getCause();
  220.       }
  221.       throw new S3Exception(e);
  222.     }
  223.   }
  224.   public void dump() throws IOException {
  225.     StringBuilder sb = new StringBuilder("S3 Native Filesystem, ");
  226.     sb.append(bucket.getName()).append("n");
  227.     try {
  228.       S3Object[] objects = s3Service.listObjects(bucket);
  229.       for (int i = 0; i < objects.length; i++) {
  230.         sb.append(objects[i].getKey()).append("n");
  231.       }
  232.     } catch (S3ServiceException e) {
  233.       if (e.getCause() instanceof IOException) {
  234.         throw (IOException) e.getCause();
  235.       }
  236.       throw new S3Exception(e);
  237.     }
  238.     System.out.println(sb);
  239.   }
  240.   
  241. }