blob: 31d7a366994c2bf40d4f1b940d5804eade8fa12a [file] [log] [blame]
/*
* Copyright (c) 2022 Project CHIP Authors
* All rights reserved.
*
* Licensed 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 chip.devicecontroller.model;
import java.util.Locale;
import java.util.Objects;
/** An attribute path that should be used for requests. */
public class ChipAttributePath {
private ChipPathId endpointId, clusterId, attributeId;
private ChipAttributePath(ChipPathId endpointId, ChipPathId clusterId, ChipPathId attributeId) {
this.endpointId = endpointId;
this.clusterId = clusterId;
this.attributeId = attributeId;
}
public ChipPathId getEndpointId() {
return endpointId;
}
public ChipPathId getClusterId() {
return clusterId;
}
public ChipPathId getAttributeId() {
return attributeId;
}
@Override
public boolean equals(Object object) {
if (object instanceof ChipAttributePath) {
ChipAttributePath that = (ChipAttributePath) object;
return Objects.equals(this.endpointId, that.endpointId)
&& Objects.equals(this.clusterId, that.clusterId)
&& Objects.equals(this.attributeId, that.attributeId);
}
return false;
}
@Override
public int hashCode() {
return Objects.hash(endpointId, clusterId, attributeId);
}
@Override
public String toString() {
return String.format(
Locale.ENGLISH,
"Endpoint %s, cluster %s, attribute %s",
endpointId,
clusterId,
attributeId);
}
public static ChipAttributePath newInstance(
ChipPathId endpointId, ChipPathId clusterId, ChipPathId attributeId) {
return new ChipAttributePath(endpointId, clusterId, attributeId);
}
/** Create a new {@link ChipAttributePath} with only concrete ids. */
public static ChipAttributePath newInstance(long endpointId, long clusterId, long attributeId) {
return new ChipAttributePath(
ChipPathId.forId(endpointId), ChipPathId.forId(clusterId), ChipPathId.forId(attributeId));
}
}