HADOOP-18172: Changed scope for isRootInternalDir/getRootFallbackLink for InodeTree (#4106)
Co-authored-by: Xing Lin <xinglin@linkedin.com>
(cherry picked from commit 98b9c435f2
)
This commit is contained in:
parent
caecec45f5
commit
7ae328949e
|
@ -61,7 +61,7 @@ import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
@InterfaceAudience.Private
|
@InterfaceAudience.Private
|
||||||
@InterfaceStability.Unstable
|
@InterfaceStability.Unstable
|
||||||
abstract class InodeTree<T> {
|
public abstract class InodeTree<T> {
|
||||||
private static final Logger LOGGER =
|
private static final Logger LOGGER =
|
||||||
LoggerFactory.getLogger(InodeTree.class.getName());
|
LoggerFactory.getLogger(InodeTree.class.getName());
|
||||||
|
|
||||||
|
@ -458,11 +458,11 @@ abstract class InodeTree<T> {
|
||||||
* there will be root to root mapping. So, root does not represent as
|
* there will be root to root mapping. So, root does not represent as
|
||||||
* internalDir.
|
* internalDir.
|
||||||
*/
|
*/
|
||||||
protected boolean isRootInternalDir() {
|
public boolean isRootInternalDir() {
|
||||||
return root.isInternalDir();
|
return root.isInternalDir();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected INodeLink<T> getRootFallbackLink() {
|
public INodeLink<T> getRootFallbackLink() {
|
||||||
Preconditions.checkState(root.isInternalDir());
|
Preconditions.checkState(root.isInternalDir());
|
||||||
return rootFallbackLink;
|
return rootFallbackLink;
|
||||||
}
|
}
|
||||||
|
@ -743,7 +743,7 @@ abstract class InodeTree<T> {
|
||||||
* If the input pathname leads to an internal mount-table entry then
|
* If the input pathname leads to an internal mount-table entry then
|
||||||
* the target file system is one that represents the internal inode.
|
* the target file system is one that represents the internal inode.
|
||||||
*/
|
*/
|
||||||
static class ResolveResult<T> {
|
public static class ResolveResult<T> {
|
||||||
final ResultKind kind;
|
final ResultKind kind;
|
||||||
final T targetFileSystem;
|
final T targetFileSystem;
|
||||||
final String resolvedPath;
|
final String resolvedPath;
|
||||||
|
@ -778,7 +778,7 @@ abstract class InodeTree<T> {
|
||||||
* @return ResolveResult which allows further resolution of the remaining path
|
* @return ResolveResult which allows further resolution of the remaining path
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
ResolveResult<T> resolve(final String p, final boolean resolveLastComponent)
|
public ResolveResult<T> resolve(final String p, final boolean resolveLastComponent)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
ResolveResult<T> resolveResult = null;
|
ResolveResult<T> resolveResult = null;
|
||||||
String[] path = breakIntoPathComponents(p);
|
String[] path = breakIntoPathComponents(p);
|
||||||
|
@ -958,7 +958,7 @@ abstract class InodeTree<T> {
|
||||||
* @return home dir value from mount table; null if no config value
|
* @return home dir value from mount table; null if no config value
|
||||||
* was found.
|
* was found.
|
||||||
*/
|
*/
|
||||||
String getHomeDirPrefixValue() {
|
public String getHomeDirPrefixValue() {
|
||||||
return homedirPrefix;
|
return homedirPrefix;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue