blob: dda679a3cf2018070151267b2f07184cb40a6fcf [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.doris.system;
import org.apache.doris.common.io.Text;
import org.apache.doris.common.io.Writable;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
/*
* Broker heartbeat response currently contains nothing and the heartbeat status
*/
public class BrokerHbResponse extends HeartbeatResponse implements Writable {
private String name;
private String host;
private int port;
public BrokerHbResponse() {
super(HeartbeatResponse.Type.BROKER);
}
public BrokerHbResponse(String name, String host, int port, long hbTime) {
super(HeartbeatResponse.Type.BROKER);
this.status = HbStatus.OK;
this.name = name;
this.host = host;
this.port = port;
this.hbTime = hbTime;
}
public BrokerHbResponse(String name, String host, int port, String errMsg) {
super(HeartbeatResponse.Type.BROKER);
this.status = HbStatus.BAD;
this.name = name;
this.host = host;
this.port = port;
this.msg = errMsg;
}
public String getName() {
return name;
}
public String getHost() {
return host;
}
public int getPort() {
return port;
}
public static BrokerHbResponse read(DataInput in) throws IOException {
BrokerHbResponse result = new BrokerHbResponse();
result.readFields(in);
return result;
}
@Override
public void write(DataOutput out) throws IOException {
super.write(out);
Text.writeString(out, name);
Text.writeString(out, host);
out.writeInt(port);
}
public void readFields(DataInput in) throws IOException {
super.readFields(in);
name = Text.readString(in);
host = Text.readString(in);
port = in.readInt();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(super.toString());
sb.append(", name: ").append(name);
sb.append(", host: ").append(host);
sb.append(", port: ").append(port);
return sb.toString();
}
}