alluxio.wire.FileInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alluxio-core-common Show documentation
Show all versions of alluxio-core-common Show documentation
Common utilities shared in Alluxio core modules
/*
* The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
* (the "License"). You may not use this work except in compliance with the License, which is
* available at www.apache.org/licenses/LICENSE-2.0
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied, as more fully set forth in the License.
*
* See the NOTICE file distributed with this work for information regarding copyright ownership.
*/
package alluxio.wire;
import alluxio.Constants;
import alluxio.grpc.TtlAction;
import alluxio.security.authorization.AccessControlList;
import alluxio.security.authorization.DefaultAccessControlList;
import com.google.common.base.MoreObjects;
import com.google.common.base.Objects;
import com.google.common.base.Preconditions;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
/**
* The file information.
*/
@NotThreadSafe
// TODO(jiri): Consolidate with URIStatus.
public final class FileInfo implements Serializable {
private static final long serialVersionUID = 3086599355791696602L;
private long mFileId;
private String mName = "";
private String mPath = "";
private String mUfsPath = "";
private long mLength;
private long mBlockSizeBytes;
private long mCreationTimeMs;
private boolean mCompleted;
private boolean mFolder;
private boolean mPinned;
private Set mMediumTypes = new HashSet<>();
private boolean mCacheable;
private boolean mPersisted;
private ArrayList mBlockIds = new ArrayList<>();
private int mInMemoryPercentage;
private long mLastModificationTimeMs;
private long mLastAccessTimeMs;
private long mTtl;
private TtlAction mTtlAction;
private String mOwner = "";
private String mGroup = "";
private int mMode;
private String mPersistenceState = "";
private boolean mMountPoint;
private ArrayList mFileBlockInfoList = new ArrayList<>();
/* Index of mFileBlockInfoList. */
private Map mFileBlockInfoMap = new HashMap<>();
private long mMountId;
private int mReplicationMax;
private int mReplicationMin;
private int mInAlluxioPercentage;
private String mUfsFingerprint = Constants.INVALID_UFS_FINGERPRINT;
private AccessControlList mAcl = AccessControlList.EMPTY_ACL;
private DefaultAccessControlList mDefaultAcl = DefaultAccessControlList.EMPTY_DEFAULT_ACL;
private Map mXAttr;
/**
* Creates a new instance of {@link FileInfo}.
*/
public FileInfo() {}
/**
* @return the file id
*/
public long getFileId() {
return mFileId;
}
/**
* @return the file name
*/
public String getName() {
return mName;
}
/**
* @return the file path
*/
public String getPath() {
return mPath;
}
/**
* @return the file UFS path
*/
public String getUfsPath() {
return mUfsPath;
}
/**
* @return the file length
*/
public long getLength() {
return mLength;
}
/**
* @return the file block size (in bytes)
*/
public long getBlockSizeBytes() {
return mBlockSizeBytes;
}
/**
* @return the file creation time (in milliseconds)
*/
public long getCreationTimeMs() {
return mCreationTimeMs;
}
/**
* @return whether the file is completed
*/
public boolean isCompleted() {
return mCompleted;
}
/**
* @return whether the file is a folder
*/
public boolean isFolder() {
return mFolder;
}
/**
* @return whether the file is pinned
*/
public boolean isPinned() {
return mPinned;
}
/**
* @return whether the file is cacheable
*/
public boolean isCacheable() {
return mCacheable;
}
/**
* @return whether the file is persisted
*/
public boolean isPersisted() {
return mPersisted;
}
/**
* @return the file block ids
*/
public List getBlockIds() {
return mBlockIds;
}
/**
* @return the file in memory percentage
*/
public int getInMemoryPercentage() {
return mInMemoryPercentage;
}
/**
* @return the file in alluxio percentage
*/
public int getInAlluxioPercentage() {
return mInAlluxioPercentage;
}
/**
* @return the file last modification time (in milliseconds)
*/
public long getLastModificationTimeMs() {
return mLastModificationTimeMs;
}
/**
* @return the file last access time (in milliseconds)
*/
public long getLastAccessTimeMs() {
return mLastAccessTimeMs;
}
/**
* @return the file time-to-live (in seconds)
*/
public long getTtl() {
return mTtl;
}
/**
* @return the {@link TtlAction}
*/
public TtlAction getTtlAction() {
return mTtlAction;
}
/**
* @return the file owner
*/
public String getOwner() {
return mOwner;
}
/**
* @return the file owner group
*/
public String getGroup() {
return mGroup;
}
/**
* @return the file mode bits
*/
public int getMode() {
return mMode;
}
/**
* @return the file persistence state
*/
public String getPersistenceState() {
return mPersistenceState;
}
/**
* @return whether the file is a mount point
*/
public boolean isMountPoint() {
return mMountPoint;
}
/**
* @return the list of file block descriptors
*/
public List getFileBlockInfos() {
return mFileBlockInfoList;
}
/**
* @param blockId the block ID
* @return the corresponding block info or null
*/
public FileBlockInfo getFileBlockInfo(long blockId) {
return mFileBlockInfoMap.get(blockId);
}
/**
* @return the maximum number of block replication
*/
public int getReplicationMax() {
return mReplicationMax;
}
/**
* @return the minimum number of block replication
*/
public int getReplicationMin() {
return mReplicationMin;
}
/**
* @return the id of the mount
*/
public long getMountId() {
return mMountId;
}
/**
* @return the ufs fingerprint for this file
*/
public String getUfsFingerprint() {
return mUfsFingerprint;
}
/**
* @return the ACL object for this file
*/
public AccessControlList getAcl() {
return mAcl;
}
/**
* @return the default ACL object for this file
*/
public DefaultAccessControlList getDefaultAcl() {
return mDefaultAcl;
}
/**
* @return the ACL as string entries for this file
*/
public List convertAclToStringEntries() {
// do not use getX as the name of the method, otherwise it will be used by json serialization
return (mAcl == null) ? new ArrayList<>() : mAcl.toStringEntries();
}
/**
* @return the default ACL as string entries for this file
*/
public List convertDefaultAclToStringEntries() {
// do not use getX as the name of the method, otherwise it will be used by json serialization
return (mDefaultAcl == null) ? new ArrayList<>() : mDefaultAcl.toStringEntries();
}
/**
* @return a set of pinned locations
*/
public Set getMediumTypes() {
return mMediumTypes;
}
/**
* @return the extended attributes
*/
@Nullable
public Map getXAttr() {
return mXAttr;
}
/**
* @param fileId the file id to use
* @return the file information
*/
public FileInfo setFileId(long fileId) {
mFileId = fileId;
return this;
}
/**
* @param name the file name to use
* @return the file information
*/
public FileInfo setName(String name) {
Preconditions.checkNotNull(name, "name");
mName = name;
return this;
}
/**
* @param path the file path to use
* @return the file information
*/
public FileInfo setPath(String path) {
Preconditions.checkNotNull(path, "path");
mPath = path;
return this;
}
/**
* @param ufsPath the file UFS path to use
* @return the file information
*/
public FileInfo setUfsPath(String ufsPath) {
Preconditions.checkNotNull(ufsPath, "ufsPath");
mUfsPath = ufsPath;
return this;
}
/**
* @param length the file length to use
* @return the file information
*/
public FileInfo setLength(long length) {
mLength = length;
return this;
}
/**
* @param blockSizeBytes the file block size (in bytes) to use
* @return the file information
*/
public FileInfo setBlockSizeBytes(long blockSizeBytes) {
mBlockSizeBytes = blockSizeBytes;
return this;
}
/**
* @param creationTimeMs the file creation time (in milliseconds) to use
* @return the file information
*/
public FileInfo setCreationTimeMs(long creationTimeMs) {
mCreationTimeMs = creationTimeMs;
return this;
}
/**
* @param completed the completed flag value to use
* @return the file information
*/
public FileInfo setCompleted(boolean completed) {
mCompleted = completed;
return this;
}
/**
* @param folder the folder flag value to use
* @return the file information
*/
public FileInfo setFolder(boolean folder) {
mFolder = folder;
return this;
}
/**
* @param pinned the pinned flag value to use
* @return the file information
*/
public FileInfo setPinned(boolean pinned) {
mPinned = pinned;
return this;
}
/**
* @param cacheable the cacheable flag value to use
* @return the file information
*/
public FileInfo setCacheable(boolean cacheable) {
mCacheable = cacheable;
return this;
}
/**
* @param persisted the persisted flag value to use
* @return the file information
*/
public FileInfo setPersisted(boolean persisted) {
mPersisted = persisted;
return this;
}
/**
* @param blockIds the file block ids to use
* @return the file information
*/
public FileInfo setBlockIds(List blockIds) {
Preconditions.checkNotNull(blockIds, "blockIds");
mBlockIds = new ArrayList<>(blockIds);
return this;
}
/**
* @param inMemoryPercentage the file in memory percentage to use
* @return the file information
*/
public FileInfo setInMemoryPercentage(int inMemoryPercentage) {
mInMemoryPercentage = inMemoryPercentage;
return this;
}
/**
* @param inAlluxioPercentage the file in alluxio percentage to use
* @return the file information
*/
public FileInfo setInAlluxioPercentage(int inAlluxioPercentage) {
mInAlluxioPercentage = inAlluxioPercentage;
return this;
}
/**
* @param lastModificationTimeMs the last modification time (in milliseconds) to use
* @return the file information
*/
public FileInfo setLastModificationTimeMs(long lastModificationTimeMs) {
mLastModificationTimeMs = lastModificationTimeMs;
return this;
}
/**
* @param lastAccessTimeMs the last access time (in milliseconds) to use
* @return the file information
*/
public FileInfo setLastAccessTimeMs(long lastAccessTimeMs) {
mLastAccessTimeMs = lastAccessTimeMs;
return this;
}
/**
* @param ttl the file time-to-live (in seconds) to use
* @return the file information
*/
public FileInfo setTtl(long ttl) {
mTtl = ttl;
return this;
}
/**
* @param ttlAction the {@link TtlAction} to use
* @return the updated options object
*/
public FileInfo setTtlAction(TtlAction ttlAction) {
mTtlAction = ttlAction;
return this;
}
/**
* @param owner the file owner
* @return the file information
*/
public FileInfo setOwner(String owner) {
Preconditions.checkNotNull(owner, "owner");
mOwner = owner;
return this;
}
/**
* @param group the file group
* @return the file information
*/
public FileInfo setGroup(String group) {
Preconditions.checkNotNull(group, "group");
mGroup = group;
return this;
}
/**
* @param mode the file mode bits
* @return the file information
*/
public FileInfo setMode(int mode) {
mMode = mode;
return this;
}
/**
* @param persistenceState the file persistence state to use
* @return the file information
*/
public FileInfo setPersistenceState(String persistenceState) {
Preconditions.checkNotNull(persistenceState, "persistenceState");
mPersistenceState = persistenceState;
return this;
}
/**
* @param mountPoint the mount point flag value to use
* @return the file information
*/
public FileInfo setMountPoint(boolean mountPoint) {
mMountPoint = mountPoint;
return this;
}
/**
* @param fileBlockInfos the file block descriptors to use
* @return the file information
*/
public FileInfo setFileBlockInfos(List fileBlockInfos) {
mFileBlockInfoList = new ArrayList<>(fileBlockInfos);
for (FileBlockInfo info : mFileBlockInfoList) {
mFileBlockInfoMap.put(info.getBlockInfo().getBlockId(), info);
}
return this;
}
/**
* @param replicationMax the maximum number of block replication
* @return the file descriptor
*/
public FileInfo setReplicationMax(int replicationMax) {
mReplicationMax = replicationMax;
return this;
}
/**
* @param replicationMin the minimum number of block replication
* @return the file descriptor
*/
public FileInfo setReplicationMin(int replicationMin) {
mReplicationMin = replicationMin;
return this;
}
/**
* @param mountId the id of mount
* @return the file information
*/
public FileInfo setMountId(long mountId) {
mMountId = mountId;
return this;
}
/**
* @param ufsFingerprint the ufs fingerprint to use
* @return the file information
*/
public FileInfo setUfsFingerprint(String ufsFingerprint) {
mUfsFingerprint = ufsFingerprint;
return this;
}
/**
* @param acl the ACL entries to use
* @return the file information
*/
public FileInfo setAcl(AccessControlList acl) {
mAcl = acl;
return this;
}
/**
* @param defaultAcl the ACL entries to use
* @return the file information
*/
public FileInfo setDefaultAcl(DefaultAccessControlList defaultAcl) {
mDefaultAcl = defaultAcl;
return this;
}
/**
* @param mediumTypes the pinned locations
* @return the file information
*/
public FileInfo setMediumTypes(Set mediumTypes) {
mMediumTypes = mediumTypes;
return this;
}
/**
* @param xAttr the extended attributes to use
* @return the updated {@link FileInfo}
*/
public FileInfo setXAttr(Map xAttr) {
mXAttr = xAttr;
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof FileInfo)) {
return false;
}
FileInfo that = (FileInfo) o;
return mFileId == that.mFileId && mName.equals(that.mName) && mPath.equals(that.mPath)
&& mUfsPath.equals(that.mUfsPath) && mLength == that.mLength
&& mBlockSizeBytes == that.mBlockSizeBytes && mCreationTimeMs == that.mCreationTimeMs
&& mCompleted == that.mCompleted && mFolder == that.mFolder && mPinned == that.mPinned
&& mCacheable == that.mCacheable && mPersisted == that.mPersisted
&& mBlockIds.equals(that.mBlockIds) && mInMemoryPercentage == that.mInMemoryPercentage
&& mLastModificationTimeMs == that.mLastModificationTimeMs && mTtl == that.mTtl
&& mLastAccessTimeMs == that.mLastAccessTimeMs
&& mOwner.equals(that.mOwner) && mGroup.equals(that.mGroup) && mMode == that.mMode
&& mPersistenceState.equals(that.mPersistenceState) && mMountPoint == that.mMountPoint
&& mReplicationMax == that.mReplicationMax && mReplicationMin == that.mReplicationMin
&& mFileBlockInfoList.equals(that.mFileBlockInfoList) && mTtlAction == that.mTtlAction
&& mMountId == that.mMountId && mInAlluxioPercentage == that.mInAlluxioPercentage
&& mUfsFingerprint.equals(that.mUfsFingerprint)
&& Objects.equal(mAcl, that.mAcl)
&& Objects.equal(mDefaultAcl, that.mDefaultAcl)
&& Objects.equal(mMediumTypes, that.mMediumTypes);
}
@Override
public int hashCode() {
return Objects.hashCode(mFileId, mName, mPath, mUfsPath, mLength, mBlockSizeBytes,
mCreationTimeMs, mCompleted, mFolder, mPinned, mCacheable, mPersisted, mBlockIds,
mInMemoryPercentage, mLastModificationTimeMs, mLastAccessTimeMs, mTtl, mOwner, mGroup,
mMode, mReplicationMax, mReplicationMin, mPersistenceState, mMountPoint, mFileBlockInfoList,
mTtlAction, mInAlluxioPercentage, mUfsFingerprint, mAcl, mDefaultAcl, mMediumTypes);
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("fileId", mFileId)
.add("name", mName)
.add("path", mPath)
.add("ufsPath", mUfsPath).add("length", mLength).add("blockSizeBytes", mBlockSizeBytes)
.add("creationTimeMs", mCreationTimeMs).add("completed", mCompleted).add("folder", mFolder)
.add("pinned", mPinned).add("pinnedlocation", mMediumTypes)
.add("cacheable", mCacheable).add("persisted", mPersisted)
.add("blockIds", mBlockIds).add("inMemoryPercentage", mInMemoryPercentage)
.add("lastModificationTimesMs", mLastModificationTimeMs).add("ttl", mTtl)
.add("lastAccessTimesMs", mLastAccessTimeMs)
.add("ttlAction", mTtlAction).add("owner", mOwner).add("group", mGroup).add("mode", mMode)
.add("persistenceState", mPersistenceState).add("mountPoint", mMountPoint)
.add("replicationMax", mReplicationMax).add("replicationMin", mReplicationMin)
.add("fileBlockInfos", mFileBlockInfoList)
.add("mountId", mMountId).add("inAlluxioPercentage", mInAlluxioPercentage)
.add("ufsFingerprint", mUfsFingerprint)
.add("acl", mAcl.toString())
.add("defaultAcl", mDefaultAcl.toString())
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy