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

网格计算

开发平台:

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.  * Provide the implementation of KFS which turn into calls to KfsAccess.
  18.  */
  19. package org.apache.hadoop.fs.kfs;
  20. import java.io.*;
  21. import org.apache.hadoop.fs.FSDataInputStream;
  22. import org.apache.hadoop.fs.FSDataOutputStream;
  23. import org.apache.hadoop.fs.FileSystem;
  24. import org.apache.hadoop.fs.FileStatus;
  25. import org.apache.hadoop.fs.Path;
  26. import org.kosmix.kosmosfs.access.KfsAccess;
  27. import org.kosmix.kosmosfs.access.KfsFileAttr;
  28. class KFSImpl implements IFSImpl {
  29.     private KfsAccess kfsAccess = null;
  30.     private FileSystem.Statistics statistics;
  31.     @Deprecated
  32.     public KFSImpl(String metaServerHost, int metaServerPort
  33.                    ) throws IOException {
  34.       this(metaServerHost, metaServerPort, null);
  35.     }
  36.     public KFSImpl(String metaServerHost, int metaServerPort, 
  37.                    FileSystem.Statistics stats) throws IOException {
  38.         kfsAccess = new KfsAccess(metaServerHost, metaServerPort);
  39.         statistics = stats;
  40.     }
  41.     public boolean exists(String path) throws IOException {
  42.         return kfsAccess.kfs_exists(path);
  43.     }
  44.     public boolean isDirectory(String path) throws IOException {
  45.         return kfsAccess.kfs_isDirectory(path);
  46.     }
  47.     public boolean isFile(String path) throws IOException {
  48.         return kfsAccess.kfs_isFile(path);
  49.     }
  50.     public String[] readdir(String path) throws IOException {
  51.         return kfsAccess.kfs_readdir(path);
  52.     }
  53.     public FileStatus[] readdirplus(Path path) throws IOException {
  54.         String srep = path.toUri().getPath();
  55.         KfsFileAttr[] fattr = kfsAccess.kfs_readdirplus(srep);
  56.         if (fattr == null)
  57.             return null;
  58.         int numEntries = 0;
  59.         for (int i = 0; i < fattr.length; i++) {
  60.             if ((fattr[i].filename.compareTo(".") == 0) || (fattr[i].filename.compareTo("..") == 0))
  61.                 continue;
  62.             numEntries++;
  63.         }
  64.         FileStatus[] fstatus = new FileStatus[numEntries];
  65.         int j = 0;
  66.         for (int i = 0; i < fattr.length; i++) {
  67.             if ((fattr[i].filename.compareTo(".") == 0) || (fattr[i].filename.compareTo("..") == 0))
  68.                 continue;
  69.             Path fn = new Path(path, fattr[i].filename);
  70.             if (fattr[i].isDirectory)
  71.                 fstatus[j] = new FileStatus(0, true, 1, 0, fattr[i].modificationTime, fn);
  72.             else
  73.                 fstatus[j] = new FileStatus(fattr[i].filesize, fattr[i].isDirectory,
  74.                                             fattr[i].replication,
  75.                                             (long)
  76.                                             (1 << 26),
  77.                                             fattr[i].modificationTime,
  78.                                             fn);
  79.             j++;
  80.         }
  81.         return fstatus;
  82.     }
  83.     public int mkdirs(String path) throws IOException {
  84.         return kfsAccess.kfs_mkdirs(path);
  85.     }
  86.     public int rename(String source, String dest) throws IOException {
  87.         return kfsAccess.kfs_rename(source, dest);
  88.     }
  89.     public int rmdir(String path) throws IOException {
  90.         return kfsAccess.kfs_rmdir(path);
  91.     }
  92.     public int remove(String path) throws IOException {
  93.         return kfsAccess.kfs_remove(path);
  94.     }
  95.     public long filesize(String path) throws IOException {
  96.         return kfsAccess.kfs_filesize(path);
  97.     }
  98.     public short getReplication(String path) throws IOException {
  99.         return kfsAccess.kfs_getReplication(path);
  100.     }
  101.     public short setReplication(String path, short replication) throws IOException {
  102.         return kfsAccess.kfs_setReplication(path, replication);
  103.     }
  104.     public String[][] getDataLocation(String path, long start, long len) throws IOException {
  105.         return kfsAccess.kfs_getDataLocation(path, start, len);
  106.     }
  107.     public long getModificationTime(String path) throws IOException {
  108.         return kfsAccess.kfs_getModificationTime(path);
  109.     }
  110.     public FSDataOutputStream create(String path, short replication, int bufferSize) throws IOException {
  111.         return new FSDataOutputStream(new KFSOutputStream(kfsAccess, path, replication), 
  112.                                       statistics);
  113.     }
  114.     public FSDataInputStream open(String path, int bufferSize) throws IOException {
  115.         return new FSDataInputStream(new KFSInputStream(kfsAccess, path, 
  116.                                                         statistics));
  117.     }
  118. }