blob: 75bbe7a45d6f49898dffcd7d254f487e9465384f [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.accumulo.server.master.state;
import java.util.Objects;
import org.apache.accumulo.core.data.Value;
import org.apache.accumulo.core.util.HostAndPort;
/**
* For a suspended tablet, the time of suspension and the server it was suspended from.
*/
public class SuspendingTServer {
public final HostAndPort server;
public final long suspensionTime;
SuspendingTServer(HostAndPort server, long suspensionTime) {
this.server = Objects.requireNonNull(server);
this.suspensionTime = suspensionTime;
}
public static SuspendingTServer fromValue(Value value) {
String valStr = value.toString();
String[] parts = valStr.split("[|]", 2);
return new SuspendingTServer(HostAndPort.fromString(parts[0]), Long.parseLong(parts[1]));
}
public static Value toValue(HostAndPort tServer, long suspensionTime) {
return new Value(tServer + "|" + suspensionTime);
}
@Override
public boolean equals(Object rhsObject) {
if (!(rhsObject instanceof SuspendingTServer)) {
return false;
}
SuspendingTServer rhs = (SuspendingTServer) rhsObject;
return server.equals(rhs.server) && suspensionTime == rhs.suspensionTime;
}
@Override
public int hashCode() {
return Objects.hash(server, suspensionTime);
}
@Override
public String toString() {
return server + "[" + suspensionTime + "]";
}
}