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

网格计算

开发平台:

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.s3;
  19. import java.io.BufferedInputStream;
  20. import java.io.BufferedOutputStream;
  21. import java.io.ByteArrayOutputStream;
  22. import java.io.File;
  23. import java.io.FileInputStream;
  24. import java.io.FileOutputStream;
  25. import java.io.IOException;
  26. import java.net.URI;
  27. import java.util.HashMap;
  28. import java.util.LinkedHashSet;
  29. import java.util.Map;
  30. import java.util.Set;
  31. import java.util.SortedMap;
  32. import java.util.TreeMap;
  33. import org.apache.hadoop.conf.Configuration;
  34. import org.apache.hadoop.fs.Path;
  35. import org.apache.hadoop.fs.s3.INode.FileType;
  36. /**
  37.  * A stub implementation of {@link FileSystemStore} for testing
  38.  * {@link S3FileSystem} without actually connecting to S3.
  39.  */
  40. class InMemoryFileSystemStore implements FileSystemStore {
  41.   
  42.   private Configuration conf;
  43.   private SortedMap<Path, INode> inodes = new TreeMap<Path, INode>();
  44.   private Map<Long, byte[]> blocks = new HashMap<Long, byte[]>();
  45.   
  46.   public void initialize(URI uri, Configuration conf) {
  47.     this.conf = conf;
  48.   }
  49.   
  50.   public String getVersion() throws IOException {
  51.     return "0";
  52.   }
  53.   public void deleteINode(Path path) throws IOException {
  54.     inodes.remove(normalize(path));
  55.   }
  56.   public void deleteBlock(Block block) throws IOException {
  57.     blocks.remove(block.getId());
  58.   }
  59.   public boolean inodeExists(Path path) throws IOException {
  60.     return inodes.containsKey(normalize(path));
  61.   }
  62.   public boolean blockExists(long blockId) throws IOException {
  63.     return blocks.containsKey(blockId);
  64.   }
  65.   public INode retrieveINode(Path path) throws IOException {
  66.     return inodes.get(normalize(path));
  67.   }
  68.   public File retrieveBlock(Block block, long byteRangeStart) throws IOException {
  69.     byte[] data = blocks.get(block.getId());
  70.     File file = createTempFile();
  71.     BufferedOutputStream out = null;
  72.     try {
  73.       out = new BufferedOutputStream(new FileOutputStream(file));
  74.       out.write(data, (int) byteRangeStart, data.length - (int) byteRangeStart);
  75.     } finally {
  76.       if (out != null) {
  77.         out.close();
  78.       }
  79.     }
  80.     return file;
  81.   }
  82.   
  83.   private File createTempFile() throws IOException {
  84.     File dir = new File(conf.get("fs.s3.buffer.dir"));
  85.     if (!dir.exists() && !dir.mkdirs()) {
  86.       throw new IOException("Cannot create S3 buffer directory: " + dir);
  87.     }
  88.     File result = File.createTempFile("test-", ".tmp", dir);
  89.     result.deleteOnExit();
  90.     return result;
  91.   }
  92.   public Set<Path> listSubPaths(Path path) throws IOException {
  93.     Path normalizedPath = normalize(path);
  94.     // This is inefficient but more than adequate for testing purposes.
  95.     Set<Path> subPaths = new LinkedHashSet<Path>();
  96.     for (Path p : inodes.tailMap(normalizedPath).keySet()) {
  97.       if (normalizedPath.equals(p.getParent())) {
  98.         subPaths.add(p);
  99.       }
  100.     }
  101.     return subPaths;
  102.   }
  103.   public Set<Path> listDeepSubPaths(Path path) throws IOException {
  104.     Path normalizedPath = normalize(path);    
  105.     String pathString = normalizedPath.toUri().getPath();
  106.     if (!pathString.endsWith("/")) {
  107.       pathString += "/";
  108.     }
  109.     // This is inefficient but more than adequate for testing purposes.
  110.     Set<Path> subPaths = new LinkedHashSet<Path>();
  111.     for (Path p : inodes.tailMap(normalizedPath).keySet()) {
  112.       if (p.toUri().getPath().startsWith(pathString)) {
  113.         subPaths.add(p);
  114.       }
  115.     }
  116.     return subPaths;
  117.   }
  118.   public void storeINode(Path path, INode inode) throws IOException {
  119.     inodes.put(normalize(path), inode);
  120.   }
  121.   public void storeBlock(Block block, File file) throws IOException {
  122.     ByteArrayOutputStream out = new ByteArrayOutputStream();
  123.     byte[] buf = new byte[8192];
  124.     int numRead;
  125.     BufferedInputStream in = null;
  126.     try {
  127.       in = new BufferedInputStream(new FileInputStream(file));
  128.       while ((numRead = in.read(buf)) >= 0) {
  129.         out.write(buf, 0, numRead);
  130.       }
  131.     } finally {
  132.       if (in != null) {
  133.         in.close();
  134.       }
  135.     }
  136.     blocks.put(block.getId(), out.toByteArray());
  137.   }
  138.   
  139.   private Path normalize(Path path) {
  140.     if (!path.isAbsolute()) {
  141.       throw new IllegalArgumentException("Path must be absolute: " + path);
  142.     }
  143.     return new Path(path.toUri().getPath());
  144.   }
  145.   public void purge() throws IOException {
  146.     inodes.clear();
  147.     blocks.clear();
  148.   }
  149.   public void dump() throws IOException {
  150.     StringBuilder sb = new StringBuilder(getClass().getSimpleName());
  151.     sb.append(", n");
  152.     for (Map.Entry<Path, INode> entry : inodes.entrySet()) {
  153.       sb.append(entry.getKey()).append("n");
  154.       INode inode = entry.getValue();
  155.       sb.append("t").append(inode.getFileType()).append("n");
  156.       if (inode.getFileType() == FileType.DIRECTORY) {
  157.         continue;
  158.       }
  159.       for (int j = 0; j < inode.getBlocks().length; j++) {
  160.         sb.append("t").append(inode.getBlocks()[j]).append("n");
  161.       }      
  162.     }
  163.     System.out.println(sb);
  164.     
  165.     System.out.println(inodes.keySet());
  166.     System.out.println(blocks.keySet());
  167.   }
  168. }