blob: 2bd6f1f3b912666a4d5a5e075bc61d9e52b9020d [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
*
* 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.
*/
package org.apache.hadoop.fs.permission;
import java.text.MessageFormat;
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
/**
* A class that stores both masked and unmasked create modes
* and is a drop-in replacement for masked permission.
*/
@InterfaceAudience.Public
@InterfaceStability.Evolving
public final class FsCreateModes extends FsPermission {
private static final long serialVersionUID = 0x22986f6d;
private final FsPermission unmasked;
/**
* Create from unmasked mode and umask.
*
* If the mode is already an FsCreateModes object, return it.
*/
public static FsPermission applyUMask(FsPermission mode,
FsPermission umask) {
if (mode.getUnmasked() != null) {
return mode;
}
return create(mode.applyUMask(umask), mode);
}
/**
* Create from masked and unmasked modes.
*/
public static FsCreateModes create(FsPermission masked,
FsPermission unmasked) {
assert masked.getUnmasked() == null;
assert unmasked.getUnmasked() == null;
return new FsCreateModes(masked, unmasked);
}
private FsCreateModes(FsPermission masked, FsPermission unmasked) {
super(masked);
this.unmasked = unmasked;
assert masked.getUnmasked() == null;
assert unmasked.getUnmasked() == null;
}
@Override
public FsPermission getMasked() {
return this;
}
@Override
public FsPermission getUnmasked() {
return unmasked;
}
@Override
public String toString() {
return MessageFormat.format("'{' masked: {0}, unmasked: {1} '}'",
super.toString(), getUnmasked());
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
FsCreateModes that = (FsCreateModes) o;
return getUnmasked().equals(that.getUnmasked());
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + getUnmasked().hashCode();
return result;
}
}