blob: b9e2881640806263a78882e48f563e4f1836287e [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.
*/
package org.apache.hadoop.fs.ozone;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.util.Iterator;
import java.util.List;
import org.apache.hadoop.crypto.key.KeyProvider;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.ozone.security.OzoneTokenIdentifier;
import org.apache.hadoop.security.token.Token;
/**
* Lightweight adapter to separate hadoop/ozone classes.
* <p>
* This class contains only the bare minimum Ozone classes in the signature.
* It could be loaded by a different classloader because only the objects in
* the method signatures should be shared between the classloader.
*/
public interface OzoneClientAdapter {
void close() throws IOException;
InputStream readFile(String key) throws IOException;
OzoneFSOutputStream createFile(String key, short replication,
boolean overWrite, boolean recursive) throws IOException;
void renameKey(String key, String newKeyName) throws IOException;
// Users should use rename instead of renameKey in OFS.
void rename(String pathStr, String newPath) throws IOException;
boolean createDirectory(String keyName) throws IOException;
boolean deleteObject(String keyName);
boolean deleteObjects(List<String> keyName);
Iterator<BasicKeyInfo> listKeys(String pathKey) throws IOException;
List<FileStatusAdapter> listStatus(String keyName, boolean recursive,
String startKey, long numEntries, URI uri,
Path workingDir, String username) throws IOException;
Token<OzoneTokenIdentifier> getDelegationToken(String renewer)
throws IOException;
KeyProvider getKeyProvider() throws IOException;
URI getKeyProviderUri() throws IOException;
String getCanonicalServiceName();
short getDefaultReplication();
FileStatusAdapter getFileStatus(String key, URI uri,
Path qualifiedPath, String userName) throws IOException;
}