blob: 07330563a410050fa545a543b11757dc3bd4187a [file] [log] [blame]
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: grpc/channelz/v1/channelz.proto
package io.grpc.channelz.v1;
/**
* <pre>
* Channel data is data related to a specific Channel or Subchannel.
* </pre>
*
* Protobuf type {@code grpc.channelz.v1.ChannelData}
*/
public final class ChannelData extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:grpc.channelz.v1.ChannelData)
ChannelDataOrBuilder {
private static final long serialVersionUID = 0L;
// Use ChannelData.newBuilder() to construct.
private ChannelData(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private ChannelData() {
target_ = "";
callsStarted_ = 0L;
callsSucceeded_ = 0L;
callsFailed_ = 0L;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ChannelData(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
io.grpc.channelz.v1.ChannelConnectivityState.Builder subBuilder = null;
if (state_ != null) {
subBuilder = state_.toBuilder();
}
state_ = input.readMessage(io.grpc.channelz.v1.ChannelConnectivityState.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(state_);
state_ = subBuilder.buildPartial();
}
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
target_ = s;
break;
}
case 26: {
io.grpc.channelz.v1.ChannelTrace.Builder subBuilder = null;
if (trace_ != null) {
subBuilder = trace_.toBuilder();
}
trace_ = input.readMessage(io.grpc.channelz.v1.ChannelTrace.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(trace_);
trace_ = subBuilder.buildPartial();
}
break;
}
case 32: {
callsStarted_ = input.readInt64();
break;
}
case 40: {
callsSucceeded_ = input.readInt64();
break;
}
case 48: {
callsFailed_ = input.readInt64();
break;
}
case 58: {
com.google.protobuf.Timestamp.Builder subBuilder = null;
if (lastCallStartedTimestamp_ != null) {
subBuilder = lastCallStartedTimestamp_.toBuilder();
}
lastCallStartedTimestamp_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(lastCallStartedTimestamp_);
lastCallStartedTimestamp_ = subBuilder.buildPartial();
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.grpc.channelz.v1.ChannelzProto.internal_static_grpc_channelz_v1_ChannelData_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.grpc.channelz.v1.ChannelzProto.internal_static_grpc_channelz_v1_ChannelData_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.grpc.channelz.v1.ChannelData.class, io.grpc.channelz.v1.ChannelData.Builder.class);
}
public static final int STATE_FIELD_NUMBER = 1;
private io.grpc.channelz.v1.ChannelConnectivityState state_;
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public boolean hasState() {
return state_ != null;
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public io.grpc.channelz.v1.ChannelConnectivityState getState() {
return state_ == null ? io.grpc.channelz.v1.ChannelConnectivityState.getDefaultInstance() : state_;
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public io.grpc.channelz.v1.ChannelConnectivityStateOrBuilder getStateOrBuilder() {
return getState();
}
public static final int TARGET_FIELD_NUMBER = 2;
private volatile java.lang.Object target_;
/**
* <pre>
* The target this channel originally tried to connect to. May be absent
* </pre>
*
* <code>string target = 2;</code>
*/
public java.lang.String getTarget() {
java.lang.Object ref = target_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
target_ = s;
return s;
}
}
/**
* <pre>
* The target this channel originally tried to connect to. May be absent
* </pre>
*
* <code>string target = 2;</code>
*/
public com.google.protobuf.ByteString
getTargetBytes() {
java.lang.Object ref = target_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
target_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TRACE_FIELD_NUMBER = 3;
private io.grpc.channelz.v1.ChannelTrace trace_;
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public boolean hasTrace() {
return trace_ != null;
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public io.grpc.channelz.v1.ChannelTrace getTrace() {
return trace_ == null ? io.grpc.channelz.v1.ChannelTrace.getDefaultInstance() : trace_;
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public io.grpc.channelz.v1.ChannelTraceOrBuilder getTraceOrBuilder() {
return getTrace();
}
public static final int CALLS_STARTED_FIELD_NUMBER = 4;
private long callsStarted_;
/**
* <pre>
* The number of calls started on the channel
* </pre>
*
* <code>int64 calls_started = 4;</code>
*/
public long getCallsStarted() {
return callsStarted_;
}
public static final int CALLS_SUCCEEDED_FIELD_NUMBER = 5;
private long callsSucceeded_;
/**
* <pre>
* The number of calls that have completed with an OK status
* </pre>
*
* <code>int64 calls_succeeded = 5;</code>
*/
public long getCallsSucceeded() {
return callsSucceeded_;
}
public static final int CALLS_FAILED_FIELD_NUMBER = 6;
private long callsFailed_;
/**
* <pre>
* The number of calls that have completed with a non-OK status
* </pre>
*
* <code>int64 calls_failed = 6;</code>
*/
public long getCallsFailed() {
return callsFailed_;
}
public static final int LAST_CALL_STARTED_TIMESTAMP_FIELD_NUMBER = 7;
private com.google.protobuf.Timestamp lastCallStartedTimestamp_;
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public boolean hasLastCallStartedTimestamp() {
return lastCallStartedTimestamp_ != null;
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public com.google.protobuf.Timestamp getLastCallStartedTimestamp() {
return lastCallStartedTimestamp_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lastCallStartedTimestamp_;
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public com.google.protobuf.TimestampOrBuilder getLastCallStartedTimestampOrBuilder() {
return getLastCallStartedTimestamp();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (state_ != null) {
output.writeMessage(1, getState());
}
if (!getTargetBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, target_);
}
if (trace_ != null) {
output.writeMessage(3, getTrace());
}
if (callsStarted_ != 0L) {
output.writeInt64(4, callsStarted_);
}
if (callsSucceeded_ != 0L) {
output.writeInt64(5, callsSucceeded_);
}
if (callsFailed_ != 0L) {
output.writeInt64(6, callsFailed_);
}
if (lastCallStartedTimestamp_ != null) {
output.writeMessage(7, getLastCallStartedTimestamp());
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (state_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getState());
}
if (!getTargetBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, target_);
}
if (trace_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getTrace());
}
if (callsStarted_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(4, callsStarted_);
}
if (callsSucceeded_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(5, callsSucceeded_);
}
if (callsFailed_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(6, callsFailed_);
}
if (lastCallStartedTimestamp_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(7, getLastCallStartedTimestamp());
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof io.grpc.channelz.v1.ChannelData)) {
return super.equals(obj);
}
io.grpc.channelz.v1.ChannelData other = (io.grpc.channelz.v1.ChannelData) obj;
boolean result = true;
result = result && (hasState() == other.hasState());
if (hasState()) {
result = result && getState()
.equals(other.getState());
}
result = result && getTarget()
.equals(other.getTarget());
result = result && (hasTrace() == other.hasTrace());
if (hasTrace()) {
result = result && getTrace()
.equals(other.getTrace());
}
result = result && (getCallsStarted()
== other.getCallsStarted());
result = result && (getCallsSucceeded()
== other.getCallsSucceeded());
result = result && (getCallsFailed()
== other.getCallsFailed());
result = result && (hasLastCallStartedTimestamp() == other.hasLastCallStartedTimestamp());
if (hasLastCallStartedTimestamp()) {
result = result && getLastCallStartedTimestamp()
.equals(other.getLastCallStartedTimestamp());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasState()) {
hash = (37 * hash) + STATE_FIELD_NUMBER;
hash = (53 * hash) + getState().hashCode();
}
hash = (37 * hash) + TARGET_FIELD_NUMBER;
hash = (53 * hash) + getTarget().hashCode();
if (hasTrace()) {
hash = (37 * hash) + TRACE_FIELD_NUMBER;
hash = (53 * hash) + getTrace().hashCode();
}
hash = (37 * hash) + CALLS_STARTED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getCallsStarted());
hash = (37 * hash) + CALLS_SUCCEEDED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getCallsSucceeded());
hash = (37 * hash) + CALLS_FAILED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getCallsFailed());
if (hasLastCallStartedTimestamp()) {
hash = (37 * hash) + LAST_CALL_STARTED_TIMESTAMP_FIELD_NUMBER;
hash = (53 * hash) + getLastCallStartedTimestamp().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.grpc.channelz.v1.ChannelData parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.grpc.channelz.v1.ChannelData parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.grpc.channelz.v1.ChannelData parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.grpc.channelz.v1.ChannelData parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.grpc.channelz.v1.ChannelData parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.grpc.channelz.v1.ChannelData parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.grpc.channelz.v1.ChannelData parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.grpc.channelz.v1.ChannelData parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static io.grpc.channelz.v1.ChannelData parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.grpc.channelz.v1.ChannelData parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static io.grpc.channelz.v1.ChannelData parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.grpc.channelz.v1.ChannelData parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(io.grpc.channelz.v1.ChannelData prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* <pre>
* Channel data is data related to a specific Channel or Subchannel.
* </pre>
*
* Protobuf type {@code grpc.channelz.v1.ChannelData}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:grpc.channelz.v1.ChannelData)
io.grpc.channelz.v1.ChannelDataOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.grpc.channelz.v1.ChannelzProto.internal_static_grpc_channelz_v1_ChannelData_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.grpc.channelz.v1.ChannelzProto.internal_static_grpc_channelz_v1_ChannelData_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.grpc.channelz.v1.ChannelData.class, io.grpc.channelz.v1.ChannelData.Builder.class);
}
// Construct using io.grpc.channelz.v1.ChannelData.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
if (stateBuilder_ == null) {
state_ = null;
} else {
state_ = null;
stateBuilder_ = null;
}
target_ = "";
if (traceBuilder_ == null) {
trace_ = null;
} else {
trace_ = null;
traceBuilder_ = null;
}
callsStarted_ = 0L;
callsSucceeded_ = 0L;
callsFailed_ = 0L;
if (lastCallStartedTimestampBuilder_ == null) {
lastCallStartedTimestamp_ = null;
} else {
lastCallStartedTimestamp_ = null;
lastCallStartedTimestampBuilder_ = null;
}
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.grpc.channelz.v1.ChannelzProto.internal_static_grpc_channelz_v1_ChannelData_descriptor;
}
public io.grpc.channelz.v1.ChannelData getDefaultInstanceForType() {
return io.grpc.channelz.v1.ChannelData.getDefaultInstance();
}
public io.grpc.channelz.v1.ChannelData build() {
io.grpc.channelz.v1.ChannelData result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public io.grpc.channelz.v1.ChannelData buildPartial() {
io.grpc.channelz.v1.ChannelData result = new io.grpc.channelz.v1.ChannelData(this);
if (stateBuilder_ == null) {
result.state_ = state_;
} else {
result.state_ = stateBuilder_.build();
}
result.target_ = target_;
if (traceBuilder_ == null) {
result.trace_ = trace_;
} else {
result.trace_ = traceBuilder_.build();
}
result.callsStarted_ = callsStarted_;
result.callsSucceeded_ = callsSucceeded_;
result.callsFailed_ = callsFailed_;
if (lastCallStartedTimestampBuilder_ == null) {
result.lastCallStartedTimestamp_ = lastCallStartedTimestamp_;
} else {
result.lastCallStartedTimestamp_ = lastCallStartedTimestampBuilder_.build();
}
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.grpc.channelz.v1.ChannelData) {
return mergeFrom((io.grpc.channelz.v1.ChannelData)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.grpc.channelz.v1.ChannelData other) {
if (other == io.grpc.channelz.v1.ChannelData.getDefaultInstance()) return this;
if (other.hasState()) {
mergeState(other.getState());
}
if (!other.getTarget().isEmpty()) {
target_ = other.target_;
onChanged();
}
if (other.hasTrace()) {
mergeTrace(other.getTrace());
}
if (other.getCallsStarted() != 0L) {
setCallsStarted(other.getCallsStarted());
}
if (other.getCallsSucceeded() != 0L) {
setCallsSucceeded(other.getCallsSucceeded());
}
if (other.getCallsFailed() != 0L) {
setCallsFailed(other.getCallsFailed());
}
if (other.hasLastCallStartedTimestamp()) {
mergeLastCallStartedTimestamp(other.getLastCallStartedTimestamp());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
io.grpc.channelz.v1.ChannelData parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.grpc.channelz.v1.ChannelData) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private io.grpc.channelz.v1.ChannelConnectivityState state_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.grpc.channelz.v1.ChannelConnectivityState, io.grpc.channelz.v1.ChannelConnectivityState.Builder, io.grpc.channelz.v1.ChannelConnectivityStateOrBuilder> stateBuilder_;
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public boolean hasState() {
return stateBuilder_ != null || state_ != null;
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public io.grpc.channelz.v1.ChannelConnectivityState getState() {
if (stateBuilder_ == null) {
return state_ == null ? io.grpc.channelz.v1.ChannelConnectivityState.getDefaultInstance() : state_;
} else {
return stateBuilder_.getMessage();
}
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public Builder setState(io.grpc.channelz.v1.ChannelConnectivityState value) {
if (stateBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
state_ = value;
onChanged();
} else {
stateBuilder_.setMessage(value);
}
return this;
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public Builder setState(
io.grpc.channelz.v1.ChannelConnectivityState.Builder builderForValue) {
if (stateBuilder_ == null) {
state_ = builderForValue.build();
onChanged();
} else {
stateBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public Builder mergeState(io.grpc.channelz.v1.ChannelConnectivityState value) {
if (stateBuilder_ == null) {
if (state_ != null) {
state_ =
io.grpc.channelz.v1.ChannelConnectivityState.newBuilder(state_).mergeFrom(value).buildPartial();
} else {
state_ = value;
}
onChanged();
} else {
stateBuilder_.mergeFrom(value);
}
return this;
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public Builder clearState() {
if (stateBuilder_ == null) {
state_ = null;
onChanged();
} else {
state_ = null;
stateBuilder_ = null;
}
return this;
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public io.grpc.channelz.v1.ChannelConnectivityState.Builder getStateBuilder() {
onChanged();
return getStateFieldBuilder().getBuilder();
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
public io.grpc.channelz.v1.ChannelConnectivityStateOrBuilder getStateOrBuilder() {
if (stateBuilder_ != null) {
return stateBuilder_.getMessageOrBuilder();
} else {
return state_ == null ?
io.grpc.channelz.v1.ChannelConnectivityState.getDefaultInstance() : state_;
}
}
/**
* <pre>
* The connectivity state of the channel or subchannel. Implementations
* should always set this.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelConnectivityState state = 1;</code>
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.grpc.channelz.v1.ChannelConnectivityState, io.grpc.channelz.v1.ChannelConnectivityState.Builder, io.grpc.channelz.v1.ChannelConnectivityStateOrBuilder>
getStateFieldBuilder() {
if (stateBuilder_ == null) {
stateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.grpc.channelz.v1.ChannelConnectivityState, io.grpc.channelz.v1.ChannelConnectivityState.Builder, io.grpc.channelz.v1.ChannelConnectivityStateOrBuilder>(
getState(),
getParentForChildren(),
isClean());
state_ = null;
}
return stateBuilder_;
}
private java.lang.Object target_ = "";
/**
* <pre>
* The target this channel originally tried to connect to. May be absent
* </pre>
*
* <code>string target = 2;</code>
*/
public java.lang.String getTarget() {
java.lang.Object ref = target_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
target_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* <pre>
* The target this channel originally tried to connect to. May be absent
* </pre>
*
* <code>string target = 2;</code>
*/
public com.google.protobuf.ByteString
getTargetBytes() {
java.lang.Object ref = target_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
target_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* <pre>
* The target this channel originally tried to connect to. May be absent
* </pre>
*
* <code>string target = 2;</code>
*/
public Builder setTarget(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
target_ = value;
onChanged();
return this;
}
/**
* <pre>
* The target this channel originally tried to connect to. May be absent
* </pre>
*
* <code>string target = 2;</code>
*/
public Builder clearTarget() {
target_ = getDefaultInstance().getTarget();
onChanged();
return this;
}
/**
* <pre>
* The target this channel originally tried to connect to. May be absent
* </pre>
*
* <code>string target = 2;</code>
*/
public Builder setTargetBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
target_ = value;
onChanged();
return this;
}
private io.grpc.channelz.v1.ChannelTrace trace_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.grpc.channelz.v1.ChannelTrace, io.grpc.channelz.v1.ChannelTrace.Builder, io.grpc.channelz.v1.ChannelTraceOrBuilder> traceBuilder_;
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public boolean hasTrace() {
return traceBuilder_ != null || trace_ != null;
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public io.grpc.channelz.v1.ChannelTrace getTrace() {
if (traceBuilder_ == null) {
return trace_ == null ? io.grpc.channelz.v1.ChannelTrace.getDefaultInstance() : trace_;
} else {
return traceBuilder_.getMessage();
}
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public Builder setTrace(io.grpc.channelz.v1.ChannelTrace value) {
if (traceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
trace_ = value;
onChanged();
} else {
traceBuilder_.setMessage(value);
}
return this;
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public Builder setTrace(
io.grpc.channelz.v1.ChannelTrace.Builder builderForValue) {
if (traceBuilder_ == null) {
trace_ = builderForValue.build();
onChanged();
} else {
traceBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public Builder mergeTrace(io.grpc.channelz.v1.ChannelTrace value) {
if (traceBuilder_ == null) {
if (trace_ != null) {
trace_ =
io.grpc.channelz.v1.ChannelTrace.newBuilder(trace_).mergeFrom(value).buildPartial();
} else {
trace_ = value;
}
onChanged();
} else {
traceBuilder_.mergeFrom(value);
}
return this;
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public Builder clearTrace() {
if (traceBuilder_ == null) {
trace_ = null;
onChanged();
} else {
trace_ = null;
traceBuilder_ = null;
}
return this;
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public io.grpc.channelz.v1.ChannelTrace.Builder getTraceBuilder() {
onChanged();
return getTraceFieldBuilder().getBuilder();
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
public io.grpc.channelz.v1.ChannelTraceOrBuilder getTraceOrBuilder() {
if (traceBuilder_ != null) {
return traceBuilder_.getMessageOrBuilder();
} else {
return trace_ == null ?
io.grpc.channelz.v1.ChannelTrace.getDefaultInstance() : trace_;
}
}
/**
* <pre>
* A trace of recent events on the channel. May be absent.
* </pre>
*
* <code>.grpc.channelz.v1.ChannelTrace trace = 3;</code>
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.grpc.channelz.v1.ChannelTrace, io.grpc.channelz.v1.ChannelTrace.Builder, io.grpc.channelz.v1.ChannelTraceOrBuilder>
getTraceFieldBuilder() {
if (traceBuilder_ == null) {
traceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.grpc.channelz.v1.ChannelTrace, io.grpc.channelz.v1.ChannelTrace.Builder, io.grpc.channelz.v1.ChannelTraceOrBuilder>(
getTrace(),
getParentForChildren(),
isClean());
trace_ = null;
}
return traceBuilder_;
}
private long callsStarted_ ;
/**
* <pre>
* The number of calls started on the channel
* </pre>
*
* <code>int64 calls_started = 4;</code>
*/
public long getCallsStarted() {
return callsStarted_;
}
/**
* <pre>
* The number of calls started on the channel
* </pre>
*
* <code>int64 calls_started = 4;</code>
*/
public Builder setCallsStarted(long value) {
callsStarted_ = value;
onChanged();
return this;
}
/**
* <pre>
* The number of calls started on the channel
* </pre>
*
* <code>int64 calls_started = 4;</code>
*/
public Builder clearCallsStarted() {
callsStarted_ = 0L;
onChanged();
return this;
}
private long callsSucceeded_ ;
/**
* <pre>
* The number of calls that have completed with an OK status
* </pre>
*
* <code>int64 calls_succeeded = 5;</code>
*/
public long getCallsSucceeded() {
return callsSucceeded_;
}
/**
* <pre>
* The number of calls that have completed with an OK status
* </pre>
*
* <code>int64 calls_succeeded = 5;</code>
*/
public Builder setCallsSucceeded(long value) {
callsSucceeded_ = value;
onChanged();
return this;
}
/**
* <pre>
* The number of calls that have completed with an OK status
* </pre>
*
* <code>int64 calls_succeeded = 5;</code>
*/
public Builder clearCallsSucceeded() {
callsSucceeded_ = 0L;
onChanged();
return this;
}
private long callsFailed_ ;
/**
* <pre>
* The number of calls that have completed with a non-OK status
* </pre>
*
* <code>int64 calls_failed = 6;</code>
*/
public long getCallsFailed() {
return callsFailed_;
}
/**
* <pre>
* The number of calls that have completed with a non-OK status
* </pre>
*
* <code>int64 calls_failed = 6;</code>
*/
public Builder setCallsFailed(long value) {
callsFailed_ = value;
onChanged();
return this;
}
/**
* <pre>
* The number of calls that have completed with a non-OK status
* </pre>
*
* <code>int64 calls_failed = 6;</code>
*/
public Builder clearCallsFailed() {
callsFailed_ = 0L;
onChanged();
return this;
}
private com.google.protobuf.Timestamp lastCallStartedTimestamp_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> lastCallStartedTimestampBuilder_;
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public boolean hasLastCallStartedTimestamp() {
return lastCallStartedTimestampBuilder_ != null || lastCallStartedTimestamp_ != null;
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public com.google.protobuf.Timestamp getLastCallStartedTimestamp() {
if (lastCallStartedTimestampBuilder_ == null) {
return lastCallStartedTimestamp_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lastCallStartedTimestamp_;
} else {
return lastCallStartedTimestampBuilder_.getMessage();
}
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public Builder setLastCallStartedTimestamp(com.google.protobuf.Timestamp value) {
if (lastCallStartedTimestampBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
lastCallStartedTimestamp_ = value;
onChanged();
} else {
lastCallStartedTimestampBuilder_.setMessage(value);
}
return this;
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public Builder setLastCallStartedTimestamp(
com.google.protobuf.Timestamp.Builder builderForValue) {
if (lastCallStartedTimestampBuilder_ == null) {
lastCallStartedTimestamp_ = builderForValue.build();
onChanged();
} else {
lastCallStartedTimestampBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public Builder mergeLastCallStartedTimestamp(com.google.protobuf.Timestamp value) {
if (lastCallStartedTimestampBuilder_ == null) {
if (lastCallStartedTimestamp_ != null) {
lastCallStartedTimestamp_ =
com.google.protobuf.Timestamp.newBuilder(lastCallStartedTimestamp_).mergeFrom(value).buildPartial();
} else {
lastCallStartedTimestamp_ = value;
}
onChanged();
} else {
lastCallStartedTimestampBuilder_.mergeFrom(value);
}
return this;
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public Builder clearLastCallStartedTimestamp() {
if (lastCallStartedTimestampBuilder_ == null) {
lastCallStartedTimestamp_ = null;
onChanged();
} else {
lastCallStartedTimestamp_ = null;
lastCallStartedTimestampBuilder_ = null;
}
return this;
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public com.google.protobuf.Timestamp.Builder getLastCallStartedTimestampBuilder() {
onChanged();
return getLastCallStartedTimestampFieldBuilder().getBuilder();
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
public com.google.protobuf.TimestampOrBuilder getLastCallStartedTimestampOrBuilder() {
if (lastCallStartedTimestampBuilder_ != null) {
return lastCallStartedTimestampBuilder_.getMessageOrBuilder();
} else {
return lastCallStartedTimestamp_ == null ?
com.google.protobuf.Timestamp.getDefaultInstance() : lastCallStartedTimestamp_;
}
}
/**
* <pre>
* The last time a call was started on the channel.
* </pre>
*
* <code>.google.protobuf.Timestamp last_call_started_timestamp = 7;</code>
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>
getLastCallStartedTimestampFieldBuilder() {
if (lastCallStartedTimestampBuilder_ == null) {
lastCallStartedTimestampBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>(
getLastCallStartedTimestamp(),
getParentForChildren(),
isClean());
lastCallStartedTimestamp_ = null;
}
return lastCallStartedTimestampBuilder_;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:grpc.channelz.v1.ChannelData)
}
// @@protoc_insertion_point(class_scope:grpc.channelz.v1.ChannelData)
private static final io.grpc.channelz.v1.ChannelData DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.grpc.channelz.v1.ChannelData();
}
public static io.grpc.channelz.v1.ChannelData getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<ChannelData>
PARSER = new com.google.protobuf.AbstractParser<ChannelData>() {
public ChannelData parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ChannelData(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<ChannelData> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<ChannelData> getParserForType() {
return PARSER;
}
public io.grpc.channelz.v1.ChannelData getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}