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

网格计算

开发平台:

Java

  1. /**
  2.  *
  3.  * Licensed under the Apache License, Version 2.0
  4.  * (the "License"); you may not use this file except in compliance with
  5.  * the License. You may obtain a copy of the License at
  6.  *
  7.  * http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  12.  * implied. See the License for the specific language governing
  13.  * permissions and limitations under the License.
  14.  *
  15.  * @author: Sriram Rao (Kosmix Corp.)
  16.  * 
  17.  * We need to provide the ability to the code in fs/kfs without really
  18.  * having a KFS deployment.  In particular, the glue code that wraps
  19.  * around calls to KfsAccess object.  This is accomplished by defining a
  20.  * filesystem implementation interface:  
  21.  *   -- for testing purposes, a dummy implementation of this interface
  22.  * will suffice; as long as the dummy implementation is close enough
  23.  * to doing what KFS does, we are good.
  24.  *   -- for deployment purposes with KFS, this interface is
  25.  * implemented by the KfsImpl object.
  26.  */
  27. package org.apache.hadoop.fs.kfs;
  28. import java.io.*;
  29. import org.apache.hadoop.fs.FSDataInputStream;
  30. import org.apache.hadoop.fs.FSDataOutputStream;
  31. import org.apache.hadoop.fs.FileStatus;
  32. import org.apache.hadoop.fs.Path;
  33. interface IFSImpl {
  34.     public boolean exists(String path) throws IOException;
  35.     public boolean isDirectory(String path) throws IOException;
  36.     public boolean isFile(String path) throws IOException;
  37.     public String[] readdir(String path) throws IOException;
  38.     public FileStatus[] readdirplus(Path path) throws IOException;
  39.     public int mkdirs(String path) throws IOException;
  40.     public int rename(String source, String dest) throws IOException;
  41.     public int rmdir(String path) throws IOException; 
  42.     public int remove(String path) throws IOException;
  43.     public long filesize(String path) throws IOException;
  44.     public short getReplication(String path) throws IOException;
  45.     public short setReplication(String path, short replication) throws IOException;
  46.     public String[][] getDataLocation(String path, long start, long len) throws IOException;
  47.     public long getModificationTime(String path) throws IOException;
  48.     public FSDataOutputStream create(String path, short replication, int bufferSize) throws IOException;
  49.     public FSDataInputStream open(String path, int bufferSize) throws IOException;
  50.     
  51. };