alluxio.wire.ConfigHash 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.conf.PropertyKey;
import alluxio.grpc.GetConfigHashPResponse;
import alluxio.util.CommonUtils;
import com.google.common.base.Objects;
import com.google.common.base.Preconditions;
import javax.annotation.concurrent.ThreadSafe;
/**
* Hashes of cluster and path level configurations.
*/
@ThreadSafe
public class ConfigHash {
private final String mClusterConfigHash;
private final String mPathConfigHash;
private long mClusterConfigLastUpdateTime;
private long mPathConfigLastUpdateTime;
/**
* Constructs a new ConfigHash.
*
* @param clusterConfigHash cluster configuration hash, cannot be null
* @param pathConfigHash path configuration hash, cannot be null
* @param clusterConfigLastUpdateTime the cluster config last update time
* @param pathConfigLastUpdateTime path config last update time
*/
public ConfigHash(String clusterConfigHash, String pathConfigHash,
long clusterConfigLastUpdateTime, long pathConfigLastUpdateTime) {
Preconditions.checkNotNull(clusterConfigHash, "clusterConfigHash");
Preconditions.checkNotNull(pathConfigHash, "pathConfigHash");
mClusterConfigHash = clusterConfigHash;
mPathConfigHash = pathConfigHash;
mClusterConfigLastUpdateTime = clusterConfigLastUpdateTime;
mPathConfigLastUpdateTime = pathConfigLastUpdateTime;
}
private ConfigHash(GetConfigHashPResponse response) {
this(response.getClusterConfigHash(), response.getPathConfigHash(), 0, 0);
}
/**
* @param response the grpc representation of configuration hash
* @return the wire representation of the proto response
*/
public static ConfigHash fromProto(GetConfigHashPResponse response) {
return new ConfigHash(response);
}
/**
* @return the proto representation
*/
public GetConfigHashPResponse toProto() {
GetConfigHashPResponse.Builder response = GetConfigHashPResponse.newBuilder();
if (mClusterConfigHash != null) {
response.setClusterConfigHash(mClusterConfigHash);
}
if (mPathConfigHash != null) {
response.setPathConfigHash(mPathConfigHash);
}
return response.build();
}
/**
* @return hash of cluster level configuration
*/
public String getClusterConfigHash() {
return mClusterConfigHash;
}
/**
* @return hash of path level configuration
*/
public String getPathConfigHash() {
return mPathConfigHash;
}
/**
* @return cluster config last update time
*/
public long getClusterConfigLastUpdateTime() {
return mClusterConfigLastUpdateTime;
}
/**
* @return path config last update time
*/
public long getPathConfigLastUpdateTime() {
return mPathConfigLastUpdateTime;
}
/**
* @return cluster config last update time text
*/
public String getClusterConfigLastUpdateTimeText() {
return CommonUtils.convertMsToDate(mClusterConfigLastUpdateTime,
alluxio.conf.Configuration.getString(PropertyKey.USER_DATE_FORMAT_PATTERN));
}
/**
* @return path config last update time text
*/
public String getPathConfigLastUpdateTimeText() {
return CommonUtils.convertMsToDate(mPathConfigLastUpdateTime,
alluxio.conf.Configuration.getString(PropertyKey.USER_DATE_FORMAT_PATTERN));
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof ConfigHash)) {
return false;
}
ConfigHash that = (ConfigHash) o;
return mClusterConfigHash.equals(that.mClusterConfigHash)
&& mPathConfigHash.equals(that.mPathConfigHash);
}
@Override
public int hashCode() {
return Objects.hashCode(mClusterConfigHash, mPathConfigHash);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy