All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hadoop.fs.ceph.CephFS Maven / Gradle / Ivy

The newest version!
// -*- mode:Java; tab-width:2; c-basic-offset:2; indent-tabs-mode:t -*- 

/**
 *
 * Licensed under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied. See the License for the specific language governing
 * permissions and limitations under the License.
 *
 * 
 * Abstract base class for communicating with a Ceph filesystem and its
 * C++ codebase from Java, or pretending to do so (for unit testing purposes).
 * As only the Ceph package should be using this directly, all methods
 * are protected.
 */
package org.apache.hadoop.fs.ceph;

import java.io.IOException;
import java.net.URI;
import java.net.InetAddress;

import org.apache.hadoop.fs.Path;
import org.apache.hadoop.conf.Configuration;

import com.ceph.fs.CephStat;
import com.ceph.fs.CephPoolException;
import com.ceph.fs.CephStatVFS;
import com.ceph.crush.Bucket;
import com.ceph.fs.CephFileExtent;

abstract class CephFS {

  abstract void initialize(URI uri, Configuration conf) throws IOException;
  abstract int __open(Path path, int flags, int mode) throws IOException;
  abstract int open(Path path, int flags, int mode) throws IOException;
  abstract int open(Path path, int flags, int mode, int stripe_unit,
      int stripe_count, int object_size, String data_pool) throws IOException;
  abstract void fstat(int fd, CephStat stat) throws IOException;
  abstract void lstat(Path path, CephStat stat) throws IOException;
  abstract void statfs(Path path, CephStatVFS stat) throws IOException;
  abstract void unlink(Path path) throws IOException;
  abstract void rmdir(Path path) throws IOException;
  abstract String[] listdir(Path path) throws IOException;
  abstract void setattr(Path path, CephStat stat, int mask) throws IOException;
  abstract void chmod(Path path, int mode) throws IOException;
  abstract long lseek(int fd, long offset, int whence) throws IOException;
  abstract void close(int fd) throws IOException;
  abstract void shutdown() throws IOException;
  abstract void rename(Path src, Path dst) throws IOException;
  abstract short getDefaultReplication();
  abstract short get_file_replication(Path path) throws IOException;
  abstract int write(int fd, byte[] buf, long size, long offset) throws IOException;
  abstract int read(int fd, byte[] buf, long size, long offset) throws IOException;
  abstract void mkdirs(Path path, int mode) throws IOException;
  abstract int get_stripe_unit_granularity();
  abstract String get_file_pool_name(int fd);
  abstract int get_pool_id(String pool_name) throws IOException;;
  abstract int get_pool_replication(int poolid) throws IOException;
  abstract InetAddress get_osd_address(int osd) throws IOException;
  abstract Bucket[] get_osd_crush_location(int osd) throws IOException;
  abstract CephFileExtent get_file_extent(int fd, long offset) throws IOException;
  abstract void fsync(int fd) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy