Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.apache.hadoop.yarn.proto.YarnProtos Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: yarn_protos.proto
package org.apache.hadoop.yarn.proto;
public final class YarnProtos {
private YarnProtos() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
}
/**
* Protobuf enum {@code hadoop.yarn.ContainerStateProto}
*/
public enum ContainerStateProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* C_NEW = 1;
*/
C_NEW(0, 1),
/**
* C_RUNNING = 2;
*/
C_RUNNING(1, 2),
/**
* C_COMPLETE = 3;
*/
C_COMPLETE(2, 3),
;
/**
* C_NEW = 1;
*/
public static final int C_NEW_VALUE = 1;
/**
* C_RUNNING = 2;
*/
public static final int C_RUNNING_VALUE = 2;
/**
* C_COMPLETE = 3;
*/
public static final int C_COMPLETE_VALUE = 3;
public final int getNumber() { return value; }
public static ContainerStateProto valueOf(int value) {
switch (value) {
case 1: return C_NEW;
case 2: return C_RUNNING;
case 3: return C_COMPLETE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public ContainerStateProto findValueByNumber(int number) {
return ContainerStateProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(0);
}
private static final ContainerStateProto[] VALUES = values();
public static ContainerStateProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private ContainerStateProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.ContainerStateProto)
}
/**
* Protobuf enum {@code hadoop.yarn.YarnApplicationStateProto}
*/
public enum YarnApplicationStateProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* NEW = 1;
*/
NEW(0, 1),
/**
* NEW_SAVING = 2;
*/
NEW_SAVING(1, 2),
/**
* SUBMITTED = 3;
*/
SUBMITTED(2, 3),
/**
* ACCEPTED = 4;
*/
ACCEPTED(3, 4),
/**
* RUNNING = 5;
*/
RUNNING(4, 5),
/**
* FINISHED = 6;
*/
FINISHED(5, 6),
/**
* FAILED = 7;
*/
FAILED(6, 7),
/**
* KILLED = 8;
*/
KILLED(7, 8),
;
/**
* NEW = 1;
*/
public static final int NEW_VALUE = 1;
/**
* NEW_SAVING = 2;
*/
public static final int NEW_SAVING_VALUE = 2;
/**
* SUBMITTED = 3;
*/
public static final int SUBMITTED_VALUE = 3;
/**
* ACCEPTED = 4;
*/
public static final int ACCEPTED_VALUE = 4;
/**
* RUNNING = 5;
*/
public static final int RUNNING_VALUE = 5;
/**
* FINISHED = 6;
*/
public static final int FINISHED_VALUE = 6;
/**
* FAILED = 7;
*/
public static final int FAILED_VALUE = 7;
/**
* KILLED = 8;
*/
public static final int KILLED_VALUE = 8;
public final int getNumber() { return value; }
public static YarnApplicationStateProto valueOf(int value) {
switch (value) {
case 1: return NEW;
case 2: return NEW_SAVING;
case 3: return SUBMITTED;
case 4: return ACCEPTED;
case 5: return RUNNING;
case 6: return FINISHED;
case 7: return FAILED;
case 8: return KILLED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public YarnApplicationStateProto findValueByNumber(int number) {
return YarnApplicationStateProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(1);
}
private static final YarnApplicationStateProto[] VALUES = values();
public static YarnApplicationStateProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private YarnApplicationStateProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.YarnApplicationStateProto)
}
/**
* Protobuf enum {@code hadoop.yarn.YarnApplicationAttemptStateProto}
*/
public enum YarnApplicationAttemptStateProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* APP_ATTEMPT_NEW = 1;
*/
APP_ATTEMPT_NEW(0, 1),
/**
* APP_ATTEMPT_SUBMITTED = 2;
*/
APP_ATTEMPT_SUBMITTED(1, 2),
/**
* APP_ATTEMPT_SCHEDULED = 3;
*/
APP_ATTEMPT_SCHEDULED(2, 3),
/**
* APP_ATTEMPT_ALLOCATED_SAVING = 4;
*/
APP_ATTEMPT_ALLOCATED_SAVING(3, 4),
/**
* APP_ATTEMPT_ALLOCATED = 5;
*/
APP_ATTEMPT_ALLOCATED(4, 5),
/**
* APP_ATTEMPT_LAUNCHED = 6;
*/
APP_ATTEMPT_LAUNCHED(5, 6),
/**
* APP_ATTEMPT_FAILED = 7;
*/
APP_ATTEMPT_FAILED(6, 7),
/**
* APP_ATTEMPT_RUNNING = 8;
*/
APP_ATTEMPT_RUNNING(7, 8),
/**
* APP_ATTEMPT_FINISHING = 9;
*/
APP_ATTEMPT_FINISHING(8, 9),
/**
* APP_ATTEMPT_FINISHED = 10;
*/
APP_ATTEMPT_FINISHED(9, 10),
/**
* APP_ATTEMPT_KILLED = 11;
*/
APP_ATTEMPT_KILLED(10, 11),
;
/**
* APP_ATTEMPT_NEW = 1;
*/
public static final int APP_ATTEMPT_NEW_VALUE = 1;
/**
* APP_ATTEMPT_SUBMITTED = 2;
*/
public static final int APP_ATTEMPT_SUBMITTED_VALUE = 2;
/**
* APP_ATTEMPT_SCHEDULED = 3;
*/
public static final int APP_ATTEMPT_SCHEDULED_VALUE = 3;
/**
* APP_ATTEMPT_ALLOCATED_SAVING = 4;
*/
public static final int APP_ATTEMPT_ALLOCATED_SAVING_VALUE = 4;
/**
* APP_ATTEMPT_ALLOCATED = 5;
*/
public static final int APP_ATTEMPT_ALLOCATED_VALUE = 5;
/**
* APP_ATTEMPT_LAUNCHED = 6;
*/
public static final int APP_ATTEMPT_LAUNCHED_VALUE = 6;
/**
* APP_ATTEMPT_FAILED = 7;
*/
public static final int APP_ATTEMPT_FAILED_VALUE = 7;
/**
* APP_ATTEMPT_RUNNING = 8;
*/
public static final int APP_ATTEMPT_RUNNING_VALUE = 8;
/**
* APP_ATTEMPT_FINISHING = 9;
*/
public static final int APP_ATTEMPT_FINISHING_VALUE = 9;
/**
* APP_ATTEMPT_FINISHED = 10;
*/
public static final int APP_ATTEMPT_FINISHED_VALUE = 10;
/**
* APP_ATTEMPT_KILLED = 11;
*/
public static final int APP_ATTEMPT_KILLED_VALUE = 11;
public final int getNumber() { return value; }
public static YarnApplicationAttemptStateProto valueOf(int value) {
switch (value) {
case 1: return APP_ATTEMPT_NEW;
case 2: return APP_ATTEMPT_SUBMITTED;
case 3: return APP_ATTEMPT_SCHEDULED;
case 4: return APP_ATTEMPT_ALLOCATED_SAVING;
case 5: return APP_ATTEMPT_ALLOCATED;
case 6: return APP_ATTEMPT_LAUNCHED;
case 7: return APP_ATTEMPT_FAILED;
case 8: return APP_ATTEMPT_RUNNING;
case 9: return APP_ATTEMPT_FINISHING;
case 10: return APP_ATTEMPT_FINISHED;
case 11: return APP_ATTEMPT_KILLED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public YarnApplicationAttemptStateProto findValueByNumber(int number) {
return YarnApplicationAttemptStateProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(2);
}
private static final YarnApplicationAttemptStateProto[] VALUES = values();
public static YarnApplicationAttemptStateProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private YarnApplicationAttemptStateProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.YarnApplicationAttemptStateProto)
}
/**
* Protobuf enum {@code hadoop.yarn.FinalApplicationStatusProto}
*/
public enum FinalApplicationStatusProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* APP_UNDEFINED = 0;
*/
APP_UNDEFINED(0, 0),
/**
* APP_SUCCEEDED = 1;
*/
APP_SUCCEEDED(1, 1),
/**
* APP_FAILED = 2;
*/
APP_FAILED(2, 2),
/**
* APP_KILLED = 3;
*/
APP_KILLED(3, 3),
;
/**
* APP_UNDEFINED = 0;
*/
public static final int APP_UNDEFINED_VALUE = 0;
/**
* APP_SUCCEEDED = 1;
*/
public static final int APP_SUCCEEDED_VALUE = 1;
/**
* APP_FAILED = 2;
*/
public static final int APP_FAILED_VALUE = 2;
/**
* APP_KILLED = 3;
*/
public static final int APP_KILLED_VALUE = 3;
public final int getNumber() { return value; }
public static FinalApplicationStatusProto valueOf(int value) {
switch (value) {
case 0: return APP_UNDEFINED;
case 1: return APP_SUCCEEDED;
case 2: return APP_FAILED;
case 3: return APP_KILLED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public FinalApplicationStatusProto findValueByNumber(int number) {
return FinalApplicationStatusProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(3);
}
private static final FinalApplicationStatusProto[] VALUES = values();
public static FinalApplicationStatusProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private FinalApplicationStatusProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.FinalApplicationStatusProto)
}
/**
* Protobuf enum {@code hadoop.yarn.LocalResourceVisibilityProto}
*/
public enum LocalResourceVisibilityProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* PUBLIC = 1;
*/
PUBLIC(0, 1),
/**
* PRIVATE = 2;
*/
PRIVATE(1, 2),
/**
* APPLICATION = 3;
*/
APPLICATION(2, 3),
;
/**
* PUBLIC = 1;
*/
public static final int PUBLIC_VALUE = 1;
/**
* PRIVATE = 2;
*/
public static final int PRIVATE_VALUE = 2;
/**
* APPLICATION = 3;
*/
public static final int APPLICATION_VALUE = 3;
public final int getNumber() { return value; }
public static LocalResourceVisibilityProto valueOf(int value) {
switch (value) {
case 1: return PUBLIC;
case 2: return PRIVATE;
case 3: return APPLICATION;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public LocalResourceVisibilityProto findValueByNumber(int number) {
return LocalResourceVisibilityProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(4);
}
private static final LocalResourceVisibilityProto[] VALUES = values();
public static LocalResourceVisibilityProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private LocalResourceVisibilityProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.LocalResourceVisibilityProto)
}
/**
* Protobuf enum {@code hadoop.yarn.LocalResourceTypeProto}
*/
public enum LocalResourceTypeProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* ARCHIVE = 1;
*/
ARCHIVE(0, 1),
/**
* FILE = 2;
*/
FILE(1, 2),
/**
* PATTERN = 3;
*/
PATTERN(2, 3),
;
/**
* ARCHIVE = 1;
*/
public static final int ARCHIVE_VALUE = 1;
/**
* FILE = 2;
*/
public static final int FILE_VALUE = 2;
/**
* PATTERN = 3;
*/
public static final int PATTERN_VALUE = 3;
public final int getNumber() { return value; }
public static LocalResourceTypeProto valueOf(int value) {
switch (value) {
case 1: return ARCHIVE;
case 2: return FILE;
case 3: return PATTERN;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public LocalResourceTypeProto findValueByNumber(int number) {
return LocalResourceTypeProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(5);
}
private static final LocalResourceTypeProto[] VALUES = values();
public static LocalResourceTypeProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private LocalResourceTypeProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.LocalResourceTypeProto)
}
/**
* Protobuf enum {@code hadoop.yarn.NodeStateProto}
*/
public enum NodeStateProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* NS_NEW = 1;
*/
NS_NEW(0, 1),
/**
* NS_RUNNING = 2;
*/
NS_RUNNING(1, 2),
/**
* NS_UNHEALTHY = 3;
*/
NS_UNHEALTHY(2, 3),
/**
* NS_DECOMMISSIONED = 4;
*/
NS_DECOMMISSIONED(3, 4),
/**
* NS_LOST = 5;
*/
NS_LOST(4, 5),
/**
* NS_REBOOTED = 6;
*/
NS_REBOOTED(5, 6),
;
/**
* NS_NEW = 1;
*/
public static final int NS_NEW_VALUE = 1;
/**
* NS_RUNNING = 2;
*/
public static final int NS_RUNNING_VALUE = 2;
/**
* NS_UNHEALTHY = 3;
*/
public static final int NS_UNHEALTHY_VALUE = 3;
/**
* NS_DECOMMISSIONED = 4;
*/
public static final int NS_DECOMMISSIONED_VALUE = 4;
/**
* NS_LOST = 5;
*/
public static final int NS_LOST_VALUE = 5;
/**
* NS_REBOOTED = 6;
*/
public static final int NS_REBOOTED_VALUE = 6;
public final int getNumber() { return value; }
public static NodeStateProto valueOf(int value) {
switch (value) {
case 1: return NS_NEW;
case 2: return NS_RUNNING;
case 3: return NS_UNHEALTHY;
case 4: return NS_DECOMMISSIONED;
case 5: return NS_LOST;
case 6: return NS_REBOOTED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public NodeStateProto findValueByNumber(int number) {
return NodeStateProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(6);
}
private static final NodeStateProto[] VALUES = values();
public static NodeStateProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private NodeStateProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.NodeStateProto)
}
/**
* Protobuf enum {@code hadoop.yarn.AMCommandProto}
*/
public enum AMCommandProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* AM_RESYNC = 1;
*/
AM_RESYNC(0, 1),
/**
* AM_SHUTDOWN = 2;
*/
AM_SHUTDOWN(1, 2),
;
/**
* AM_RESYNC = 1;
*/
public static final int AM_RESYNC_VALUE = 1;
/**
* AM_SHUTDOWN = 2;
*/
public static final int AM_SHUTDOWN_VALUE = 2;
public final int getNumber() { return value; }
public static AMCommandProto valueOf(int value) {
switch (value) {
case 1: return AM_RESYNC;
case 2: return AM_SHUTDOWN;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public AMCommandProto findValueByNumber(int number) {
return AMCommandProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(7);
}
private static final AMCommandProto[] VALUES = values();
public static AMCommandProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private AMCommandProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.AMCommandProto)
}
/**
* Protobuf enum {@code hadoop.yarn.ApplicationAccessTypeProto}
*/
public enum ApplicationAccessTypeProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* APPACCESS_VIEW_APP = 1;
*/
APPACCESS_VIEW_APP(0, 1),
/**
* APPACCESS_MODIFY_APP = 2;
*/
APPACCESS_MODIFY_APP(1, 2),
;
/**
* APPACCESS_VIEW_APP = 1;
*/
public static final int APPACCESS_VIEW_APP_VALUE = 1;
/**
* APPACCESS_MODIFY_APP = 2;
*/
public static final int APPACCESS_MODIFY_APP_VALUE = 2;
public final int getNumber() { return value; }
public static ApplicationAccessTypeProto valueOf(int value) {
switch (value) {
case 1: return APPACCESS_VIEW_APP;
case 2: return APPACCESS_MODIFY_APP;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public ApplicationAccessTypeProto findValueByNumber(int number) {
return ApplicationAccessTypeProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(8);
}
private static final ApplicationAccessTypeProto[] VALUES = values();
public static ApplicationAccessTypeProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private ApplicationAccessTypeProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.ApplicationAccessTypeProto)
}
/**
* Protobuf enum {@code hadoop.yarn.QueueStateProto}
*/
public enum QueueStateProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* Q_STOPPED = 1;
*/
Q_STOPPED(0, 1),
/**
* Q_RUNNING = 2;
*/
Q_RUNNING(1, 2),
;
/**
* Q_STOPPED = 1;
*/
public static final int Q_STOPPED_VALUE = 1;
/**
* Q_RUNNING = 2;
*/
public static final int Q_RUNNING_VALUE = 2;
public final int getNumber() { return value; }
public static QueueStateProto valueOf(int value) {
switch (value) {
case 1: return Q_STOPPED;
case 2: return Q_RUNNING;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public QueueStateProto findValueByNumber(int number) {
return QueueStateProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(9);
}
private static final QueueStateProto[] VALUES = values();
public static QueueStateProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private QueueStateProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.QueueStateProto)
}
/**
* Protobuf enum {@code hadoop.yarn.QueueACLProto}
*/
public enum QueueACLProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* QACL_SUBMIT_APPLICATIONS = 1;
*/
QACL_SUBMIT_APPLICATIONS(0, 1),
/**
* QACL_ADMINISTER_QUEUE = 2;
*/
QACL_ADMINISTER_QUEUE(1, 2),
;
/**
* QACL_SUBMIT_APPLICATIONS = 1;
*/
public static final int QACL_SUBMIT_APPLICATIONS_VALUE = 1;
/**
* QACL_ADMINISTER_QUEUE = 2;
*/
public static final int QACL_ADMINISTER_QUEUE_VALUE = 2;
public final int getNumber() { return value; }
public static QueueACLProto valueOf(int value) {
switch (value) {
case 1: return QACL_SUBMIT_APPLICATIONS;
case 2: return QACL_ADMINISTER_QUEUE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public QueueACLProto findValueByNumber(int number) {
return QueueACLProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(10);
}
private static final QueueACLProto[] VALUES = values();
public static QueueACLProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private QueueACLProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.QueueACLProto)
}
/**
* Protobuf enum {@code hadoop.yarn.ReservationRequestInterpreterProto}
*/
public enum ReservationRequestInterpreterProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* R_ANY = 0;
*/
R_ANY(0, 0),
/**
* R_ALL = 1;
*/
R_ALL(1, 1),
/**
* R_ORDER = 2;
*/
R_ORDER(2, 2),
/**
* R_ORDER_NO_GAP = 3;
*/
R_ORDER_NO_GAP(3, 3),
;
/**
* R_ANY = 0;
*/
public static final int R_ANY_VALUE = 0;
/**
* R_ALL = 1;
*/
public static final int R_ALL_VALUE = 1;
/**
* R_ORDER = 2;
*/
public static final int R_ORDER_VALUE = 2;
/**
* R_ORDER_NO_GAP = 3;
*/
public static final int R_ORDER_NO_GAP_VALUE = 3;
public final int getNumber() { return value; }
public static ReservationRequestInterpreterProto valueOf(int value) {
switch (value) {
case 0: return R_ANY;
case 1: return R_ALL;
case 2: return R_ORDER;
case 3: return R_ORDER_NO_GAP;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public ReservationRequestInterpreterProto findValueByNumber(int number) {
return ReservationRequestInterpreterProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(11);
}
private static final ReservationRequestInterpreterProto[] VALUES = values();
public static ReservationRequestInterpreterProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private ReservationRequestInterpreterProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.ReservationRequestInterpreterProto)
}
/**
* Protobuf enum {@code hadoop.yarn.ContainerExitStatusProto}
*/
public enum ContainerExitStatusProto
implements com.google.protobuf.ProtocolMessageEnum {
/**
* SUCCESS = 0;
*/
SUCCESS(0, 0),
/**
* INVALID = -1000;
*/
INVALID(1, -1000),
/**
* ABORTED = -100;
*/
ABORTED(2, -100),
/**
* DISKS_FAILED = -101;
*/
DISKS_FAILED(3, -101),
;
/**
* SUCCESS = 0;
*/
public static final int SUCCESS_VALUE = 0;
/**
* INVALID = -1000;
*/
public static final int INVALID_VALUE = -1000;
/**
* ABORTED = -100;
*/
public static final int ABORTED_VALUE = -100;
/**
* DISKS_FAILED = -101;
*/
public static final int DISKS_FAILED_VALUE = -101;
public final int getNumber() { return value; }
public static ContainerExitStatusProto valueOf(int value) {
switch (value) {
case 0: return SUCCESS;
case -1000: return INVALID;
case -100: return ABORTED;
case -101: return DISKS_FAILED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public ContainerExitStatusProto findValueByNumber(int number) {
return ContainerExitStatusProto.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.getDescriptor().getEnumTypes().get(12);
}
private static final ContainerExitStatusProto[] VALUES = values();
public static ContainerExitStatusProto valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private ContainerExitStatusProto(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:hadoop.yarn.ContainerExitStatusProto)
}
public interface SerializedExceptionProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional string message = 1;
/**
* optional string message = 1;
*/
boolean hasMessage();
/**
* optional string message = 1;
*/
java.lang.String getMessage();
/**
* optional string message = 1;
*/
com.google.protobuf.ByteString
getMessageBytes();
// optional string trace = 2;
/**
* optional string trace = 2;
*/
boolean hasTrace();
/**
* optional string trace = 2;
*/
java.lang.String getTrace();
/**
* optional string trace = 2;
*/
com.google.protobuf.ByteString
getTraceBytes();
// optional string class_name = 3;
/**
* optional string class_name = 3;
*/
boolean hasClassName();
/**
* optional string class_name = 3;
*/
java.lang.String getClassName();
/**
* optional string class_name = 3;
*/
com.google.protobuf.ByteString
getClassNameBytes();
// optional .hadoop.yarn.SerializedExceptionProto cause = 4;
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
boolean hasCause();
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto getCause();
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProtoOrBuilder getCauseOrBuilder();
}
/**
* Protobuf type {@code hadoop.yarn.SerializedExceptionProto}
*/
public static final class SerializedExceptionProto extends
com.google.protobuf.GeneratedMessage
implements SerializedExceptionProtoOrBuilder {
// Use SerializedExceptionProto.newBuilder() to construct.
private SerializedExceptionProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private SerializedExceptionProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final SerializedExceptionProto defaultInstance;
public static SerializedExceptionProto getDefaultInstance() {
return defaultInstance;
}
public SerializedExceptionProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private SerializedExceptionProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
bitField0_ |= 0x00000001;
message_ = input.readBytes();
break;
}
case 18: {
bitField0_ |= 0x00000002;
trace_ = input.readBytes();
break;
}
case 26: {
bitField0_ |= 0x00000004;
className_ = input.readBytes();
break;
}
case 34: {
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000008) == 0x00000008)) {
subBuilder = cause_.toBuilder();
}
cause_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(cause_);
cause_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000008;
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_SerializedExceptionProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_SerializedExceptionProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.class, org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public SerializedExceptionProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new SerializedExceptionProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional string message = 1;
public static final int MESSAGE_FIELD_NUMBER = 1;
private java.lang.Object message_;
/**
* optional string message = 1;
*/
public boolean hasMessage() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string message = 1;
*/
public java.lang.String getMessage() {
java.lang.Object ref = message_;
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();
if (bs.isValidUtf8()) {
message_ = s;
}
return s;
}
}
/**
* optional string message = 1;
*/
public com.google.protobuf.ByteString
getMessageBytes() {
java.lang.Object ref = message_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
message_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string trace = 2;
public static final int TRACE_FIELD_NUMBER = 2;
private java.lang.Object trace_;
/**
* optional string trace = 2;
*/
public boolean hasTrace() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string trace = 2;
*/
public java.lang.String getTrace() {
java.lang.Object ref = trace_;
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();
if (bs.isValidUtf8()) {
trace_ = s;
}
return s;
}
}
/**
* optional string trace = 2;
*/
public com.google.protobuf.ByteString
getTraceBytes() {
java.lang.Object ref = trace_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
trace_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string class_name = 3;
public static final int CLASS_NAME_FIELD_NUMBER = 3;
private java.lang.Object className_;
/**
* optional string class_name = 3;
*/
public boolean hasClassName() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string class_name = 3;
*/
public java.lang.String getClassName() {
java.lang.Object ref = className_;
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();
if (bs.isValidUtf8()) {
className_ = s;
}
return s;
}
}
/**
* optional string class_name = 3;
*/
public com.google.protobuf.ByteString
getClassNameBytes() {
java.lang.Object ref = className_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
className_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional .hadoop.yarn.SerializedExceptionProto cause = 4;
public static final int CAUSE_FIELD_NUMBER = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto cause_;
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public boolean hasCause() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto getCause() {
return cause_;
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProtoOrBuilder getCauseOrBuilder() {
return cause_;
}
private void initFields() {
message_ = "";
trace_ = "";
className_ = "";
cause_ = org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.getDefaultInstance();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeBytes(1, getMessageBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getTraceBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBytes(3, getClassNameBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeMessage(4, cause_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(1, getMessageBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getTraceBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, getClassNameBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, cause_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto other = (org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto) obj;
boolean result = true;
result = result && (hasMessage() == other.hasMessage());
if (hasMessage()) {
result = result && getMessage()
.equals(other.getMessage());
}
result = result && (hasTrace() == other.hasTrace());
if (hasTrace()) {
result = result && getTrace()
.equals(other.getTrace());
}
result = result && (hasClassName() == other.hasClassName());
if (hasClassName()) {
result = result && getClassName()
.equals(other.getClassName());
}
result = result && (hasCause() == other.hasCause());
if (hasCause()) {
result = result && getCause()
.equals(other.getCause());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasMessage()) {
hash = (37 * hash) + MESSAGE_FIELD_NUMBER;
hash = (53 * hash) + getMessage().hashCode();
}
if (hasTrace()) {
hash = (37 * hash) + TRACE_FIELD_NUMBER;
hash = (53 * hash) + getTrace().hashCode();
}
if (hasClassName()) {
hash = (37 * hash) + CLASS_NAME_FIELD_NUMBER;
hash = (53 * hash) + getClassName().hashCode();
}
if (hasCause()) {
hash = (37 * hash) + CAUSE_FIELD_NUMBER;
hash = (53 * hash) + getCause().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.SerializedExceptionProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_SerializedExceptionProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_SerializedExceptionProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.class, org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getCauseFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
message_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
trace_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
className_ = "";
bitField0_ = (bitField0_ & ~0x00000004);
if (causeBuilder_ == null) {
cause_ = org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.getDefaultInstance();
} else {
causeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_SerializedExceptionProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto result = new org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.message_ = message_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.trace_ = trace_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.className_ = className_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
if (causeBuilder_ == null) {
result.cause_ = cause_;
} else {
result.cause_ = causeBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.getDefaultInstance()) return this;
if (other.hasMessage()) {
bitField0_ |= 0x00000001;
message_ = other.message_;
onChanged();
}
if (other.hasTrace()) {
bitField0_ |= 0x00000002;
trace_ = other.trace_;
onChanged();
}
if (other.hasClassName()) {
bitField0_ |= 0x00000004;
className_ = other.className_;
onChanged();
}
if (other.hasCause()) {
mergeCause(other.getCause());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional string message = 1;
private java.lang.Object message_ = "";
/**
* optional string message = 1;
*/
public boolean hasMessage() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string message = 1;
*/
public java.lang.String getMessage() {
java.lang.Object ref = message_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
message_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string message = 1;
*/
public com.google.protobuf.ByteString
getMessageBytes() {
java.lang.Object ref = message_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
message_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string message = 1;
*/
public Builder setMessage(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
message_ = value;
onChanged();
return this;
}
/**
* optional string message = 1;
*/
public Builder clearMessage() {
bitField0_ = (bitField0_ & ~0x00000001);
message_ = getDefaultInstance().getMessage();
onChanged();
return this;
}
/**
* optional string message = 1;
*/
public Builder setMessageBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
message_ = value;
onChanged();
return this;
}
// optional string trace = 2;
private java.lang.Object trace_ = "";
/**
* optional string trace = 2;
*/
public boolean hasTrace() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string trace = 2;
*/
public java.lang.String getTrace() {
java.lang.Object ref = trace_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
trace_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string trace = 2;
*/
public com.google.protobuf.ByteString
getTraceBytes() {
java.lang.Object ref = trace_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
trace_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string trace = 2;
*/
public Builder setTrace(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
trace_ = value;
onChanged();
return this;
}
/**
* optional string trace = 2;
*/
public Builder clearTrace() {
bitField0_ = (bitField0_ & ~0x00000002);
trace_ = getDefaultInstance().getTrace();
onChanged();
return this;
}
/**
* optional string trace = 2;
*/
public Builder setTraceBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
trace_ = value;
onChanged();
return this;
}
// optional string class_name = 3;
private java.lang.Object className_ = "";
/**
* optional string class_name = 3;
*/
public boolean hasClassName() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string class_name = 3;
*/
public java.lang.String getClassName() {
java.lang.Object ref = className_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
className_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string class_name = 3;
*/
public com.google.protobuf.ByteString
getClassNameBytes() {
java.lang.Object ref = className_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
className_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string class_name = 3;
*/
public Builder setClassName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
className_ = value;
onChanged();
return this;
}
/**
* optional string class_name = 3;
*/
public Builder clearClassName() {
bitField0_ = (bitField0_ & ~0x00000004);
className_ = getDefaultInstance().getClassName();
onChanged();
return this;
}
/**
* optional string class_name = 3;
*/
public Builder setClassNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
className_ = value;
onChanged();
return this;
}
// optional .hadoop.yarn.SerializedExceptionProto cause = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto cause_ = org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto, org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProtoOrBuilder> causeBuilder_;
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public boolean hasCause() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto getCause() {
if (causeBuilder_ == null) {
return cause_;
} else {
return causeBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public Builder setCause(org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto value) {
if (causeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
cause_ = value;
onChanged();
} else {
causeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public Builder setCause(
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.Builder builderForValue) {
if (causeBuilder_ == null) {
cause_ = builderForValue.build();
onChanged();
} else {
causeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public Builder mergeCause(org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto value) {
if (causeBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008) &&
cause_ != org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.getDefaultInstance()) {
cause_ =
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.newBuilder(cause_).mergeFrom(value).buildPartial();
} else {
cause_ = value;
}
onChanged();
} else {
causeBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public Builder clearCause() {
if (causeBuilder_ == null) {
cause_ = org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.getDefaultInstance();
onChanged();
} else {
causeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.Builder getCauseBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getCauseFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProtoOrBuilder getCauseOrBuilder() {
if (causeBuilder_ != null) {
return causeBuilder_.getMessageOrBuilder();
} else {
return cause_;
}
}
/**
* optional .hadoop.yarn.SerializedExceptionProto cause = 4;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto, org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProtoOrBuilder>
getCauseFieldBuilder() {
if (causeBuilder_ == null) {
causeBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto, org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.SerializedExceptionProtoOrBuilder>(
cause_,
getParentForChildren(),
isClean());
cause_ = null;
}
return causeBuilder_;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.SerializedExceptionProto)
}
static {
defaultInstance = new SerializedExceptionProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.SerializedExceptionProto)
}
public interface ApplicationIdProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional int32 id = 1;
/**
* optional int32 id = 1;
*/
boolean hasId();
/**
* optional int32 id = 1;
*/
int getId();
// optional int64 cluster_timestamp = 2;
/**
* optional int64 cluster_timestamp = 2;
*/
boolean hasClusterTimestamp();
/**
* optional int64 cluster_timestamp = 2;
*/
long getClusterTimestamp();
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationIdProto}
*/
public static final class ApplicationIdProto extends
com.google.protobuf.GeneratedMessage
implements ApplicationIdProtoOrBuilder {
// Use ApplicationIdProto.newBuilder() to construct.
private ApplicationIdProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ApplicationIdProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ApplicationIdProto defaultInstance;
public static ApplicationIdProto getDefaultInstance() {
return defaultInstance;
}
public ApplicationIdProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApplicationIdProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
id_ = input.readInt32();
break;
}
case 16: {
bitField0_ |= 0x00000002;
clusterTimestamp_ = input.readInt64();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ApplicationIdProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApplicationIdProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional int32 id = 1;
public static final int ID_FIELD_NUMBER = 1;
private int id_;
/**
* optional int32 id = 1;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 id = 1;
*/
public int getId() {
return id_;
}
// optional int64 cluster_timestamp = 2;
public static final int CLUSTER_TIMESTAMP_FIELD_NUMBER = 2;
private long clusterTimestamp_;
/**
* optional int64 cluster_timestamp = 2;
*/
public boolean hasClusterTimestamp() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int64 cluster_timestamp = 2;
*/
public long getClusterTimestamp() {
return clusterTimestamp_;
}
private void initFields() {
id_ = 0;
clusterTimestamp_ = 0L;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(1, id_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt64(2, clusterTimestamp_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, id_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(2, clusterTimestamp_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto) obj;
boolean result = true;
result = result && (hasId() == other.hasId());
if (hasId()) {
result = result && (getId()
== other.getId());
}
result = result && (hasClusterTimestamp() == other.hasClusterTimestamp());
if (hasClusterTimestamp()) {
result = result && (getClusterTimestamp()
== other.getClusterTimestamp());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasId()) {
hash = (37 * hash) + ID_FIELD_NUMBER;
hash = (53 * hash) + getId();
}
if (hasClusterTimestamp()) {
hash = (37 * hash) + CLUSTER_TIMESTAMP_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getClusterTimestamp());
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationIdProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
id_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
clusterTimestamp_ = 0L;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationIdProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.id_ = id_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.clusterTimestamp_ = clusterTimestamp_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance()) return this;
if (other.hasId()) {
setId(other.getId());
}
if (other.hasClusterTimestamp()) {
setClusterTimestamp(other.getClusterTimestamp());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional int32 id = 1;
private int id_ ;
/**
* optional int32 id = 1;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 id = 1;
*/
public int getId() {
return id_;
}
/**
* optional int32 id = 1;
*/
public Builder setId(int value) {
bitField0_ |= 0x00000001;
id_ = value;
onChanged();
return this;
}
/**
* optional int32 id = 1;
*/
public Builder clearId() {
bitField0_ = (bitField0_ & ~0x00000001);
id_ = 0;
onChanged();
return this;
}
// optional int64 cluster_timestamp = 2;
private long clusterTimestamp_ ;
/**
* optional int64 cluster_timestamp = 2;
*/
public boolean hasClusterTimestamp() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int64 cluster_timestamp = 2;
*/
public long getClusterTimestamp() {
return clusterTimestamp_;
}
/**
* optional int64 cluster_timestamp = 2;
*/
public Builder setClusterTimestamp(long value) {
bitField0_ |= 0x00000002;
clusterTimestamp_ = value;
onChanged();
return this;
}
/**
* optional int64 cluster_timestamp = 2;
*/
public Builder clearClusterTimestamp() {
bitField0_ = (bitField0_ & ~0x00000002);
clusterTimestamp_ = 0L;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ApplicationIdProto)
}
static {
defaultInstance = new ApplicationIdProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ApplicationIdProto)
}
public interface ApplicationAttemptIdProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ApplicationIdProto application_id = 1;
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
boolean hasApplicationId();
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getApplicationId();
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getApplicationIdOrBuilder();
// optional int32 attemptId = 2;
/**
* optional int32 attemptId = 2;
*/
boolean hasAttemptId();
/**
* optional int32 attemptId = 2;
*/
int getAttemptId();
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationAttemptIdProto}
*/
public static final class ApplicationAttemptIdProto extends
com.google.protobuf.GeneratedMessage
implements ApplicationAttemptIdProtoOrBuilder {
// Use ApplicationAttemptIdProto.newBuilder() to construct.
private ApplicationAttemptIdProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ApplicationAttemptIdProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ApplicationAttemptIdProto defaultInstance;
public static ApplicationAttemptIdProto getDefaultInstance() {
return defaultInstance;
}
public ApplicationAttemptIdProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApplicationAttemptIdProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = applicationId_.toBuilder();
}
applicationId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(applicationId_);
applicationId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 16: {
bitField0_ |= 0x00000002;
attemptId_ = input.readInt32();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ApplicationAttemptIdProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApplicationAttemptIdProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationIdProto application_id = 1;
public static final int APPLICATION_ID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto applicationId_;
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public boolean hasApplicationId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getApplicationId() {
return applicationId_;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getApplicationIdOrBuilder() {
return applicationId_;
}
// optional int32 attemptId = 2;
public static final int ATTEMPTID_FIELD_NUMBER = 2;
private int attemptId_;
/**
* optional int32 attemptId = 2;
*/
public boolean hasAttemptId() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 attemptId = 2;
*/
public int getAttemptId() {
return attemptId_;
}
private void initFields() {
applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
attemptId_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, applicationId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, attemptId_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, applicationId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, attemptId_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto) obj;
boolean result = true;
result = result && (hasApplicationId() == other.hasApplicationId());
if (hasApplicationId()) {
result = result && getApplicationId()
.equals(other.getApplicationId());
}
result = result && (hasAttemptId() == other.hasAttemptId());
if (hasAttemptId()) {
result = result && (getAttemptId()
== other.getAttemptId());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasApplicationId()) {
hash = (37 * hash) + APPLICATION_ID_FIELD_NUMBER;
hash = (53 * hash) + getApplicationId().hashCode();
}
if (hasAttemptId()) {
hash = (37 * hash) + ATTEMPTID_FIELD_NUMBER;
hash = (53 * hash) + getAttemptId();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationAttemptIdProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getApplicationIdFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (applicationIdBuilder_ == null) {
applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
} else {
applicationIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
attemptId_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptIdProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (applicationIdBuilder_ == null) {
result.applicationId_ = applicationId_;
} else {
result.applicationId_ = applicationIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.attemptId_ = attemptId_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance()) return this;
if (other.hasApplicationId()) {
mergeApplicationId(other.getApplicationId());
}
if (other.hasAttemptId()) {
setAttemptId(other.getAttemptId());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationIdProto application_id = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder> applicationIdBuilder_;
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public boolean hasApplicationId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getApplicationId() {
if (applicationIdBuilder_ == null) {
return applicationId_;
} else {
return applicationIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public Builder setApplicationId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto value) {
if (applicationIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
applicationId_ = value;
onChanged();
} else {
applicationIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public Builder setApplicationId(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder builderForValue) {
if (applicationIdBuilder_ == null) {
applicationId_ = builderForValue.build();
onChanged();
} else {
applicationIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public Builder mergeApplicationId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto value) {
if (applicationIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
applicationId_ != org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance()) {
applicationId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.newBuilder(applicationId_).mergeFrom(value).buildPartial();
} else {
applicationId_ = value;
}
onChanged();
} else {
applicationIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public Builder clearApplicationId() {
if (applicationIdBuilder_ == null) {
applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
onChanged();
} else {
applicationIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder getApplicationIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getApplicationIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getApplicationIdOrBuilder() {
if (applicationIdBuilder_ != null) {
return applicationIdBuilder_.getMessageOrBuilder();
} else {
return applicationId_;
}
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder>
getApplicationIdFieldBuilder() {
if (applicationIdBuilder_ == null) {
applicationIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder>(
applicationId_,
getParentForChildren(),
isClean());
applicationId_ = null;
}
return applicationIdBuilder_;
}
// optional int32 attemptId = 2;
private int attemptId_ ;
/**
* optional int32 attemptId = 2;
*/
public boolean hasAttemptId() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 attemptId = 2;
*/
public int getAttemptId() {
return attemptId_;
}
/**
* optional int32 attemptId = 2;
*/
public Builder setAttemptId(int value) {
bitField0_ |= 0x00000002;
attemptId_ = value;
onChanged();
return this;
}
/**
* optional int32 attemptId = 2;
*/
public Builder clearAttemptId() {
bitField0_ = (bitField0_ & ~0x00000002);
attemptId_ = 0;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ApplicationAttemptIdProto)
}
static {
defaultInstance = new ApplicationAttemptIdProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ApplicationAttemptIdProto)
}
public interface ContainerIdProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ApplicationIdProto app_id = 1;
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
boolean hasAppId();
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getAppId();
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getAppIdOrBuilder();
// optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
boolean hasAppAttemptId();
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getAppAttemptId();
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder getAppAttemptIdOrBuilder();
// optional int64 id = 3;
/**
* optional int64 id = 3;
*/
boolean hasId();
/**
* optional int64 id = 3;
*/
long getId();
}
/**
* Protobuf type {@code hadoop.yarn.ContainerIdProto}
*/
public static final class ContainerIdProto extends
com.google.protobuf.GeneratedMessage
implements ContainerIdProtoOrBuilder {
// Use ContainerIdProto.newBuilder() to construct.
private ContainerIdProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ContainerIdProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ContainerIdProto defaultInstance;
public static ContainerIdProto getDefaultInstance() {
return defaultInstance;
}
public ContainerIdProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ContainerIdProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = appId_.toBuilder();
}
appId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(appId_);
appId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = appAttemptId_.toBuilder();
}
appAttemptId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(appAttemptId_);
appAttemptId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
case 24: {
bitField0_ |= 0x00000004;
id_ = input.readInt64();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ContainerIdProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ContainerIdProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationIdProto app_id = 1;
public static final int APP_ID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto appId_;
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public boolean hasAppId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getAppId() {
return appId_;
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getAppIdOrBuilder() {
return appId_;
}
// optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
public static final int APP_ATTEMPT_ID_FIELD_NUMBER = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto appAttemptId_;
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public boolean hasAppAttemptId() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getAppAttemptId() {
return appAttemptId_;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder getAppAttemptIdOrBuilder() {
return appAttemptId_;
}
// optional int64 id = 3;
public static final int ID_FIELD_NUMBER = 3;
private long id_;
/**
* optional int64 id = 3;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int64 id = 3;
*/
public long getId() {
return id_;
}
private void initFields() {
appId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
appAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
id_ = 0L;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, appId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, appAttemptId_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt64(3, id_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, appId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, appAttemptId_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(3, id_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto) obj;
boolean result = true;
result = result && (hasAppId() == other.hasAppId());
if (hasAppId()) {
result = result && getAppId()
.equals(other.getAppId());
}
result = result && (hasAppAttemptId() == other.hasAppAttemptId());
if (hasAppAttemptId()) {
result = result && getAppAttemptId()
.equals(other.getAppAttemptId());
}
result = result && (hasId() == other.hasId());
if (hasId()) {
result = result && (getId()
== other.getId());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasAppId()) {
hash = (37 * hash) + APP_ID_FIELD_NUMBER;
hash = (53 * hash) + getAppId().hashCode();
}
if (hasAppAttemptId()) {
hash = (37 * hash) + APP_ATTEMPT_ID_FIELD_NUMBER;
hash = (53 * hash) + getAppAttemptId().hashCode();
}
if (hasId()) {
hash = (37 * hash) + ID_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getId());
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ContainerIdProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getAppIdFieldBuilder();
getAppAttemptIdFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (appIdBuilder_ == null) {
appId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
} else {
appIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (appAttemptIdBuilder_ == null) {
appAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
} else {
appAttemptIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
id_ = 0L;
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerIdProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (appIdBuilder_ == null) {
result.appId_ = appId_;
} else {
result.appId_ = appIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (appAttemptIdBuilder_ == null) {
result.appAttemptId_ = appAttemptId_;
} else {
result.appAttemptId_ = appAttemptIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.id_ = id_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance()) return this;
if (other.hasAppId()) {
mergeAppId(other.getAppId());
}
if (other.hasAppAttemptId()) {
mergeAppAttemptId(other.getAppAttemptId());
}
if (other.hasId()) {
setId(other.getId());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationIdProto app_id = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto appId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder> appIdBuilder_;
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public boolean hasAppId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getAppId() {
if (appIdBuilder_ == null) {
return appId_;
} else {
return appIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public Builder setAppId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto value) {
if (appIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
appId_ = value;
onChanged();
} else {
appIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public Builder setAppId(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder builderForValue) {
if (appIdBuilder_ == null) {
appId_ = builderForValue.build();
onChanged();
} else {
appIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public Builder mergeAppId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto value) {
if (appIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
appId_ != org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance()) {
appId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.newBuilder(appId_).mergeFrom(value).buildPartial();
} else {
appId_ = value;
}
onChanged();
} else {
appIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public Builder clearAppId() {
if (appIdBuilder_ == null) {
appId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
onChanged();
} else {
appIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder getAppIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getAppIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getAppIdOrBuilder() {
if (appIdBuilder_ != null) {
return appIdBuilder_.getMessageOrBuilder();
} else {
return appId_;
}
}
/**
* optional .hadoop.yarn.ApplicationIdProto app_id = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder>
getAppIdFieldBuilder() {
if (appIdBuilder_ == null) {
appIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder>(
appId_,
getParentForChildren(),
isClean());
appId_ = null;
}
return appIdBuilder_;
}
// optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto appAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder> appAttemptIdBuilder_;
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public boolean hasAppAttemptId() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getAppAttemptId() {
if (appAttemptIdBuilder_ == null) {
return appAttemptId_;
} else {
return appAttemptIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public Builder setAppAttemptId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto value) {
if (appAttemptIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
appAttemptId_ = value;
onChanged();
} else {
appAttemptIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public Builder setAppAttemptId(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder builderForValue) {
if (appAttemptIdBuilder_ == null) {
appAttemptId_ = builderForValue.build();
onChanged();
} else {
appAttemptIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public Builder mergeAppAttemptId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto value) {
if (appAttemptIdBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
appAttemptId_ != org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance()) {
appAttemptId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.newBuilder(appAttemptId_).mergeFrom(value).buildPartial();
} else {
appAttemptId_ = value;
}
onChanged();
} else {
appAttemptIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public Builder clearAppAttemptId() {
if (appAttemptIdBuilder_ == null) {
appAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
onChanged();
} else {
appAttemptIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder getAppAttemptIdBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getAppAttemptIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder getAppAttemptIdOrBuilder() {
if (appAttemptIdBuilder_ != null) {
return appAttemptIdBuilder_.getMessageOrBuilder();
} else {
return appAttemptId_;
}
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto app_attempt_id = 2;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder>
getAppAttemptIdFieldBuilder() {
if (appAttemptIdBuilder_ == null) {
appAttemptIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder>(
appAttemptId_,
getParentForChildren(),
isClean());
appAttemptId_ = null;
}
return appAttemptIdBuilder_;
}
// optional int64 id = 3;
private long id_ ;
/**
* optional int64 id = 3;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int64 id = 3;
*/
public long getId() {
return id_;
}
/**
* optional int64 id = 3;
*/
public Builder setId(long value) {
bitField0_ |= 0x00000004;
id_ = value;
onChanged();
return this;
}
/**
* optional int64 id = 3;
*/
public Builder clearId() {
bitField0_ = (bitField0_ & ~0x00000004);
id_ = 0L;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ContainerIdProto)
}
static {
defaultInstance = new ContainerIdProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ContainerIdProto)
}
public interface ResourceProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional int32 memory = 1;
/**
* optional int32 memory = 1;
*/
boolean hasMemory();
/**
* optional int32 memory = 1;
*/
int getMemory();
// optional int32 virtual_cores = 2;
/**
* optional int32 virtual_cores = 2;
*/
boolean hasVirtualCores();
/**
* optional int32 virtual_cores = 2;
*/
int getVirtualCores();
}
/**
* Protobuf type {@code hadoop.yarn.ResourceProto}
*/
public static final class ResourceProto extends
com.google.protobuf.GeneratedMessage
implements ResourceProtoOrBuilder {
// Use ResourceProto.newBuilder() to construct.
private ResourceProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ResourceProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ResourceProto defaultInstance;
public static ResourceProto getDefaultInstance() {
return defaultInstance;
}
public ResourceProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ResourceProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
memory_ = input.readInt32();
break;
}
case 16: {
bitField0_ |= 0x00000002;
virtualCores_ = input.readInt32();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ResourceProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ResourceProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional int32 memory = 1;
public static final int MEMORY_FIELD_NUMBER = 1;
private int memory_;
/**
* optional int32 memory = 1;
*/
public boolean hasMemory() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 memory = 1;
*/
public int getMemory() {
return memory_;
}
// optional int32 virtual_cores = 2;
public static final int VIRTUAL_CORES_FIELD_NUMBER = 2;
private int virtualCores_;
/**
* optional int32 virtual_cores = 2;
*/
public boolean hasVirtualCores() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 virtual_cores = 2;
*/
public int getVirtualCores() {
return virtualCores_;
}
private void initFields() {
memory_ = 0;
virtualCores_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(1, memory_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, virtualCores_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, memory_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, virtualCores_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto) obj;
boolean result = true;
result = result && (hasMemory() == other.hasMemory());
if (hasMemory()) {
result = result && (getMemory()
== other.getMemory());
}
result = result && (hasVirtualCores() == other.hasVirtualCores());
if (hasVirtualCores()) {
result = result && (getVirtualCores()
== other.getVirtualCores());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasMemory()) {
hash = (37 * hash) + MEMORY_FIELD_NUMBER;
hash = (53 * hash) + getMemory();
}
if (hasVirtualCores()) {
hash = (37 * hash) + VIRTUAL_CORES_FIELD_NUMBER;
hash = (53 * hash) + getVirtualCores();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ResourceProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
memory_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
virtualCores_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.memory_ = memory_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.virtualCores_ = virtualCores_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) return this;
if (other.hasMemory()) {
setMemory(other.getMemory());
}
if (other.hasVirtualCores()) {
setVirtualCores(other.getVirtualCores());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional int32 memory = 1;
private int memory_ ;
/**
* optional int32 memory = 1;
*/
public boolean hasMemory() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 memory = 1;
*/
public int getMemory() {
return memory_;
}
/**
* optional int32 memory = 1;
*/
public Builder setMemory(int value) {
bitField0_ |= 0x00000001;
memory_ = value;
onChanged();
return this;
}
/**
* optional int32 memory = 1;
*/
public Builder clearMemory() {
bitField0_ = (bitField0_ & ~0x00000001);
memory_ = 0;
onChanged();
return this;
}
// optional int32 virtual_cores = 2;
private int virtualCores_ ;
/**
* optional int32 virtual_cores = 2;
*/
public boolean hasVirtualCores() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 virtual_cores = 2;
*/
public int getVirtualCores() {
return virtualCores_;
}
/**
* optional int32 virtual_cores = 2;
*/
public Builder setVirtualCores(int value) {
bitField0_ |= 0x00000002;
virtualCores_ = value;
onChanged();
return this;
}
/**
* optional int32 virtual_cores = 2;
*/
public Builder clearVirtualCores() {
bitField0_ = (bitField0_ & ~0x00000002);
virtualCores_ = 0;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ResourceProto)
}
static {
defaultInstance = new ResourceProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ResourceProto)
}
public interface ResourceOptionProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ResourceProto resource = 1;
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
boolean hasResource();
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource();
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder();
// optional int32 over_commit_timeout = 2;
/**
* optional int32 over_commit_timeout = 2;
*/
boolean hasOverCommitTimeout();
/**
* optional int32 over_commit_timeout = 2;
*/
int getOverCommitTimeout();
}
/**
* Protobuf type {@code hadoop.yarn.ResourceOptionProto}
*/
public static final class ResourceOptionProto extends
com.google.protobuf.GeneratedMessage
implements ResourceOptionProtoOrBuilder {
// Use ResourceOptionProto.newBuilder() to construct.
private ResourceOptionProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ResourceOptionProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ResourceOptionProto defaultInstance;
public static ResourceOptionProto getDefaultInstance() {
return defaultInstance;
}
public ResourceOptionProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ResourceOptionProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = resource_.toBuilder();
}
resource_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(resource_);
resource_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 16: {
bitField0_ |= 0x00000002;
overCommitTimeout_ = input.readInt32();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceOptionProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceOptionProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ResourceOptionProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ResourceOptionProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ResourceProto resource = 1;
public static final int RESOURCE_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto resource_;
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource() {
return resource_;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder() {
return resource_;
}
// optional int32 over_commit_timeout = 2;
public static final int OVER_COMMIT_TIMEOUT_FIELD_NUMBER = 2;
private int overCommitTimeout_;
/**
* optional int32 over_commit_timeout = 2;
*/
public boolean hasOverCommitTimeout() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 over_commit_timeout = 2;
*/
public int getOverCommitTimeout() {
return overCommitTimeout_;
}
private void initFields() {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
overCommitTimeout_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, resource_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, overCommitTimeout_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, resource_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, overCommitTimeout_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto) obj;
boolean result = true;
result = result && (hasResource() == other.hasResource());
if (hasResource()) {
result = result && getResource()
.equals(other.getResource());
}
result = result && (hasOverCommitTimeout() == other.hasOverCommitTimeout());
if (hasOverCommitTimeout()) {
result = result && (getOverCommitTimeout()
== other.getOverCommitTimeout());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasResource()) {
hash = (37 * hash) + RESOURCE_FIELD_NUMBER;
hash = (53 * hash) + getResource().hashCode();
}
if (hasOverCommitTimeout()) {
hash = (37 * hash) + OVER_COMMIT_TIMEOUT_FIELD_NUMBER;
hash = (53 * hash) + getOverCommitTimeout();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ResourceOptionProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceOptionProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceOptionProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getResourceFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
overCommitTimeout_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceOptionProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (resourceBuilder_ == null) {
result.resource_ = resource_;
} else {
result.resource_ = resourceBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.overCommitTimeout_ = overCommitTimeout_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.getDefaultInstance()) return this;
if (other.hasResource()) {
mergeResource(other.getResource());
}
if (other.hasOverCommitTimeout()) {
setOverCommitTimeout(other.getOverCommitTimeout());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ResourceProto resource = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> resourceBuilder_;
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource() {
if (resourceBuilder_ == null) {
return resource_;
} else {
return resourceBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public Builder setResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (resourceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resource_ = value;
onChanged();
} else {
resourceBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public Builder setResource(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (resourceBuilder_ == null) {
resource_ = builderForValue.build();
onChanged();
} else {
resourceBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public Builder mergeResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (resourceBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
resource_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
resource_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(resource_).mergeFrom(value).buildPartial();
} else {
resource_ = value;
}
onChanged();
} else {
resourceBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public Builder clearResource() {
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getResourceBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getResourceFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder() {
if (resourceBuilder_ != null) {
return resourceBuilder_.getMessageOrBuilder();
} else {
return resource_;
}
}
/**
* optional .hadoop.yarn.ResourceProto resource = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getResourceFieldBuilder() {
if (resourceBuilder_ == null) {
resourceBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
resource_,
getParentForChildren(),
isClean());
resource_ = null;
}
return resourceBuilder_;
}
// optional int32 over_commit_timeout = 2;
private int overCommitTimeout_ ;
/**
* optional int32 over_commit_timeout = 2;
*/
public boolean hasOverCommitTimeout() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 over_commit_timeout = 2;
*/
public int getOverCommitTimeout() {
return overCommitTimeout_;
}
/**
* optional int32 over_commit_timeout = 2;
*/
public Builder setOverCommitTimeout(int value) {
bitField0_ |= 0x00000002;
overCommitTimeout_ = value;
onChanged();
return this;
}
/**
* optional int32 over_commit_timeout = 2;
*/
public Builder clearOverCommitTimeout() {
bitField0_ = (bitField0_ & ~0x00000002);
overCommitTimeout_ = 0;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ResourceOptionProto)
}
static {
defaultInstance = new ResourceOptionProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ResourceOptionProto)
}
public interface NodeResourceMapProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.NodeIdProto node_id = 1;
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
boolean hasNodeId();
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId();
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder();
// optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
boolean hasResourceOption();
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto getResourceOption();
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProtoOrBuilder getResourceOptionOrBuilder();
}
/**
* Protobuf type {@code hadoop.yarn.NodeResourceMapProto}
*/
public static final class NodeResourceMapProto extends
com.google.protobuf.GeneratedMessage
implements NodeResourceMapProtoOrBuilder {
// Use NodeResourceMapProto.newBuilder() to construct.
private NodeResourceMapProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private NodeResourceMapProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final NodeResourceMapProto defaultInstance;
public static NodeResourceMapProto getDefaultInstance() {
return defaultInstance;
}
public NodeResourceMapProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private NodeResourceMapProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = nodeId_.toBuilder();
}
nodeId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(nodeId_);
nodeId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = resourceOption_.toBuilder();
}
resourceOption_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(resourceOption_);
resourceOption_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeResourceMapProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeResourceMapProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto.class, org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public NodeResourceMapProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new NodeResourceMapProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.NodeIdProto node_id = 1;
public static final int NODE_ID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_;
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
return nodeId_;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
return nodeId_;
}
// optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
public static final int RESOURCE_OPTION_FIELD_NUMBER = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto resourceOption_;
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public boolean hasResourceOption() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto getResourceOption() {
return resourceOption_;
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProtoOrBuilder getResourceOptionOrBuilder() {
return resourceOption_;
}
private void initFields() {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
resourceOption_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.getDefaultInstance();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, nodeId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, resourceOption_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, nodeId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, resourceOption_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto other = (org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto) obj;
boolean result = true;
result = result && (hasNodeId() == other.hasNodeId());
if (hasNodeId()) {
result = result && getNodeId()
.equals(other.getNodeId());
}
result = result && (hasResourceOption() == other.hasResourceOption());
if (hasResourceOption()) {
result = result && getResourceOption()
.equals(other.getResourceOption());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasNodeId()) {
hash = (37 * hash) + NODE_ID_FIELD_NUMBER;
hash = (53 * hash) + getNodeId().hashCode();
}
if (hasResourceOption()) {
hash = (37 * hash) + RESOURCE_OPTION_FIELD_NUMBER;
hash = (53 * hash) + getResourceOption().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.NodeResourceMapProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeResourceMapProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeResourceMapProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto.class, org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getNodeIdFieldBuilder();
getResourceOptionFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (resourceOptionBuilder_ == null) {
resourceOption_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.getDefaultInstance();
} else {
resourceOptionBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeResourceMapProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto result = new org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (nodeIdBuilder_ == null) {
result.nodeId_ = nodeId_;
} else {
result.nodeId_ = nodeIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (resourceOptionBuilder_ == null) {
result.resourceOption_ = resourceOption_;
} else {
result.resourceOption_ = resourceOptionBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto.getDefaultInstance()) return this;
if (other.hasNodeId()) {
mergeNodeId(other.getNodeId());
}
if (other.hasResourceOption()) {
mergeResourceOption(other.getResourceOption());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.NodeResourceMapProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.NodeIdProto node_id = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder> nodeIdBuilder_;
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
if (nodeIdBuilder_ == null) {
return nodeId_;
} else {
return nodeIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public Builder setNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
nodeId_ = value;
onChanged();
} else {
nodeIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public Builder setNodeId(
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder builderForValue) {
if (nodeIdBuilder_ == null) {
nodeId_ = builderForValue.build();
onChanged();
} else {
nodeIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public Builder mergeNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
nodeId_ != org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance()) {
nodeId_ =
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.newBuilder(nodeId_).mergeFrom(value).buildPartial();
} else {
nodeId_ = value;
}
onChanged();
} else {
nodeIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public Builder clearNodeId() {
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
onChanged();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder getNodeIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getNodeIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
if (nodeIdBuilder_ != null) {
return nodeIdBuilder_.getMessageOrBuilder();
} else {
return nodeId_;
}
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>
getNodeIdFieldBuilder() {
if (nodeIdBuilder_ == null) {
nodeIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>(
nodeId_,
getParentForChildren(),
isClean());
nodeId_ = null;
}
return nodeIdBuilder_;
}
// optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto resourceOption_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProtoOrBuilder> resourceOptionBuilder_;
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public boolean hasResourceOption() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto getResourceOption() {
if (resourceOptionBuilder_ == null) {
return resourceOption_;
} else {
return resourceOptionBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public Builder setResourceOption(org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto value) {
if (resourceOptionBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resourceOption_ = value;
onChanged();
} else {
resourceOptionBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public Builder setResourceOption(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.Builder builderForValue) {
if (resourceOptionBuilder_ == null) {
resourceOption_ = builderForValue.build();
onChanged();
} else {
resourceOptionBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public Builder mergeResourceOption(org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto value) {
if (resourceOptionBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
resourceOption_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.getDefaultInstance()) {
resourceOption_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.newBuilder(resourceOption_).mergeFrom(value).buildPartial();
} else {
resourceOption_ = value;
}
onChanged();
} else {
resourceOptionBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public Builder clearResourceOption() {
if (resourceOptionBuilder_ == null) {
resourceOption_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.getDefaultInstance();
onChanged();
} else {
resourceOptionBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.Builder getResourceOptionBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getResourceOptionFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProtoOrBuilder getResourceOptionOrBuilder() {
if (resourceOptionBuilder_ != null) {
return resourceOptionBuilder_.getMessageOrBuilder();
} else {
return resourceOption_;
}
}
/**
* optional .hadoop.yarn.ResourceOptionProto resource_option = 2;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProtoOrBuilder>
getResourceOptionFieldBuilder() {
if (resourceOptionBuilder_ == null) {
resourceOptionBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceOptionProtoOrBuilder>(
resourceOption_,
getParentForChildren(),
isClean());
resourceOption_ = null;
}
return resourceOptionBuilder_;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.NodeResourceMapProto)
}
static {
defaultInstance = new NodeResourceMapProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.NodeResourceMapProto)
}
public interface PriorityProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional int32 priority = 1;
/**
* optional int32 priority = 1;
*/
boolean hasPriority();
/**
* optional int32 priority = 1;
*/
int getPriority();
}
/**
* Protobuf type {@code hadoop.yarn.PriorityProto}
*/
public static final class PriorityProto extends
com.google.protobuf.GeneratedMessage
implements PriorityProtoOrBuilder {
// Use PriorityProto.newBuilder() to construct.
private PriorityProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private PriorityProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final PriorityProto defaultInstance;
public static PriorityProto getDefaultInstance() {
return defaultInstance;
}
public PriorityProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PriorityProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
priority_ = input.readInt32();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PriorityProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PriorityProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public PriorityProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PriorityProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional int32 priority = 1;
public static final int PRIORITY_FIELD_NUMBER = 1;
private int priority_;
/**
* optional int32 priority = 1;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 priority = 1;
*/
public int getPriority() {
return priority_;
}
private void initFields() {
priority_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(1, priority_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, priority_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto other = (org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto) obj;
boolean result = true;
result = result && (hasPriority() == other.hasPriority());
if (hasPriority()) {
result = result && (getPriority()
== other.getPriority());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasPriority()) {
hash = (37 * hash) + PRIORITY_FIELD_NUMBER;
hash = (53 * hash) + getPriority();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.PriorityProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PriorityProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PriorityProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
priority_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PriorityProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto result = new org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.priority_ = priority_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance()) return this;
if (other.hasPriority()) {
setPriority(other.getPriority());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional int32 priority = 1;
private int priority_ ;
/**
* optional int32 priority = 1;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 priority = 1;
*/
public int getPriority() {
return priority_;
}
/**
* optional int32 priority = 1;
*/
public Builder setPriority(int value) {
bitField0_ |= 0x00000001;
priority_ = value;
onChanged();
return this;
}
/**
* optional int32 priority = 1;
*/
public Builder clearPriority() {
bitField0_ = (bitField0_ & ~0x00000001);
priority_ = 0;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.PriorityProto)
}
static {
defaultInstance = new PriorityProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.PriorityProto)
}
public interface ContainerProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ContainerIdProto id = 1;
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
boolean hasId();
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getId();
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getIdOrBuilder();
// optional .hadoop.yarn.NodeIdProto nodeId = 2;
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
boolean hasNodeId();
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId();
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder();
// optional string node_http_address = 3;
/**
* optional string node_http_address = 3;
*/
boolean hasNodeHttpAddress();
/**
* optional string node_http_address = 3;
*/
java.lang.String getNodeHttpAddress();
/**
* optional string node_http_address = 3;
*/
com.google.protobuf.ByteString
getNodeHttpAddressBytes();
// optional .hadoop.yarn.ResourceProto resource = 4;
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
boolean hasResource();
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource();
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder();
// optional .hadoop.yarn.PriorityProto priority = 5;
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
boolean hasPriority();
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority();
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder();
// optional .hadoop.common.TokenProto container_token = 6;
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
boolean hasContainerToken();
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
org.apache.hadoop.security.proto.SecurityProtos.TokenProto getContainerToken();
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder getContainerTokenOrBuilder();
}
/**
* Protobuf type {@code hadoop.yarn.ContainerProto}
*/
public static final class ContainerProto extends
com.google.protobuf.GeneratedMessage
implements ContainerProtoOrBuilder {
// Use ContainerProto.newBuilder() to construct.
private ContainerProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ContainerProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ContainerProto defaultInstance;
public static ContainerProto getDefaultInstance() {
return defaultInstance;
}
public ContainerProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ContainerProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = id_.toBuilder();
}
id_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(id_);
id_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = nodeId_.toBuilder();
}
nodeId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(nodeId_);
nodeId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
case 26: {
bitField0_ |= 0x00000004;
nodeHttpAddress_ = input.readBytes();
break;
}
case 34: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000008) == 0x00000008)) {
subBuilder = resource_.toBuilder();
}
resource_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(resource_);
resource_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000008;
break;
}
case 42: {
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000010) == 0x00000010)) {
subBuilder = priority_.toBuilder();
}
priority_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(priority_);
priority_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000010;
break;
}
case 50: {
org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000020) == 0x00000020)) {
subBuilder = containerToken_.toBuilder();
}
containerToken_ = input.readMessage(org.apache.hadoop.security.proto.SecurityProtos.TokenProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(containerToken_);
containerToken_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000020;
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ContainerProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ContainerProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ContainerIdProto id = 1;
public static final int ID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto id_;
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getId() {
return id_;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getIdOrBuilder() {
return id_;
}
// optional .hadoop.yarn.NodeIdProto nodeId = 2;
public static final int NODEID_FIELD_NUMBER = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_;
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
return nodeId_;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
return nodeId_;
}
// optional string node_http_address = 3;
public static final int NODE_HTTP_ADDRESS_FIELD_NUMBER = 3;
private java.lang.Object nodeHttpAddress_;
/**
* optional string node_http_address = 3;
*/
public boolean hasNodeHttpAddress() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string node_http_address = 3;
*/
public java.lang.String getNodeHttpAddress() {
java.lang.Object ref = nodeHttpAddress_;
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();
if (bs.isValidUtf8()) {
nodeHttpAddress_ = s;
}
return s;
}
}
/**
* optional string node_http_address = 3;
*/
public com.google.protobuf.ByteString
getNodeHttpAddressBytes() {
java.lang.Object ref = nodeHttpAddress_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodeHttpAddress_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional .hadoop.yarn.ResourceProto resource = 4;
public static final int RESOURCE_FIELD_NUMBER = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto resource_;
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource() {
return resource_;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder() {
return resource_;
}
// optional .hadoop.yarn.PriorityProto priority = 5;
public static final int PRIORITY_FIELD_NUMBER = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto priority_;
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority() {
return priority_;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder() {
return priority_;
}
// optional .hadoop.common.TokenProto container_token = 6;
public static final int CONTAINER_TOKEN_FIELD_NUMBER = 6;
private org.apache.hadoop.security.proto.SecurityProtos.TokenProto containerToken_;
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public boolean hasContainerToken() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProto getContainerToken() {
return containerToken_;
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder getContainerTokenOrBuilder() {
return containerToken_;
}
private void initFields() {
id_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
nodeHttpAddress_ = "";
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
containerToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
if (hasContainerToken()) {
if (!getContainerToken().isInitialized()) {
memoizedIsInitialized = 0;
return false;
}
}
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, id_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, nodeId_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBytes(3, getNodeHttpAddressBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeMessage(4, resource_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeMessage(5, priority_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeMessage(6, containerToken_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, id_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, nodeId_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, getNodeHttpAddressBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, resource_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(5, priority_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(6, containerToken_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto) obj;
boolean result = true;
result = result && (hasId() == other.hasId());
if (hasId()) {
result = result && getId()
.equals(other.getId());
}
result = result && (hasNodeId() == other.hasNodeId());
if (hasNodeId()) {
result = result && getNodeId()
.equals(other.getNodeId());
}
result = result && (hasNodeHttpAddress() == other.hasNodeHttpAddress());
if (hasNodeHttpAddress()) {
result = result && getNodeHttpAddress()
.equals(other.getNodeHttpAddress());
}
result = result && (hasResource() == other.hasResource());
if (hasResource()) {
result = result && getResource()
.equals(other.getResource());
}
result = result && (hasPriority() == other.hasPriority());
if (hasPriority()) {
result = result && getPriority()
.equals(other.getPriority());
}
result = result && (hasContainerToken() == other.hasContainerToken());
if (hasContainerToken()) {
result = result && getContainerToken()
.equals(other.getContainerToken());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasId()) {
hash = (37 * hash) + ID_FIELD_NUMBER;
hash = (53 * hash) + getId().hashCode();
}
if (hasNodeId()) {
hash = (37 * hash) + NODEID_FIELD_NUMBER;
hash = (53 * hash) + getNodeId().hashCode();
}
if (hasNodeHttpAddress()) {
hash = (37 * hash) + NODE_HTTP_ADDRESS_FIELD_NUMBER;
hash = (53 * hash) + getNodeHttpAddress().hashCode();
}
if (hasResource()) {
hash = (37 * hash) + RESOURCE_FIELD_NUMBER;
hash = (53 * hash) + getResource().hashCode();
}
if (hasPriority()) {
hash = (37 * hash) + PRIORITY_FIELD_NUMBER;
hash = (53 * hash) + getPriority().hashCode();
}
if (hasContainerToken()) {
hash = (37 * hash) + CONTAINER_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getContainerToken().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ContainerProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ContainerProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getIdFieldBuilder();
getNodeIdFieldBuilder();
getResourceFieldBuilder();
getPriorityFieldBuilder();
getContainerTokenFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (idBuilder_ == null) {
id_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
} else {
idBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
nodeHttpAddress_ = "";
bitField0_ = (bitField0_ & ~0x00000004);
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
if (priorityBuilder_ == null) {
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
} else {
priorityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
if (containerTokenBuilder_ == null) {
containerToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
} else {
containerTokenBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000020);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (idBuilder_ == null) {
result.id_ = id_;
} else {
result.id_ = idBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (nodeIdBuilder_ == null) {
result.nodeId_ = nodeId_;
} else {
result.nodeId_ = nodeIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.nodeHttpAddress_ = nodeHttpAddress_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
if (resourceBuilder_ == null) {
result.resource_ = resource_;
} else {
result.resource_ = resourceBuilder_.build();
}
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
if (priorityBuilder_ == null) {
result.priority_ = priority_;
} else {
result.priority_ = priorityBuilder_.build();
}
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
if (containerTokenBuilder_ == null) {
result.containerToken_ = containerToken_;
} else {
result.containerToken_ = containerTokenBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto.getDefaultInstance()) return this;
if (other.hasId()) {
mergeId(other.getId());
}
if (other.hasNodeId()) {
mergeNodeId(other.getNodeId());
}
if (other.hasNodeHttpAddress()) {
bitField0_ |= 0x00000004;
nodeHttpAddress_ = other.nodeHttpAddress_;
onChanged();
}
if (other.hasResource()) {
mergeResource(other.getResource());
}
if (other.hasPriority()) {
mergePriority(other.getPriority());
}
if (other.hasContainerToken()) {
mergeContainerToken(other.getContainerToken());
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
if (hasContainerToken()) {
if (!getContainerToken().isInitialized()) {
return false;
}
}
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ContainerProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ContainerIdProto id = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto id_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder> idBuilder_;
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getId() {
if (idBuilder_ == null) {
return id_;
} else {
return idBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public Builder setId(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto value) {
if (idBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
id_ = value;
onChanged();
} else {
idBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public Builder setId(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder builderForValue) {
if (idBuilder_ == null) {
id_ = builderForValue.build();
onChanged();
} else {
idBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public Builder mergeId(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto value) {
if (idBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
id_ != org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance()) {
id_ =
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.newBuilder(id_).mergeFrom(value).buildPartial();
} else {
id_ = value;
}
onChanged();
} else {
idBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public Builder clearId() {
if (idBuilder_ == null) {
id_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
onChanged();
} else {
idBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder getIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getIdOrBuilder() {
if (idBuilder_ != null) {
return idBuilder_.getMessageOrBuilder();
} else {
return id_;
}
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder>
getIdFieldBuilder() {
if (idBuilder_ == null) {
idBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder>(
id_,
getParentForChildren(),
isClean());
id_ = null;
}
return idBuilder_;
}
// optional .hadoop.yarn.NodeIdProto nodeId = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder> nodeIdBuilder_;
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
if (nodeIdBuilder_ == null) {
return nodeId_;
} else {
return nodeIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public Builder setNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
nodeId_ = value;
onChanged();
} else {
nodeIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public Builder setNodeId(
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder builderForValue) {
if (nodeIdBuilder_ == null) {
nodeId_ = builderForValue.build();
onChanged();
} else {
nodeIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public Builder mergeNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
nodeId_ != org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance()) {
nodeId_ =
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.newBuilder(nodeId_).mergeFrom(value).buildPartial();
} else {
nodeId_ = value;
}
onChanged();
} else {
nodeIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public Builder clearNodeId() {
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
onChanged();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder getNodeIdBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getNodeIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
if (nodeIdBuilder_ != null) {
return nodeIdBuilder_.getMessageOrBuilder();
} else {
return nodeId_;
}
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 2;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>
getNodeIdFieldBuilder() {
if (nodeIdBuilder_ == null) {
nodeIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>(
nodeId_,
getParentForChildren(),
isClean());
nodeId_ = null;
}
return nodeIdBuilder_;
}
// optional string node_http_address = 3;
private java.lang.Object nodeHttpAddress_ = "";
/**
* optional string node_http_address = 3;
*/
public boolean hasNodeHttpAddress() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string node_http_address = 3;
*/
public java.lang.String getNodeHttpAddress() {
java.lang.Object ref = nodeHttpAddress_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
nodeHttpAddress_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string node_http_address = 3;
*/
public com.google.protobuf.ByteString
getNodeHttpAddressBytes() {
java.lang.Object ref = nodeHttpAddress_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodeHttpAddress_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string node_http_address = 3;
*/
public Builder setNodeHttpAddress(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
nodeHttpAddress_ = value;
onChanged();
return this;
}
/**
* optional string node_http_address = 3;
*/
public Builder clearNodeHttpAddress() {
bitField0_ = (bitField0_ & ~0x00000004);
nodeHttpAddress_ = getDefaultInstance().getNodeHttpAddress();
onChanged();
return this;
}
/**
* optional string node_http_address = 3;
*/
public Builder setNodeHttpAddressBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
nodeHttpAddress_ = value;
onChanged();
return this;
}
// optional .hadoop.yarn.ResourceProto resource = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> resourceBuilder_;
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource() {
if (resourceBuilder_ == null) {
return resource_;
} else {
return resourceBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public Builder setResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (resourceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resource_ = value;
onChanged();
} else {
resourceBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public Builder setResource(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (resourceBuilder_ == null) {
resource_ = builderForValue.build();
onChanged();
} else {
resourceBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public Builder mergeResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (resourceBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008) &&
resource_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
resource_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(resource_).mergeFrom(value).buildPartial();
} else {
resource_ = value;
}
onChanged();
} else {
resourceBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public Builder clearResource() {
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getResourceBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getResourceFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder() {
if (resourceBuilder_ != null) {
return resourceBuilder_.getMessageOrBuilder();
} else {
return resource_;
}
}
/**
* optional .hadoop.yarn.ResourceProto resource = 4;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getResourceFieldBuilder() {
if (resourceBuilder_ == null) {
resourceBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
resource_,
getParentForChildren(),
isClean());
resource_ = null;
}
return resourceBuilder_;
}
// optional .hadoop.yarn.PriorityProto priority = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder> priorityBuilder_;
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority() {
if (priorityBuilder_ == null) {
return priority_;
} else {
return priorityBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public Builder setPriority(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto value) {
if (priorityBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
priority_ = value;
onChanged();
} else {
priorityBuilder_.setMessage(value);
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public Builder setPriority(
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder builderForValue) {
if (priorityBuilder_ == null) {
priority_ = builderForValue.build();
onChanged();
} else {
priorityBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public Builder mergePriority(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto value) {
if (priorityBuilder_ == null) {
if (((bitField0_ & 0x00000010) == 0x00000010) &&
priority_ != org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance()) {
priority_ =
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.newBuilder(priority_).mergeFrom(value).buildPartial();
} else {
priority_ = value;
}
onChanged();
} else {
priorityBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public Builder clearPriority() {
if (priorityBuilder_ == null) {
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
onChanged();
} else {
priorityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder getPriorityBuilder() {
bitField0_ |= 0x00000010;
onChanged();
return getPriorityFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder() {
if (priorityBuilder_ != null) {
return priorityBuilder_.getMessageOrBuilder();
} else {
return priority_;
}
}
/**
* optional .hadoop.yarn.PriorityProto priority = 5;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder>
getPriorityFieldBuilder() {
if (priorityBuilder_ == null) {
priorityBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder>(
priority_,
getParentForChildren(),
isClean());
priority_ = null;
}
return priorityBuilder_;
}
// optional .hadoop.common.TokenProto container_token = 6;
private org.apache.hadoop.security.proto.SecurityProtos.TokenProto containerToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.security.proto.SecurityProtos.TokenProto, org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder, org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder> containerTokenBuilder_;
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public boolean hasContainerToken() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProto getContainerToken() {
if (containerTokenBuilder_ == null) {
return containerToken_;
} else {
return containerTokenBuilder_.getMessage();
}
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public Builder setContainerToken(org.apache.hadoop.security.proto.SecurityProtos.TokenProto value) {
if (containerTokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
containerToken_ = value;
onChanged();
} else {
containerTokenBuilder_.setMessage(value);
}
bitField0_ |= 0x00000020;
return this;
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public Builder setContainerToken(
org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder builderForValue) {
if (containerTokenBuilder_ == null) {
containerToken_ = builderForValue.build();
onChanged();
} else {
containerTokenBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000020;
return this;
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public Builder mergeContainerToken(org.apache.hadoop.security.proto.SecurityProtos.TokenProto value) {
if (containerTokenBuilder_ == null) {
if (((bitField0_ & 0x00000020) == 0x00000020) &&
containerToken_ != org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance()) {
containerToken_ =
org.apache.hadoop.security.proto.SecurityProtos.TokenProto.newBuilder(containerToken_).mergeFrom(value).buildPartial();
} else {
containerToken_ = value;
}
onChanged();
} else {
containerTokenBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000020;
return this;
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public Builder clearContainerToken() {
if (containerTokenBuilder_ == null) {
containerToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
onChanged();
} else {
containerTokenBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000020);
return this;
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder getContainerTokenBuilder() {
bitField0_ |= 0x00000020;
onChanged();
return getContainerTokenFieldBuilder().getBuilder();
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder getContainerTokenOrBuilder() {
if (containerTokenBuilder_ != null) {
return containerTokenBuilder_.getMessageOrBuilder();
} else {
return containerToken_;
}
}
/**
* optional .hadoop.common.TokenProto container_token = 6;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.security.proto.SecurityProtos.TokenProto, org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder, org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder>
getContainerTokenFieldBuilder() {
if (containerTokenBuilder_ == null) {
containerTokenBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.security.proto.SecurityProtos.TokenProto, org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder, org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder>(
containerToken_,
getParentForChildren(),
isClean());
containerToken_ = null;
}
return containerTokenBuilder_;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ContainerProto)
}
static {
defaultInstance = new ContainerProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ContainerProto)
}
public interface ContainerReportProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ContainerIdProto container_id = 1;
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
boolean hasContainerId();
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getContainerId();
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getContainerIdOrBuilder();
// optional .hadoop.yarn.ResourceProto resource = 2;
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
boolean hasResource();
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource();
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder();
// optional .hadoop.yarn.NodeIdProto node_id = 3;
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
boolean hasNodeId();
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId();
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder();
// optional .hadoop.yarn.PriorityProto priority = 4;
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
boolean hasPriority();
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority();
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder();
// optional int64 creation_time = 5;
/**
* optional int64 creation_time = 5;
*/
boolean hasCreationTime();
/**
* optional int64 creation_time = 5;
*/
long getCreationTime();
// optional int64 finish_time = 6;
/**
* optional int64 finish_time = 6;
*/
boolean hasFinishTime();
/**
* optional int64 finish_time = 6;
*/
long getFinishTime();
// optional string diagnostics_info = 7 [default = "N/A"];
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
boolean hasDiagnosticsInfo();
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
java.lang.String getDiagnosticsInfo();
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
com.google.protobuf.ByteString
getDiagnosticsInfoBytes();
// optional string log_url = 8;
/**
* optional string log_url = 8;
*/
boolean hasLogUrl();
/**
* optional string log_url = 8;
*/
java.lang.String getLogUrl();
/**
* optional string log_url = 8;
*/
com.google.protobuf.ByteString
getLogUrlBytes();
// optional int32 container_exit_status = 9;
/**
* optional int32 container_exit_status = 9;
*/
boolean hasContainerExitStatus();
/**
* optional int32 container_exit_status = 9;
*/
int getContainerExitStatus();
// optional .hadoop.yarn.ContainerStateProto container_state = 10;
/**
* optional .hadoop.yarn.ContainerStateProto container_state = 10;
*/
boolean hasContainerState();
/**
* optional .hadoop.yarn.ContainerStateProto container_state = 10;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto getContainerState();
// optional string node_http_address = 11;
/**
* optional string node_http_address = 11;
*/
boolean hasNodeHttpAddress();
/**
* optional string node_http_address = 11;
*/
java.lang.String getNodeHttpAddress();
/**
* optional string node_http_address = 11;
*/
com.google.protobuf.ByteString
getNodeHttpAddressBytes();
}
/**
* Protobuf type {@code hadoop.yarn.ContainerReportProto}
*/
public static final class ContainerReportProto extends
com.google.protobuf.GeneratedMessage
implements ContainerReportProtoOrBuilder {
// Use ContainerReportProto.newBuilder() to construct.
private ContainerReportProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ContainerReportProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ContainerReportProto defaultInstance;
public static ContainerReportProto getDefaultInstance() {
return defaultInstance;
}
public ContainerReportProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ContainerReportProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = containerId_.toBuilder();
}
containerId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(containerId_);
containerId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = resource_.toBuilder();
}
resource_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(resource_);
resource_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
case 26: {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = nodeId_.toBuilder();
}
nodeId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(nodeId_);
nodeId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
case 34: {
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000008) == 0x00000008)) {
subBuilder = priority_.toBuilder();
}
priority_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(priority_);
priority_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000008;
break;
}
case 40: {
bitField0_ |= 0x00000010;
creationTime_ = input.readInt64();
break;
}
case 48: {
bitField0_ |= 0x00000020;
finishTime_ = input.readInt64();
break;
}
case 58: {
bitField0_ |= 0x00000040;
diagnosticsInfo_ = input.readBytes();
break;
}
case 66: {
bitField0_ |= 0x00000080;
logUrl_ = input.readBytes();
break;
}
case 72: {
bitField0_ |= 0x00000100;
containerExitStatus_ = input.readInt32();
break;
}
case 80: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto value = org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(10, rawValue);
} else {
bitField0_ |= 0x00000200;
containerState_ = value;
}
break;
}
case 90: {
bitField0_ |= 0x00000400;
nodeHttpAddress_ = input.readBytes();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ContainerReportProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ContainerReportProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ContainerIdProto container_id = 1;
public static final int CONTAINER_ID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto containerId_;
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public boolean hasContainerId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getContainerId() {
return containerId_;
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getContainerIdOrBuilder() {
return containerId_;
}
// optional .hadoop.yarn.ResourceProto resource = 2;
public static final int RESOURCE_FIELD_NUMBER = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto resource_;
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource() {
return resource_;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder() {
return resource_;
}
// optional .hadoop.yarn.NodeIdProto node_id = 3;
public static final int NODE_ID_FIELD_NUMBER = 3;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_;
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
return nodeId_;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
return nodeId_;
}
// optional .hadoop.yarn.PriorityProto priority = 4;
public static final int PRIORITY_FIELD_NUMBER = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto priority_;
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority() {
return priority_;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder() {
return priority_;
}
// optional int64 creation_time = 5;
public static final int CREATION_TIME_FIELD_NUMBER = 5;
private long creationTime_;
/**
* optional int64 creation_time = 5;
*/
public boolean hasCreationTime() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional int64 creation_time = 5;
*/
public long getCreationTime() {
return creationTime_;
}
// optional int64 finish_time = 6;
public static final int FINISH_TIME_FIELD_NUMBER = 6;
private long finishTime_;
/**
* optional int64 finish_time = 6;
*/
public boolean hasFinishTime() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional int64 finish_time = 6;
*/
public long getFinishTime() {
return finishTime_;
}
// optional string diagnostics_info = 7 [default = "N/A"];
public static final int DIAGNOSTICS_INFO_FIELD_NUMBER = 7;
private java.lang.Object diagnosticsInfo_;
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
public boolean hasDiagnosticsInfo() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
public java.lang.String getDiagnosticsInfo() {
java.lang.Object ref = diagnosticsInfo_;
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();
if (bs.isValidUtf8()) {
diagnosticsInfo_ = s;
}
return s;
}
}
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
public com.google.protobuf.ByteString
getDiagnosticsInfoBytes() {
java.lang.Object ref = diagnosticsInfo_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
diagnosticsInfo_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string log_url = 8;
public static final int LOG_URL_FIELD_NUMBER = 8;
private java.lang.Object logUrl_;
/**
* optional string log_url = 8;
*/
public boolean hasLogUrl() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional string log_url = 8;
*/
public java.lang.String getLogUrl() {
java.lang.Object ref = logUrl_;
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();
if (bs.isValidUtf8()) {
logUrl_ = s;
}
return s;
}
}
/**
* optional string log_url = 8;
*/
public com.google.protobuf.ByteString
getLogUrlBytes() {
java.lang.Object ref = logUrl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
logUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional int32 container_exit_status = 9;
public static final int CONTAINER_EXIT_STATUS_FIELD_NUMBER = 9;
private int containerExitStatus_;
/**
* optional int32 container_exit_status = 9;
*/
public boolean hasContainerExitStatus() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional int32 container_exit_status = 9;
*/
public int getContainerExitStatus() {
return containerExitStatus_;
}
// optional .hadoop.yarn.ContainerStateProto container_state = 10;
public static final int CONTAINER_STATE_FIELD_NUMBER = 10;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto containerState_;
/**
* optional .hadoop.yarn.ContainerStateProto container_state = 10;
*/
public boolean hasContainerState() {
return ((bitField0_ & 0x00000200) == 0x00000200);
}
/**
* optional .hadoop.yarn.ContainerStateProto container_state = 10;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto getContainerState() {
return containerState_;
}
// optional string node_http_address = 11;
public static final int NODE_HTTP_ADDRESS_FIELD_NUMBER = 11;
private java.lang.Object nodeHttpAddress_;
/**
* optional string node_http_address = 11;
*/
public boolean hasNodeHttpAddress() {
return ((bitField0_ & 0x00000400) == 0x00000400);
}
/**
* optional string node_http_address = 11;
*/
public java.lang.String getNodeHttpAddress() {
java.lang.Object ref = nodeHttpAddress_;
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();
if (bs.isValidUtf8()) {
nodeHttpAddress_ = s;
}
return s;
}
}
/**
* optional string node_http_address = 11;
*/
public com.google.protobuf.ByteString
getNodeHttpAddressBytes() {
java.lang.Object ref = nodeHttpAddress_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodeHttpAddress_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private void initFields() {
containerId_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
creationTime_ = 0L;
finishTime_ = 0L;
diagnosticsInfo_ = "N/A";
logUrl_ = "";
containerExitStatus_ = 0;
containerState_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto.C_NEW;
nodeHttpAddress_ = "";
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, containerId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, resource_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(3, nodeId_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeMessage(4, priority_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeInt64(5, creationTime_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt64(6, finishTime_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeBytes(7, getDiagnosticsInfoBytes());
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
output.writeBytes(8, getLogUrlBytes());
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
output.writeInt32(9, containerExitStatus_);
}
if (((bitField0_ & 0x00000200) == 0x00000200)) {
output.writeEnum(10, containerState_.getNumber());
}
if (((bitField0_ & 0x00000400) == 0x00000400)) {
output.writeBytes(11, getNodeHttpAddressBytes());
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, containerId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, resource_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, nodeId_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, priority_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(5, creationTime_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(6, finishTime_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(7, getDiagnosticsInfoBytes());
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(8, getLogUrlBytes());
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(9, containerExitStatus_);
}
if (((bitField0_ & 0x00000200) == 0x00000200)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(10, containerState_.getNumber());
}
if (((bitField0_ & 0x00000400) == 0x00000400)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(11, getNodeHttpAddressBytes());
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto) obj;
boolean result = true;
result = result && (hasContainerId() == other.hasContainerId());
if (hasContainerId()) {
result = result && getContainerId()
.equals(other.getContainerId());
}
result = result && (hasResource() == other.hasResource());
if (hasResource()) {
result = result && getResource()
.equals(other.getResource());
}
result = result && (hasNodeId() == other.hasNodeId());
if (hasNodeId()) {
result = result && getNodeId()
.equals(other.getNodeId());
}
result = result && (hasPriority() == other.hasPriority());
if (hasPriority()) {
result = result && getPriority()
.equals(other.getPriority());
}
result = result && (hasCreationTime() == other.hasCreationTime());
if (hasCreationTime()) {
result = result && (getCreationTime()
== other.getCreationTime());
}
result = result && (hasFinishTime() == other.hasFinishTime());
if (hasFinishTime()) {
result = result && (getFinishTime()
== other.getFinishTime());
}
result = result && (hasDiagnosticsInfo() == other.hasDiagnosticsInfo());
if (hasDiagnosticsInfo()) {
result = result && getDiagnosticsInfo()
.equals(other.getDiagnosticsInfo());
}
result = result && (hasLogUrl() == other.hasLogUrl());
if (hasLogUrl()) {
result = result && getLogUrl()
.equals(other.getLogUrl());
}
result = result && (hasContainerExitStatus() == other.hasContainerExitStatus());
if (hasContainerExitStatus()) {
result = result && (getContainerExitStatus()
== other.getContainerExitStatus());
}
result = result && (hasContainerState() == other.hasContainerState());
if (hasContainerState()) {
result = result &&
(getContainerState() == other.getContainerState());
}
result = result && (hasNodeHttpAddress() == other.hasNodeHttpAddress());
if (hasNodeHttpAddress()) {
result = result && getNodeHttpAddress()
.equals(other.getNodeHttpAddress());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasContainerId()) {
hash = (37 * hash) + CONTAINER_ID_FIELD_NUMBER;
hash = (53 * hash) + getContainerId().hashCode();
}
if (hasResource()) {
hash = (37 * hash) + RESOURCE_FIELD_NUMBER;
hash = (53 * hash) + getResource().hashCode();
}
if (hasNodeId()) {
hash = (37 * hash) + NODE_ID_FIELD_NUMBER;
hash = (53 * hash) + getNodeId().hashCode();
}
if (hasPriority()) {
hash = (37 * hash) + PRIORITY_FIELD_NUMBER;
hash = (53 * hash) + getPriority().hashCode();
}
if (hasCreationTime()) {
hash = (37 * hash) + CREATION_TIME_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getCreationTime());
}
if (hasFinishTime()) {
hash = (37 * hash) + FINISH_TIME_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getFinishTime());
}
if (hasDiagnosticsInfo()) {
hash = (37 * hash) + DIAGNOSTICS_INFO_FIELD_NUMBER;
hash = (53 * hash) + getDiagnosticsInfo().hashCode();
}
if (hasLogUrl()) {
hash = (37 * hash) + LOG_URL_FIELD_NUMBER;
hash = (53 * hash) + getLogUrl().hashCode();
}
if (hasContainerExitStatus()) {
hash = (37 * hash) + CONTAINER_EXIT_STATUS_FIELD_NUMBER;
hash = (53 * hash) + getContainerExitStatus();
}
if (hasContainerState()) {
hash = (37 * hash) + CONTAINER_STATE_FIELD_NUMBER;
hash = (53 * hash) + hashEnum(getContainerState());
}
if (hasNodeHttpAddress()) {
hash = (37 * hash) + NODE_HTTP_ADDRESS_FIELD_NUMBER;
hash = (53 * hash) + getNodeHttpAddress().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ContainerReportProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getContainerIdFieldBuilder();
getResourceFieldBuilder();
getNodeIdFieldBuilder();
getPriorityFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (containerIdBuilder_ == null) {
containerId_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
} else {
containerIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
if (priorityBuilder_ == null) {
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
} else {
priorityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
creationTime_ = 0L;
bitField0_ = (bitField0_ & ~0x00000010);
finishTime_ = 0L;
bitField0_ = (bitField0_ & ~0x00000020);
diagnosticsInfo_ = "N/A";
bitField0_ = (bitField0_ & ~0x00000040);
logUrl_ = "";
bitField0_ = (bitField0_ & ~0x00000080);
containerExitStatus_ = 0;
bitField0_ = (bitField0_ & ~0x00000100);
containerState_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto.C_NEW;
bitField0_ = (bitField0_ & ~0x00000200);
nodeHttpAddress_ = "";
bitField0_ = (bitField0_ & ~0x00000400);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ContainerReportProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (containerIdBuilder_ == null) {
result.containerId_ = containerId_;
} else {
result.containerId_ = containerIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (resourceBuilder_ == null) {
result.resource_ = resource_;
} else {
result.resource_ = resourceBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (nodeIdBuilder_ == null) {
result.nodeId_ = nodeId_;
} else {
result.nodeId_ = nodeIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
if (priorityBuilder_ == null) {
result.priority_ = priority_;
} else {
result.priority_ = priorityBuilder_.build();
}
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.creationTime_ = creationTime_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.finishTime_ = finishTime_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
result.diagnosticsInfo_ = diagnosticsInfo_;
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
result.logUrl_ = logUrl_;
if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
to_bitField0_ |= 0x00000100;
}
result.containerExitStatus_ = containerExitStatus_;
if (((from_bitField0_ & 0x00000200) == 0x00000200)) {
to_bitField0_ |= 0x00000200;
}
result.containerState_ = containerState_;
if (((from_bitField0_ & 0x00000400) == 0x00000400)) {
to_bitField0_ |= 0x00000400;
}
result.nodeHttpAddress_ = nodeHttpAddress_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto.getDefaultInstance()) return this;
if (other.hasContainerId()) {
mergeContainerId(other.getContainerId());
}
if (other.hasResource()) {
mergeResource(other.getResource());
}
if (other.hasNodeId()) {
mergeNodeId(other.getNodeId());
}
if (other.hasPriority()) {
mergePriority(other.getPriority());
}
if (other.hasCreationTime()) {
setCreationTime(other.getCreationTime());
}
if (other.hasFinishTime()) {
setFinishTime(other.getFinishTime());
}
if (other.hasDiagnosticsInfo()) {
bitField0_ |= 0x00000040;
diagnosticsInfo_ = other.diagnosticsInfo_;
onChanged();
}
if (other.hasLogUrl()) {
bitField0_ |= 0x00000080;
logUrl_ = other.logUrl_;
onChanged();
}
if (other.hasContainerExitStatus()) {
setContainerExitStatus(other.getContainerExitStatus());
}
if (other.hasContainerState()) {
setContainerState(other.getContainerState());
}
if (other.hasNodeHttpAddress()) {
bitField0_ |= 0x00000400;
nodeHttpAddress_ = other.nodeHttpAddress_;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ContainerReportProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ContainerIdProto container_id = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto containerId_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder> containerIdBuilder_;
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public boolean hasContainerId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getContainerId() {
if (containerIdBuilder_ == null) {
return containerId_;
} else {
return containerIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public Builder setContainerId(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto value) {
if (containerIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
containerId_ = value;
onChanged();
} else {
containerIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public Builder setContainerId(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder builderForValue) {
if (containerIdBuilder_ == null) {
containerId_ = builderForValue.build();
onChanged();
} else {
containerIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public Builder mergeContainerId(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto value) {
if (containerIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
containerId_ != org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance()) {
containerId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.newBuilder(containerId_).mergeFrom(value).buildPartial();
} else {
containerId_ = value;
}
onChanged();
} else {
containerIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public Builder clearContainerId() {
if (containerIdBuilder_ == null) {
containerId_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
onChanged();
} else {
containerIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder getContainerIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getContainerIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getContainerIdOrBuilder() {
if (containerIdBuilder_ != null) {
return containerIdBuilder_.getMessageOrBuilder();
} else {
return containerId_;
}
}
/**
* optional .hadoop.yarn.ContainerIdProto container_id = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder>
getContainerIdFieldBuilder() {
if (containerIdBuilder_ == null) {
containerIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder>(
containerId_,
getParentForChildren(),
isClean());
containerId_ = null;
}
return containerIdBuilder_;
}
// optional .hadoop.yarn.ResourceProto resource = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> resourceBuilder_;
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource() {
if (resourceBuilder_ == null) {
return resource_;
} else {
return resourceBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public Builder setResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (resourceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resource_ = value;
onChanged();
} else {
resourceBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public Builder setResource(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (resourceBuilder_ == null) {
resource_ = builderForValue.build();
onChanged();
} else {
resourceBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public Builder mergeResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (resourceBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
resource_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
resource_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(resource_).mergeFrom(value).buildPartial();
} else {
resource_ = value;
}
onChanged();
} else {
resourceBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public Builder clearResource() {
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getResourceBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getResourceFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder() {
if (resourceBuilder_ != null) {
return resourceBuilder_.getMessageOrBuilder();
} else {
return resource_;
}
}
/**
* optional .hadoop.yarn.ResourceProto resource = 2;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getResourceFieldBuilder() {
if (resourceBuilder_ == null) {
resourceBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
resource_,
getParentForChildren(),
isClean());
resource_ = null;
}
return resourceBuilder_;
}
// optional .hadoop.yarn.NodeIdProto node_id = 3;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder> nodeIdBuilder_;
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
if (nodeIdBuilder_ == null) {
return nodeId_;
} else {
return nodeIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public Builder setNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
nodeId_ = value;
onChanged();
} else {
nodeIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public Builder setNodeId(
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder builderForValue) {
if (nodeIdBuilder_ == null) {
nodeId_ = builderForValue.build();
onChanged();
} else {
nodeIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public Builder mergeNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
nodeId_ != org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance()) {
nodeId_ =
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.newBuilder(nodeId_).mergeFrom(value).buildPartial();
} else {
nodeId_ = value;
}
onChanged();
} else {
nodeIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public Builder clearNodeId() {
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
onChanged();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder getNodeIdBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getNodeIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
if (nodeIdBuilder_ != null) {
return nodeIdBuilder_.getMessageOrBuilder();
} else {
return nodeId_;
}
}
/**
* optional .hadoop.yarn.NodeIdProto node_id = 3;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>
getNodeIdFieldBuilder() {
if (nodeIdBuilder_ == null) {
nodeIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>(
nodeId_,
getParentForChildren(),
isClean());
nodeId_ = null;
}
return nodeIdBuilder_;
}
// optional .hadoop.yarn.PriorityProto priority = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder> priorityBuilder_;
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority() {
if (priorityBuilder_ == null) {
return priority_;
} else {
return priorityBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public Builder setPriority(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto value) {
if (priorityBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
priority_ = value;
onChanged();
} else {
priorityBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public Builder setPriority(
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder builderForValue) {
if (priorityBuilder_ == null) {
priority_ = builderForValue.build();
onChanged();
} else {
priorityBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public Builder mergePriority(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto value) {
if (priorityBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008) &&
priority_ != org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance()) {
priority_ =
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.newBuilder(priority_).mergeFrom(value).buildPartial();
} else {
priority_ = value;
}
onChanged();
} else {
priorityBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public Builder clearPriority() {
if (priorityBuilder_ == null) {
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
onChanged();
} else {
priorityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder getPriorityBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getPriorityFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder() {
if (priorityBuilder_ != null) {
return priorityBuilder_.getMessageOrBuilder();
} else {
return priority_;
}
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder>
getPriorityFieldBuilder() {
if (priorityBuilder_ == null) {
priorityBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder>(
priority_,
getParentForChildren(),
isClean());
priority_ = null;
}
return priorityBuilder_;
}
// optional int64 creation_time = 5;
private long creationTime_ ;
/**
* optional int64 creation_time = 5;
*/
public boolean hasCreationTime() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional int64 creation_time = 5;
*/
public long getCreationTime() {
return creationTime_;
}
/**
* optional int64 creation_time = 5;
*/
public Builder setCreationTime(long value) {
bitField0_ |= 0x00000010;
creationTime_ = value;
onChanged();
return this;
}
/**
* optional int64 creation_time = 5;
*/
public Builder clearCreationTime() {
bitField0_ = (bitField0_ & ~0x00000010);
creationTime_ = 0L;
onChanged();
return this;
}
// optional int64 finish_time = 6;
private long finishTime_ ;
/**
* optional int64 finish_time = 6;
*/
public boolean hasFinishTime() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional int64 finish_time = 6;
*/
public long getFinishTime() {
return finishTime_;
}
/**
* optional int64 finish_time = 6;
*/
public Builder setFinishTime(long value) {
bitField0_ |= 0x00000020;
finishTime_ = value;
onChanged();
return this;
}
/**
* optional int64 finish_time = 6;
*/
public Builder clearFinishTime() {
bitField0_ = (bitField0_ & ~0x00000020);
finishTime_ = 0L;
onChanged();
return this;
}
// optional string diagnostics_info = 7 [default = "N/A"];
private java.lang.Object diagnosticsInfo_ = "N/A";
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
public boolean hasDiagnosticsInfo() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
public java.lang.String getDiagnosticsInfo() {
java.lang.Object ref = diagnosticsInfo_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
diagnosticsInfo_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
public com.google.protobuf.ByteString
getDiagnosticsInfoBytes() {
java.lang.Object ref = diagnosticsInfo_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
diagnosticsInfo_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
public Builder setDiagnosticsInfo(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000040;
diagnosticsInfo_ = value;
onChanged();
return this;
}
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
public Builder clearDiagnosticsInfo() {
bitField0_ = (bitField0_ & ~0x00000040);
diagnosticsInfo_ = getDefaultInstance().getDiagnosticsInfo();
onChanged();
return this;
}
/**
* optional string diagnostics_info = 7 [default = "N/A"];
*/
public Builder setDiagnosticsInfoBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000040;
diagnosticsInfo_ = value;
onChanged();
return this;
}
// optional string log_url = 8;
private java.lang.Object logUrl_ = "";
/**
* optional string log_url = 8;
*/
public boolean hasLogUrl() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional string log_url = 8;
*/
public java.lang.String getLogUrl() {
java.lang.Object ref = logUrl_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
logUrl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string log_url = 8;
*/
public com.google.protobuf.ByteString
getLogUrlBytes() {
java.lang.Object ref = logUrl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
logUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string log_url = 8;
*/
public Builder setLogUrl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000080;
logUrl_ = value;
onChanged();
return this;
}
/**
* optional string log_url = 8;
*/
public Builder clearLogUrl() {
bitField0_ = (bitField0_ & ~0x00000080);
logUrl_ = getDefaultInstance().getLogUrl();
onChanged();
return this;
}
/**
* optional string log_url = 8;
*/
public Builder setLogUrlBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000080;
logUrl_ = value;
onChanged();
return this;
}
// optional int32 container_exit_status = 9;
private int containerExitStatus_ ;
/**
* optional int32 container_exit_status = 9;
*/
public boolean hasContainerExitStatus() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional int32 container_exit_status = 9;
*/
public int getContainerExitStatus() {
return containerExitStatus_;
}
/**
* optional int32 container_exit_status = 9;
*/
public Builder setContainerExitStatus(int value) {
bitField0_ |= 0x00000100;
containerExitStatus_ = value;
onChanged();
return this;
}
/**
* optional int32 container_exit_status = 9;
*/
public Builder clearContainerExitStatus() {
bitField0_ = (bitField0_ & ~0x00000100);
containerExitStatus_ = 0;
onChanged();
return this;
}
// optional .hadoop.yarn.ContainerStateProto container_state = 10;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto containerState_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto.C_NEW;
/**
* optional .hadoop.yarn.ContainerStateProto container_state = 10;
*/
public boolean hasContainerState() {
return ((bitField0_ & 0x00000200) == 0x00000200);
}
/**
* optional .hadoop.yarn.ContainerStateProto container_state = 10;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto getContainerState() {
return containerState_;
}
/**
* optional .hadoop.yarn.ContainerStateProto container_state = 10;
*/
public Builder setContainerState(org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000200;
containerState_ = value;
onChanged();
return this;
}
/**
* optional .hadoop.yarn.ContainerStateProto container_state = 10;
*/
public Builder clearContainerState() {
bitField0_ = (bitField0_ & ~0x00000200);
containerState_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerStateProto.C_NEW;
onChanged();
return this;
}
// optional string node_http_address = 11;
private java.lang.Object nodeHttpAddress_ = "";
/**
* optional string node_http_address = 11;
*/
public boolean hasNodeHttpAddress() {
return ((bitField0_ & 0x00000400) == 0x00000400);
}
/**
* optional string node_http_address = 11;
*/
public java.lang.String getNodeHttpAddress() {
java.lang.Object ref = nodeHttpAddress_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
nodeHttpAddress_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string node_http_address = 11;
*/
public com.google.protobuf.ByteString
getNodeHttpAddressBytes() {
java.lang.Object ref = nodeHttpAddress_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodeHttpAddress_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string node_http_address = 11;
*/
public Builder setNodeHttpAddress(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000400;
nodeHttpAddress_ = value;
onChanged();
return this;
}
/**
* optional string node_http_address = 11;
*/
public Builder clearNodeHttpAddress() {
bitField0_ = (bitField0_ & ~0x00000400);
nodeHttpAddress_ = getDefaultInstance().getNodeHttpAddress();
onChanged();
return this;
}
/**
* optional string node_http_address = 11;
*/
public Builder setNodeHttpAddressBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000400;
nodeHttpAddress_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ContainerReportProto)
}
static {
defaultInstance = new ContainerReportProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ContainerReportProto)
}
public interface URLProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional string scheme = 1;
/**
* optional string scheme = 1;
*/
boolean hasScheme();
/**
* optional string scheme = 1;
*/
java.lang.String getScheme();
/**
* optional string scheme = 1;
*/
com.google.protobuf.ByteString
getSchemeBytes();
// optional string host = 2;
/**
* optional string host = 2;
*/
boolean hasHost();
/**
* optional string host = 2;
*/
java.lang.String getHost();
/**
* optional string host = 2;
*/
com.google.protobuf.ByteString
getHostBytes();
// optional int32 port = 3;
/**
* optional int32 port = 3;
*/
boolean hasPort();
/**
* optional int32 port = 3;
*/
int getPort();
// optional string file = 4;
/**
* optional string file = 4;
*/
boolean hasFile();
/**
* optional string file = 4;
*/
java.lang.String getFile();
/**
* optional string file = 4;
*/
com.google.protobuf.ByteString
getFileBytes();
// optional string userInfo = 5;
/**
* optional string userInfo = 5;
*/
boolean hasUserInfo();
/**
* optional string userInfo = 5;
*/
java.lang.String getUserInfo();
/**
* optional string userInfo = 5;
*/
com.google.protobuf.ByteString
getUserInfoBytes();
}
/**
* Protobuf type {@code hadoop.yarn.URLProto}
*/
public static final class URLProto extends
com.google.protobuf.GeneratedMessage
implements URLProtoOrBuilder {
// Use URLProto.newBuilder() to construct.
private URLProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private URLProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final URLProto defaultInstance;
public static URLProto getDefaultInstance() {
return defaultInstance;
}
public URLProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private URLProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
bitField0_ |= 0x00000001;
scheme_ = input.readBytes();
break;
}
case 18: {
bitField0_ |= 0x00000002;
host_ = input.readBytes();
break;
}
case 24: {
bitField0_ |= 0x00000004;
port_ = input.readInt32();
break;
}
case 34: {
bitField0_ |= 0x00000008;
file_ = input.readBytes();
break;
}
case 42: {
bitField0_ |= 0x00000010;
userInfo_ = input.readBytes();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_URLProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_URLProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.URLProto.class, org.apache.hadoop.yarn.proto.YarnProtos.URLProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public URLProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new URLProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional string scheme = 1;
public static final int SCHEME_FIELD_NUMBER = 1;
private java.lang.Object scheme_;
/**
* optional string scheme = 1;
*/
public boolean hasScheme() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string scheme = 1;
*/
public java.lang.String getScheme() {
java.lang.Object ref = scheme_;
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();
if (bs.isValidUtf8()) {
scheme_ = s;
}
return s;
}
}
/**
* optional string scheme = 1;
*/
public com.google.protobuf.ByteString
getSchemeBytes() {
java.lang.Object ref = scheme_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
scheme_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string host = 2;
public static final int HOST_FIELD_NUMBER = 2;
private java.lang.Object host_;
/**
* optional string host = 2;
*/
public boolean hasHost() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string host = 2;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
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();
if (bs.isValidUtf8()) {
host_ = s;
}
return s;
}
}
/**
* optional string host = 2;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional int32 port = 3;
public static final int PORT_FIELD_NUMBER = 3;
private int port_;
/**
* optional int32 port = 3;
*/
public boolean hasPort() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int32 port = 3;
*/
public int getPort() {
return port_;
}
// optional string file = 4;
public static final int FILE_FIELD_NUMBER = 4;
private java.lang.Object file_;
/**
* optional string file = 4;
*/
public boolean hasFile() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional string file = 4;
*/
public java.lang.String getFile() {
java.lang.Object ref = file_;
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();
if (bs.isValidUtf8()) {
file_ = s;
}
return s;
}
}
/**
* optional string file = 4;
*/
public com.google.protobuf.ByteString
getFileBytes() {
java.lang.Object ref = file_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
file_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string userInfo = 5;
public static final int USERINFO_FIELD_NUMBER = 5;
private java.lang.Object userInfo_;
/**
* optional string userInfo = 5;
*/
public boolean hasUserInfo() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional string userInfo = 5;
*/
public java.lang.String getUserInfo() {
java.lang.Object ref = userInfo_;
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();
if (bs.isValidUtf8()) {
userInfo_ = s;
}
return s;
}
}
/**
* optional string userInfo = 5;
*/
public com.google.protobuf.ByteString
getUserInfoBytes() {
java.lang.Object ref = userInfo_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
userInfo_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private void initFields() {
scheme_ = "";
host_ = "";
port_ = 0;
file_ = "";
userInfo_ = "";
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeBytes(1, getSchemeBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getHostBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt32(3, port_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeBytes(4, getFileBytes());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeBytes(5, getUserInfoBytes());
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(1, getSchemeBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getHostBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, port_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(4, getFileBytes());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(5, getUserInfoBytes());
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.URLProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.URLProto other = (org.apache.hadoop.yarn.proto.YarnProtos.URLProto) obj;
boolean result = true;
result = result && (hasScheme() == other.hasScheme());
if (hasScheme()) {
result = result && getScheme()
.equals(other.getScheme());
}
result = result && (hasHost() == other.hasHost());
if (hasHost()) {
result = result && getHost()
.equals(other.getHost());
}
result = result && (hasPort() == other.hasPort());
if (hasPort()) {
result = result && (getPort()
== other.getPort());
}
result = result && (hasFile() == other.hasFile());
if (hasFile()) {
result = result && getFile()
.equals(other.getFile());
}
result = result && (hasUserInfo() == other.hasUserInfo());
if (hasUserInfo()) {
result = result && getUserInfo()
.equals(other.getUserInfo());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasScheme()) {
hash = (37 * hash) + SCHEME_FIELD_NUMBER;
hash = (53 * hash) + getScheme().hashCode();
}
if (hasHost()) {
hash = (37 * hash) + HOST_FIELD_NUMBER;
hash = (53 * hash) + getHost().hashCode();
}
if (hasPort()) {
hash = (37 * hash) + PORT_FIELD_NUMBER;
hash = (53 * hash) + getPort();
}
if (hasFile()) {
hash = (37 * hash) + FILE_FIELD_NUMBER;
hash = (53 * hash) + getFile().hashCode();
}
if (hasUserInfo()) {
hash = (37 * hash) + USERINFO_FIELD_NUMBER;
hash = (53 * hash) + getUserInfo().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.URLProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.URLProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.URLProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.URLProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_URLProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_URLProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.URLProto.class, org.apache.hadoop.yarn.proto.YarnProtos.URLProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.URLProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
scheme_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
host_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
port_ = 0;
bitField0_ = (bitField0_ & ~0x00000004);
file_ = "";
bitField0_ = (bitField0_ & ~0x00000008);
userInfo_ = "";
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_URLProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.URLProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.URLProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.URLProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.URLProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.URLProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.URLProto result = new org.apache.hadoop.yarn.proto.YarnProtos.URLProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.scheme_ = scheme_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.host_ = host_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.port_ = port_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.file_ = file_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.userInfo_ = userInfo_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.URLProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.URLProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.URLProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.URLProto.getDefaultInstance()) return this;
if (other.hasScheme()) {
bitField0_ |= 0x00000001;
scheme_ = other.scheme_;
onChanged();
}
if (other.hasHost()) {
bitField0_ |= 0x00000002;
host_ = other.host_;
onChanged();
}
if (other.hasPort()) {
setPort(other.getPort());
}
if (other.hasFile()) {
bitField0_ |= 0x00000008;
file_ = other.file_;
onChanged();
}
if (other.hasUserInfo()) {
bitField0_ |= 0x00000010;
userInfo_ = other.userInfo_;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.URLProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.URLProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional string scheme = 1;
private java.lang.Object scheme_ = "";
/**
* optional string scheme = 1;
*/
public boolean hasScheme() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string scheme = 1;
*/
public java.lang.String getScheme() {
java.lang.Object ref = scheme_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
scheme_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string scheme = 1;
*/
public com.google.protobuf.ByteString
getSchemeBytes() {
java.lang.Object ref = scheme_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
scheme_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string scheme = 1;
*/
public Builder setScheme(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
scheme_ = value;
onChanged();
return this;
}
/**
* optional string scheme = 1;
*/
public Builder clearScheme() {
bitField0_ = (bitField0_ & ~0x00000001);
scheme_ = getDefaultInstance().getScheme();
onChanged();
return this;
}
/**
* optional string scheme = 1;
*/
public Builder setSchemeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
scheme_ = value;
onChanged();
return this;
}
// optional string host = 2;
private java.lang.Object host_ = "";
/**
* optional string host = 2;
*/
public boolean hasHost() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string host = 2;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
host_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string host = 2;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string host = 2;
*/
public Builder setHost(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
host_ = value;
onChanged();
return this;
}
/**
* optional string host = 2;
*/
public Builder clearHost() {
bitField0_ = (bitField0_ & ~0x00000002);
host_ = getDefaultInstance().getHost();
onChanged();
return this;
}
/**
* optional string host = 2;
*/
public Builder setHostBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
host_ = value;
onChanged();
return this;
}
// optional int32 port = 3;
private int port_ ;
/**
* optional int32 port = 3;
*/
public boolean hasPort() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int32 port = 3;
*/
public int getPort() {
return port_;
}
/**
* optional int32 port = 3;
*/
public Builder setPort(int value) {
bitField0_ |= 0x00000004;
port_ = value;
onChanged();
return this;
}
/**
* optional int32 port = 3;
*/
public Builder clearPort() {
bitField0_ = (bitField0_ & ~0x00000004);
port_ = 0;
onChanged();
return this;
}
// optional string file = 4;
private java.lang.Object file_ = "";
/**
* optional string file = 4;
*/
public boolean hasFile() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional string file = 4;
*/
public java.lang.String getFile() {
java.lang.Object ref = file_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
file_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string file = 4;
*/
public com.google.protobuf.ByteString
getFileBytes() {
java.lang.Object ref = file_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
file_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string file = 4;
*/
public Builder setFile(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
file_ = value;
onChanged();
return this;
}
/**
* optional string file = 4;
*/
public Builder clearFile() {
bitField0_ = (bitField0_ & ~0x00000008);
file_ = getDefaultInstance().getFile();
onChanged();
return this;
}
/**
* optional string file = 4;
*/
public Builder setFileBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
file_ = value;
onChanged();
return this;
}
// optional string userInfo = 5;
private java.lang.Object userInfo_ = "";
/**
* optional string userInfo = 5;
*/
public boolean hasUserInfo() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional string userInfo = 5;
*/
public java.lang.String getUserInfo() {
java.lang.Object ref = userInfo_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
userInfo_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string userInfo = 5;
*/
public com.google.protobuf.ByteString
getUserInfoBytes() {
java.lang.Object ref = userInfo_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
userInfo_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string userInfo = 5;
*/
public Builder setUserInfo(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
userInfo_ = value;
onChanged();
return this;
}
/**
* optional string userInfo = 5;
*/
public Builder clearUserInfo() {
bitField0_ = (bitField0_ & ~0x00000010);
userInfo_ = getDefaultInstance().getUserInfo();
onChanged();
return this;
}
/**
* optional string userInfo = 5;
*/
public Builder setUserInfoBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
userInfo_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.URLProto)
}
static {
defaultInstance = new URLProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.URLProto)
}
public interface LocalResourceProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.URLProto resource = 1;
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
boolean hasResource();
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.URLProto getResource();
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.URLProtoOrBuilder getResourceOrBuilder();
// optional int64 size = 2;
/**
* optional int64 size = 2;
*/
boolean hasSize();
/**
* optional int64 size = 2;
*/
long getSize();
// optional int64 timestamp = 3;
/**
* optional int64 timestamp = 3;
*/
boolean hasTimestamp();
/**
* optional int64 timestamp = 3;
*/
long getTimestamp();
// optional .hadoop.yarn.LocalResourceTypeProto type = 4;
/**
* optional .hadoop.yarn.LocalResourceTypeProto type = 4;
*/
boolean hasType();
/**
* optional .hadoop.yarn.LocalResourceTypeProto type = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto getType();
// optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
/**
* optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
*/
boolean hasVisibility();
/**
* optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto getVisibility();
// optional string pattern = 6;
/**
* optional string pattern = 6;
*/
boolean hasPattern();
/**
* optional string pattern = 6;
*/
java.lang.String getPattern();
/**
* optional string pattern = 6;
*/
com.google.protobuf.ByteString
getPatternBytes();
}
/**
* Protobuf type {@code hadoop.yarn.LocalResourceProto}
*/
public static final class LocalResourceProto extends
com.google.protobuf.GeneratedMessage
implements LocalResourceProtoOrBuilder {
// Use LocalResourceProto.newBuilder() to construct.
private LocalResourceProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private LocalResourceProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final LocalResourceProto defaultInstance;
public static LocalResourceProto getDefaultInstance() {
return defaultInstance;
}
public LocalResourceProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private LocalResourceProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.URLProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = resource_.toBuilder();
}
resource_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.URLProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(resource_);
resource_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 16: {
bitField0_ |= 0x00000002;
size_ = input.readInt64();
break;
}
case 24: {
bitField0_ |= 0x00000004;
timestamp_ = input.readInt64();
break;
}
case 32: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto value = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(4, rawValue);
} else {
bitField0_ |= 0x00000008;
type_ = value;
}
break;
}
case 40: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto value = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(5, rawValue);
} else {
bitField0_ |= 0x00000010;
visibility_ = value;
}
break;
}
case 50: {
bitField0_ |= 0x00000020;
pattern_ = input.readBytes();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LocalResourceProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LocalResourceProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto.class, org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public LocalResourceProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new LocalResourceProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.URLProto resource = 1;
public static final int RESOURCE_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.URLProto resource_;
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.URLProto getResource() {
return resource_;
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.URLProtoOrBuilder getResourceOrBuilder() {
return resource_;
}
// optional int64 size = 2;
public static final int SIZE_FIELD_NUMBER = 2;
private long size_;
/**
* optional int64 size = 2;
*/
public boolean hasSize() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int64 size = 2;
*/
public long getSize() {
return size_;
}
// optional int64 timestamp = 3;
public static final int TIMESTAMP_FIELD_NUMBER = 3;
private long timestamp_;
/**
* optional int64 timestamp = 3;
*/
public boolean hasTimestamp() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int64 timestamp = 3;
*/
public long getTimestamp() {
return timestamp_;
}
// optional .hadoop.yarn.LocalResourceTypeProto type = 4;
public static final int TYPE_FIELD_NUMBER = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto type_;
/**
* optional .hadoop.yarn.LocalResourceTypeProto type = 4;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.LocalResourceTypeProto type = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto getType() {
return type_;
}
// optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
public static final int VISIBILITY_FIELD_NUMBER = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto visibility_;
/**
* optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
*/
public boolean hasVisibility() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto getVisibility() {
return visibility_;
}
// optional string pattern = 6;
public static final int PATTERN_FIELD_NUMBER = 6;
private java.lang.Object pattern_;
/**
* optional string pattern = 6;
*/
public boolean hasPattern() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional string pattern = 6;
*/
public java.lang.String getPattern() {
java.lang.Object ref = pattern_;
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();
if (bs.isValidUtf8()) {
pattern_ = s;
}
return s;
}
}
/**
* optional string pattern = 6;
*/
public com.google.protobuf.ByteString
getPatternBytes() {
java.lang.Object ref = pattern_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
pattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private void initFields() {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.URLProto.getDefaultInstance();
size_ = 0L;
timestamp_ = 0L;
type_ = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto.ARCHIVE;
visibility_ = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto.PUBLIC;
pattern_ = "";
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, resource_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt64(2, size_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt64(3, timestamp_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeEnum(4, type_.getNumber());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeEnum(5, visibility_.getNumber());
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeBytes(6, getPatternBytes());
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, resource_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(2, size_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(3, timestamp_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(4, type_.getNumber());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(5, visibility_.getNumber());
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(6, getPatternBytes());
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto other = (org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto) obj;
boolean result = true;
result = result && (hasResource() == other.hasResource());
if (hasResource()) {
result = result && getResource()
.equals(other.getResource());
}
result = result && (hasSize() == other.hasSize());
if (hasSize()) {
result = result && (getSize()
== other.getSize());
}
result = result && (hasTimestamp() == other.hasTimestamp());
if (hasTimestamp()) {
result = result && (getTimestamp()
== other.getTimestamp());
}
result = result && (hasType() == other.hasType());
if (hasType()) {
result = result &&
(getType() == other.getType());
}
result = result && (hasVisibility() == other.hasVisibility());
if (hasVisibility()) {
result = result &&
(getVisibility() == other.getVisibility());
}
result = result && (hasPattern() == other.hasPattern());
if (hasPattern()) {
result = result && getPattern()
.equals(other.getPattern());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasResource()) {
hash = (37 * hash) + RESOURCE_FIELD_NUMBER;
hash = (53 * hash) + getResource().hashCode();
}
if (hasSize()) {
hash = (37 * hash) + SIZE_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getSize());
}
if (hasTimestamp()) {
hash = (37 * hash) + TIMESTAMP_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getTimestamp());
}
if (hasType()) {
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + hashEnum(getType());
}
if (hasVisibility()) {
hash = (37 * hash) + VISIBILITY_FIELD_NUMBER;
hash = (53 * hash) + hashEnum(getVisibility());
}
if (hasPattern()) {
hash = (37 * hash) + PATTERN_FIELD_NUMBER;
hash = (53 * hash) + getPattern().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.LocalResourceProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LocalResourceProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LocalResourceProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto.class, org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getResourceFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.URLProto.getDefaultInstance();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
size_ = 0L;
bitField0_ = (bitField0_ & ~0x00000002);
timestamp_ = 0L;
bitField0_ = (bitField0_ & ~0x00000004);
type_ = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto.ARCHIVE;
bitField0_ = (bitField0_ & ~0x00000008);
visibility_ = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto.PUBLIC;
bitField0_ = (bitField0_ & ~0x00000010);
pattern_ = "";
bitField0_ = (bitField0_ & ~0x00000020);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LocalResourceProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto result = new org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (resourceBuilder_ == null) {
result.resource_ = resource_;
} else {
result.resource_ = resourceBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.size_ = size_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.timestamp_ = timestamp_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.type_ = type_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.visibility_ = visibility_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.pattern_ = pattern_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto.getDefaultInstance()) return this;
if (other.hasResource()) {
mergeResource(other.getResource());
}
if (other.hasSize()) {
setSize(other.getSize());
}
if (other.hasTimestamp()) {
setTimestamp(other.getTimestamp());
}
if (other.hasType()) {
setType(other.getType());
}
if (other.hasVisibility()) {
setVisibility(other.getVisibility());
}
if (other.hasPattern()) {
bitField0_ |= 0x00000020;
pattern_ = other.pattern_;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.URLProto resource = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.URLProto resource_ = org.apache.hadoop.yarn.proto.YarnProtos.URLProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.URLProto, org.apache.hadoop.yarn.proto.YarnProtos.URLProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.URLProtoOrBuilder> resourceBuilder_;
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.URLProto getResource() {
if (resourceBuilder_ == null) {
return resource_;
} else {
return resourceBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public Builder setResource(org.apache.hadoop.yarn.proto.YarnProtos.URLProto value) {
if (resourceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resource_ = value;
onChanged();
} else {
resourceBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public Builder setResource(
org.apache.hadoop.yarn.proto.YarnProtos.URLProto.Builder builderForValue) {
if (resourceBuilder_ == null) {
resource_ = builderForValue.build();
onChanged();
} else {
resourceBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public Builder mergeResource(org.apache.hadoop.yarn.proto.YarnProtos.URLProto value) {
if (resourceBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
resource_ != org.apache.hadoop.yarn.proto.YarnProtos.URLProto.getDefaultInstance()) {
resource_ =
org.apache.hadoop.yarn.proto.YarnProtos.URLProto.newBuilder(resource_).mergeFrom(value).buildPartial();
} else {
resource_ = value;
}
onChanged();
} else {
resourceBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public Builder clearResource() {
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.URLProto.getDefaultInstance();
onChanged();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.URLProto.Builder getResourceBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getResourceFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.URLProtoOrBuilder getResourceOrBuilder() {
if (resourceBuilder_ != null) {
return resourceBuilder_.getMessageOrBuilder();
} else {
return resource_;
}
}
/**
* optional .hadoop.yarn.URLProto resource = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.URLProto, org.apache.hadoop.yarn.proto.YarnProtos.URLProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.URLProtoOrBuilder>
getResourceFieldBuilder() {
if (resourceBuilder_ == null) {
resourceBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.URLProto, org.apache.hadoop.yarn.proto.YarnProtos.URLProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.URLProtoOrBuilder>(
resource_,
getParentForChildren(),
isClean());
resource_ = null;
}
return resourceBuilder_;
}
// optional int64 size = 2;
private long size_ ;
/**
* optional int64 size = 2;
*/
public boolean hasSize() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int64 size = 2;
*/
public long getSize() {
return size_;
}
/**
* optional int64 size = 2;
*/
public Builder setSize(long value) {
bitField0_ |= 0x00000002;
size_ = value;
onChanged();
return this;
}
/**
* optional int64 size = 2;
*/
public Builder clearSize() {
bitField0_ = (bitField0_ & ~0x00000002);
size_ = 0L;
onChanged();
return this;
}
// optional int64 timestamp = 3;
private long timestamp_ ;
/**
* optional int64 timestamp = 3;
*/
public boolean hasTimestamp() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int64 timestamp = 3;
*/
public long getTimestamp() {
return timestamp_;
}
/**
* optional int64 timestamp = 3;
*/
public Builder setTimestamp(long value) {
bitField0_ |= 0x00000004;
timestamp_ = value;
onChanged();
return this;
}
/**
* optional int64 timestamp = 3;
*/
public Builder clearTimestamp() {
bitField0_ = (bitField0_ & ~0x00000004);
timestamp_ = 0L;
onChanged();
return this;
}
// optional .hadoop.yarn.LocalResourceTypeProto type = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto type_ = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto.ARCHIVE;
/**
* optional .hadoop.yarn.LocalResourceTypeProto type = 4;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.LocalResourceTypeProto type = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto getType() {
return type_;
}
/**
* optional .hadoop.yarn.LocalResourceTypeProto type = 4;
*/
public Builder setType(org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
type_ = value;
onChanged();
return this;
}
/**
* optional .hadoop.yarn.LocalResourceTypeProto type = 4;
*/
public Builder clearType() {
bitField0_ = (bitField0_ & ~0x00000008);
type_ = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceTypeProto.ARCHIVE;
onChanged();
return this;
}
// optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto visibility_ = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto.PUBLIC;
/**
* optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
*/
public boolean hasVisibility() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto getVisibility() {
return visibility_;
}
/**
* optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
*/
public Builder setVisibility(org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
visibility_ = value;
onChanged();
return this;
}
/**
* optional .hadoop.yarn.LocalResourceVisibilityProto visibility = 5;
*/
public Builder clearVisibility() {
bitField0_ = (bitField0_ & ~0x00000010);
visibility_ = org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto.PUBLIC;
onChanged();
return this;
}
// optional string pattern = 6;
private java.lang.Object pattern_ = "";
/**
* optional string pattern = 6;
*/
public boolean hasPattern() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional string pattern = 6;
*/
public java.lang.String getPattern() {
java.lang.Object ref = pattern_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
pattern_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string pattern = 6;
*/
public com.google.protobuf.ByteString
getPatternBytes() {
java.lang.Object ref = pattern_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
pattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string pattern = 6;
*/
public Builder setPattern(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
pattern_ = value;
onChanged();
return this;
}
/**
* optional string pattern = 6;
*/
public Builder clearPattern() {
bitField0_ = (bitField0_ & ~0x00000020);
pattern_ = getDefaultInstance().getPattern();
onChanged();
return this;
}
/**
* optional string pattern = 6;
*/
public Builder setPatternBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
pattern_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.LocalResourceProto)
}
static {
defaultInstance = new LocalResourceProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.LocalResourceProto)
}
public interface ApplicationResourceUsageReportProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional int32 num_used_containers = 1;
/**
* optional int32 num_used_containers = 1;
*/
boolean hasNumUsedContainers();
/**
* optional int32 num_used_containers = 1;
*/
int getNumUsedContainers();
// optional int32 num_reserved_containers = 2;
/**
* optional int32 num_reserved_containers = 2;
*/
boolean hasNumReservedContainers();
/**
* optional int32 num_reserved_containers = 2;
*/
int getNumReservedContainers();
// optional .hadoop.yarn.ResourceProto used_resources = 3;
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
boolean hasUsedResources();
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getUsedResources();
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getUsedResourcesOrBuilder();
// optional .hadoop.yarn.ResourceProto reserved_resources = 4;
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
boolean hasReservedResources();
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getReservedResources();
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getReservedResourcesOrBuilder();
// optional .hadoop.yarn.ResourceProto needed_resources = 5;
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
boolean hasNeededResources();
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getNeededResources();
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getNeededResourcesOrBuilder();
// optional int64 memory_seconds = 6;
/**
* optional int64 memory_seconds = 6;
*/
boolean hasMemorySeconds();
/**
* optional int64 memory_seconds = 6;
*/
long getMemorySeconds();
// optional int64 vcore_seconds = 7;
/**
* optional int64 vcore_seconds = 7;
*/
boolean hasVcoreSeconds();
/**
* optional int64 vcore_seconds = 7;
*/
long getVcoreSeconds();
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationResourceUsageReportProto}
*/
public static final class ApplicationResourceUsageReportProto extends
com.google.protobuf.GeneratedMessage
implements ApplicationResourceUsageReportProtoOrBuilder {
// Use ApplicationResourceUsageReportProto.newBuilder() to construct.
private ApplicationResourceUsageReportProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ApplicationResourceUsageReportProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ApplicationResourceUsageReportProto defaultInstance;
public static ApplicationResourceUsageReportProto getDefaultInstance() {
return defaultInstance;
}
public ApplicationResourceUsageReportProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApplicationResourceUsageReportProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
numUsedContainers_ = input.readInt32();
break;
}
case 16: {
bitField0_ |= 0x00000002;
numReservedContainers_ = input.readInt32();
break;
}
case 26: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = usedResources_.toBuilder();
}
usedResources_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(usedResources_);
usedResources_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
case 34: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000008) == 0x00000008)) {
subBuilder = reservedResources_.toBuilder();
}
reservedResources_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(reservedResources_);
reservedResources_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000008;
break;
}
case 42: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000010) == 0x00000010)) {
subBuilder = neededResources_.toBuilder();
}
neededResources_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(neededResources_);
neededResources_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000010;
break;
}
case 48: {
bitField0_ |= 0x00000020;
memorySeconds_ = input.readInt64();
break;
}
case 56: {
bitField0_ |= 0x00000040;
vcoreSeconds_ = input.readInt64();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationResourceUsageReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationResourceUsageReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ApplicationResourceUsageReportProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApplicationResourceUsageReportProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional int32 num_used_containers = 1;
public static final int NUM_USED_CONTAINERS_FIELD_NUMBER = 1;
private int numUsedContainers_;
/**
* optional int32 num_used_containers = 1;
*/
public boolean hasNumUsedContainers() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 num_used_containers = 1;
*/
public int getNumUsedContainers() {
return numUsedContainers_;
}
// optional int32 num_reserved_containers = 2;
public static final int NUM_RESERVED_CONTAINERS_FIELD_NUMBER = 2;
private int numReservedContainers_;
/**
* optional int32 num_reserved_containers = 2;
*/
public boolean hasNumReservedContainers() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 num_reserved_containers = 2;
*/
public int getNumReservedContainers() {
return numReservedContainers_;
}
// optional .hadoop.yarn.ResourceProto used_resources = 3;
public static final int USED_RESOURCES_FIELD_NUMBER = 3;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto usedResources_;
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public boolean hasUsedResources() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getUsedResources() {
return usedResources_;
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getUsedResourcesOrBuilder() {
return usedResources_;
}
// optional .hadoop.yarn.ResourceProto reserved_resources = 4;
public static final int RESERVED_RESOURCES_FIELD_NUMBER = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto reservedResources_;
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public boolean hasReservedResources() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getReservedResources() {
return reservedResources_;
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getReservedResourcesOrBuilder() {
return reservedResources_;
}
// optional .hadoop.yarn.ResourceProto needed_resources = 5;
public static final int NEEDED_RESOURCES_FIELD_NUMBER = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto neededResources_;
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public boolean hasNeededResources() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getNeededResources() {
return neededResources_;
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getNeededResourcesOrBuilder() {
return neededResources_;
}
// optional int64 memory_seconds = 6;
public static final int MEMORY_SECONDS_FIELD_NUMBER = 6;
private long memorySeconds_;
/**
* optional int64 memory_seconds = 6;
*/
public boolean hasMemorySeconds() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional int64 memory_seconds = 6;
*/
public long getMemorySeconds() {
return memorySeconds_;
}
// optional int64 vcore_seconds = 7;
public static final int VCORE_SECONDS_FIELD_NUMBER = 7;
private long vcoreSeconds_;
/**
* optional int64 vcore_seconds = 7;
*/
public boolean hasVcoreSeconds() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional int64 vcore_seconds = 7;
*/
public long getVcoreSeconds() {
return vcoreSeconds_;
}
private void initFields() {
numUsedContainers_ = 0;
numReservedContainers_ = 0;
usedResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
reservedResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
neededResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
memorySeconds_ = 0L;
vcoreSeconds_ = 0L;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(1, numUsedContainers_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, numReservedContainers_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(3, usedResources_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeMessage(4, reservedResources_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeMessage(5, neededResources_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt64(6, memorySeconds_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeInt64(7, vcoreSeconds_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, numUsedContainers_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, numReservedContainers_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, usedResources_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, reservedResources_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(5, neededResources_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(6, memorySeconds_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(7, vcoreSeconds_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto) obj;
boolean result = true;
result = result && (hasNumUsedContainers() == other.hasNumUsedContainers());
if (hasNumUsedContainers()) {
result = result && (getNumUsedContainers()
== other.getNumUsedContainers());
}
result = result && (hasNumReservedContainers() == other.hasNumReservedContainers());
if (hasNumReservedContainers()) {
result = result && (getNumReservedContainers()
== other.getNumReservedContainers());
}
result = result && (hasUsedResources() == other.hasUsedResources());
if (hasUsedResources()) {
result = result && getUsedResources()
.equals(other.getUsedResources());
}
result = result && (hasReservedResources() == other.hasReservedResources());
if (hasReservedResources()) {
result = result && getReservedResources()
.equals(other.getReservedResources());
}
result = result && (hasNeededResources() == other.hasNeededResources());
if (hasNeededResources()) {
result = result && getNeededResources()
.equals(other.getNeededResources());
}
result = result && (hasMemorySeconds() == other.hasMemorySeconds());
if (hasMemorySeconds()) {
result = result && (getMemorySeconds()
== other.getMemorySeconds());
}
result = result && (hasVcoreSeconds() == other.hasVcoreSeconds());
if (hasVcoreSeconds()) {
result = result && (getVcoreSeconds()
== other.getVcoreSeconds());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasNumUsedContainers()) {
hash = (37 * hash) + NUM_USED_CONTAINERS_FIELD_NUMBER;
hash = (53 * hash) + getNumUsedContainers();
}
if (hasNumReservedContainers()) {
hash = (37 * hash) + NUM_RESERVED_CONTAINERS_FIELD_NUMBER;
hash = (53 * hash) + getNumReservedContainers();
}
if (hasUsedResources()) {
hash = (37 * hash) + USED_RESOURCES_FIELD_NUMBER;
hash = (53 * hash) + getUsedResources().hashCode();
}
if (hasReservedResources()) {
hash = (37 * hash) + RESERVED_RESOURCES_FIELD_NUMBER;
hash = (53 * hash) + getReservedResources().hashCode();
}
if (hasNeededResources()) {
hash = (37 * hash) + NEEDED_RESOURCES_FIELD_NUMBER;
hash = (53 * hash) + getNeededResources().hashCode();
}
if (hasMemorySeconds()) {
hash = (37 * hash) + MEMORY_SECONDS_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getMemorySeconds());
}
if (hasVcoreSeconds()) {
hash = (37 * hash) + VCORE_SECONDS_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getVcoreSeconds());
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationResourceUsageReportProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationResourceUsageReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationResourceUsageReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getUsedResourcesFieldBuilder();
getReservedResourcesFieldBuilder();
getNeededResourcesFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
numUsedContainers_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
numReservedContainers_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
if (usedResourcesBuilder_ == null) {
usedResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
usedResourcesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
if (reservedResourcesBuilder_ == null) {
reservedResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
reservedResourcesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
if (neededResourcesBuilder_ == null) {
neededResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
neededResourcesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
memorySeconds_ = 0L;
bitField0_ = (bitField0_ & ~0x00000020);
vcoreSeconds_ = 0L;
bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationResourceUsageReportProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.numUsedContainers_ = numUsedContainers_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.numReservedContainers_ = numReservedContainers_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (usedResourcesBuilder_ == null) {
result.usedResources_ = usedResources_;
} else {
result.usedResources_ = usedResourcesBuilder_.build();
}
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
if (reservedResourcesBuilder_ == null) {
result.reservedResources_ = reservedResources_;
} else {
result.reservedResources_ = reservedResourcesBuilder_.build();
}
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
if (neededResourcesBuilder_ == null) {
result.neededResources_ = neededResources_;
} else {
result.neededResources_ = neededResourcesBuilder_.build();
}
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.memorySeconds_ = memorySeconds_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
result.vcoreSeconds_ = vcoreSeconds_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.getDefaultInstance()) return this;
if (other.hasNumUsedContainers()) {
setNumUsedContainers(other.getNumUsedContainers());
}
if (other.hasNumReservedContainers()) {
setNumReservedContainers(other.getNumReservedContainers());
}
if (other.hasUsedResources()) {
mergeUsedResources(other.getUsedResources());
}
if (other.hasReservedResources()) {
mergeReservedResources(other.getReservedResources());
}
if (other.hasNeededResources()) {
mergeNeededResources(other.getNeededResources());
}
if (other.hasMemorySeconds()) {
setMemorySeconds(other.getMemorySeconds());
}
if (other.hasVcoreSeconds()) {
setVcoreSeconds(other.getVcoreSeconds());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional int32 num_used_containers = 1;
private int numUsedContainers_ ;
/**
* optional int32 num_used_containers = 1;
*/
public boolean hasNumUsedContainers() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 num_used_containers = 1;
*/
public int getNumUsedContainers() {
return numUsedContainers_;
}
/**
* optional int32 num_used_containers = 1;
*/
public Builder setNumUsedContainers(int value) {
bitField0_ |= 0x00000001;
numUsedContainers_ = value;
onChanged();
return this;
}
/**
* optional int32 num_used_containers = 1;
*/
public Builder clearNumUsedContainers() {
bitField0_ = (bitField0_ & ~0x00000001);
numUsedContainers_ = 0;
onChanged();
return this;
}
// optional int32 num_reserved_containers = 2;
private int numReservedContainers_ ;
/**
* optional int32 num_reserved_containers = 2;
*/
public boolean hasNumReservedContainers() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 num_reserved_containers = 2;
*/
public int getNumReservedContainers() {
return numReservedContainers_;
}
/**
* optional int32 num_reserved_containers = 2;
*/
public Builder setNumReservedContainers(int value) {
bitField0_ |= 0x00000002;
numReservedContainers_ = value;
onChanged();
return this;
}
/**
* optional int32 num_reserved_containers = 2;
*/
public Builder clearNumReservedContainers() {
bitField0_ = (bitField0_ & ~0x00000002);
numReservedContainers_ = 0;
onChanged();
return this;
}
// optional .hadoop.yarn.ResourceProto used_resources = 3;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto usedResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> usedResourcesBuilder_;
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public boolean hasUsedResources() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getUsedResources() {
if (usedResourcesBuilder_ == null) {
return usedResources_;
} else {
return usedResourcesBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public Builder setUsedResources(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (usedResourcesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
usedResources_ = value;
onChanged();
} else {
usedResourcesBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public Builder setUsedResources(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (usedResourcesBuilder_ == null) {
usedResources_ = builderForValue.build();
onChanged();
} else {
usedResourcesBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public Builder mergeUsedResources(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (usedResourcesBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
usedResources_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
usedResources_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(usedResources_).mergeFrom(value).buildPartial();
} else {
usedResources_ = value;
}
onChanged();
} else {
usedResourcesBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public Builder clearUsedResources() {
if (usedResourcesBuilder_ == null) {
usedResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
usedResourcesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getUsedResourcesBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getUsedResourcesFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getUsedResourcesOrBuilder() {
if (usedResourcesBuilder_ != null) {
return usedResourcesBuilder_.getMessageOrBuilder();
} else {
return usedResources_;
}
}
/**
* optional .hadoop.yarn.ResourceProto used_resources = 3;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getUsedResourcesFieldBuilder() {
if (usedResourcesBuilder_ == null) {
usedResourcesBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
usedResources_,
getParentForChildren(),
isClean());
usedResources_ = null;
}
return usedResourcesBuilder_;
}
// optional .hadoop.yarn.ResourceProto reserved_resources = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto reservedResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> reservedResourcesBuilder_;
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public boolean hasReservedResources() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getReservedResources() {
if (reservedResourcesBuilder_ == null) {
return reservedResources_;
} else {
return reservedResourcesBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public Builder setReservedResources(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (reservedResourcesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
reservedResources_ = value;
onChanged();
} else {
reservedResourcesBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public Builder setReservedResources(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (reservedResourcesBuilder_ == null) {
reservedResources_ = builderForValue.build();
onChanged();
} else {
reservedResourcesBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public Builder mergeReservedResources(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (reservedResourcesBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008) &&
reservedResources_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
reservedResources_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(reservedResources_).mergeFrom(value).buildPartial();
} else {
reservedResources_ = value;
}
onChanged();
} else {
reservedResourcesBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public Builder clearReservedResources() {
if (reservedResourcesBuilder_ == null) {
reservedResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
reservedResourcesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getReservedResourcesBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getReservedResourcesFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getReservedResourcesOrBuilder() {
if (reservedResourcesBuilder_ != null) {
return reservedResourcesBuilder_.getMessageOrBuilder();
} else {
return reservedResources_;
}
}
/**
* optional .hadoop.yarn.ResourceProto reserved_resources = 4;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getReservedResourcesFieldBuilder() {
if (reservedResourcesBuilder_ == null) {
reservedResourcesBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
reservedResources_,
getParentForChildren(),
isClean());
reservedResources_ = null;
}
return reservedResourcesBuilder_;
}
// optional .hadoop.yarn.ResourceProto needed_resources = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto neededResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> neededResourcesBuilder_;
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public boolean hasNeededResources() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getNeededResources() {
if (neededResourcesBuilder_ == null) {
return neededResources_;
} else {
return neededResourcesBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public Builder setNeededResources(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (neededResourcesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
neededResources_ = value;
onChanged();
} else {
neededResourcesBuilder_.setMessage(value);
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public Builder setNeededResources(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (neededResourcesBuilder_ == null) {
neededResources_ = builderForValue.build();
onChanged();
} else {
neededResourcesBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public Builder mergeNeededResources(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (neededResourcesBuilder_ == null) {
if (((bitField0_ & 0x00000010) == 0x00000010) &&
neededResources_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
neededResources_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(neededResources_).mergeFrom(value).buildPartial();
} else {
neededResources_ = value;
}
onChanged();
} else {
neededResourcesBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public Builder clearNeededResources() {
if (neededResourcesBuilder_ == null) {
neededResources_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
neededResourcesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getNeededResourcesBuilder() {
bitField0_ |= 0x00000010;
onChanged();
return getNeededResourcesFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getNeededResourcesOrBuilder() {
if (neededResourcesBuilder_ != null) {
return neededResourcesBuilder_.getMessageOrBuilder();
} else {
return neededResources_;
}
}
/**
* optional .hadoop.yarn.ResourceProto needed_resources = 5;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getNeededResourcesFieldBuilder() {
if (neededResourcesBuilder_ == null) {
neededResourcesBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
neededResources_,
getParentForChildren(),
isClean());
neededResources_ = null;
}
return neededResourcesBuilder_;
}
// optional int64 memory_seconds = 6;
private long memorySeconds_ ;
/**
* optional int64 memory_seconds = 6;
*/
public boolean hasMemorySeconds() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional int64 memory_seconds = 6;
*/
public long getMemorySeconds() {
return memorySeconds_;
}
/**
* optional int64 memory_seconds = 6;
*/
public Builder setMemorySeconds(long value) {
bitField0_ |= 0x00000020;
memorySeconds_ = value;
onChanged();
return this;
}
/**
* optional int64 memory_seconds = 6;
*/
public Builder clearMemorySeconds() {
bitField0_ = (bitField0_ & ~0x00000020);
memorySeconds_ = 0L;
onChanged();
return this;
}
// optional int64 vcore_seconds = 7;
private long vcoreSeconds_ ;
/**
* optional int64 vcore_seconds = 7;
*/
public boolean hasVcoreSeconds() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional int64 vcore_seconds = 7;
*/
public long getVcoreSeconds() {
return vcoreSeconds_;
}
/**
* optional int64 vcore_seconds = 7;
*/
public Builder setVcoreSeconds(long value) {
bitField0_ |= 0x00000040;
vcoreSeconds_ = value;
onChanged();
return this;
}
/**
* optional int64 vcore_seconds = 7;
*/
public Builder clearVcoreSeconds() {
bitField0_ = (bitField0_ & ~0x00000040);
vcoreSeconds_ = 0L;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ApplicationResourceUsageReportProto)
}
static {
defaultInstance = new ApplicationResourceUsageReportProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ApplicationResourceUsageReportProto)
}
public interface ApplicationReportProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
boolean hasApplicationId();
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getApplicationId();
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getApplicationIdOrBuilder();
// optional string user = 2;
/**
* optional string user = 2;
*/
boolean hasUser();
/**
* optional string user = 2;
*/
java.lang.String getUser();
/**
* optional string user = 2;
*/
com.google.protobuf.ByteString
getUserBytes();
// optional string queue = 3;
/**
* optional string queue = 3;
*/
boolean hasQueue();
/**
* optional string queue = 3;
*/
java.lang.String getQueue();
/**
* optional string queue = 3;
*/
com.google.protobuf.ByteString
getQueueBytes();
// optional string name = 4;
/**
* optional string name = 4;
*/
boolean hasName();
/**
* optional string name = 4;
*/
java.lang.String getName();
/**
* optional string name = 4;
*/
com.google.protobuf.ByteString
getNameBytes();
// optional string host = 5;
/**
* optional string host = 5;
*/
boolean hasHost();
/**
* optional string host = 5;
*/
java.lang.String getHost();
/**
* optional string host = 5;
*/
com.google.protobuf.ByteString
getHostBytes();
// optional int32 rpc_port = 6;
/**
* optional int32 rpc_port = 6;
*/
boolean hasRpcPort();
/**
* optional int32 rpc_port = 6;
*/
int getRpcPort();
// optional .hadoop.common.TokenProto client_to_am_token = 7;
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
boolean hasClientToAmToken();
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
org.apache.hadoop.security.proto.SecurityProtos.TokenProto getClientToAmToken();
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder getClientToAmTokenOrBuilder();
// optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
/**
* optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
*/
boolean hasYarnApplicationState();
/**
* optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
*/
org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto getYarnApplicationState();
// optional string trackingUrl = 9;
/**
* optional string trackingUrl = 9;
*/
boolean hasTrackingUrl();
/**
* optional string trackingUrl = 9;
*/
java.lang.String getTrackingUrl();
/**
* optional string trackingUrl = 9;
*/
com.google.protobuf.ByteString
getTrackingUrlBytes();
// optional string diagnostics = 10 [default = "N/A"];
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
boolean hasDiagnostics();
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
java.lang.String getDiagnostics();
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
com.google.protobuf.ByteString
getDiagnosticsBytes();
// optional int64 startTime = 11;
/**
* optional int64 startTime = 11;
*/
boolean hasStartTime();
/**
* optional int64 startTime = 11;
*/
long getStartTime();
// optional int64 finishTime = 12;
/**
* optional int64 finishTime = 12;
*/
boolean hasFinishTime();
/**
* optional int64 finishTime = 12;
*/
long getFinishTime();
// optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
/**
* optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
*/
boolean hasFinalApplicationStatus();
/**
* optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
*/
org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto getFinalApplicationStatus();
// optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
boolean hasAppResourceUsage();
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto getAppResourceUsage();
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProtoOrBuilder getAppResourceUsageOrBuilder();
// optional string originalTrackingUrl = 15;
/**
* optional string originalTrackingUrl = 15;
*/
boolean hasOriginalTrackingUrl();
/**
* optional string originalTrackingUrl = 15;
*/
java.lang.String getOriginalTrackingUrl();
/**
* optional string originalTrackingUrl = 15;
*/
com.google.protobuf.ByteString
getOriginalTrackingUrlBytes();
// optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
boolean hasCurrentApplicationAttemptId();
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getCurrentApplicationAttemptId();
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder getCurrentApplicationAttemptIdOrBuilder();
// optional float progress = 17;
/**
* optional float progress = 17;
*/
boolean hasProgress();
/**
* optional float progress = 17;
*/
float getProgress();
// optional string applicationType = 18;
/**
* optional string applicationType = 18;
*/
boolean hasApplicationType();
/**
* optional string applicationType = 18;
*/
java.lang.String getApplicationType();
/**
* optional string applicationType = 18;
*/
com.google.protobuf.ByteString
getApplicationTypeBytes();
// optional .hadoop.common.TokenProto am_rm_token = 19;
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
boolean hasAmRmToken();
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
org.apache.hadoop.security.proto.SecurityProtos.TokenProto getAmRmToken();
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder getAmRmTokenOrBuilder();
// repeated string applicationTags = 20;
/**
* repeated string applicationTags = 20;
*/
java.util.List
getApplicationTagsList();
/**
* repeated string applicationTags = 20;
*/
int getApplicationTagsCount();
/**
* repeated string applicationTags = 20;
*/
java.lang.String getApplicationTags(int index);
/**
* repeated string applicationTags = 20;
*/
com.google.protobuf.ByteString
getApplicationTagsBytes(int index);
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationReportProto}
*/
public static final class ApplicationReportProto extends
com.google.protobuf.GeneratedMessage
implements ApplicationReportProtoOrBuilder {
// Use ApplicationReportProto.newBuilder() to construct.
private ApplicationReportProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ApplicationReportProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ApplicationReportProto defaultInstance;
public static ApplicationReportProto getDefaultInstance() {
return defaultInstance;
}
public ApplicationReportProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApplicationReportProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = applicationId_.toBuilder();
}
applicationId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(applicationId_);
applicationId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
bitField0_ |= 0x00000002;
user_ = input.readBytes();
break;
}
case 26: {
bitField0_ |= 0x00000004;
queue_ = input.readBytes();
break;
}
case 34: {
bitField0_ |= 0x00000008;
name_ = input.readBytes();
break;
}
case 42: {
bitField0_ |= 0x00000010;
host_ = input.readBytes();
break;
}
case 48: {
bitField0_ |= 0x00000020;
rpcPort_ = input.readInt32();
break;
}
case 58: {
org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000040) == 0x00000040)) {
subBuilder = clientToAmToken_.toBuilder();
}
clientToAmToken_ = input.readMessage(org.apache.hadoop.security.proto.SecurityProtos.TokenProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(clientToAmToken_);
clientToAmToken_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000040;
break;
}
case 64: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto value = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(8, rawValue);
} else {
bitField0_ |= 0x00000080;
yarnApplicationState_ = value;
}
break;
}
case 74: {
bitField0_ |= 0x00000100;
trackingUrl_ = input.readBytes();
break;
}
case 82: {
bitField0_ |= 0x00000200;
diagnostics_ = input.readBytes();
break;
}
case 88: {
bitField0_ |= 0x00000400;
startTime_ = input.readInt64();
break;
}
case 96: {
bitField0_ |= 0x00000800;
finishTime_ = input.readInt64();
break;
}
case 104: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto value = org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(13, rawValue);
} else {
bitField0_ |= 0x00001000;
finalApplicationStatus_ = value;
}
break;
}
case 114: {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.Builder subBuilder = null;
if (((bitField0_ & 0x00002000) == 0x00002000)) {
subBuilder = appResourceUsage_.toBuilder();
}
appResourceUsage_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(appResourceUsage_);
appResourceUsage_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00002000;
break;
}
case 122: {
bitField0_ |= 0x00004000;
originalTrackingUrl_ = input.readBytes();
break;
}
case 130: {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00008000) == 0x00008000)) {
subBuilder = currentApplicationAttemptId_.toBuilder();
}
currentApplicationAttemptId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(currentApplicationAttemptId_);
currentApplicationAttemptId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00008000;
break;
}
case 141: {
bitField0_ |= 0x00010000;
progress_ = input.readFloat();
break;
}
case 146: {
bitField0_ |= 0x00020000;
applicationType_ = input.readBytes();
break;
}
case 154: {
org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder subBuilder = null;
if (((bitField0_ & 0x00040000) == 0x00040000)) {
subBuilder = amRmToken_.toBuilder();
}
amRmToken_ = input.readMessage(org.apache.hadoop.security.proto.SecurityProtos.TokenProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(amRmToken_);
amRmToken_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00040000;
break;
}
case 162: {
if (!((mutable_bitField0_ & 0x00080000) == 0x00080000)) {
applicationTags_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00080000;
}
applicationTags_.add(input.readBytes());
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00080000) == 0x00080000)) {
applicationTags_ = new com.google.protobuf.UnmodifiableLazyStringList(applicationTags_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ApplicationReportProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApplicationReportProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
public static final int APPLICATIONID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto applicationId_;
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public boolean hasApplicationId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getApplicationId() {
return applicationId_;
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getApplicationIdOrBuilder() {
return applicationId_;
}
// optional string user = 2;
public static final int USER_FIELD_NUMBER = 2;
private java.lang.Object user_;
/**
* optional string user = 2;
*/
public boolean hasUser() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string user = 2;
*/
public java.lang.String getUser() {
java.lang.Object ref = user_;
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();
if (bs.isValidUtf8()) {
user_ = s;
}
return s;
}
}
/**
* optional string user = 2;
*/
public com.google.protobuf.ByteString
getUserBytes() {
java.lang.Object ref = user_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
user_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string queue = 3;
public static final int QUEUE_FIELD_NUMBER = 3;
private java.lang.Object queue_;
/**
* optional string queue = 3;
*/
public boolean hasQueue() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string queue = 3;
*/
public java.lang.String getQueue() {
java.lang.Object ref = queue_;
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();
if (bs.isValidUtf8()) {
queue_ = s;
}
return s;
}
}
/**
* optional string queue = 3;
*/
public com.google.protobuf.ByteString
getQueueBytes() {
java.lang.Object ref = queue_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
queue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string name = 4;
public static final int NAME_FIELD_NUMBER = 4;
private java.lang.Object name_;
/**
* optional string name = 4;
*/
public boolean hasName() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional string name = 4;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
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();
if (bs.isValidUtf8()) {
name_ = s;
}
return s;
}
}
/**
* optional string name = 4;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string host = 5;
public static final int HOST_FIELD_NUMBER = 5;
private java.lang.Object host_;
/**
* optional string host = 5;
*/
public boolean hasHost() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional string host = 5;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
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();
if (bs.isValidUtf8()) {
host_ = s;
}
return s;
}
}
/**
* optional string host = 5;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional int32 rpc_port = 6;
public static final int RPC_PORT_FIELD_NUMBER = 6;
private int rpcPort_;
/**
* optional int32 rpc_port = 6;
*/
public boolean hasRpcPort() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional int32 rpc_port = 6;
*/
public int getRpcPort() {
return rpcPort_;
}
// optional .hadoop.common.TokenProto client_to_am_token = 7;
public static final int CLIENT_TO_AM_TOKEN_FIELD_NUMBER = 7;
private org.apache.hadoop.security.proto.SecurityProtos.TokenProto clientToAmToken_;
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public boolean hasClientToAmToken() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProto getClientToAmToken() {
return clientToAmToken_;
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder getClientToAmTokenOrBuilder() {
return clientToAmToken_;
}
// optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
public static final int YARN_APPLICATION_STATE_FIELD_NUMBER = 8;
private org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto yarnApplicationState_;
/**
* optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
*/
public boolean hasYarnApplicationState() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto getYarnApplicationState() {
return yarnApplicationState_;
}
// optional string trackingUrl = 9;
public static final int TRACKINGURL_FIELD_NUMBER = 9;
private java.lang.Object trackingUrl_;
/**
* optional string trackingUrl = 9;
*/
public boolean hasTrackingUrl() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional string trackingUrl = 9;
*/
public java.lang.String getTrackingUrl() {
java.lang.Object ref = trackingUrl_;
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();
if (bs.isValidUtf8()) {
trackingUrl_ = s;
}
return s;
}
}
/**
* optional string trackingUrl = 9;
*/
public com.google.protobuf.ByteString
getTrackingUrlBytes() {
java.lang.Object ref = trackingUrl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
trackingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string diagnostics = 10 [default = "N/A"];
public static final int DIAGNOSTICS_FIELD_NUMBER = 10;
private java.lang.Object diagnostics_;
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
public boolean hasDiagnostics() {
return ((bitField0_ & 0x00000200) == 0x00000200);
}
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
public java.lang.String getDiagnostics() {
java.lang.Object ref = diagnostics_;
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();
if (bs.isValidUtf8()) {
diagnostics_ = s;
}
return s;
}
}
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
public com.google.protobuf.ByteString
getDiagnosticsBytes() {
java.lang.Object ref = diagnostics_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
diagnostics_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional int64 startTime = 11;
public static final int STARTTIME_FIELD_NUMBER = 11;
private long startTime_;
/**
* optional int64 startTime = 11;
*/
public boolean hasStartTime() {
return ((bitField0_ & 0x00000400) == 0x00000400);
}
/**
* optional int64 startTime = 11;
*/
public long getStartTime() {
return startTime_;
}
// optional int64 finishTime = 12;
public static final int FINISHTIME_FIELD_NUMBER = 12;
private long finishTime_;
/**
* optional int64 finishTime = 12;
*/
public boolean hasFinishTime() {
return ((bitField0_ & 0x00000800) == 0x00000800);
}
/**
* optional int64 finishTime = 12;
*/
public long getFinishTime() {
return finishTime_;
}
// optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
public static final int FINAL_APPLICATION_STATUS_FIELD_NUMBER = 13;
private org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto finalApplicationStatus_;
/**
* optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
*/
public boolean hasFinalApplicationStatus() {
return ((bitField0_ & 0x00001000) == 0x00001000);
}
/**
* optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto getFinalApplicationStatus() {
return finalApplicationStatus_;
}
// optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
public static final int APP_RESOURCE_USAGE_FIELD_NUMBER = 14;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto appResourceUsage_;
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public boolean hasAppResourceUsage() {
return ((bitField0_ & 0x00002000) == 0x00002000);
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto getAppResourceUsage() {
return appResourceUsage_;
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProtoOrBuilder getAppResourceUsageOrBuilder() {
return appResourceUsage_;
}
// optional string originalTrackingUrl = 15;
public static final int ORIGINALTRACKINGURL_FIELD_NUMBER = 15;
private java.lang.Object originalTrackingUrl_;
/**
* optional string originalTrackingUrl = 15;
*/
public boolean hasOriginalTrackingUrl() {
return ((bitField0_ & 0x00004000) == 0x00004000);
}
/**
* optional string originalTrackingUrl = 15;
*/
public java.lang.String getOriginalTrackingUrl() {
java.lang.Object ref = originalTrackingUrl_;
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();
if (bs.isValidUtf8()) {
originalTrackingUrl_ = s;
}
return s;
}
}
/**
* optional string originalTrackingUrl = 15;
*/
public com.google.protobuf.ByteString
getOriginalTrackingUrlBytes() {
java.lang.Object ref = originalTrackingUrl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
originalTrackingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
public static final int CURRENTAPPLICATIONATTEMPTID_FIELD_NUMBER = 16;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto currentApplicationAttemptId_;
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public boolean hasCurrentApplicationAttemptId() {
return ((bitField0_ & 0x00008000) == 0x00008000);
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getCurrentApplicationAttemptId() {
return currentApplicationAttemptId_;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder getCurrentApplicationAttemptIdOrBuilder() {
return currentApplicationAttemptId_;
}
// optional float progress = 17;
public static final int PROGRESS_FIELD_NUMBER = 17;
private float progress_;
/**
* optional float progress = 17;
*/
public boolean hasProgress() {
return ((bitField0_ & 0x00010000) == 0x00010000);
}
/**
* optional float progress = 17;
*/
public float getProgress() {
return progress_;
}
// optional string applicationType = 18;
public static final int APPLICATIONTYPE_FIELD_NUMBER = 18;
private java.lang.Object applicationType_;
/**
* optional string applicationType = 18;
*/
public boolean hasApplicationType() {
return ((bitField0_ & 0x00020000) == 0x00020000);
}
/**
* optional string applicationType = 18;
*/
public java.lang.String getApplicationType() {
java.lang.Object ref = applicationType_;
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();
if (bs.isValidUtf8()) {
applicationType_ = s;
}
return s;
}
}
/**
* optional string applicationType = 18;
*/
public com.google.protobuf.ByteString
getApplicationTypeBytes() {
java.lang.Object ref = applicationType_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
applicationType_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional .hadoop.common.TokenProto am_rm_token = 19;
public static final int AM_RM_TOKEN_FIELD_NUMBER = 19;
private org.apache.hadoop.security.proto.SecurityProtos.TokenProto amRmToken_;
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public boolean hasAmRmToken() {
return ((bitField0_ & 0x00040000) == 0x00040000);
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProto getAmRmToken() {
return amRmToken_;
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder getAmRmTokenOrBuilder() {
return amRmToken_;
}
// repeated string applicationTags = 20;
public static final int APPLICATIONTAGS_FIELD_NUMBER = 20;
private com.google.protobuf.LazyStringList applicationTags_;
/**
* repeated string applicationTags = 20;
*/
public java.util.List
getApplicationTagsList() {
return applicationTags_;
}
/**
* repeated string applicationTags = 20;
*/
public int getApplicationTagsCount() {
return applicationTags_.size();
}
/**
* repeated string applicationTags = 20;
*/
public java.lang.String getApplicationTags(int index) {
return applicationTags_.get(index);
}
/**
* repeated string applicationTags = 20;
*/
public com.google.protobuf.ByteString
getApplicationTagsBytes(int index) {
return applicationTags_.getByteString(index);
}
private void initFields() {
applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
user_ = "";
queue_ = "";
name_ = "";
host_ = "";
rpcPort_ = 0;
clientToAmToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
yarnApplicationState_ = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto.NEW;
trackingUrl_ = "";
diagnostics_ = "N/A";
startTime_ = 0L;
finishTime_ = 0L;
finalApplicationStatus_ = org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto.APP_UNDEFINED;
appResourceUsage_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.getDefaultInstance();
originalTrackingUrl_ = "";
currentApplicationAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
progress_ = 0F;
applicationType_ = "";
amRmToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
applicationTags_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
if (hasClientToAmToken()) {
if (!getClientToAmToken().isInitialized()) {
memoizedIsInitialized = 0;
return false;
}
}
if (hasAmRmToken()) {
if (!getAmRmToken().isInitialized()) {
memoizedIsInitialized = 0;
return false;
}
}
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, applicationId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getUserBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBytes(3, getQueueBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeBytes(4, getNameBytes());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeBytes(5, getHostBytes());
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt32(6, rpcPort_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeMessage(7, clientToAmToken_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
output.writeEnum(8, yarnApplicationState_.getNumber());
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
output.writeBytes(9, getTrackingUrlBytes());
}
if (((bitField0_ & 0x00000200) == 0x00000200)) {
output.writeBytes(10, getDiagnosticsBytes());
}
if (((bitField0_ & 0x00000400) == 0x00000400)) {
output.writeInt64(11, startTime_);
}
if (((bitField0_ & 0x00000800) == 0x00000800)) {
output.writeInt64(12, finishTime_);
}
if (((bitField0_ & 0x00001000) == 0x00001000)) {
output.writeEnum(13, finalApplicationStatus_.getNumber());
}
if (((bitField0_ & 0x00002000) == 0x00002000)) {
output.writeMessage(14, appResourceUsage_);
}
if (((bitField0_ & 0x00004000) == 0x00004000)) {
output.writeBytes(15, getOriginalTrackingUrlBytes());
}
if (((bitField0_ & 0x00008000) == 0x00008000)) {
output.writeMessage(16, currentApplicationAttemptId_);
}
if (((bitField0_ & 0x00010000) == 0x00010000)) {
output.writeFloat(17, progress_);
}
if (((bitField0_ & 0x00020000) == 0x00020000)) {
output.writeBytes(18, getApplicationTypeBytes());
}
if (((bitField0_ & 0x00040000) == 0x00040000)) {
output.writeMessage(19, amRmToken_);
}
for (int i = 0; i < applicationTags_.size(); i++) {
output.writeBytes(20, applicationTags_.getByteString(i));
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, applicationId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getUserBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, getQueueBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(4, getNameBytes());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(5, getHostBytes());
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, rpcPort_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(7, clientToAmToken_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(8, yarnApplicationState_.getNumber());
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(9, getTrackingUrlBytes());
}
if (((bitField0_ & 0x00000200) == 0x00000200)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(10, getDiagnosticsBytes());
}
if (((bitField0_ & 0x00000400) == 0x00000400)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(11, startTime_);
}
if (((bitField0_ & 0x00000800) == 0x00000800)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(12, finishTime_);
}
if (((bitField0_ & 0x00001000) == 0x00001000)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(13, finalApplicationStatus_.getNumber());
}
if (((bitField0_ & 0x00002000) == 0x00002000)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(14, appResourceUsage_);
}
if (((bitField0_ & 0x00004000) == 0x00004000)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(15, getOriginalTrackingUrlBytes());
}
if (((bitField0_ & 0x00008000) == 0x00008000)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(16, currentApplicationAttemptId_);
}
if (((bitField0_ & 0x00010000) == 0x00010000)) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(17, progress_);
}
if (((bitField0_ & 0x00020000) == 0x00020000)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(18, getApplicationTypeBytes());
}
if (((bitField0_ & 0x00040000) == 0x00040000)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(19, amRmToken_);
}
{
int dataSize = 0;
for (int i = 0; i < applicationTags_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(applicationTags_.getByteString(i));
}
size += dataSize;
size += 2 * getApplicationTagsList().size();
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto) obj;
boolean result = true;
result = result && (hasApplicationId() == other.hasApplicationId());
if (hasApplicationId()) {
result = result && getApplicationId()
.equals(other.getApplicationId());
}
result = result && (hasUser() == other.hasUser());
if (hasUser()) {
result = result && getUser()
.equals(other.getUser());
}
result = result && (hasQueue() == other.hasQueue());
if (hasQueue()) {
result = result && getQueue()
.equals(other.getQueue());
}
result = result && (hasName() == other.hasName());
if (hasName()) {
result = result && getName()
.equals(other.getName());
}
result = result && (hasHost() == other.hasHost());
if (hasHost()) {
result = result && getHost()
.equals(other.getHost());
}
result = result && (hasRpcPort() == other.hasRpcPort());
if (hasRpcPort()) {
result = result && (getRpcPort()
== other.getRpcPort());
}
result = result && (hasClientToAmToken() == other.hasClientToAmToken());
if (hasClientToAmToken()) {
result = result && getClientToAmToken()
.equals(other.getClientToAmToken());
}
result = result && (hasYarnApplicationState() == other.hasYarnApplicationState());
if (hasYarnApplicationState()) {
result = result &&
(getYarnApplicationState() == other.getYarnApplicationState());
}
result = result && (hasTrackingUrl() == other.hasTrackingUrl());
if (hasTrackingUrl()) {
result = result && getTrackingUrl()
.equals(other.getTrackingUrl());
}
result = result && (hasDiagnostics() == other.hasDiagnostics());
if (hasDiagnostics()) {
result = result && getDiagnostics()
.equals(other.getDiagnostics());
}
result = result && (hasStartTime() == other.hasStartTime());
if (hasStartTime()) {
result = result && (getStartTime()
== other.getStartTime());
}
result = result && (hasFinishTime() == other.hasFinishTime());
if (hasFinishTime()) {
result = result && (getFinishTime()
== other.getFinishTime());
}
result = result && (hasFinalApplicationStatus() == other.hasFinalApplicationStatus());
if (hasFinalApplicationStatus()) {
result = result &&
(getFinalApplicationStatus() == other.getFinalApplicationStatus());
}
result = result && (hasAppResourceUsage() == other.hasAppResourceUsage());
if (hasAppResourceUsage()) {
result = result && getAppResourceUsage()
.equals(other.getAppResourceUsage());
}
result = result && (hasOriginalTrackingUrl() == other.hasOriginalTrackingUrl());
if (hasOriginalTrackingUrl()) {
result = result && getOriginalTrackingUrl()
.equals(other.getOriginalTrackingUrl());
}
result = result && (hasCurrentApplicationAttemptId() == other.hasCurrentApplicationAttemptId());
if (hasCurrentApplicationAttemptId()) {
result = result && getCurrentApplicationAttemptId()
.equals(other.getCurrentApplicationAttemptId());
}
result = result && (hasProgress() == other.hasProgress());
if (hasProgress()) {
result = result && (Float.floatToIntBits(getProgress()) == Float.floatToIntBits(other.getProgress()));
}
result = result && (hasApplicationType() == other.hasApplicationType());
if (hasApplicationType()) {
result = result && getApplicationType()
.equals(other.getApplicationType());
}
result = result && (hasAmRmToken() == other.hasAmRmToken());
if (hasAmRmToken()) {
result = result && getAmRmToken()
.equals(other.getAmRmToken());
}
result = result && getApplicationTagsList()
.equals(other.getApplicationTagsList());
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasApplicationId()) {
hash = (37 * hash) + APPLICATIONID_FIELD_NUMBER;
hash = (53 * hash) + getApplicationId().hashCode();
}
if (hasUser()) {
hash = (37 * hash) + USER_FIELD_NUMBER;
hash = (53 * hash) + getUser().hashCode();
}
if (hasQueue()) {
hash = (37 * hash) + QUEUE_FIELD_NUMBER;
hash = (53 * hash) + getQueue().hashCode();
}
if (hasName()) {
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
}
if (hasHost()) {
hash = (37 * hash) + HOST_FIELD_NUMBER;
hash = (53 * hash) + getHost().hashCode();
}
if (hasRpcPort()) {
hash = (37 * hash) + RPC_PORT_FIELD_NUMBER;
hash = (53 * hash) + getRpcPort();
}
if (hasClientToAmToken()) {
hash = (37 * hash) + CLIENT_TO_AM_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getClientToAmToken().hashCode();
}
if (hasYarnApplicationState()) {
hash = (37 * hash) + YARN_APPLICATION_STATE_FIELD_NUMBER;
hash = (53 * hash) + hashEnum(getYarnApplicationState());
}
if (hasTrackingUrl()) {
hash = (37 * hash) + TRACKINGURL_FIELD_NUMBER;
hash = (53 * hash) + getTrackingUrl().hashCode();
}
if (hasDiagnostics()) {
hash = (37 * hash) + DIAGNOSTICS_FIELD_NUMBER;
hash = (53 * hash) + getDiagnostics().hashCode();
}
if (hasStartTime()) {
hash = (37 * hash) + STARTTIME_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getStartTime());
}
if (hasFinishTime()) {
hash = (37 * hash) + FINISHTIME_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getFinishTime());
}
if (hasFinalApplicationStatus()) {
hash = (37 * hash) + FINAL_APPLICATION_STATUS_FIELD_NUMBER;
hash = (53 * hash) + hashEnum(getFinalApplicationStatus());
}
if (hasAppResourceUsage()) {
hash = (37 * hash) + APP_RESOURCE_USAGE_FIELD_NUMBER;
hash = (53 * hash) + getAppResourceUsage().hashCode();
}
if (hasOriginalTrackingUrl()) {
hash = (37 * hash) + ORIGINALTRACKINGURL_FIELD_NUMBER;
hash = (53 * hash) + getOriginalTrackingUrl().hashCode();
}
if (hasCurrentApplicationAttemptId()) {
hash = (37 * hash) + CURRENTAPPLICATIONATTEMPTID_FIELD_NUMBER;
hash = (53 * hash) + getCurrentApplicationAttemptId().hashCode();
}
if (hasProgress()) {
hash = (37 * hash) + PROGRESS_FIELD_NUMBER;
hash = (53 * hash) + Float.floatToIntBits(
getProgress());
}
if (hasApplicationType()) {
hash = (37 * hash) + APPLICATIONTYPE_FIELD_NUMBER;
hash = (53 * hash) + getApplicationType().hashCode();
}
if (hasAmRmToken()) {
hash = (37 * hash) + AM_RM_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getAmRmToken().hashCode();
}
if (getApplicationTagsCount() > 0) {
hash = (37 * hash) + APPLICATIONTAGS_FIELD_NUMBER;
hash = (53 * hash) + getApplicationTagsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationReportProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getApplicationIdFieldBuilder();
getClientToAmTokenFieldBuilder();
getAppResourceUsageFieldBuilder();
getCurrentApplicationAttemptIdFieldBuilder();
getAmRmTokenFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (applicationIdBuilder_ == null) {
applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
} else {
applicationIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
user_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
queue_ = "";
bitField0_ = (bitField0_ & ~0x00000004);
name_ = "";
bitField0_ = (bitField0_ & ~0x00000008);
host_ = "";
bitField0_ = (bitField0_ & ~0x00000010);
rpcPort_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
if (clientToAmTokenBuilder_ == null) {
clientToAmToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
} else {
clientToAmTokenBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000040);
yarnApplicationState_ = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto.NEW;
bitField0_ = (bitField0_ & ~0x00000080);
trackingUrl_ = "";
bitField0_ = (bitField0_ & ~0x00000100);
diagnostics_ = "N/A";
bitField0_ = (bitField0_ & ~0x00000200);
startTime_ = 0L;
bitField0_ = (bitField0_ & ~0x00000400);
finishTime_ = 0L;
bitField0_ = (bitField0_ & ~0x00000800);
finalApplicationStatus_ = org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto.APP_UNDEFINED;
bitField0_ = (bitField0_ & ~0x00001000);
if (appResourceUsageBuilder_ == null) {
appResourceUsage_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.getDefaultInstance();
} else {
appResourceUsageBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00002000);
originalTrackingUrl_ = "";
bitField0_ = (bitField0_ & ~0x00004000);
if (currentApplicationAttemptIdBuilder_ == null) {
currentApplicationAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
} else {
currentApplicationAttemptIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00008000);
progress_ = 0F;
bitField0_ = (bitField0_ & ~0x00010000);
applicationType_ = "";
bitField0_ = (bitField0_ & ~0x00020000);
if (amRmTokenBuilder_ == null) {
amRmToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
} else {
amRmTokenBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00040000);
applicationTags_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00080000);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationReportProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (applicationIdBuilder_ == null) {
result.applicationId_ = applicationId_;
} else {
result.applicationId_ = applicationIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.user_ = user_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.queue_ = queue_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.name_ = name_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.host_ = host_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.rpcPort_ = rpcPort_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
if (clientToAmTokenBuilder_ == null) {
result.clientToAmToken_ = clientToAmToken_;
} else {
result.clientToAmToken_ = clientToAmTokenBuilder_.build();
}
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
result.yarnApplicationState_ = yarnApplicationState_;
if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
to_bitField0_ |= 0x00000100;
}
result.trackingUrl_ = trackingUrl_;
if (((from_bitField0_ & 0x00000200) == 0x00000200)) {
to_bitField0_ |= 0x00000200;
}
result.diagnostics_ = diagnostics_;
if (((from_bitField0_ & 0x00000400) == 0x00000400)) {
to_bitField0_ |= 0x00000400;
}
result.startTime_ = startTime_;
if (((from_bitField0_ & 0x00000800) == 0x00000800)) {
to_bitField0_ |= 0x00000800;
}
result.finishTime_ = finishTime_;
if (((from_bitField0_ & 0x00001000) == 0x00001000)) {
to_bitField0_ |= 0x00001000;
}
result.finalApplicationStatus_ = finalApplicationStatus_;
if (((from_bitField0_ & 0x00002000) == 0x00002000)) {
to_bitField0_ |= 0x00002000;
}
if (appResourceUsageBuilder_ == null) {
result.appResourceUsage_ = appResourceUsage_;
} else {
result.appResourceUsage_ = appResourceUsageBuilder_.build();
}
if (((from_bitField0_ & 0x00004000) == 0x00004000)) {
to_bitField0_ |= 0x00004000;
}
result.originalTrackingUrl_ = originalTrackingUrl_;
if (((from_bitField0_ & 0x00008000) == 0x00008000)) {
to_bitField0_ |= 0x00008000;
}
if (currentApplicationAttemptIdBuilder_ == null) {
result.currentApplicationAttemptId_ = currentApplicationAttemptId_;
} else {
result.currentApplicationAttemptId_ = currentApplicationAttemptIdBuilder_.build();
}
if (((from_bitField0_ & 0x00010000) == 0x00010000)) {
to_bitField0_ |= 0x00010000;
}
result.progress_ = progress_;
if (((from_bitField0_ & 0x00020000) == 0x00020000)) {
to_bitField0_ |= 0x00020000;
}
result.applicationType_ = applicationType_;
if (((from_bitField0_ & 0x00040000) == 0x00040000)) {
to_bitField0_ |= 0x00040000;
}
if (amRmTokenBuilder_ == null) {
result.amRmToken_ = amRmToken_;
} else {
result.amRmToken_ = amRmTokenBuilder_.build();
}
if (((bitField0_ & 0x00080000) == 0x00080000)) {
applicationTags_ = new com.google.protobuf.UnmodifiableLazyStringList(
applicationTags_);
bitField0_ = (bitField0_ & ~0x00080000);
}
result.applicationTags_ = applicationTags_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.getDefaultInstance()) return this;
if (other.hasApplicationId()) {
mergeApplicationId(other.getApplicationId());
}
if (other.hasUser()) {
bitField0_ |= 0x00000002;
user_ = other.user_;
onChanged();
}
if (other.hasQueue()) {
bitField0_ |= 0x00000004;
queue_ = other.queue_;
onChanged();
}
if (other.hasName()) {
bitField0_ |= 0x00000008;
name_ = other.name_;
onChanged();
}
if (other.hasHost()) {
bitField0_ |= 0x00000010;
host_ = other.host_;
onChanged();
}
if (other.hasRpcPort()) {
setRpcPort(other.getRpcPort());
}
if (other.hasClientToAmToken()) {
mergeClientToAmToken(other.getClientToAmToken());
}
if (other.hasYarnApplicationState()) {
setYarnApplicationState(other.getYarnApplicationState());
}
if (other.hasTrackingUrl()) {
bitField0_ |= 0x00000100;
trackingUrl_ = other.trackingUrl_;
onChanged();
}
if (other.hasDiagnostics()) {
bitField0_ |= 0x00000200;
diagnostics_ = other.diagnostics_;
onChanged();
}
if (other.hasStartTime()) {
setStartTime(other.getStartTime());
}
if (other.hasFinishTime()) {
setFinishTime(other.getFinishTime());
}
if (other.hasFinalApplicationStatus()) {
setFinalApplicationStatus(other.getFinalApplicationStatus());
}
if (other.hasAppResourceUsage()) {
mergeAppResourceUsage(other.getAppResourceUsage());
}
if (other.hasOriginalTrackingUrl()) {
bitField0_ |= 0x00004000;
originalTrackingUrl_ = other.originalTrackingUrl_;
onChanged();
}
if (other.hasCurrentApplicationAttemptId()) {
mergeCurrentApplicationAttemptId(other.getCurrentApplicationAttemptId());
}
if (other.hasProgress()) {
setProgress(other.getProgress());
}
if (other.hasApplicationType()) {
bitField0_ |= 0x00020000;
applicationType_ = other.applicationType_;
onChanged();
}
if (other.hasAmRmToken()) {
mergeAmRmToken(other.getAmRmToken());
}
if (!other.applicationTags_.isEmpty()) {
if (applicationTags_.isEmpty()) {
applicationTags_ = other.applicationTags_;
bitField0_ = (bitField0_ & ~0x00080000);
} else {
ensureApplicationTagsIsMutable();
applicationTags_.addAll(other.applicationTags_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
if (hasClientToAmToken()) {
if (!getClientToAmToken().isInitialized()) {
return false;
}
}
if (hasAmRmToken()) {
if (!getAmRmToken().isInitialized()) {
return false;
}
}
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder> applicationIdBuilder_;
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public boolean hasApplicationId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getApplicationId() {
if (applicationIdBuilder_ == null) {
return applicationId_;
} else {
return applicationIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public Builder setApplicationId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto value) {
if (applicationIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
applicationId_ = value;
onChanged();
} else {
applicationIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public Builder setApplicationId(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder builderForValue) {
if (applicationIdBuilder_ == null) {
applicationId_ = builderForValue.build();
onChanged();
} else {
applicationIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public Builder mergeApplicationId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto value) {
if (applicationIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
applicationId_ != org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance()) {
applicationId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.newBuilder(applicationId_).mergeFrom(value).buildPartial();
} else {
applicationId_ = value;
}
onChanged();
} else {
applicationIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public Builder clearApplicationId() {
if (applicationIdBuilder_ == null) {
applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
onChanged();
} else {
applicationIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder getApplicationIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getApplicationIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getApplicationIdOrBuilder() {
if (applicationIdBuilder_ != null) {
return applicationIdBuilder_.getMessageOrBuilder();
} else {
return applicationId_;
}
}
/**
* optional .hadoop.yarn.ApplicationIdProto applicationId = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder>
getApplicationIdFieldBuilder() {
if (applicationIdBuilder_ == null) {
applicationIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder>(
applicationId_,
getParentForChildren(),
isClean());
applicationId_ = null;
}
return applicationIdBuilder_;
}
// optional string user = 2;
private java.lang.Object user_ = "";
/**
* optional string user = 2;
*/
public boolean hasUser() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string user = 2;
*/
public java.lang.String getUser() {
java.lang.Object ref = user_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
user_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string user = 2;
*/
public com.google.protobuf.ByteString
getUserBytes() {
java.lang.Object ref = user_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
user_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string user = 2;
*/
public Builder setUser(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
user_ = value;
onChanged();
return this;
}
/**
* optional string user = 2;
*/
public Builder clearUser() {
bitField0_ = (bitField0_ & ~0x00000002);
user_ = getDefaultInstance().getUser();
onChanged();
return this;
}
/**
* optional string user = 2;
*/
public Builder setUserBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
user_ = value;
onChanged();
return this;
}
// optional string queue = 3;
private java.lang.Object queue_ = "";
/**
* optional string queue = 3;
*/
public boolean hasQueue() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string queue = 3;
*/
public java.lang.String getQueue() {
java.lang.Object ref = queue_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
queue_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string queue = 3;
*/
public com.google.protobuf.ByteString
getQueueBytes() {
java.lang.Object ref = queue_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
queue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string queue = 3;
*/
public Builder setQueue(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
queue_ = value;
onChanged();
return this;
}
/**
* optional string queue = 3;
*/
public Builder clearQueue() {
bitField0_ = (bitField0_ & ~0x00000004);
queue_ = getDefaultInstance().getQueue();
onChanged();
return this;
}
/**
* optional string queue = 3;
*/
public Builder setQueueBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
queue_ = value;
onChanged();
return this;
}
// optional string name = 4;
private java.lang.Object name_ = "";
/**
* optional string name = 4;
*/
public boolean hasName() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional string name = 4;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string name = 4;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string name = 4;
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
name_ = value;
onChanged();
return this;
}
/**
* optional string name = 4;
*/
public Builder clearName() {
bitField0_ = (bitField0_ & ~0x00000008);
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
* optional string name = 4;
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
name_ = value;
onChanged();
return this;
}
// optional string host = 5;
private java.lang.Object host_ = "";
/**
* optional string host = 5;
*/
public boolean hasHost() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional string host = 5;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
host_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string host = 5;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string host = 5;
*/
public Builder setHost(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
host_ = value;
onChanged();
return this;
}
/**
* optional string host = 5;
*/
public Builder clearHost() {
bitField0_ = (bitField0_ & ~0x00000010);
host_ = getDefaultInstance().getHost();
onChanged();
return this;
}
/**
* optional string host = 5;
*/
public Builder setHostBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
host_ = value;
onChanged();
return this;
}
// optional int32 rpc_port = 6;
private int rpcPort_ ;
/**
* optional int32 rpc_port = 6;
*/
public boolean hasRpcPort() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional int32 rpc_port = 6;
*/
public int getRpcPort() {
return rpcPort_;
}
/**
* optional int32 rpc_port = 6;
*/
public Builder setRpcPort(int value) {
bitField0_ |= 0x00000020;
rpcPort_ = value;
onChanged();
return this;
}
/**
* optional int32 rpc_port = 6;
*/
public Builder clearRpcPort() {
bitField0_ = (bitField0_ & ~0x00000020);
rpcPort_ = 0;
onChanged();
return this;
}
// optional .hadoop.common.TokenProto client_to_am_token = 7;
private org.apache.hadoop.security.proto.SecurityProtos.TokenProto clientToAmToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.security.proto.SecurityProtos.TokenProto, org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder, org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder> clientToAmTokenBuilder_;
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public boolean hasClientToAmToken() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProto getClientToAmToken() {
if (clientToAmTokenBuilder_ == null) {
return clientToAmToken_;
} else {
return clientToAmTokenBuilder_.getMessage();
}
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public Builder setClientToAmToken(org.apache.hadoop.security.proto.SecurityProtos.TokenProto value) {
if (clientToAmTokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
clientToAmToken_ = value;
onChanged();
} else {
clientToAmTokenBuilder_.setMessage(value);
}
bitField0_ |= 0x00000040;
return this;
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public Builder setClientToAmToken(
org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder builderForValue) {
if (clientToAmTokenBuilder_ == null) {
clientToAmToken_ = builderForValue.build();
onChanged();
} else {
clientToAmTokenBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000040;
return this;
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public Builder mergeClientToAmToken(org.apache.hadoop.security.proto.SecurityProtos.TokenProto value) {
if (clientToAmTokenBuilder_ == null) {
if (((bitField0_ & 0x00000040) == 0x00000040) &&
clientToAmToken_ != org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance()) {
clientToAmToken_ =
org.apache.hadoop.security.proto.SecurityProtos.TokenProto.newBuilder(clientToAmToken_).mergeFrom(value).buildPartial();
} else {
clientToAmToken_ = value;
}
onChanged();
} else {
clientToAmTokenBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000040;
return this;
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public Builder clearClientToAmToken() {
if (clientToAmTokenBuilder_ == null) {
clientToAmToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
onChanged();
} else {
clientToAmTokenBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder getClientToAmTokenBuilder() {
bitField0_ |= 0x00000040;
onChanged();
return getClientToAmTokenFieldBuilder().getBuilder();
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder getClientToAmTokenOrBuilder() {
if (clientToAmTokenBuilder_ != null) {
return clientToAmTokenBuilder_.getMessageOrBuilder();
} else {
return clientToAmToken_;
}
}
/**
* optional .hadoop.common.TokenProto client_to_am_token = 7;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.security.proto.SecurityProtos.TokenProto, org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder, org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder>
getClientToAmTokenFieldBuilder() {
if (clientToAmTokenBuilder_ == null) {
clientToAmTokenBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.security.proto.SecurityProtos.TokenProto, org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder, org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder>(
clientToAmToken_,
getParentForChildren(),
isClean());
clientToAmToken_ = null;
}
return clientToAmTokenBuilder_;
}
// optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
private org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto yarnApplicationState_ = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto.NEW;
/**
* optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
*/
public boolean hasYarnApplicationState() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto getYarnApplicationState() {
return yarnApplicationState_;
}
/**
* optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
*/
public Builder setYarnApplicationState(org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000080;
yarnApplicationState_ = value;
onChanged();
return this;
}
/**
* optional .hadoop.yarn.YarnApplicationStateProto yarn_application_state = 8;
*/
public Builder clearYarnApplicationState() {
bitField0_ = (bitField0_ & ~0x00000080);
yarnApplicationState_ = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto.NEW;
onChanged();
return this;
}
// optional string trackingUrl = 9;
private java.lang.Object trackingUrl_ = "";
/**
* optional string trackingUrl = 9;
*/
public boolean hasTrackingUrl() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional string trackingUrl = 9;
*/
public java.lang.String getTrackingUrl() {
java.lang.Object ref = trackingUrl_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
trackingUrl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string trackingUrl = 9;
*/
public com.google.protobuf.ByteString
getTrackingUrlBytes() {
java.lang.Object ref = trackingUrl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
trackingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string trackingUrl = 9;
*/
public Builder setTrackingUrl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000100;
trackingUrl_ = value;
onChanged();
return this;
}
/**
* optional string trackingUrl = 9;
*/
public Builder clearTrackingUrl() {
bitField0_ = (bitField0_ & ~0x00000100);
trackingUrl_ = getDefaultInstance().getTrackingUrl();
onChanged();
return this;
}
/**
* optional string trackingUrl = 9;
*/
public Builder setTrackingUrlBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000100;
trackingUrl_ = value;
onChanged();
return this;
}
// optional string diagnostics = 10 [default = "N/A"];
private java.lang.Object diagnostics_ = "N/A";
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
public boolean hasDiagnostics() {
return ((bitField0_ & 0x00000200) == 0x00000200);
}
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
public java.lang.String getDiagnostics() {
java.lang.Object ref = diagnostics_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
diagnostics_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
public com.google.protobuf.ByteString
getDiagnosticsBytes() {
java.lang.Object ref = diagnostics_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
diagnostics_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
public Builder setDiagnostics(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000200;
diagnostics_ = value;
onChanged();
return this;
}
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
public Builder clearDiagnostics() {
bitField0_ = (bitField0_ & ~0x00000200);
diagnostics_ = getDefaultInstance().getDiagnostics();
onChanged();
return this;
}
/**
* optional string diagnostics = 10 [default = "N/A"];
*/
public Builder setDiagnosticsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000200;
diagnostics_ = value;
onChanged();
return this;
}
// optional int64 startTime = 11;
private long startTime_ ;
/**
* optional int64 startTime = 11;
*/
public boolean hasStartTime() {
return ((bitField0_ & 0x00000400) == 0x00000400);
}
/**
* optional int64 startTime = 11;
*/
public long getStartTime() {
return startTime_;
}
/**
* optional int64 startTime = 11;
*/
public Builder setStartTime(long value) {
bitField0_ |= 0x00000400;
startTime_ = value;
onChanged();
return this;
}
/**
* optional int64 startTime = 11;
*/
public Builder clearStartTime() {
bitField0_ = (bitField0_ & ~0x00000400);
startTime_ = 0L;
onChanged();
return this;
}
// optional int64 finishTime = 12;
private long finishTime_ ;
/**
* optional int64 finishTime = 12;
*/
public boolean hasFinishTime() {
return ((bitField0_ & 0x00000800) == 0x00000800);
}
/**
* optional int64 finishTime = 12;
*/
public long getFinishTime() {
return finishTime_;
}
/**
* optional int64 finishTime = 12;
*/
public Builder setFinishTime(long value) {
bitField0_ |= 0x00000800;
finishTime_ = value;
onChanged();
return this;
}
/**
* optional int64 finishTime = 12;
*/
public Builder clearFinishTime() {
bitField0_ = (bitField0_ & ~0x00000800);
finishTime_ = 0L;
onChanged();
return this;
}
// optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
private org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto finalApplicationStatus_ = org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto.APP_UNDEFINED;
/**
* optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
*/
public boolean hasFinalApplicationStatus() {
return ((bitField0_ & 0x00001000) == 0x00001000);
}
/**
* optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto getFinalApplicationStatus() {
return finalApplicationStatus_;
}
/**
* optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
*/
public Builder setFinalApplicationStatus(org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00001000;
finalApplicationStatus_ = value;
onChanged();
return this;
}
/**
* optional .hadoop.yarn.FinalApplicationStatusProto final_application_status = 13;
*/
public Builder clearFinalApplicationStatus() {
bitField0_ = (bitField0_ & ~0x00001000);
finalApplicationStatus_ = org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto.APP_UNDEFINED;
onChanged();
return this;
}
// optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto appResourceUsage_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProtoOrBuilder> appResourceUsageBuilder_;
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public boolean hasAppResourceUsage() {
return ((bitField0_ & 0x00002000) == 0x00002000);
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto getAppResourceUsage() {
if (appResourceUsageBuilder_ == null) {
return appResourceUsage_;
} else {
return appResourceUsageBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public Builder setAppResourceUsage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto value) {
if (appResourceUsageBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
appResourceUsage_ = value;
onChanged();
} else {
appResourceUsageBuilder_.setMessage(value);
}
bitField0_ |= 0x00002000;
return this;
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public Builder setAppResourceUsage(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.Builder builderForValue) {
if (appResourceUsageBuilder_ == null) {
appResourceUsage_ = builderForValue.build();
onChanged();
} else {
appResourceUsageBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00002000;
return this;
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public Builder mergeAppResourceUsage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto value) {
if (appResourceUsageBuilder_ == null) {
if (((bitField0_ & 0x00002000) == 0x00002000) &&
appResourceUsage_ != org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.getDefaultInstance()) {
appResourceUsage_ =
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.newBuilder(appResourceUsage_).mergeFrom(value).buildPartial();
} else {
appResourceUsage_ = value;
}
onChanged();
} else {
appResourceUsageBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00002000;
return this;
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public Builder clearAppResourceUsage() {
if (appResourceUsageBuilder_ == null) {
appResourceUsage_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.getDefaultInstance();
onChanged();
} else {
appResourceUsageBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00002000);
return this;
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.Builder getAppResourceUsageBuilder() {
bitField0_ |= 0x00002000;
onChanged();
return getAppResourceUsageFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProtoOrBuilder getAppResourceUsageOrBuilder() {
if (appResourceUsageBuilder_ != null) {
return appResourceUsageBuilder_.getMessageOrBuilder();
} else {
return appResourceUsage_;
}
}
/**
* optional .hadoop.yarn.ApplicationResourceUsageReportProto app_resource_Usage = 14;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProtoOrBuilder>
getAppResourceUsageFieldBuilder() {
if (appResourceUsageBuilder_ == null) {
appResourceUsageBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProtoOrBuilder>(
appResourceUsage_,
getParentForChildren(),
isClean());
appResourceUsage_ = null;
}
return appResourceUsageBuilder_;
}
// optional string originalTrackingUrl = 15;
private java.lang.Object originalTrackingUrl_ = "";
/**
* optional string originalTrackingUrl = 15;
*/
public boolean hasOriginalTrackingUrl() {
return ((bitField0_ & 0x00004000) == 0x00004000);
}
/**
* optional string originalTrackingUrl = 15;
*/
public java.lang.String getOriginalTrackingUrl() {
java.lang.Object ref = originalTrackingUrl_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
originalTrackingUrl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string originalTrackingUrl = 15;
*/
public com.google.protobuf.ByteString
getOriginalTrackingUrlBytes() {
java.lang.Object ref = originalTrackingUrl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
originalTrackingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string originalTrackingUrl = 15;
*/
public Builder setOriginalTrackingUrl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00004000;
originalTrackingUrl_ = value;
onChanged();
return this;
}
/**
* optional string originalTrackingUrl = 15;
*/
public Builder clearOriginalTrackingUrl() {
bitField0_ = (bitField0_ & ~0x00004000);
originalTrackingUrl_ = getDefaultInstance().getOriginalTrackingUrl();
onChanged();
return this;
}
/**
* optional string originalTrackingUrl = 15;
*/
public Builder setOriginalTrackingUrlBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00004000;
originalTrackingUrl_ = value;
onChanged();
return this;
}
// optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto currentApplicationAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder> currentApplicationAttemptIdBuilder_;
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public boolean hasCurrentApplicationAttemptId() {
return ((bitField0_ & 0x00008000) == 0x00008000);
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getCurrentApplicationAttemptId() {
if (currentApplicationAttemptIdBuilder_ == null) {
return currentApplicationAttemptId_;
} else {
return currentApplicationAttemptIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public Builder setCurrentApplicationAttemptId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto value) {
if (currentApplicationAttemptIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
currentApplicationAttemptId_ = value;
onChanged();
} else {
currentApplicationAttemptIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00008000;
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public Builder setCurrentApplicationAttemptId(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder builderForValue) {
if (currentApplicationAttemptIdBuilder_ == null) {
currentApplicationAttemptId_ = builderForValue.build();
onChanged();
} else {
currentApplicationAttemptIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00008000;
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public Builder mergeCurrentApplicationAttemptId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto value) {
if (currentApplicationAttemptIdBuilder_ == null) {
if (((bitField0_ & 0x00008000) == 0x00008000) &&
currentApplicationAttemptId_ != org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance()) {
currentApplicationAttemptId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.newBuilder(currentApplicationAttemptId_).mergeFrom(value).buildPartial();
} else {
currentApplicationAttemptId_ = value;
}
onChanged();
} else {
currentApplicationAttemptIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00008000;
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public Builder clearCurrentApplicationAttemptId() {
if (currentApplicationAttemptIdBuilder_ == null) {
currentApplicationAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
onChanged();
} else {
currentApplicationAttemptIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00008000);
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder getCurrentApplicationAttemptIdBuilder() {
bitField0_ |= 0x00008000;
onChanged();
return getCurrentApplicationAttemptIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder getCurrentApplicationAttemptIdOrBuilder() {
if (currentApplicationAttemptIdBuilder_ != null) {
return currentApplicationAttemptIdBuilder_.getMessageOrBuilder();
} else {
return currentApplicationAttemptId_;
}
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto currentApplicationAttemptId = 16;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder>
getCurrentApplicationAttemptIdFieldBuilder() {
if (currentApplicationAttemptIdBuilder_ == null) {
currentApplicationAttemptIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder>(
currentApplicationAttemptId_,
getParentForChildren(),
isClean());
currentApplicationAttemptId_ = null;
}
return currentApplicationAttemptIdBuilder_;
}
// optional float progress = 17;
private float progress_ ;
/**
* optional float progress = 17;
*/
public boolean hasProgress() {
return ((bitField0_ & 0x00010000) == 0x00010000);
}
/**
* optional float progress = 17;
*/
public float getProgress() {
return progress_;
}
/**
* optional float progress = 17;
*/
public Builder setProgress(float value) {
bitField0_ |= 0x00010000;
progress_ = value;
onChanged();
return this;
}
/**
* optional float progress = 17;
*/
public Builder clearProgress() {
bitField0_ = (bitField0_ & ~0x00010000);
progress_ = 0F;
onChanged();
return this;
}
// optional string applicationType = 18;
private java.lang.Object applicationType_ = "";
/**
* optional string applicationType = 18;
*/
public boolean hasApplicationType() {
return ((bitField0_ & 0x00020000) == 0x00020000);
}
/**
* optional string applicationType = 18;
*/
public java.lang.String getApplicationType() {
java.lang.Object ref = applicationType_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
applicationType_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string applicationType = 18;
*/
public com.google.protobuf.ByteString
getApplicationTypeBytes() {
java.lang.Object ref = applicationType_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
applicationType_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string applicationType = 18;
*/
public Builder setApplicationType(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00020000;
applicationType_ = value;
onChanged();
return this;
}
/**
* optional string applicationType = 18;
*/
public Builder clearApplicationType() {
bitField0_ = (bitField0_ & ~0x00020000);
applicationType_ = getDefaultInstance().getApplicationType();
onChanged();
return this;
}
/**
* optional string applicationType = 18;
*/
public Builder setApplicationTypeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00020000;
applicationType_ = value;
onChanged();
return this;
}
// optional .hadoop.common.TokenProto am_rm_token = 19;
private org.apache.hadoop.security.proto.SecurityProtos.TokenProto amRmToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.security.proto.SecurityProtos.TokenProto, org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder, org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder> amRmTokenBuilder_;
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public boolean hasAmRmToken() {
return ((bitField0_ & 0x00040000) == 0x00040000);
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProto getAmRmToken() {
if (amRmTokenBuilder_ == null) {
return amRmToken_;
} else {
return amRmTokenBuilder_.getMessage();
}
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public Builder setAmRmToken(org.apache.hadoop.security.proto.SecurityProtos.TokenProto value) {
if (amRmTokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
amRmToken_ = value;
onChanged();
} else {
amRmTokenBuilder_.setMessage(value);
}
bitField0_ |= 0x00040000;
return this;
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public Builder setAmRmToken(
org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder builderForValue) {
if (amRmTokenBuilder_ == null) {
amRmToken_ = builderForValue.build();
onChanged();
} else {
amRmTokenBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00040000;
return this;
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public Builder mergeAmRmToken(org.apache.hadoop.security.proto.SecurityProtos.TokenProto value) {
if (amRmTokenBuilder_ == null) {
if (((bitField0_ & 0x00040000) == 0x00040000) &&
amRmToken_ != org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance()) {
amRmToken_ =
org.apache.hadoop.security.proto.SecurityProtos.TokenProto.newBuilder(amRmToken_).mergeFrom(value).buildPartial();
} else {
amRmToken_ = value;
}
onChanged();
} else {
amRmTokenBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00040000;
return this;
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public Builder clearAmRmToken() {
if (amRmTokenBuilder_ == null) {
amRmToken_ = org.apache.hadoop.security.proto.SecurityProtos.TokenProto.getDefaultInstance();
onChanged();
} else {
amRmTokenBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00040000);
return this;
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder getAmRmTokenBuilder() {
bitField0_ |= 0x00040000;
onChanged();
return getAmRmTokenFieldBuilder().getBuilder();
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
public org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder getAmRmTokenOrBuilder() {
if (amRmTokenBuilder_ != null) {
return amRmTokenBuilder_.getMessageOrBuilder();
} else {
return amRmToken_;
}
}
/**
* optional .hadoop.common.TokenProto am_rm_token = 19;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.security.proto.SecurityProtos.TokenProto, org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder, org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder>
getAmRmTokenFieldBuilder() {
if (amRmTokenBuilder_ == null) {
amRmTokenBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.security.proto.SecurityProtos.TokenProto, org.apache.hadoop.security.proto.SecurityProtos.TokenProto.Builder, org.apache.hadoop.security.proto.SecurityProtos.TokenProtoOrBuilder>(
amRmToken_,
getParentForChildren(),
isClean());
amRmToken_ = null;
}
return amRmTokenBuilder_;
}
// repeated string applicationTags = 20;
private com.google.protobuf.LazyStringList applicationTags_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureApplicationTagsIsMutable() {
if (!((bitField0_ & 0x00080000) == 0x00080000)) {
applicationTags_ = new com.google.protobuf.LazyStringArrayList(applicationTags_);
bitField0_ |= 0x00080000;
}
}
/**
* repeated string applicationTags = 20;
*/
public java.util.List
getApplicationTagsList() {
return java.util.Collections.unmodifiableList(applicationTags_);
}
/**
* repeated string applicationTags = 20;
*/
public int getApplicationTagsCount() {
return applicationTags_.size();
}
/**
* repeated string applicationTags = 20;
*/
public java.lang.String getApplicationTags(int index) {
return applicationTags_.get(index);
}
/**
* repeated string applicationTags = 20;
*/
public com.google.protobuf.ByteString
getApplicationTagsBytes(int index) {
return applicationTags_.getByteString(index);
}
/**
* repeated string applicationTags = 20;
*/
public Builder setApplicationTags(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureApplicationTagsIsMutable();
applicationTags_.set(index, value);
onChanged();
return this;
}
/**
* repeated string applicationTags = 20;
*/
public Builder addApplicationTags(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureApplicationTagsIsMutable();
applicationTags_.add(value);
onChanged();
return this;
}
/**
* repeated string applicationTags = 20;
*/
public Builder addAllApplicationTags(
java.lang.Iterable values) {
ensureApplicationTagsIsMutable();
super.addAll(values, applicationTags_);
onChanged();
return this;
}
/**
* repeated string applicationTags = 20;
*/
public Builder clearApplicationTags() {
applicationTags_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00080000);
onChanged();
return this;
}
/**
* repeated string applicationTags = 20;
*/
public Builder addApplicationTagsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
ensureApplicationTagsIsMutable();
applicationTags_.add(value);
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ApplicationReportProto)
}
static {
defaultInstance = new ApplicationReportProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ApplicationReportProto)
}
public interface ApplicationAttemptReportProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
boolean hasApplicationAttemptId();
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getApplicationAttemptId();
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder getApplicationAttemptIdOrBuilder();
// optional string host = 2;
/**
* optional string host = 2;
*/
boolean hasHost();
/**
* optional string host = 2;
*/
java.lang.String getHost();
/**
* optional string host = 2;
*/
com.google.protobuf.ByteString
getHostBytes();
// optional int32 rpc_port = 3;
/**
* optional int32 rpc_port = 3;
*/
boolean hasRpcPort();
/**
* optional int32 rpc_port = 3;
*/
int getRpcPort();
// optional string tracking_url = 4;
/**
* optional string tracking_url = 4;
*/
boolean hasTrackingUrl();
/**
* optional string tracking_url = 4;
*/
java.lang.String getTrackingUrl();
/**
* optional string tracking_url = 4;
*/
com.google.protobuf.ByteString
getTrackingUrlBytes();
// optional string diagnostics = 5 [default = "N/A"];
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
boolean hasDiagnostics();
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
java.lang.String getDiagnostics();
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
com.google.protobuf.ByteString
getDiagnosticsBytes();
// optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
/**
* optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
*/
boolean hasYarnApplicationAttemptState();
/**
* optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
*/
org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto getYarnApplicationAttemptState();
// optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
boolean hasAmContainerId();
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getAmContainerId();
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getAmContainerIdOrBuilder();
// optional string original_tracking_url = 8;
/**
* optional string original_tracking_url = 8;
*/
boolean hasOriginalTrackingUrl();
/**
* optional string original_tracking_url = 8;
*/
java.lang.String getOriginalTrackingUrl();
/**
* optional string original_tracking_url = 8;
*/
com.google.protobuf.ByteString
getOriginalTrackingUrlBytes();
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationAttemptReportProto}
*/
public static final class ApplicationAttemptReportProto extends
com.google.protobuf.GeneratedMessage
implements ApplicationAttemptReportProtoOrBuilder {
// Use ApplicationAttemptReportProto.newBuilder() to construct.
private ApplicationAttemptReportProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ApplicationAttemptReportProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ApplicationAttemptReportProto defaultInstance;
public static ApplicationAttemptReportProto getDefaultInstance() {
return defaultInstance;
}
public ApplicationAttemptReportProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApplicationAttemptReportProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = applicationAttemptId_.toBuilder();
}
applicationAttemptId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(applicationAttemptId_);
applicationAttemptId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
bitField0_ |= 0x00000002;
host_ = input.readBytes();
break;
}
case 24: {
bitField0_ |= 0x00000004;
rpcPort_ = input.readInt32();
break;
}
case 34: {
bitField0_ |= 0x00000008;
trackingUrl_ = input.readBytes();
break;
}
case 42: {
bitField0_ |= 0x00000010;
diagnostics_ = input.readBytes();
break;
}
case 48: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto value = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(6, rawValue);
} else {
bitField0_ |= 0x00000020;
yarnApplicationAttemptState_ = value;
}
break;
}
case 58: {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000040) == 0x00000040)) {
subBuilder = amContainerId_.toBuilder();
}
amContainerId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(amContainerId_);
amContainerId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000040;
break;
}
case 66: {
bitField0_ |= 0x00000080;
originalTrackingUrl_ = input.readBytes();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ApplicationAttemptReportProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApplicationAttemptReportProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
public static final int APPLICATION_ATTEMPT_ID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto applicationAttemptId_;
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public boolean hasApplicationAttemptId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getApplicationAttemptId() {
return applicationAttemptId_;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder getApplicationAttemptIdOrBuilder() {
return applicationAttemptId_;
}
// optional string host = 2;
public static final int HOST_FIELD_NUMBER = 2;
private java.lang.Object host_;
/**
* optional string host = 2;
*/
public boolean hasHost() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string host = 2;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
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();
if (bs.isValidUtf8()) {
host_ = s;
}
return s;
}
}
/**
* optional string host = 2;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional int32 rpc_port = 3;
public static final int RPC_PORT_FIELD_NUMBER = 3;
private int rpcPort_;
/**
* optional int32 rpc_port = 3;
*/
public boolean hasRpcPort() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int32 rpc_port = 3;
*/
public int getRpcPort() {
return rpcPort_;
}
// optional string tracking_url = 4;
public static final int TRACKING_URL_FIELD_NUMBER = 4;
private java.lang.Object trackingUrl_;
/**
* optional string tracking_url = 4;
*/
public boolean hasTrackingUrl() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional string tracking_url = 4;
*/
public java.lang.String getTrackingUrl() {
java.lang.Object ref = trackingUrl_;
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();
if (bs.isValidUtf8()) {
trackingUrl_ = s;
}
return s;
}
}
/**
* optional string tracking_url = 4;
*/
public com.google.protobuf.ByteString
getTrackingUrlBytes() {
java.lang.Object ref = trackingUrl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
trackingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string diagnostics = 5 [default = "N/A"];
public static final int DIAGNOSTICS_FIELD_NUMBER = 5;
private java.lang.Object diagnostics_;
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
public boolean hasDiagnostics() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
public java.lang.String getDiagnostics() {
java.lang.Object ref = diagnostics_;
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();
if (bs.isValidUtf8()) {
diagnostics_ = s;
}
return s;
}
}
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
public com.google.protobuf.ByteString
getDiagnosticsBytes() {
java.lang.Object ref = diagnostics_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
diagnostics_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
public static final int YARN_APPLICATION_ATTEMPT_STATE_FIELD_NUMBER = 6;
private org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto yarnApplicationAttemptState_;
/**
* optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
*/
public boolean hasYarnApplicationAttemptState() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto getYarnApplicationAttemptState() {
return yarnApplicationAttemptState_;
}
// optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
public static final int AM_CONTAINER_ID_FIELD_NUMBER = 7;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto amContainerId_;
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public boolean hasAmContainerId() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getAmContainerId() {
return amContainerId_;
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getAmContainerIdOrBuilder() {
return amContainerId_;
}
// optional string original_tracking_url = 8;
public static final int ORIGINAL_TRACKING_URL_FIELD_NUMBER = 8;
private java.lang.Object originalTrackingUrl_;
/**
* optional string original_tracking_url = 8;
*/
public boolean hasOriginalTrackingUrl() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional string original_tracking_url = 8;
*/
public java.lang.String getOriginalTrackingUrl() {
java.lang.Object ref = originalTrackingUrl_;
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();
if (bs.isValidUtf8()) {
originalTrackingUrl_ = s;
}
return s;
}
}
/**
* optional string original_tracking_url = 8;
*/
public com.google.protobuf.ByteString
getOriginalTrackingUrlBytes() {
java.lang.Object ref = originalTrackingUrl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
originalTrackingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private void initFields() {
applicationAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
host_ = "";
rpcPort_ = 0;
trackingUrl_ = "";
diagnostics_ = "N/A";
yarnApplicationAttemptState_ = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto.APP_ATTEMPT_NEW;
amContainerId_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
originalTrackingUrl_ = "";
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, applicationAttemptId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getHostBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt32(3, rpcPort_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeBytes(4, getTrackingUrlBytes());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeBytes(5, getDiagnosticsBytes());
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeEnum(6, yarnApplicationAttemptState_.getNumber());
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeMessage(7, amContainerId_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
output.writeBytes(8, getOriginalTrackingUrlBytes());
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, applicationAttemptId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getHostBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, rpcPort_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(4, getTrackingUrlBytes());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(5, getDiagnosticsBytes());
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(6, yarnApplicationAttemptState_.getNumber());
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(7, amContainerId_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(8, getOriginalTrackingUrlBytes());
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto) obj;
boolean result = true;
result = result && (hasApplicationAttemptId() == other.hasApplicationAttemptId());
if (hasApplicationAttemptId()) {
result = result && getApplicationAttemptId()
.equals(other.getApplicationAttemptId());
}
result = result && (hasHost() == other.hasHost());
if (hasHost()) {
result = result && getHost()
.equals(other.getHost());
}
result = result && (hasRpcPort() == other.hasRpcPort());
if (hasRpcPort()) {
result = result && (getRpcPort()
== other.getRpcPort());
}
result = result && (hasTrackingUrl() == other.hasTrackingUrl());
if (hasTrackingUrl()) {
result = result && getTrackingUrl()
.equals(other.getTrackingUrl());
}
result = result && (hasDiagnostics() == other.hasDiagnostics());
if (hasDiagnostics()) {
result = result && getDiagnostics()
.equals(other.getDiagnostics());
}
result = result && (hasYarnApplicationAttemptState() == other.hasYarnApplicationAttemptState());
if (hasYarnApplicationAttemptState()) {
result = result &&
(getYarnApplicationAttemptState() == other.getYarnApplicationAttemptState());
}
result = result && (hasAmContainerId() == other.hasAmContainerId());
if (hasAmContainerId()) {
result = result && getAmContainerId()
.equals(other.getAmContainerId());
}
result = result && (hasOriginalTrackingUrl() == other.hasOriginalTrackingUrl());
if (hasOriginalTrackingUrl()) {
result = result && getOriginalTrackingUrl()
.equals(other.getOriginalTrackingUrl());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasApplicationAttemptId()) {
hash = (37 * hash) + APPLICATION_ATTEMPT_ID_FIELD_NUMBER;
hash = (53 * hash) + getApplicationAttemptId().hashCode();
}
if (hasHost()) {
hash = (37 * hash) + HOST_FIELD_NUMBER;
hash = (53 * hash) + getHost().hashCode();
}
if (hasRpcPort()) {
hash = (37 * hash) + RPC_PORT_FIELD_NUMBER;
hash = (53 * hash) + getRpcPort();
}
if (hasTrackingUrl()) {
hash = (37 * hash) + TRACKING_URL_FIELD_NUMBER;
hash = (53 * hash) + getTrackingUrl().hashCode();
}
if (hasDiagnostics()) {
hash = (37 * hash) + DIAGNOSTICS_FIELD_NUMBER;
hash = (53 * hash) + getDiagnostics().hashCode();
}
if (hasYarnApplicationAttemptState()) {
hash = (37 * hash) + YARN_APPLICATION_ATTEMPT_STATE_FIELD_NUMBER;
hash = (53 * hash) + hashEnum(getYarnApplicationAttemptState());
}
if (hasAmContainerId()) {
hash = (37 * hash) + AM_CONTAINER_ID_FIELD_NUMBER;
hash = (53 * hash) + getAmContainerId().hashCode();
}
if (hasOriginalTrackingUrl()) {
hash = (37 * hash) + ORIGINAL_TRACKING_URL_FIELD_NUMBER;
hash = (53 * hash) + getOriginalTrackingUrl().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationAttemptReportProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getApplicationAttemptIdFieldBuilder();
getAmContainerIdFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (applicationAttemptIdBuilder_ == null) {
applicationAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
} else {
applicationAttemptIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
host_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
rpcPort_ = 0;
bitField0_ = (bitField0_ & ~0x00000004);
trackingUrl_ = "";
bitField0_ = (bitField0_ & ~0x00000008);
diagnostics_ = "N/A";
bitField0_ = (bitField0_ & ~0x00000010);
yarnApplicationAttemptState_ = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto.APP_ATTEMPT_NEW;
bitField0_ = (bitField0_ & ~0x00000020);
if (amContainerIdBuilder_ == null) {
amContainerId_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
} else {
amContainerIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000040);
originalTrackingUrl_ = "";
bitField0_ = (bitField0_ & ~0x00000080);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationAttemptReportProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (applicationAttemptIdBuilder_ == null) {
result.applicationAttemptId_ = applicationAttemptId_;
} else {
result.applicationAttemptId_ = applicationAttemptIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.host_ = host_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.rpcPort_ = rpcPort_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.trackingUrl_ = trackingUrl_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.diagnostics_ = diagnostics_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.yarnApplicationAttemptState_ = yarnApplicationAttemptState_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
if (amContainerIdBuilder_ == null) {
result.amContainerId_ = amContainerId_;
} else {
result.amContainerId_ = amContainerIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
result.originalTrackingUrl_ = originalTrackingUrl_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto.getDefaultInstance()) return this;
if (other.hasApplicationAttemptId()) {
mergeApplicationAttemptId(other.getApplicationAttemptId());
}
if (other.hasHost()) {
bitField0_ |= 0x00000002;
host_ = other.host_;
onChanged();
}
if (other.hasRpcPort()) {
setRpcPort(other.getRpcPort());
}
if (other.hasTrackingUrl()) {
bitField0_ |= 0x00000008;
trackingUrl_ = other.trackingUrl_;
onChanged();
}
if (other.hasDiagnostics()) {
bitField0_ |= 0x00000010;
diagnostics_ = other.diagnostics_;
onChanged();
}
if (other.hasYarnApplicationAttemptState()) {
setYarnApplicationAttemptState(other.getYarnApplicationAttemptState());
}
if (other.hasAmContainerId()) {
mergeAmContainerId(other.getAmContainerId());
}
if (other.hasOriginalTrackingUrl()) {
bitField0_ |= 0x00000080;
originalTrackingUrl_ = other.originalTrackingUrl_;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptReportProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto applicationAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder> applicationAttemptIdBuilder_;
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public boolean hasApplicationAttemptId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto getApplicationAttemptId() {
if (applicationAttemptIdBuilder_ == null) {
return applicationAttemptId_;
} else {
return applicationAttemptIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public Builder setApplicationAttemptId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto value) {
if (applicationAttemptIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
applicationAttemptId_ = value;
onChanged();
} else {
applicationAttemptIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public Builder setApplicationAttemptId(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder builderForValue) {
if (applicationAttemptIdBuilder_ == null) {
applicationAttemptId_ = builderForValue.build();
onChanged();
} else {
applicationAttemptIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public Builder mergeApplicationAttemptId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto value) {
if (applicationAttemptIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
applicationAttemptId_ != org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance()) {
applicationAttemptId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.newBuilder(applicationAttemptId_).mergeFrom(value).buildPartial();
} else {
applicationAttemptId_ = value;
}
onChanged();
} else {
applicationAttemptIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public Builder clearApplicationAttemptId() {
if (applicationAttemptIdBuilder_ == null) {
applicationAttemptId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.getDefaultInstance();
onChanged();
} else {
applicationAttemptIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder getApplicationAttemptIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getApplicationAttemptIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder getApplicationAttemptIdOrBuilder() {
if (applicationAttemptIdBuilder_ != null) {
return applicationAttemptIdBuilder_.getMessageOrBuilder();
} else {
return applicationAttemptId_;
}
}
/**
* optional .hadoop.yarn.ApplicationAttemptIdProto application_attempt_id = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder>
getApplicationAttemptIdFieldBuilder() {
if (applicationAttemptIdBuilder_ == null) {
applicationAttemptIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAttemptIdProtoOrBuilder>(
applicationAttemptId_,
getParentForChildren(),
isClean());
applicationAttemptId_ = null;
}
return applicationAttemptIdBuilder_;
}
// optional string host = 2;
private java.lang.Object host_ = "";
/**
* optional string host = 2;
*/
public boolean hasHost() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string host = 2;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
host_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string host = 2;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string host = 2;
*/
public Builder setHost(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
host_ = value;
onChanged();
return this;
}
/**
* optional string host = 2;
*/
public Builder clearHost() {
bitField0_ = (bitField0_ & ~0x00000002);
host_ = getDefaultInstance().getHost();
onChanged();
return this;
}
/**
* optional string host = 2;
*/
public Builder setHostBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
host_ = value;
onChanged();
return this;
}
// optional int32 rpc_port = 3;
private int rpcPort_ ;
/**
* optional int32 rpc_port = 3;
*/
public boolean hasRpcPort() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int32 rpc_port = 3;
*/
public int getRpcPort() {
return rpcPort_;
}
/**
* optional int32 rpc_port = 3;
*/
public Builder setRpcPort(int value) {
bitField0_ |= 0x00000004;
rpcPort_ = value;
onChanged();
return this;
}
/**
* optional int32 rpc_port = 3;
*/
public Builder clearRpcPort() {
bitField0_ = (bitField0_ & ~0x00000004);
rpcPort_ = 0;
onChanged();
return this;
}
// optional string tracking_url = 4;
private java.lang.Object trackingUrl_ = "";
/**
* optional string tracking_url = 4;
*/
public boolean hasTrackingUrl() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional string tracking_url = 4;
*/
public java.lang.String getTrackingUrl() {
java.lang.Object ref = trackingUrl_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
trackingUrl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string tracking_url = 4;
*/
public com.google.protobuf.ByteString
getTrackingUrlBytes() {
java.lang.Object ref = trackingUrl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
trackingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string tracking_url = 4;
*/
public Builder setTrackingUrl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
trackingUrl_ = value;
onChanged();
return this;
}
/**
* optional string tracking_url = 4;
*/
public Builder clearTrackingUrl() {
bitField0_ = (bitField0_ & ~0x00000008);
trackingUrl_ = getDefaultInstance().getTrackingUrl();
onChanged();
return this;
}
/**
* optional string tracking_url = 4;
*/
public Builder setTrackingUrlBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
trackingUrl_ = value;
onChanged();
return this;
}
// optional string diagnostics = 5 [default = "N/A"];
private java.lang.Object diagnostics_ = "N/A";
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
public boolean hasDiagnostics() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
public java.lang.String getDiagnostics() {
java.lang.Object ref = diagnostics_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
diagnostics_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
public com.google.protobuf.ByteString
getDiagnosticsBytes() {
java.lang.Object ref = diagnostics_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
diagnostics_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
public Builder setDiagnostics(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
diagnostics_ = value;
onChanged();
return this;
}
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
public Builder clearDiagnostics() {
bitField0_ = (bitField0_ & ~0x00000010);
diagnostics_ = getDefaultInstance().getDiagnostics();
onChanged();
return this;
}
/**
* optional string diagnostics = 5 [default = "N/A"];
*/
public Builder setDiagnosticsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
diagnostics_ = value;
onChanged();
return this;
}
// optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
private org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto yarnApplicationAttemptState_ = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto.APP_ATTEMPT_NEW;
/**
* optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
*/
public boolean hasYarnApplicationAttemptState() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto getYarnApplicationAttemptState() {
return yarnApplicationAttemptState_;
}
/**
* optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
*/
public Builder setYarnApplicationAttemptState(org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
yarnApplicationAttemptState_ = value;
onChanged();
return this;
}
/**
* optional .hadoop.yarn.YarnApplicationAttemptStateProto yarn_application_attempt_state = 6;
*/
public Builder clearYarnApplicationAttemptState() {
bitField0_ = (bitField0_ & ~0x00000020);
yarnApplicationAttemptState_ = org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationAttemptStateProto.APP_ATTEMPT_NEW;
onChanged();
return this;
}
// optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto amContainerId_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder> amContainerIdBuilder_;
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public boolean hasAmContainerId() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getAmContainerId() {
if (amContainerIdBuilder_ == null) {
return amContainerId_;
} else {
return amContainerIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public Builder setAmContainerId(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto value) {
if (amContainerIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
amContainerId_ = value;
onChanged();
} else {
amContainerIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000040;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public Builder setAmContainerId(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder builderForValue) {
if (amContainerIdBuilder_ == null) {
amContainerId_ = builderForValue.build();
onChanged();
} else {
amContainerIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000040;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public Builder mergeAmContainerId(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto value) {
if (amContainerIdBuilder_ == null) {
if (((bitField0_ & 0x00000040) == 0x00000040) &&
amContainerId_ != org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance()) {
amContainerId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.newBuilder(amContainerId_).mergeFrom(value).buildPartial();
} else {
amContainerId_ = value;
}
onChanged();
} else {
amContainerIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000040;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public Builder clearAmContainerId() {
if (amContainerIdBuilder_ == null) {
amContainerId_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
onChanged();
} else {
amContainerIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder getAmContainerIdBuilder() {
bitField0_ |= 0x00000040;
onChanged();
return getAmContainerIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getAmContainerIdOrBuilder() {
if (amContainerIdBuilder_ != null) {
return amContainerIdBuilder_.getMessageOrBuilder();
} else {
return amContainerId_;
}
}
/**
* optional .hadoop.yarn.ContainerIdProto am_container_id = 7;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder>
getAmContainerIdFieldBuilder() {
if (amContainerIdBuilder_ == null) {
amContainerIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder>(
amContainerId_,
getParentForChildren(),
isClean());
amContainerId_ = null;
}
return amContainerIdBuilder_;
}
// optional string original_tracking_url = 8;
private java.lang.Object originalTrackingUrl_ = "";
/**
* optional string original_tracking_url = 8;
*/
public boolean hasOriginalTrackingUrl() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional string original_tracking_url = 8;
*/
public java.lang.String getOriginalTrackingUrl() {
java.lang.Object ref = originalTrackingUrl_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
originalTrackingUrl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string original_tracking_url = 8;
*/
public com.google.protobuf.ByteString
getOriginalTrackingUrlBytes() {
java.lang.Object ref = originalTrackingUrl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
originalTrackingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string original_tracking_url = 8;
*/
public Builder setOriginalTrackingUrl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000080;
originalTrackingUrl_ = value;
onChanged();
return this;
}
/**
* optional string original_tracking_url = 8;
*/
public Builder clearOriginalTrackingUrl() {
bitField0_ = (bitField0_ & ~0x00000080);
originalTrackingUrl_ = getDefaultInstance().getOriginalTrackingUrl();
onChanged();
return this;
}
/**
* optional string original_tracking_url = 8;
*/
public Builder setOriginalTrackingUrlBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000080;
originalTrackingUrl_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ApplicationAttemptReportProto)
}
static {
defaultInstance = new ApplicationAttemptReportProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ApplicationAttemptReportProto)
}
public interface NodeIdProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional string host = 1;
/**
* optional string host = 1;
*/
boolean hasHost();
/**
* optional string host = 1;
*/
java.lang.String getHost();
/**
* optional string host = 1;
*/
com.google.protobuf.ByteString
getHostBytes();
// optional int32 port = 2;
/**
* optional int32 port = 2;
*/
boolean hasPort();
/**
* optional int32 port = 2;
*/
int getPort();
}
/**
* Protobuf type {@code hadoop.yarn.NodeIdProto}
*/
public static final class NodeIdProto extends
com.google.protobuf.GeneratedMessage
implements NodeIdProtoOrBuilder {
// Use NodeIdProto.newBuilder() to construct.
private NodeIdProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private NodeIdProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final NodeIdProto defaultInstance;
public static NodeIdProto getDefaultInstance() {
return defaultInstance;
}
public NodeIdProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private NodeIdProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
bitField0_ |= 0x00000001;
host_ = input.readBytes();
break;
}
case 16: {
bitField0_ |= 0x00000002;
port_ = input.readInt32();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public NodeIdProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new NodeIdProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional string host = 1;
public static final int HOST_FIELD_NUMBER = 1;
private java.lang.Object host_;
/**
* optional string host = 1;
*/
public boolean hasHost() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string host = 1;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
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();
if (bs.isValidUtf8()) {
host_ = s;
}
return s;
}
}
/**
* optional string host = 1;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional int32 port = 2;
public static final int PORT_FIELD_NUMBER = 2;
private int port_;
/**
* optional int32 port = 2;
*/
public boolean hasPort() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 port = 2;
*/
public int getPort() {
return port_;
}
private void initFields() {
host_ = "";
port_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeBytes(1, getHostBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, port_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(1, getHostBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, port_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto other = (org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto) obj;
boolean result = true;
result = result && (hasHost() == other.hasHost());
if (hasHost()) {
result = result && getHost()
.equals(other.getHost());
}
result = result && (hasPort() == other.hasPort());
if (hasPort()) {
result = result && (getPort()
== other.getPort());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasHost()) {
hash = (37 * hash) + HOST_FIELD_NUMBER;
hash = (53 * hash) + getHost().hashCode();
}
if (hasPort()) {
hash = (37 * hash) + PORT_FIELD_NUMBER;
hash = (53 * hash) + getPort();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.NodeIdProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
host_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
port_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto result = new org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.host_ = host_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.port_ = port_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance()) return this;
if (other.hasHost()) {
bitField0_ |= 0x00000001;
host_ = other.host_;
onChanged();
}
if (other.hasPort()) {
setPort(other.getPort());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional string host = 1;
private java.lang.Object host_ = "";
/**
* optional string host = 1;
*/
public boolean hasHost() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string host = 1;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
host_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string host = 1;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string host = 1;
*/
public Builder setHost(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
host_ = value;
onChanged();
return this;
}
/**
* optional string host = 1;
*/
public Builder clearHost() {
bitField0_ = (bitField0_ & ~0x00000001);
host_ = getDefaultInstance().getHost();
onChanged();
return this;
}
/**
* optional string host = 1;
*/
public Builder setHostBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
host_ = value;
onChanged();
return this;
}
// optional int32 port = 2;
private int port_ ;
/**
* optional int32 port = 2;
*/
public boolean hasPort() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 port = 2;
*/
public int getPort() {
return port_;
}
/**
* optional int32 port = 2;
*/
public Builder setPort(int value) {
bitField0_ |= 0x00000002;
port_ = value;
onChanged();
return this;
}
/**
* optional int32 port = 2;
*/
public Builder clearPort() {
bitField0_ = (bitField0_ & ~0x00000002);
port_ = 0;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.NodeIdProto)
}
static {
defaultInstance = new NodeIdProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.NodeIdProto)
}
public interface NodeReportProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.NodeIdProto nodeId = 1;
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
boolean hasNodeId();
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId();
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder();
// optional string httpAddress = 2;
/**
* optional string httpAddress = 2;
*/
boolean hasHttpAddress();
/**
* optional string httpAddress = 2;
*/
java.lang.String getHttpAddress();
/**
* optional string httpAddress = 2;
*/
com.google.protobuf.ByteString
getHttpAddressBytes();
// optional string rackName = 3;
/**
* optional string rackName = 3;
*/
boolean hasRackName();
/**
* optional string rackName = 3;
*/
java.lang.String getRackName();
/**
* optional string rackName = 3;
*/
com.google.protobuf.ByteString
getRackNameBytes();
// optional .hadoop.yarn.ResourceProto used = 4;
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
boolean hasUsed();
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getUsed();
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getUsedOrBuilder();
// optional .hadoop.yarn.ResourceProto capability = 5;
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
boolean hasCapability();
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getCapability();
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getCapabilityOrBuilder();
// optional int32 numContainers = 6;
/**
* optional int32 numContainers = 6;
*/
boolean hasNumContainers();
/**
* optional int32 numContainers = 6;
*/
int getNumContainers();
// optional .hadoop.yarn.NodeStateProto node_state = 7;
/**
* optional .hadoop.yarn.NodeStateProto node_state = 7;
*/
boolean hasNodeState();
/**
* optional .hadoop.yarn.NodeStateProto node_state = 7;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto getNodeState();
// optional string health_report = 8;
/**
* optional string health_report = 8;
*/
boolean hasHealthReport();
/**
* optional string health_report = 8;
*/
java.lang.String getHealthReport();
/**
* optional string health_report = 8;
*/
com.google.protobuf.ByteString
getHealthReportBytes();
// optional int64 last_health_report_time = 9;
/**
* optional int64 last_health_report_time = 9;
*/
boolean hasLastHealthReportTime();
/**
* optional int64 last_health_report_time = 9;
*/
long getLastHealthReportTime();
// repeated string node_labels = 10;
/**
* repeated string node_labels = 10;
*/
java.util.List
getNodeLabelsList();
/**
* repeated string node_labels = 10;
*/
int getNodeLabelsCount();
/**
* repeated string node_labels = 10;
*/
java.lang.String getNodeLabels(int index);
/**
* repeated string node_labels = 10;
*/
com.google.protobuf.ByteString
getNodeLabelsBytes(int index);
}
/**
* Protobuf type {@code hadoop.yarn.NodeReportProto}
*/
public static final class NodeReportProto extends
com.google.protobuf.GeneratedMessage
implements NodeReportProtoOrBuilder {
// Use NodeReportProto.newBuilder() to construct.
private NodeReportProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private NodeReportProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final NodeReportProto defaultInstance;
public static NodeReportProto getDefaultInstance() {
return defaultInstance;
}
public NodeReportProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private NodeReportProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = nodeId_.toBuilder();
}
nodeId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(nodeId_);
nodeId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
bitField0_ |= 0x00000002;
httpAddress_ = input.readBytes();
break;
}
case 26: {
bitField0_ |= 0x00000004;
rackName_ = input.readBytes();
break;
}
case 34: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000008) == 0x00000008)) {
subBuilder = used_.toBuilder();
}
used_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(used_);
used_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000008;
break;
}
case 42: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000010) == 0x00000010)) {
subBuilder = capability_.toBuilder();
}
capability_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(capability_);
capability_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000010;
break;
}
case 48: {
bitField0_ |= 0x00000020;
numContainers_ = input.readInt32();
break;
}
case 56: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto value = org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(7, rawValue);
} else {
bitField0_ |= 0x00000040;
nodeState_ = value;
}
break;
}
case 66: {
bitField0_ |= 0x00000080;
healthReport_ = input.readBytes();
break;
}
case 72: {
bitField0_ |= 0x00000100;
lastHealthReportTime_ = input.readInt64();
break;
}
case 82: {
if (!((mutable_bitField0_ & 0x00000200) == 0x00000200)) {
nodeLabels_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000200;
}
nodeLabels_.add(input.readBytes());
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000200) == 0x00000200)) {
nodeLabels_ = new com.google.protobuf.UnmodifiableLazyStringList(nodeLabels_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public NodeReportProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new NodeReportProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.NodeIdProto nodeId = 1;
public static final int NODEID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_;
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
return nodeId_;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
return nodeId_;
}
// optional string httpAddress = 2;
public static final int HTTPADDRESS_FIELD_NUMBER = 2;
private java.lang.Object httpAddress_;
/**
* optional string httpAddress = 2;
*/
public boolean hasHttpAddress() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string httpAddress = 2;
*/
public java.lang.String getHttpAddress() {
java.lang.Object ref = httpAddress_;
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();
if (bs.isValidUtf8()) {
httpAddress_ = s;
}
return s;
}
}
/**
* optional string httpAddress = 2;
*/
public com.google.protobuf.ByteString
getHttpAddressBytes() {
java.lang.Object ref = httpAddress_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
httpAddress_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string rackName = 3;
public static final int RACKNAME_FIELD_NUMBER = 3;
private java.lang.Object rackName_;
/**
* optional string rackName = 3;
*/
public boolean hasRackName() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string rackName = 3;
*/
public java.lang.String getRackName() {
java.lang.Object ref = rackName_;
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();
if (bs.isValidUtf8()) {
rackName_ = s;
}
return s;
}
}
/**
* optional string rackName = 3;
*/
public com.google.protobuf.ByteString
getRackNameBytes() {
java.lang.Object ref = rackName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rackName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional .hadoop.yarn.ResourceProto used = 4;
public static final int USED_FIELD_NUMBER = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto used_;
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public boolean hasUsed() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getUsed() {
return used_;
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getUsedOrBuilder() {
return used_;
}
// optional .hadoop.yarn.ResourceProto capability = 5;
public static final int CAPABILITY_FIELD_NUMBER = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto capability_;
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public boolean hasCapability() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getCapability() {
return capability_;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getCapabilityOrBuilder() {
return capability_;
}
// optional int32 numContainers = 6;
public static final int NUMCONTAINERS_FIELD_NUMBER = 6;
private int numContainers_;
/**
* optional int32 numContainers = 6;
*/
public boolean hasNumContainers() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional int32 numContainers = 6;
*/
public int getNumContainers() {
return numContainers_;
}
// optional .hadoop.yarn.NodeStateProto node_state = 7;
public static final int NODE_STATE_FIELD_NUMBER = 7;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto nodeState_;
/**
* optional .hadoop.yarn.NodeStateProto node_state = 7;
*/
public boolean hasNodeState() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional .hadoop.yarn.NodeStateProto node_state = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto getNodeState() {
return nodeState_;
}
// optional string health_report = 8;
public static final int HEALTH_REPORT_FIELD_NUMBER = 8;
private java.lang.Object healthReport_;
/**
* optional string health_report = 8;
*/
public boolean hasHealthReport() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional string health_report = 8;
*/
public java.lang.String getHealthReport() {
java.lang.Object ref = healthReport_;
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();
if (bs.isValidUtf8()) {
healthReport_ = s;
}
return s;
}
}
/**
* optional string health_report = 8;
*/
public com.google.protobuf.ByteString
getHealthReportBytes() {
java.lang.Object ref = healthReport_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
healthReport_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional int64 last_health_report_time = 9;
public static final int LAST_HEALTH_REPORT_TIME_FIELD_NUMBER = 9;
private long lastHealthReportTime_;
/**
* optional int64 last_health_report_time = 9;
*/
public boolean hasLastHealthReportTime() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional int64 last_health_report_time = 9;
*/
public long getLastHealthReportTime() {
return lastHealthReportTime_;
}
// repeated string node_labels = 10;
public static final int NODE_LABELS_FIELD_NUMBER = 10;
private com.google.protobuf.LazyStringList nodeLabels_;
/**
* repeated string node_labels = 10;
*/
public java.util.List
getNodeLabelsList() {
return nodeLabels_;
}
/**
* repeated string node_labels = 10;
*/
public int getNodeLabelsCount() {
return nodeLabels_.size();
}
/**
* repeated string node_labels = 10;
*/
public java.lang.String getNodeLabels(int index) {
return nodeLabels_.get(index);
}
/**
* repeated string node_labels = 10;
*/
public com.google.protobuf.ByteString
getNodeLabelsBytes(int index) {
return nodeLabels_.getByteString(index);
}
private void initFields() {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
httpAddress_ = "";
rackName_ = "";
used_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
numContainers_ = 0;
nodeState_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto.NS_NEW;
healthReport_ = "";
lastHealthReportTime_ = 0L;
nodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, nodeId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getHttpAddressBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBytes(3, getRackNameBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeMessage(4, used_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeMessage(5, capability_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt32(6, numContainers_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeEnum(7, nodeState_.getNumber());
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
output.writeBytes(8, getHealthReportBytes());
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
output.writeInt64(9, lastHealthReportTime_);
}
for (int i = 0; i < nodeLabels_.size(); i++) {
output.writeBytes(10, nodeLabels_.getByteString(i));
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, nodeId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getHttpAddressBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, getRackNameBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, used_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(5, capability_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, numContainers_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(7, nodeState_.getNumber());
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(8, getHealthReportBytes());
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(9, lastHealthReportTime_);
}
{
int dataSize = 0;
for (int i = 0; i < nodeLabels_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(nodeLabels_.getByteString(i));
}
size += dataSize;
size += 1 * getNodeLabelsList().size();
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto other = (org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto) obj;
boolean result = true;
result = result && (hasNodeId() == other.hasNodeId());
if (hasNodeId()) {
result = result && getNodeId()
.equals(other.getNodeId());
}
result = result && (hasHttpAddress() == other.hasHttpAddress());
if (hasHttpAddress()) {
result = result && getHttpAddress()
.equals(other.getHttpAddress());
}
result = result && (hasRackName() == other.hasRackName());
if (hasRackName()) {
result = result && getRackName()
.equals(other.getRackName());
}
result = result && (hasUsed() == other.hasUsed());
if (hasUsed()) {
result = result && getUsed()
.equals(other.getUsed());
}
result = result && (hasCapability() == other.hasCapability());
if (hasCapability()) {
result = result && getCapability()
.equals(other.getCapability());
}
result = result && (hasNumContainers() == other.hasNumContainers());
if (hasNumContainers()) {
result = result && (getNumContainers()
== other.getNumContainers());
}
result = result && (hasNodeState() == other.hasNodeState());
if (hasNodeState()) {
result = result &&
(getNodeState() == other.getNodeState());
}
result = result && (hasHealthReport() == other.hasHealthReport());
if (hasHealthReport()) {
result = result && getHealthReport()
.equals(other.getHealthReport());
}
result = result && (hasLastHealthReportTime() == other.hasLastHealthReportTime());
if (hasLastHealthReportTime()) {
result = result && (getLastHealthReportTime()
== other.getLastHealthReportTime());
}
result = result && getNodeLabelsList()
.equals(other.getNodeLabelsList());
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasNodeId()) {
hash = (37 * hash) + NODEID_FIELD_NUMBER;
hash = (53 * hash) + getNodeId().hashCode();
}
if (hasHttpAddress()) {
hash = (37 * hash) + HTTPADDRESS_FIELD_NUMBER;
hash = (53 * hash) + getHttpAddress().hashCode();
}
if (hasRackName()) {
hash = (37 * hash) + RACKNAME_FIELD_NUMBER;
hash = (53 * hash) + getRackName().hashCode();
}
if (hasUsed()) {
hash = (37 * hash) + USED_FIELD_NUMBER;
hash = (53 * hash) + getUsed().hashCode();
}
if (hasCapability()) {
hash = (37 * hash) + CAPABILITY_FIELD_NUMBER;
hash = (53 * hash) + getCapability().hashCode();
}
if (hasNumContainers()) {
hash = (37 * hash) + NUMCONTAINERS_FIELD_NUMBER;
hash = (53 * hash) + getNumContainers();
}
if (hasNodeState()) {
hash = (37 * hash) + NODE_STATE_FIELD_NUMBER;
hash = (53 * hash) + hashEnum(getNodeState());
}
if (hasHealthReport()) {
hash = (37 * hash) + HEALTH_REPORT_FIELD_NUMBER;
hash = (53 * hash) + getHealthReport().hashCode();
}
if (hasLastHealthReportTime()) {
hash = (37 * hash) + LAST_HEALTH_REPORT_TIME_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getLastHealthReportTime());
}
if (getNodeLabelsCount() > 0) {
hash = (37 * hash) + NODE_LABELS_FIELD_NUMBER;
hash = (53 * hash) + getNodeLabelsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.NodeReportProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeReportProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeReportProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto.class, org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getNodeIdFieldBuilder();
getUsedFieldBuilder();
getCapabilityFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
httpAddress_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
rackName_ = "";
bitField0_ = (bitField0_ & ~0x00000004);
if (usedBuilder_ == null) {
used_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
usedBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
if (capabilityBuilder_ == null) {
capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
capabilityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
numContainers_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
nodeState_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto.NS_NEW;
bitField0_ = (bitField0_ & ~0x00000040);
healthReport_ = "";
bitField0_ = (bitField0_ & ~0x00000080);
lastHealthReportTime_ = 0L;
bitField0_ = (bitField0_ & ~0x00000100);
nodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000200);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeReportProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto result = new org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (nodeIdBuilder_ == null) {
result.nodeId_ = nodeId_;
} else {
result.nodeId_ = nodeIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.httpAddress_ = httpAddress_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.rackName_ = rackName_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
if (usedBuilder_ == null) {
result.used_ = used_;
} else {
result.used_ = usedBuilder_.build();
}
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
if (capabilityBuilder_ == null) {
result.capability_ = capability_;
} else {
result.capability_ = capabilityBuilder_.build();
}
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.numContainers_ = numContainers_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
result.nodeState_ = nodeState_;
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
result.healthReport_ = healthReport_;
if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
to_bitField0_ |= 0x00000100;
}
result.lastHealthReportTime_ = lastHealthReportTime_;
if (((bitField0_ & 0x00000200) == 0x00000200)) {
nodeLabels_ = new com.google.protobuf.UnmodifiableLazyStringList(
nodeLabels_);
bitField0_ = (bitField0_ & ~0x00000200);
}
result.nodeLabels_ = nodeLabels_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto.getDefaultInstance()) return this;
if (other.hasNodeId()) {
mergeNodeId(other.getNodeId());
}
if (other.hasHttpAddress()) {
bitField0_ |= 0x00000002;
httpAddress_ = other.httpAddress_;
onChanged();
}
if (other.hasRackName()) {
bitField0_ |= 0x00000004;
rackName_ = other.rackName_;
onChanged();
}
if (other.hasUsed()) {
mergeUsed(other.getUsed());
}
if (other.hasCapability()) {
mergeCapability(other.getCapability());
}
if (other.hasNumContainers()) {
setNumContainers(other.getNumContainers());
}
if (other.hasNodeState()) {
setNodeState(other.getNodeState());
}
if (other.hasHealthReport()) {
bitField0_ |= 0x00000080;
healthReport_ = other.healthReport_;
onChanged();
}
if (other.hasLastHealthReportTime()) {
setLastHealthReportTime(other.getLastHealthReportTime());
}
if (!other.nodeLabels_.isEmpty()) {
if (nodeLabels_.isEmpty()) {
nodeLabels_ = other.nodeLabels_;
bitField0_ = (bitField0_ & ~0x00000200);
} else {
ensureNodeLabelsIsMutable();
nodeLabels_.addAll(other.nodeLabels_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.NodeIdProto nodeId = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder> nodeIdBuilder_;
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
if (nodeIdBuilder_ == null) {
return nodeId_;
} else {
return nodeIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public Builder setNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
nodeId_ = value;
onChanged();
} else {
nodeIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public Builder setNodeId(
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder builderForValue) {
if (nodeIdBuilder_ == null) {
nodeId_ = builderForValue.build();
onChanged();
} else {
nodeIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public Builder mergeNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
nodeId_ != org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance()) {
nodeId_ =
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.newBuilder(nodeId_).mergeFrom(value).buildPartial();
} else {
nodeId_ = value;
}
onChanged();
} else {
nodeIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public Builder clearNodeId() {
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
onChanged();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder getNodeIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getNodeIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
if (nodeIdBuilder_ != null) {
return nodeIdBuilder_.getMessageOrBuilder();
} else {
return nodeId_;
}
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>
getNodeIdFieldBuilder() {
if (nodeIdBuilder_ == null) {
nodeIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>(
nodeId_,
getParentForChildren(),
isClean());
nodeId_ = null;
}
return nodeIdBuilder_;
}
// optional string httpAddress = 2;
private java.lang.Object httpAddress_ = "";
/**
* optional string httpAddress = 2;
*/
public boolean hasHttpAddress() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string httpAddress = 2;
*/
public java.lang.String getHttpAddress() {
java.lang.Object ref = httpAddress_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
httpAddress_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string httpAddress = 2;
*/
public com.google.protobuf.ByteString
getHttpAddressBytes() {
java.lang.Object ref = httpAddress_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
httpAddress_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string httpAddress = 2;
*/
public Builder setHttpAddress(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
httpAddress_ = value;
onChanged();
return this;
}
/**
* optional string httpAddress = 2;
*/
public Builder clearHttpAddress() {
bitField0_ = (bitField0_ & ~0x00000002);
httpAddress_ = getDefaultInstance().getHttpAddress();
onChanged();
return this;
}
/**
* optional string httpAddress = 2;
*/
public Builder setHttpAddressBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
httpAddress_ = value;
onChanged();
return this;
}
// optional string rackName = 3;
private java.lang.Object rackName_ = "";
/**
* optional string rackName = 3;
*/
public boolean hasRackName() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string rackName = 3;
*/
public java.lang.String getRackName() {
java.lang.Object ref = rackName_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
rackName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string rackName = 3;
*/
public com.google.protobuf.ByteString
getRackNameBytes() {
java.lang.Object ref = rackName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rackName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string rackName = 3;
*/
public Builder setRackName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
rackName_ = value;
onChanged();
return this;
}
/**
* optional string rackName = 3;
*/
public Builder clearRackName() {
bitField0_ = (bitField0_ & ~0x00000004);
rackName_ = getDefaultInstance().getRackName();
onChanged();
return this;
}
/**
* optional string rackName = 3;
*/
public Builder setRackNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
rackName_ = value;
onChanged();
return this;
}
// optional .hadoop.yarn.ResourceProto used = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto used_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> usedBuilder_;
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public boolean hasUsed() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getUsed() {
if (usedBuilder_ == null) {
return used_;
} else {
return usedBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public Builder setUsed(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (usedBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
used_ = value;
onChanged();
} else {
usedBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public Builder setUsed(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (usedBuilder_ == null) {
used_ = builderForValue.build();
onChanged();
} else {
usedBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public Builder mergeUsed(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (usedBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008) &&
used_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
used_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(used_).mergeFrom(value).buildPartial();
} else {
used_ = value;
}
onChanged();
} else {
usedBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public Builder clearUsed() {
if (usedBuilder_ == null) {
used_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
usedBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getUsedBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getUsedFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getUsedOrBuilder() {
if (usedBuilder_ != null) {
return usedBuilder_.getMessageOrBuilder();
} else {
return used_;
}
}
/**
* optional .hadoop.yarn.ResourceProto used = 4;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getUsedFieldBuilder() {
if (usedBuilder_ == null) {
usedBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
used_,
getParentForChildren(),
isClean());
used_ = null;
}
return usedBuilder_;
}
// optional .hadoop.yarn.ResourceProto capability = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> capabilityBuilder_;
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public boolean hasCapability() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getCapability() {
if (capabilityBuilder_ == null) {
return capability_;
} else {
return capabilityBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public Builder setCapability(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (capabilityBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
capability_ = value;
onChanged();
} else {
capabilityBuilder_.setMessage(value);
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public Builder setCapability(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (capabilityBuilder_ == null) {
capability_ = builderForValue.build();
onChanged();
} else {
capabilityBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public Builder mergeCapability(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (capabilityBuilder_ == null) {
if (((bitField0_ & 0x00000010) == 0x00000010) &&
capability_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
capability_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(capability_).mergeFrom(value).buildPartial();
} else {
capability_ = value;
}
onChanged();
} else {
capabilityBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public Builder clearCapability() {
if (capabilityBuilder_ == null) {
capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
capabilityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getCapabilityBuilder() {
bitField0_ |= 0x00000010;
onChanged();
return getCapabilityFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getCapabilityOrBuilder() {
if (capabilityBuilder_ != null) {
return capabilityBuilder_.getMessageOrBuilder();
} else {
return capability_;
}
}
/**
* optional .hadoop.yarn.ResourceProto capability = 5;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getCapabilityFieldBuilder() {
if (capabilityBuilder_ == null) {
capabilityBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
capability_,
getParentForChildren(),
isClean());
capability_ = null;
}
return capabilityBuilder_;
}
// optional int32 numContainers = 6;
private int numContainers_ ;
/**
* optional int32 numContainers = 6;
*/
public boolean hasNumContainers() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional int32 numContainers = 6;
*/
public int getNumContainers() {
return numContainers_;
}
/**
* optional int32 numContainers = 6;
*/
public Builder setNumContainers(int value) {
bitField0_ |= 0x00000020;
numContainers_ = value;
onChanged();
return this;
}
/**
* optional int32 numContainers = 6;
*/
public Builder clearNumContainers() {
bitField0_ = (bitField0_ & ~0x00000020);
numContainers_ = 0;
onChanged();
return this;
}
// optional .hadoop.yarn.NodeStateProto node_state = 7;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto nodeState_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto.NS_NEW;
/**
* optional .hadoop.yarn.NodeStateProto node_state = 7;
*/
public boolean hasNodeState() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional .hadoop.yarn.NodeStateProto node_state = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto getNodeState() {
return nodeState_;
}
/**
* optional .hadoop.yarn.NodeStateProto node_state = 7;
*/
public Builder setNodeState(org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000040;
nodeState_ = value;
onChanged();
return this;
}
/**
* optional .hadoop.yarn.NodeStateProto node_state = 7;
*/
public Builder clearNodeState() {
bitField0_ = (bitField0_ & ~0x00000040);
nodeState_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto.NS_NEW;
onChanged();
return this;
}
// optional string health_report = 8;
private java.lang.Object healthReport_ = "";
/**
* optional string health_report = 8;
*/
public boolean hasHealthReport() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional string health_report = 8;
*/
public java.lang.String getHealthReport() {
java.lang.Object ref = healthReport_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
healthReport_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string health_report = 8;
*/
public com.google.protobuf.ByteString
getHealthReportBytes() {
java.lang.Object ref = healthReport_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
healthReport_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string health_report = 8;
*/
public Builder setHealthReport(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000080;
healthReport_ = value;
onChanged();
return this;
}
/**
* optional string health_report = 8;
*/
public Builder clearHealthReport() {
bitField0_ = (bitField0_ & ~0x00000080);
healthReport_ = getDefaultInstance().getHealthReport();
onChanged();
return this;
}
/**
* optional string health_report = 8;
*/
public Builder setHealthReportBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000080;
healthReport_ = value;
onChanged();
return this;
}
// optional int64 last_health_report_time = 9;
private long lastHealthReportTime_ ;
/**
* optional int64 last_health_report_time = 9;
*/
public boolean hasLastHealthReportTime() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional int64 last_health_report_time = 9;
*/
public long getLastHealthReportTime() {
return lastHealthReportTime_;
}
/**
* optional int64 last_health_report_time = 9;
*/
public Builder setLastHealthReportTime(long value) {
bitField0_ |= 0x00000100;
lastHealthReportTime_ = value;
onChanged();
return this;
}
/**
* optional int64 last_health_report_time = 9;
*/
public Builder clearLastHealthReportTime() {
bitField0_ = (bitField0_ & ~0x00000100);
lastHealthReportTime_ = 0L;
onChanged();
return this;
}
// repeated string node_labels = 10;
private com.google.protobuf.LazyStringList nodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureNodeLabelsIsMutable() {
if (!((bitField0_ & 0x00000200) == 0x00000200)) {
nodeLabels_ = new com.google.protobuf.LazyStringArrayList(nodeLabels_);
bitField0_ |= 0x00000200;
}
}
/**
* repeated string node_labels = 10;
*/
public java.util.List
getNodeLabelsList() {
return java.util.Collections.unmodifiableList(nodeLabels_);
}
/**
* repeated string node_labels = 10;
*/
public int getNodeLabelsCount() {
return nodeLabels_.size();
}
/**
* repeated string node_labels = 10;
*/
public java.lang.String getNodeLabels(int index) {
return nodeLabels_.get(index);
}
/**
* repeated string node_labels = 10;
*/
public com.google.protobuf.ByteString
getNodeLabelsBytes(int index) {
return nodeLabels_.getByteString(index);
}
/**
* repeated string node_labels = 10;
*/
public Builder setNodeLabels(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureNodeLabelsIsMutable();
nodeLabels_.set(index, value);
onChanged();
return this;
}
/**
* repeated string node_labels = 10;
*/
public Builder addNodeLabels(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureNodeLabelsIsMutable();
nodeLabels_.add(value);
onChanged();
return this;
}
/**
* repeated string node_labels = 10;
*/
public Builder addAllNodeLabels(
java.lang.Iterable values) {
ensureNodeLabelsIsMutable();
super.addAll(values, nodeLabels_);
onChanged();
return this;
}
/**
* repeated string node_labels = 10;
*/
public Builder clearNodeLabels() {
nodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000200);
onChanged();
return this;
}
/**
* repeated string node_labels = 10;
*/
public Builder addNodeLabelsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
ensureNodeLabelsIsMutable();
nodeLabels_.add(value);
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.NodeReportProto)
}
static {
defaultInstance = new NodeReportProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.NodeReportProto)
}
public interface NodeIdToLabelsProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.NodeIdProto nodeId = 1;
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
boolean hasNodeId();
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId();
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder();
// repeated string nodeLabels = 2;
/**
* repeated string nodeLabels = 2;
*/
java.util.List
getNodeLabelsList();
/**
* repeated string nodeLabels = 2;
*/
int getNodeLabelsCount();
/**
* repeated string nodeLabels = 2;
*/
java.lang.String getNodeLabels(int index);
/**
* repeated string nodeLabels = 2;
*/
com.google.protobuf.ByteString
getNodeLabelsBytes(int index);
}
/**
* Protobuf type {@code hadoop.yarn.NodeIdToLabelsProto}
*/
public static final class NodeIdToLabelsProto extends
com.google.protobuf.GeneratedMessage
implements NodeIdToLabelsProtoOrBuilder {
// Use NodeIdToLabelsProto.newBuilder() to construct.
private NodeIdToLabelsProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private NodeIdToLabelsProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final NodeIdToLabelsProto defaultInstance;
public static NodeIdToLabelsProto getDefaultInstance() {
return defaultInstance;
}
public NodeIdToLabelsProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private NodeIdToLabelsProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = nodeId_.toBuilder();
}
nodeId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(nodeId_);
nodeId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
nodeLabels_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000002;
}
nodeLabels_.add(input.readBytes());
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
nodeLabels_ = new com.google.protobuf.UnmodifiableLazyStringList(nodeLabels_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdToLabelsProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdToLabelsProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto.class, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public NodeIdToLabelsProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new NodeIdToLabelsProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.NodeIdProto nodeId = 1;
public static final int NODEID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_;
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
return nodeId_;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
return nodeId_;
}
// repeated string nodeLabels = 2;
public static final int NODELABELS_FIELD_NUMBER = 2;
private com.google.protobuf.LazyStringList nodeLabels_;
/**
* repeated string nodeLabels = 2;
*/
public java.util.List
getNodeLabelsList() {
return nodeLabels_;
}
/**
* repeated string nodeLabels = 2;
*/
public int getNodeLabelsCount() {
return nodeLabels_.size();
}
/**
* repeated string nodeLabels = 2;
*/
public java.lang.String getNodeLabels(int index) {
return nodeLabels_.get(index);
}
/**
* repeated string nodeLabels = 2;
*/
public com.google.protobuf.ByteString
getNodeLabelsBytes(int index) {
return nodeLabels_.getByteString(index);
}
private void initFields() {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
nodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, nodeId_);
}
for (int i = 0; i < nodeLabels_.size(); i++) {
output.writeBytes(2, nodeLabels_.getByteString(i));
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, nodeId_);
}
{
int dataSize = 0;
for (int i = 0; i < nodeLabels_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(nodeLabels_.getByteString(i));
}
size += dataSize;
size += 1 * getNodeLabelsList().size();
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto other = (org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto) obj;
boolean result = true;
result = result && (hasNodeId() == other.hasNodeId());
if (hasNodeId()) {
result = result && getNodeId()
.equals(other.getNodeId());
}
result = result && getNodeLabelsList()
.equals(other.getNodeLabelsList());
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasNodeId()) {
hash = (37 * hash) + NODEID_FIELD_NUMBER;
hash = (53 * hash) + getNodeId().hashCode();
}
if (getNodeLabelsCount() > 0) {
hash = (37 * hash) + NODELABELS_FIELD_NUMBER;
hash = (53 * hash) + getNodeLabelsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.NodeIdToLabelsProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdToLabelsProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdToLabelsProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto.class, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getNodeIdFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
nodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_NodeIdToLabelsProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto result = new org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (nodeIdBuilder_ == null) {
result.nodeId_ = nodeId_;
} else {
result.nodeId_ = nodeIdBuilder_.build();
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
nodeLabels_ = new com.google.protobuf.UnmodifiableLazyStringList(
nodeLabels_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.nodeLabels_ = nodeLabels_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto.getDefaultInstance()) return this;
if (other.hasNodeId()) {
mergeNodeId(other.getNodeId());
}
if (!other.nodeLabels_.isEmpty()) {
if (nodeLabels_.isEmpty()) {
nodeLabels_ = other.nodeLabels_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureNodeLabelsIsMutable();
nodeLabels_.addAll(other.nodeLabels_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.NodeIdToLabelsProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.NodeIdProto nodeId = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder> nodeIdBuilder_;
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public boolean hasNodeId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto getNodeId() {
if (nodeIdBuilder_ == null) {
return nodeId_;
} else {
return nodeIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public Builder setNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
nodeId_ = value;
onChanged();
} else {
nodeIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public Builder setNodeId(
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder builderForValue) {
if (nodeIdBuilder_ == null) {
nodeId_ = builderForValue.build();
onChanged();
} else {
nodeIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public Builder mergeNodeId(org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto value) {
if (nodeIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
nodeId_ != org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance()) {
nodeId_ =
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.newBuilder(nodeId_).mergeFrom(value).buildPartial();
} else {
nodeId_ = value;
}
onChanged();
} else {
nodeIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public Builder clearNodeId() {
if (nodeIdBuilder_ == null) {
nodeId_ = org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.getDefaultInstance();
onChanged();
} else {
nodeIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder getNodeIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getNodeIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder getNodeIdOrBuilder() {
if (nodeIdBuilder_ != null) {
return nodeIdBuilder_.getMessageOrBuilder();
} else {
return nodeId_;
}
}
/**
* optional .hadoop.yarn.NodeIdProto nodeId = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>
getNodeIdFieldBuilder() {
if (nodeIdBuilder_ == null) {
nodeIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.NodeIdProtoOrBuilder>(
nodeId_,
getParentForChildren(),
isClean());
nodeId_ = null;
}
return nodeIdBuilder_;
}
// repeated string nodeLabels = 2;
private com.google.protobuf.LazyStringList nodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureNodeLabelsIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
nodeLabels_ = new com.google.protobuf.LazyStringArrayList(nodeLabels_);
bitField0_ |= 0x00000002;
}
}
/**
* repeated string nodeLabels = 2;
*/
public java.util.List
getNodeLabelsList() {
return java.util.Collections.unmodifiableList(nodeLabels_);
}
/**
* repeated string nodeLabels = 2;
*/
public int getNodeLabelsCount() {
return nodeLabels_.size();
}
/**
* repeated string nodeLabels = 2;
*/
public java.lang.String getNodeLabels(int index) {
return nodeLabels_.get(index);
}
/**
* repeated string nodeLabels = 2;
*/
public com.google.protobuf.ByteString
getNodeLabelsBytes(int index) {
return nodeLabels_.getByteString(index);
}
/**
* repeated string nodeLabels = 2;
*/
public Builder setNodeLabels(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureNodeLabelsIsMutable();
nodeLabels_.set(index, value);
onChanged();
return this;
}
/**
* repeated string nodeLabels = 2;
*/
public Builder addNodeLabels(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureNodeLabelsIsMutable();
nodeLabels_.add(value);
onChanged();
return this;
}
/**
* repeated string nodeLabels = 2;
*/
public Builder addAllNodeLabels(
java.lang.Iterable values) {
ensureNodeLabelsIsMutable();
super.addAll(values, nodeLabels_);
onChanged();
return this;
}
/**
* repeated string nodeLabels = 2;
*/
public Builder clearNodeLabels() {
nodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* repeated string nodeLabels = 2;
*/
public Builder addNodeLabelsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
ensureNodeLabelsIsMutable();
nodeLabels_.add(value);
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.NodeIdToLabelsProto)
}
static {
defaultInstance = new NodeIdToLabelsProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.NodeIdToLabelsProto)
}
public interface ResourceRequestProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.PriorityProto priority = 1;
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
boolean hasPriority();
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority();
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder();
// optional string resource_name = 2;
/**
* optional string resource_name = 2;
*/
boolean hasResourceName();
/**
* optional string resource_name = 2;
*/
java.lang.String getResourceName();
/**
* optional string resource_name = 2;
*/
com.google.protobuf.ByteString
getResourceNameBytes();
// optional .hadoop.yarn.ResourceProto capability = 3;
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
boolean hasCapability();
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getCapability();
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getCapabilityOrBuilder();
// optional int32 num_containers = 4;
/**
* optional int32 num_containers = 4;
*/
boolean hasNumContainers();
/**
* optional int32 num_containers = 4;
*/
int getNumContainers();
// optional bool relax_locality = 5 [default = true];
/**
* optional bool relax_locality = 5 [default = true];
*/
boolean hasRelaxLocality();
/**
* optional bool relax_locality = 5 [default = true];
*/
boolean getRelaxLocality();
// optional string node_label_expression = 6;
/**
* optional string node_label_expression = 6;
*/
boolean hasNodeLabelExpression();
/**
* optional string node_label_expression = 6;
*/
java.lang.String getNodeLabelExpression();
/**
* optional string node_label_expression = 6;
*/
com.google.protobuf.ByteString
getNodeLabelExpressionBytes();
}
/**
* Protobuf type {@code hadoop.yarn.ResourceRequestProto}
*
*
*//////////////////////////////////////////////////////////////////////
* //// From AM_RM_Protocol /////////////////////////////////////////////
* //////////////////////////////////////////////////////////////////////
*
*/
public static final class ResourceRequestProto extends
com.google.protobuf.GeneratedMessage
implements ResourceRequestProtoOrBuilder {
// Use ResourceRequestProto.newBuilder() to construct.
private ResourceRequestProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ResourceRequestProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ResourceRequestProto defaultInstance;
public static ResourceRequestProto getDefaultInstance() {
return defaultInstance;
}
public ResourceRequestProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ResourceRequestProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = priority_.toBuilder();
}
priority_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(priority_);
priority_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
bitField0_ |= 0x00000002;
resourceName_ = input.readBytes();
break;
}
case 26: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = capability_.toBuilder();
}
capability_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(capability_);
capability_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
case 32: {
bitField0_ |= 0x00000008;
numContainers_ = input.readInt32();
break;
}
case 40: {
bitField0_ |= 0x00000010;
relaxLocality_ = input.readBool();
break;
}
case 50: {
bitField0_ |= 0x00000020;
nodeLabelExpression_ = input.readBytes();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceRequestProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceRequestProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ResourceRequestProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ResourceRequestProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.PriorityProto priority = 1;
public static final int PRIORITY_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto priority_;
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority() {
return priority_;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder() {
return priority_;
}
// optional string resource_name = 2;
public static final int RESOURCE_NAME_FIELD_NUMBER = 2;
private java.lang.Object resourceName_;
/**
* optional string resource_name = 2;
*/
public boolean hasResourceName() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string resource_name = 2;
*/
public java.lang.String getResourceName() {
java.lang.Object ref = resourceName_;
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();
if (bs.isValidUtf8()) {
resourceName_ = s;
}
return s;
}
}
/**
* optional string resource_name = 2;
*/
public com.google.protobuf.ByteString
getResourceNameBytes() {
java.lang.Object ref = resourceName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
resourceName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional .hadoop.yarn.ResourceProto capability = 3;
public static final int CAPABILITY_FIELD_NUMBER = 3;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto capability_;
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public boolean hasCapability() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getCapability() {
return capability_;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getCapabilityOrBuilder() {
return capability_;
}
// optional int32 num_containers = 4;
public static final int NUM_CONTAINERS_FIELD_NUMBER = 4;
private int numContainers_;
/**
* optional int32 num_containers = 4;
*/
public boolean hasNumContainers() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional int32 num_containers = 4;
*/
public int getNumContainers() {
return numContainers_;
}
// optional bool relax_locality = 5 [default = true];
public static final int RELAX_LOCALITY_FIELD_NUMBER = 5;
private boolean relaxLocality_;
/**
* optional bool relax_locality = 5 [default = true];
*/
public boolean hasRelaxLocality() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional bool relax_locality = 5 [default = true];
*/
public boolean getRelaxLocality() {
return relaxLocality_;
}
// optional string node_label_expression = 6;
public static final int NODE_LABEL_EXPRESSION_FIELD_NUMBER = 6;
private java.lang.Object nodeLabelExpression_;
/**
* optional string node_label_expression = 6;
*/
public boolean hasNodeLabelExpression() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional string node_label_expression = 6;
*/
public java.lang.String getNodeLabelExpression() {
java.lang.Object ref = nodeLabelExpression_;
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();
if (bs.isValidUtf8()) {
nodeLabelExpression_ = s;
}
return s;
}
}
/**
* optional string node_label_expression = 6;
*/
public com.google.protobuf.ByteString
getNodeLabelExpressionBytes() {
java.lang.Object ref = nodeLabelExpression_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodeLabelExpression_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private void initFields() {
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
resourceName_ = "";
capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
numContainers_ = 0;
relaxLocality_ = true;
nodeLabelExpression_ = "";
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, priority_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getResourceNameBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(3, capability_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeInt32(4, numContainers_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeBool(5, relaxLocality_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeBytes(6, getNodeLabelExpressionBytes());
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, priority_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getResourceNameBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, capability_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(4, numContainers_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(5, relaxLocality_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(6, getNodeLabelExpressionBytes());
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto) obj;
boolean result = true;
result = result && (hasPriority() == other.hasPriority());
if (hasPriority()) {
result = result && getPriority()
.equals(other.getPriority());
}
result = result && (hasResourceName() == other.hasResourceName());
if (hasResourceName()) {
result = result && getResourceName()
.equals(other.getResourceName());
}
result = result && (hasCapability() == other.hasCapability());
if (hasCapability()) {
result = result && getCapability()
.equals(other.getCapability());
}
result = result && (hasNumContainers() == other.hasNumContainers());
if (hasNumContainers()) {
result = result && (getNumContainers()
== other.getNumContainers());
}
result = result && (hasRelaxLocality() == other.hasRelaxLocality());
if (hasRelaxLocality()) {
result = result && (getRelaxLocality()
== other.getRelaxLocality());
}
result = result && (hasNodeLabelExpression() == other.hasNodeLabelExpression());
if (hasNodeLabelExpression()) {
result = result && getNodeLabelExpression()
.equals(other.getNodeLabelExpression());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasPriority()) {
hash = (37 * hash) + PRIORITY_FIELD_NUMBER;
hash = (53 * hash) + getPriority().hashCode();
}
if (hasResourceName()) {
hash = (37 * hash) + RESOURCE_NAME_FIELD_NUMBER;
hash = (53 * hash) + getResourceName().hashCode();
}
if (hasCapability()) {
hash = (37 * hash) + CAPABILITY_FIELD_NUMBER;
hash = (53 * hash) + getCapability().hashCode();
}
if (hasNumContainers()) {
hash = (37 * hash) + NUM_CONTAINERS_FIELD_NUMBER;
hash = (53 * hash) + getNumContainers();
}
if (hasRelaxLocality()) {
hash = (37 * hash) + RELAX_LOCALITY_FIELD_NUMBER;
hash = (53 * hash) + hashBoolean(getRelaxLocality());
}
if (hasNodeLabelExpression()) {
hash = (37 * hash) + NODE_LABEL_EXPRESSION_FIELD_NUMBER;
hash = (53 * hash) + getNodeLabelExpression().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ResourceRequestProto}
*
*
*//////////////////////////////////////////////////////////////////////
* //// From AM_RM_Protocol /////////////////////////////////////////////
* //////////////////////////////////////////////////////////////////////
*
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceRequestProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceRequestProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getPriorityFieldBuilder();
getCapabilityFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (priorityBuilder_ == null) {
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
} else {
priorityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
resourceName_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
if (capabilityBuilder_ == null) {
capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
capabilityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
numContainers_ = 0;
bitField0_ = (bitField0_ & ~0x00000008);
relaxLocality_ = true;
bitField0_ = (bitField0_ & ~0x00000010);
nodeLabelExpression_ = "";
bitField0_ = (bitField0_ & ~0x00000020);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceRequestProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (priorityBuilder_ == null) {
result.priority_ = priority_;
} else {
result.priority_ = priorityBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.resourceName_ = resourceName_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (capabilityBuilder_ == null) {
result.capability_ = capability_;
} else {
result.capability_ = capabilityBuilder_.build();
}
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.numContainers_ = numContainers_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.relaxLocality_ = relaxLocality_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.nodeLabelExpression_ = nodeLabelExpression_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance()) return this;
if (other.hasPriority()) {
mergePriority(other.getPriority());
}
if (other.hasResourceName()) {
bitField0_ |= 0x00000002;
resourceName_ = other.resourceName_;
onChanged();
}
if (other.hasCapability()) {
mergeCapability(other.getCapability());
}
if (other.hasNumContainers()) {
setNumContainers(other.getNumContainers());
}
if (other.hasRelaxLocality()) {
setRelaxLocality(other.getRelaxLocality());
}
if (other.hasNodeLabelExpression()) {
bitField0_ |= 0x00000020;
nodeLabelExpression_ = other.nodeLabelExpression_;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.PriorityProto priority = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder> priorityBuilder_;
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority() {
if (priorityBuilder_ == null) {
return priority_;
} else {
return priorityBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public Builder setPriority(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto value) {
if (priorityBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
priority_ = value;
onChanged();
} else {
priorityBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public Builder setPriority(
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder builderForValue) {
if (priorityBuilder_ == null) {
priority_ = builderForValue.build();
onChanged();
} else {
priorityBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public Builder mergePriority(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto value) {
if (priorityBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
priority_ != org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance()) {
priority_ =
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.newBuilder(priority_).mergeFrom(value).buildPartial();
} else {
priority_ = value;
}
onChanged();
} else {
priorityBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public Builder clearPriority() {
if (priorityBuilder_ == null) {
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
onChanged();
} else {
priorityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder getPriorityBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getPriorityFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder() {
if (priorityBuilder_ != null) {
return priorityBuilder_.getMessageOrBuilder();
} else {
return priority_;
}
}
/**
* optional .hadoop.yarn.PriorityProto priority = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder>
getPriorityFieldBuilder() {
if (priorityBuilder_ == null) {
priorityBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder>(
priority_,
getParentForChildren(),
isClean());
priority_ = null;
}
return priorityBuilder_;
}
// optional string resource_name = 2;
private java.lang.Object resourceName_ = "";
/**
* optional string resource_name = 2;
*/
public boolean hasResourceName() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string resource_name = 2;
*/
public java.lang.String getResourceName() {
java.lang.Object ref = resourceName_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
resourceName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string resource_name = 2;
*/
public com.google.protobuf.ByteString
getResourceNameBytes() {
java.lang.Object ref = resourceName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
resourceName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string resource_name = 2;
*/
public Builder setResourceName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
resourceName_ = value;
onChanged();
return this;
}
/**
* optional string resource_name = 2;
*/
public Builder clearResourceName() {
bitField0_ = (bitField0_ & ~0x00000002);
resourceName_ = getDefaultInstance().getResourceName();
onChanged();
return this;
}
/**
* optional string resource_name = 2;
*/
public Builder setResourceNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
resourceName_ = value;
onChanged();
return this;
}
// optional .hadoop.yarn.ResourceProto capability = 3;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> capabilityBuilder_;
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public boolean hasCapability() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getCapability() {
if (capabilityBuilder_ == null) {
return capability_;
} else {
return capabilityBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public Builder setCapability(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (capabilityBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
capability_ = value;
onChanged();
} else {
capabilityBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public Builder setCapability(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (capabilityBuilder_ == null) {
capability_ = builderForValue.build();
onChanged();
} else {
capabilityBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public Builder mergeCapability(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (capabilityBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
capability_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
capability_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(capability_).mergeFrom(value).buildPartial();
} else {
capability_ = value;
}
onChanged();
} else {
capabilityBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public Builder clearCapability() {
if (capabilityBuilder_ == null) {
capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
capabilityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getCapabilityBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getCapabilityFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getCapabilityOrBuilder() {
if (capabilityBuilder_ != null) {
return capabilityBuilder_.getMessageOrBuilder();
} else {
return capability_;
}
}
/**
* optional .hadoop.yarn.ResourceProto capability = 3;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getCapabilityFieldBuilder() {
if (capabilityBuilder_ == null) {
capabilityBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
capability_,
getParentForChildren(),
isClean());
capability_ = null;
}
return capabilityBuilder_;
}
// optional int32 num_containers = 4;
private int numContainers_ ;
/**
* optional int32 num_containers = 4;
*/
public boolean hasNumContainers() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional int32 num_containers = 4;
*/
public int getNumContainers() {
return numContainers_;
}
/**
* optional int32 num_containers = 4;
*/
public Builder setNumContainers(int value) {
bitField0_ |= 0x00000008;
numContainers_ = value;
onChanged();
return this;
}
/**
* optional int32 num_containers = 4;
*/
public Builder clearNumContainers() {
bitField0_ = (bitField0_ & ~0x00000008);
numContainers_ = 0;
onChanged();
return this;
}
// optional bool relax_locality = 5 [default = true];
private boolean relaxLocality_ = true;
/**
* optional bool relax_locality = 5 [default = true];
*/
public boolean hasRelaxLocality() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional bool relax_locality = 5 [default = true];
*/
public boolean getRelaxLocality() {
return relaxLocality_;
}
/**
* optional bool relax_locality = 5 [default = true];
*/
public Builder setRelaxLocality(boolean value) {
bitField0_ |= 0x00000010;
relaxLocality_ = value;
onChanged();
return this;
}
/**
* optional bool relax_locality = 5 [default = true];
*/
public Builder clearRelaxLocality() {
bitField0_ = (bitField0_ & ~0x00000010);
relaxLocality_ = true;
onChanged();
return this;
}
// optional string node_label_expression = 6;
private java.lang.Object nodeLabelExpression_ = "";
/**
* optional string node_label_expression = 6;
*/
public boolean hasNodeLabelExpression() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional string node_label_expression = 6;
*/
public java.lang.String getNodeLabelExpression() {
java.lang.Object ref = nodeLabelExpression_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
nodeLabelExpression_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string node_label_expression = 6;
*/
public com.google.protobuf.ByteString
getNodeLabelExpressionBytes() {
java.lang.Object ref = nodeLabelExpression_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodeLabelExpression_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string node_label_expression = 6;
*/
public Builder setNodeLabelExpression(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
nodeLabelExpression_ = value;
onChanged();
return this;
}
/**
* optional string node_label_expression = 6;
*/
public Builder clearNodeLabelExpression() {
bitField0_ = (bitField0_ & ~0x00000020);
nodeLabelExpression_ = getDefaultInstance().getNodeLabelExpression();
onChanged();
return this;
}
/**
* optional string node_label_expression = 6;
*/
public Builder setNodeLabelExpressionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
nodeLabelExpression_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ResourceRequestProto)
}
static {
defaultInstance = new ResourceRequestProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ResourceRequestProto)
}
public interface PreemptionMessageProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
boolean hasStrictContract();
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto getStrictContract();
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProtoOrBuilder getStrictContractOrBuilder();
// optional .hadoop.yarn.PreemptionContractProto contract = 2;
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
boolean hasContract();
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto getContract();
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProtoOrBuilder getContractOrBuilder();
}
/**
* Protobuf type {@code hadoop.yarn.PreemptionMessageProto}
*/
public static final class PreemptionMessageProto extends
com.google.protobuf.GeneratedMessage
implements PreemptionMessageProtoOrBuilder {
// Use PreemptionMessageProto.newBuilder() to construct.
private PreemptionMessageProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private PreemptionMessageProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final PreemptionMessageProto defaultInstance;
public static PreemptionMessageProto getDefaultInstance() {
return defaultInstance;
}
public PreemptionMessageProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PreemptionMessageProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = strictContract_.toBuilder();
}
strictContract_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(strictContract_);
strictContract_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = contract_.toBuilder();
}
contract_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(contract_);
contract_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionMessageProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionMessageProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public PreemptionMessageProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PreemptionMessageProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
public static final int STRICTCONTRACT_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto strictContract_;
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public boolean hasStrictContract() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto getStrictContract() {
return strictContract_;
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProtoOrBuilder getStrictContractOrBuilder() {
return strictContract_;
}
// optional .hadoop.yarn.PreemptionContractProto contract = 2;
public static final int CONTRACT_FIELD_NUMBER = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto contract_;
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public boolean hasContract() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto getContract() {
return contract_;
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProtoOrBuilder getContractOrBuilder() {
return contract_;
}
private void initFields() {
strictContract_ = org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.getDefaultInstance();
contract_ = org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.getDefaultInstance();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, strictContract_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, contract_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, strictContract_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, contract_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto other = (org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto) obj;
boolean result = true;
result = result && (hasStrictContract() == other.hasStrictContract());
if (hasStrictContract()) {
result = result && getStrictContract()
.equals(other.getStrictContract());
}
result = result && (hasContract() == other.hasContract());
if (hasContract()) {
result = result && getContract()
.equals(other.getContract());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasStrictContract()) {
hash = (37 * hash) + STRICTCONTRACT_FIELD_NUMBER;
hash = (53 * hash) + getStrictContract().hashCode();
}
if (hasContract()) {
hash = (37 * hash) + CONTRACT_FIELD_NUMBER;
hash = (53 * hash) + getContract().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.PreemptionMessageProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionMessageProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionMessageProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getStrictContractFieldBuilder();
getContractFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (strictContractBuilder_ == null) {
strictContract_ = org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.getDefaultInstance();
} else {
strictContractBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (contractBuilder_ == null) {
contract_ = org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.getDefaultInstance();
} else {
contractBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionMessageProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto result = new org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (strictContractBuilder_ == null) {
result.strictContract_ = strictContract_;
} else {
result.strictContract_ = strictContractBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (contractBuilder_ == null) {
result.contract_ = contract_;
} else {
result.contract_ = contractBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto.getDefaultInstance()) return this;
if (other.hasStrictContract()) {
mergeStrictContract(other.getStrictContract());
}
if (other.hasContract()) {
mergeContract(other.getContract());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto strictContract_ = org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto, org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProtoOrBuilder> strictContractBuilder_;
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public boolean hasStrictContract() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto getStrictContract() {
if (strictContractBuilder_ == null) {
return strictContract_;
} else {
return strictContractBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public Builder setStrictContract(org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto value) {
if (strictContractBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
strictContract_ = value;
onChanged();
} else {
strictContractBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public Builder setStrictContract(
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.Builder builderForValue) {
if (strictContractBuilder_ == null) {
strictContract_ = builderForValue.build();
onChanged();
} else {
strictContractBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public Builder mergeStrictContract(org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto value) {
if (strictContractBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
strictContract_ != org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.getDefaultInstance()) {
strictContract_ =
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.newBuilder(strictContract_).mergeFrom(value).buildPartial();
} else {
strictContract_ = value;
}
onChanged();
} else {
strictContractBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public Builder clearStrictContract() {
if (strictContractBuilder_ == null) {
strictContract_ = org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.getDefaultInstance();
onChanged();
} else {
strictContractBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.Builder getStrictContractBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getStrictContractFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProtoOrBuilder getStrictContractOrBuilder() {
if (strictContractBuilder_ != null) {
return strictContractBuilder_.getMessageOrBuilder();
} else {
return strictContract_;
}
}
/**
* optional .hadoop.yarn.StrictPreemptionContractProto strictContract = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto, org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProtoOrBuilder>
getStrictContractFieldBuilder() {
if (strictContractBuilder_ == null) {
strictContractBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto, org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProtoOrBuilder>(
strictContract_,
getParentForChildren(),
isClean());
strictContract_ = null;
}
return strictContractBuilder_;
}
// optional .hadoop.yarn.PreemptionContractProto contract = 2;
private org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto contract_ = org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProtoOrBuilder> contractBuilder_;
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public boolean hasContract() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto getContract() {
if (contractBuilder_ == null) {
return contract_;
} else {
return contractBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public Builder setContract(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto value) {
if (contractBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
contract_ = value;
onChanged();
} else {
contractBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public Builder setContract(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.Builder builderForValue) {
if (contractBuilder_ == null) {
contract_ = builderForValue.build();
onChanged();
} else {
contractBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public Builder mergeContract(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto value) {
if (contractBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
contract_ != org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.getDefaultInstance()) {
contract_ =
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.newBuilder(contract_).mergeFrom(value).buildPartial();
} else {
contract_ = value;
}
onChanged();
} else {
contractBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public Builder clearContract() {
if (contractBuilder_ == null) {
contract_ = org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.getDefaultInstance();
onChanged();
} else {
contractBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.Builder getContractBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getContractFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProtoOrBuilder getContractOrBuilder() {
if (contractBuilder_ != null) {
return contractBuilder_.getMessageOrBuilder();
} else {
return contract_;
}
}
/**
* optional .hadoop.yarn.PreemptionContractProto contract = 2;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProtoOrBuilder>
getContractFieldBuilder() {
if (contractBuilder_ == null) {
contractBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProtoOrBuilder>(
contract_,
getParentForChildren(),
isClean());
contract_ = null;
}
return contractBuilder_;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.PreemptionMessageProto)
}
static {
defaultInstance = new PreemptionMessageProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.PreemptionMessageProto)
}
public interface StrictPreemptionContractProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// repeated .hadoop.yarn.PreemptionContainerProto container = 1;
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
java.util.List
getContainerList();
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto getContainer(int index);
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
int getContainerCount();
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>
getContainerOrBuilderList();
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder getContainerOrBuilder(
int index);
}
/**
* Protobuf type {@code hadoop.yarn.StrictPreemptionContractProto}
*/
public static final class StrictPreemptionContractProto extends
com.google.protobuf.GeneratedMessage
implements StrictPreemptionContractProtoOrBuilder {
// Use StrictPreemptionContractProto.newBuilder() to construct.
private StrictPreemptionContractProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private StrictPreemptionContractProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final StrictPreemptionContractProto defaultInstance;
public static StrictPreemptionContractProto getDefaultInstance() {
return defaultInstance;
}
public StrictPreemptionContractProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StrictPreemptionContractProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
container_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
container_.add(input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.PARSER, extensionRegistry));
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
container_ = java.util.Collections.unmodifiableList(container_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_StrictPreemptionContractProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_StrictPreemptionContractProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.class, org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public StrictPreemptionContractProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StrictPreemptionContractProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
// repeated .hadoop.yarn.PreemptionContainerProto container = 1;
public static final int CONTAINER_FIELD_NUMBER = 1;
private java.util.List container_;
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public java.util.List getContainerList() {
return container_;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>
getContainerOrBuilderList() {
return container_;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public int getContainerCount() {
return container_.size();
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto getContainer(int index) {
return container_.get(index);
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder getContainerOrBuilder(
int index) {
return container_.get(index);
}
private void initFields() {
container_ = java.util.Collections.emptyList();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
for (int i = 0; i < container_.size(); i++) {
output.writeMessage(1, container_.get(i));
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < container_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, container_.get(i));
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto other = (org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto) obj;
boolean result = true;
result = result && getContainerList()
.equals(other.getContainerList());
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (getContainerCount() > 0) {
hash = (37 * hash) + CONTAINER_FIELD_NUMBER;
hash = (53 * hash) + getContainerList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.StrictPreemptionContractProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_StrictPreemptionContractProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_StrictPreemptionContractProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.class, org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getContainerFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (containerBuilder_ == null) {
container_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
containerBuilder_.clear();
}
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_StrictPreemptionContractProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto result = new org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto(this);
int from_bitField0_ = bitField0_;
if (containerBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001)) {
container_ = java.util.Collections.unmodifiableList(container_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.container_ = container_;
} else {
result.container_ = containerBuilder_.build();
}
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto.getDefaultInstance()) return this;
if (containerBuilder_ == null) {
if (!other.container_.isEmpty()) {
if (container_.isEmpty()) {
container_ = other.container_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureContainerIsMutable();
container_.addAll(other.container_);
}
onChanged();
}
} else {
if (!other.container_.isEmpty()) {
if (containerBuilder_.isEmpty()) {
containerBuilder_.dispose();
containerBuilder_ = null;
container_ = other.container_;
bitField0_ = (bitField0_ & ~0x00000001);
containerBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getContainerFieldBuilder() : null;
} else {
containerBuilder_.addAllMessages(other.container_);
}
}
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// repeated .hadoop.yarn.PreemptionContainerProto container = 1;
private java.util.List container_ =
java.util.Collections.emptyList();
private void ensureContainerIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
container_ = new java.util.ArrayList(container_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder> containerBuilder_;
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public java.util.List getContainerList() {
if (containerBuilder_ == null) {
return java.util.Collections.unmodifiableList(container_);
} else {
return containerBuilder_.getMessageList();
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public int getContainerCount() {
if (containerBuilder_ == null) {
return container_.size();
} else {
return containerBuilder_.getCount();
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto getContainer(int index) {
if (containerBuilder_ == null) {
return container_.get(index);
} else {
return containerBuilder_.getMessage(index);
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public Builder setContainer(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto value) {
if (containerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContainerIsMutable();
container_.set(index, value);
onChanged();
} else {
containerBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public Builder setContainer(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder builderForValue) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
container_.set(index, builderForValue.build());
onChanged();
} else {
containerBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public Builder addContainer(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto value) {
if (containerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContainerIsMutable();
container_.add(value);
onChanged();
} else {
containerBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public Builder addContainer(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto value) {
if (containerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContainerIsMutable();
container_.add(index, value);
onChanged();
} else {
containerBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public Builder addContainer(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder builderForValue) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
container_.add(builderForValue.build());
onChanged();
} else {
containerBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public Builder addContainer(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder builderForValue) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
container_.add(index, builderForValue.build());
onChanged();
} else {
containerBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public Builder addAllContainer(
java.lang.Iterable extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto> values) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
super.addAll(values, container_);
onChanged();
} else {
containerBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public Builder clearContainer() {
if (containerBuilder_ == null) {
container_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
containerBuilder_.clear();
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public Builder removeContainer(int index) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
container_.remove(index);
onChanged();
} else {
containerBuilder_.remove(index);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder getContainerBuilder(
int index) {
return getContainerFieldBuilder().getBuilder(index);
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder getContainerOrBuilder(
int index) {
if (containerBuilder_ == null) {
return container_.get(index); } else {
return containerBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>
getContainerOrBuilderList() {
if (containerBuilder_ != null) {
return containerBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(container_);
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder addContainerBuilder() {
return getContainerFieldBuilder().addBuilder(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder addContainerBuilder(
int index) {
return getContainerFieldBuilder().addBuilder(
index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 1;
*/
public java.util.List
getContainerBuilderList() {
return getContainerFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>
getContainerFieldBuilder() {
if (containerBuilder_ == null) {
containerBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>(
container_,
((bitField0_ & 0x00000001) == 0x00000001),
getParentForChildren(),
isClean());
container_ = null;
}
return containerBuilder_;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.StrictPreemptionContractProto)
}
static {
defaultInstance = new StrictPreemptionContractProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.StrictPreemptionContractProto)
}
public interface PreemptionContractProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
java.util.List
getResourceList();
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto getResource(int index);
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
int getResourceCount();
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder>
getResourceOrBuilderList();
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder getResourceOrBuilder(
int index);
// repeated .hadoop.yarn.PreemptionContainerProto container = 2;
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
java.util.List
getContainerList();
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto getContainer(int index);
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
int getContainerCount();
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>
getContainerOrBuilderList();
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder getContainerOrBuilder(
int index);
}
/**
* Protobuf type {@code hadoop.yarn.PreemptionContractProto}
*/
public static final class PreemptionContractProto extends
com.google.protobuf.GeneratedMessage
implements PreemptionContractProtoOrBuilder {
// Use PreemptionContractProto.newBuilder() to construct.
private PreemptionContractProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private PreemptionContractProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final PreemptionContractProto defaultInstance;
public static PreemptionContractProto getDefaultInstance() {
return defaultInstance;
}
public PreemptionContractProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PreemptionContractProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
resource_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
resource_.add(input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.PARSER, extensionRegistry));
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
container_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
container_.add(input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.PARSER, extensionRegistry));
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
resource_ = java.util.Collections.unmodifiableList(resource_);
}
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
container_ = java.util.Collections.unmodifiableList(container_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContractProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContractProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public PreemptionContractProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PreemptionContractProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
// repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
public static final int RESOURCE_FIELD_NUMBER = 1;
private java.util.List resource_;
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public java.util.List getResourceList() {
return resource_;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder>
getResourceOrBuilderList() {
return resource_;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public int getResourceCount() {
return resource_.size();
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto getResource(int index) {
return resource_.get(index);
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder getResourceOrBuilder(
int index) {
return resource_.get(index);
}
// repeated .hadoop.yarn.PreemptionContainerProto container = 2;
public static final int CONTAINER_FIELD_NUMBER = 2;
private java.util.List container_;
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public java.util.List getContainerList() {
return container_;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>
getContainerOrBuilderList() {
return container_;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public int getContainerCount() {
return container_.size();
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto getContainer(int index) {
return container_.get(index);
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder getContainerOrBuilder(
int index) {
return container_.get(index);
}
private void initFields() {
resource_ = java.util.Collections.emptyList();
container_ = java.util.Collections.emptyList();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
for (int i = 0; i < resource_.size(); i++) {
output.writeMessage(1, resource_.get(i));
}
for (int i = 0; i < container_.size(); i++) {
output.writeMessage(2, container_.get(i));
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < resource_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, resource_.get(i));
}
for (int i = 0; i < container_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, container_.get(i));
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto other = (org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto) obj;
boolean result = true;
result = result && getResourceList()
.equals(other.getResourceList());
result = result && getContainerList()
.equals(other.getContainerList());
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (getResourceCount() > 0) {
hash = (37 * hash) + RESOURCE_FIELD_NUMBER;
hash = (53 * hash) + getResourceList().hashCode();
}
if (getContainerCount() > 0) {
hash = (37 * hash) + CONTAINER_FIELD_NUMBER;
hash = (53 * hash) + getContainerList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.PreemptionContractProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContractProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContractProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getResourceFieldBuilder();
getContainerFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (resourceBuilder_ == null) {
resource_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
resourceBuilder_.clear();
}
if (containerBuilder_ == null) {
container_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
containerBuilder_.clear();
}
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContractProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto result = new org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto(this);
int from_bitField0_ = bitField0_;
if (resourceBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001)) {
resource_ = java.util.Collections.unmodifiableList(resource_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.resource_ = resource_;
} else {
result.resource_ = resourceBuilder_.build();
}
if (containerBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
container_ = java.util.Collections.unmodifiableList(container_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.container_ = container_;
} else {
result.container_ = containerBuilder_.build();
}
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto.getDefaultInstance()) return this;
if (resourceBuilder_ == null) {
if (!other.resource_.isEmpty()) {
if (resource_.isEmpty()) {
resource_ = other.resource_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureResourceIsMutable();
resource_.addAll(other.resource_);
}
onChanged();
}
} else {
if (!other.resource_.isEmpty()) {
if (resourceBuilder_.isEmpty()) {
resourceBuilder_.dispose();
resourceBuilder_ = null;
resource_ = other.resource_;
bitField0_ = (bitField0_ & ~0x00000001);
resourceBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getResourceFieldBuilder() : null;
} else {
resourceBuilder_.addAllMessages(other.resource_);
}
}
}
if (containerBuilder_ == null) {
if (!other.container_.isEmpty()) {
if (container_.isEmpty()) {
container_ = other.container_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureContainerIsMutable();
container_.addAll(other.container_);
}
onChanged();
}
} else {
if (!other.container_.isEmpty()) {
if (containerBuilder_.isEmpty()) {
containerBuilder_.dispose();
containerBuilder_ = null;
container_ = other.container_;
bitField0_ = (bitField0_ & ~0x00000002);
containerBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getContainerFieldBuilder() : null;
} else {
containerBuilder_.addAllMessages(other.container_);
}
}
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
private java.util.List resource_ =
java.util.Collections.emptyList();
private void ensureResourceIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
resource_ = new java.util.ArrayList(resource_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder> resourceBuilder_;
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public java.util.List getResourceList() {
if (resourceBuilder_ == null) {
return java.util.Collections.unmodifiableList(resource_);
} else {
return resourceBuilder_.getMessageList();
}
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public int getResourceCount() {
if (resourceBuilder_ == null) {
return resource_.size();
} else {
return resourceBuilder_.getCount();
}
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto getResource(int index) {
if (resourceBuilder_ == null) {
return resource_.get(index);
} else {
return resourceBuilder_.getMessage(index);
}
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public Builder setResource(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto value) {
if (resourceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureResourceIsMutable();
resource_.set(index, value);
onChanged();
} else {
resourceBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public Builder setResource(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder builderForValue) {
if (resourceBuilder_ == null) {
ensureResourceIsMutable();
resource_.set(index, builderForValue.build());
onChanged();
} else {
resourceBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public Builder addResource(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto value) {
if (resourceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureResourceIsMutable();
resource_.add(value);
onChanged();
} else {
resourceBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public Builder addResource(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto value) {
if (resourceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureResourceIsMutable();
resource_.add(index, value);
onChanged();
} else {
resourceBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public Builder addResource(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder builderForValue) {
if (resourceBuilder_ == null) {
ensureResourceIsMutable();
resource_.add(builderForValue.build());
onChanged();
} else {
resourceBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public Builder addResource(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder builderForValue) {
if (resourceBuilder_ == null) {
ensureResourceIsMutable();
resource_.add(index, builderForValue.build());
onChanged();
} else {
resourceBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public Builder addAllResource(
java.lang.Iterable extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto> values) {
if (resourceBuilder_ == null) {
ensureResourceIsMutable();
super.addAll(values, resource_);
onChanged();
} else {
resourceBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public Builder clearResource() {
if (resourceBuilder_ == null) {
resource_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
resourceBuilder_.clear();
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public Builder removeResource(int index) {
if (resourceBuilder_ == null) {
ensureResourceIsMutable();
resource_.remove(index);
onChanged();
} else {
resourceBuilder_.remove(index);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder getResourceBuilder(
int index) {
return getResourceFieldBuilder().getBuilder(index);
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder getResourceOrBuilder(
int index) {
if (resourceBuilder_ == null) {
return resource_.get(index); } else {
return resourceBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder>
getResourceOrBuilderList() {
if (resourceBuilder_ != null) {
return resourceBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(resource_);
}
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder addResourceBuilder() {
return getResourceFieldBuilder().addBuilder(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder addResourceBuilder(
int index) {
return getResourceFieldBuilder().addBuilder(
index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.PreemptionResourceRequestProto resource = 1;
*/
public java.util.List
getResourceBuilderList() {
return getResourceFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder>
getResourceFieldBuilder() {
if (resourceBuilder_ == null) {
resourceBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder>(
resource_,
((bitField0_ & 0x00000001) == 0x00000001),
getParentForChildren(),
isClean());
resource_ = null;
}
return resourceBuilder_;
}
// repeated .hadoop.yarn.PreemptionContainerProto container = 2;
private java.util.List container_ =
java.util.Collections.emptyList();
private void ensureContainerIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
container_ = new java.util.ArrayList(container_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder> containerBuilder_;
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public java.util.List getContainerList() {
if (containerBuilder_ == null) {
return java.util.Collections.unmodifiableList(container_);
} else {
return containerBuilder_.getMessageList();
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public int getContainerCount() {
if (containerBuilder_ == null) {
return container_.size();
} else {
return containerBuilder_.getCount();
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto getContainer(int index) {
if (containerBuilder_ == null) {
return container_.get(index);
} else {
return containerBuilder_.getMessage(index);
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public Builder setContainer(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto value) {
if (containerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContainerIsMutable();
container_.set(index, value);
onChanged();
} else {
containerBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public Builder setContainer(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder builderForValue) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
container_.set(index, builderForValue.build());
onChanged();
} else {
containerBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public Builder addContainer(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto value) {
if (containerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContainerIsMutable();
container_.add(value);
onChanged();
} else {
containerBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public Builder addContainer(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto value) {
if (containerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContainerIsMutable();
container_.add(index, value);
onChanged();
} else {
containerBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public Builder addContainer(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder builderForValue) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
container_.add(builderForValue.build());
onChanged();
} else {
containerBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public Builder addContainer(
int index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder builderForValue) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
container_.add(index, builderForValue.build());
onChanged();
} else {
containerBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public Builder addAllContainer(
java.lang.Iterable extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto> values) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
super.addAll(values, container_);
onChanged();
} else {
containerBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public Builder clearContainer() {
if (containerBuilder_ == null) {
container_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
containerBuilder_.clear();
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public Builder removeContainer(int index) {
if (containerBuilder_ == null) {
ensureContainerIsMutable();
container_.remove(index);
onChanged();
} else {
containerBuilder_.remove(index);
}
return this;
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder getContainerBuilder(
int index) {
return getContainerFieldBuilder().getBuilder(index);
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder getContainerOrBuilder(
int index) {
if (containerBuilder_ == null) {
return container_.get(index); } else {
return containerBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>
getContainerOrBuilderList() {
if (containerBuilder_ != null) {
return containerBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(container_);
}
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder addContainerBuilder() {
return getContainerFieldBuilder().addBuilder(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder addContainerBuilder(
int index) {
return getContainerFieldBuilder().addBuilder(
index, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.PreemptionContainerProto container = 2;
*/
public java.util.List
getContainerBuilderList() {
return getContainerFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>
getContainerFieldBuilder() {
if (containerBuilder_ == null) {
containerBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder>(
container_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
container_ = null;
}
return containerBuilder_;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.PreemptionContractProto)
}
static {
defaultInstance = new PreemptionContractProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.PreemptionContractProto)
}
public interface PreemptionContainerProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ContainerIdProto id = 1;
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
boolean hasId();
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getId();
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getIdOrBuilder();
}
/**
* Protobuf type {@code hadoop.yarn.PreemptionContainerProto}
*/
public static final class PreemptionContainerProto extends
com.google.protobuf.GeneratedMessage
implements PreemptionContainerProtoOrBuilder {
// Use PreemptionContainerProto.newBuilder() to construct.
private PreemptionContainerProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private PreemptionContainerProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final PreemptionContainerProto defaultInstance;
public static PreemptionContainerProto getDefaultInstance() {
return defaultInstance;
}
public PreemptionContainerProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PreemptionContainerProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = id_.toBuilder();
}
id_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(id_);
id_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContainerProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContainerProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public PreemptionContainerProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PreemptionContainerProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ContainerIdProto id = 1;
public static final int ID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto id_;
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getId() {
return id_;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getIdOrBuilder() {
return id_;
}
private void initFields() {
id_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, id_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, id_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto other = (org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto) obj;
boolean result = true;
result = result && (hasId() == other.hasId());
if (hasId()) {
result = result && getId()
.equals(other.getId());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasId()) {
hash = (37 * hash) + ID_FIELD_NUMBER;
hash = (53 * hash) + getId().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.PreemptionContainerProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContainerProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContainerProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getIdFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (idBuilder_ == null) {
id_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
} else {
idBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionContainerProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto result = new org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (idBuilder_ == null) {
result.id_ = id_;
} else {
result.id_ = idBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto.getDefaultInstance()) return this;
if (other.hasId()) {
mergeId(other.getId());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ContainerIdProto id = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto id_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder> idBuilder_;
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto getId() {
if (idBuilder_ == null) {
return id_;
} else {
return idBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public Builder setId(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto value) {
if (idBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
id_ = value;
onChanged();
} else {
idBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public Builder setId(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder builderForValue) {
if (idBuilder_ == null) {
id_ = builderForValue.build();
onChanged();
} else {
idBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public Builder mergeId(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto value) {
if (idBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
id_ != org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance()) {
id_ =
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.newBuilder(id_).mergeFrom(value).buildPartial();
} else {
id_ = value;
}
onChanged();
} else {
idBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public Builder clearId() {
if (idBuilder_ == null) {
id_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.getDefaultInstance();
onChanged();
} else {
idBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder getIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder getIdOrBuilder() {
if (idBuilder_ != null) {
return idBuilder_.getMessageOrBuilder();
} else {
return id_;
}
}
/**
* optional .hadoop.yarn.ContainerIdProto id = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder>
getIdFieldBuilder() {
if (idBuilder_ == null) {
idBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProtoOrBuilder>(
id_,
getParentForChildren(),
isClean());
id_ = null;
}
return idBuilder_;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.PreemptionContainerProto)
}
static {
defaultInstance = new PreemptionContainerProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.PreemptionContainerProto)
}
public interface PreemptionResourceRequestProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ResourceRequestProto resource = 1;
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
boolean hasResource();
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto getResource();
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder getResourceOrBuilder();
}
/**
* Protobuf type {@code hadoop.yarn.PreemptionResourceRequestProto}
*/
public static final class PreemptionResourceRequestProto extends
com.google.protobuf.GeneratedMessage
implements PreemptionResourceRequestProtoOrBuilder {
// Use PreemptionResourceRequestProto.newBuilder() to construct.
private PreemptionResourceRequestProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private PreemptionResourceRequestProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final PreemptionResourceRequestProto defaultInstance;
public static PreemptionResourceRequestProto getDefaultInstance() {
return defaultInstance;
}
public PreemptionResourceRequestProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PreemptionResourceRequestProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = resource_.toBuilder();
}
resource_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(resource_);
resource_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionResourceRequestProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionResourceRequestProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public PreemptionResourceRequestProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PreemptionResourceRequestProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ResourceRequestProto resource = 1;
public static final int RESOURCE_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto resource_;
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto getResource() {
return resource_;
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder getResourceOrBuilder() {
return resource_;
}
private void initFields() {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, resource_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, resource_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto other = (org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto) obj;
boolean result = true;
result = result && (hasResource() == other.hasResource());
if (hasResource()) {
result = result && getResource()
.equals(other.getResource());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasResource()) {
hash = (37 * hash) + RESOURCE_FIELD_NUMBER;
hash = (53 * hash) + getResource().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.PreemptionResourceRequestProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionResourceRequestProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionResourceRequestProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.class, org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getResourceFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_PreemptionResourceRequestProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto result = new org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (resourceBuilder_ == null) {
result.resource_ = resource_;
} else {
result.resource_ = resourceBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto.getDefaultInstance()) return this;
if (other.hasResource()) {
mergeResource(other.getResource());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ResourceRequestProto resource = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder> resourceBuilder_;
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto getResource() {
if (resourceBuilder_ == null) {
return resource_;
} else {
return resourceBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public Builder setResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto value) {
if (resourceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resource_ = value;
onChanged();
} else {
resourceBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public Builder setResource(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder builderForValue) {
if (resourceBuilder_ == null) {
resource_ = builderForValue.build();
onChanged();
} else {
resourceBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public Builder mergeResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto value) {
if (resourceBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
resource_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance()) {
resource_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.newBuilder(resource_).mergeFrom(value).buildPartial();
} else {
resource_ = value;
}
onChanged();
} else {
resourceBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public Builder clearResource() {
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance();
onChanged();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder getResourceBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getResourceFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder getResourceOrBuilder() {
if (resourceBuilder_ != null) {
return resourceBuilder_.getMessageOrBuilder();
} else {
return resource_;
}
}
/**
* optional .hadoop.yarn.ResourceRequestProto resource = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder>
getResourceFieldBuilder() {
if (resourceBuilder_ == null) {
resourceBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder>(
resource_,
getParentForChildren(),
isClean());
resource_ = null;
}
return resourceBuilder_;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.PreemptionResourceRequestProto)
}
static {
defaultInstance = new PreemptionResourceRequestProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.PreemptionResourceRequestProto)
}
public interface ResourceBlacklistRequestProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// repeated string blacklist_additions = 1;
/**
* repeated string blacklist_additions = 1;
*/
java.util.List
getBlacklistAdditionsList();
/**
* repeated string blacklist_additions = 1;
*/
int getBlacklistAdditionsCount();
/**
* repeated string blacklist_additions = 1;
*/
java.lang.String getBlacklistAdditions(int index);
/**
* repeated string blacklist_additions = 1;
*/
com.google.protobuf.ByteString
getBlacklistAdditionsBytes(int index);
// repeated string blacklist_removals = 2;
/**
* repeated string blacklist_removals = 2;
*/
java.util.List
getBlacklistRemovalsList();
/**
* repeated string blacklist_removals = 2;
*/
int getBlacklistRemovalsCount();
/**
* repeated string blacklist_removals = 2;
*/
java.lang.String getBlacklistRemovals(int index);
/**
* repeated string blacklist_removals = 2;
*/
com.google.protobuf.ByteString
getBlacklistRemovalsBytes(int index);
}
/**
* Protobuf type {@code hadoop.yarn.ResourceBlacklistRequestProto}
*/
public static final class ResourceBlacklistRequestProto extends
com.google.protobuf.GeneratedMessage
implements ResourceBlacklistRequestProtoOrBuilder {
// Use ResourceBlacklistRequestProto.newBuilder() to construct.
private ResourceBlacklistRequestProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ResourceBlacklistRequestProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ResourceBlacklistRequestProto defaultInstance;
public static ResourceBlacklistRequestProto getDefaultInstance() {
return defaultInstance;
}
public ResourceBlacklistRequestProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ResourceBlacklistRequestProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
blacklistAdditions_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000001;
}
blacklistAdditions_.add(input.readBytes());
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
blacklistRemovals_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000002;
}
blacklistRemovals_.add(input.readBytes());
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
blacklistAdditions_ = new com.google.protobuf.UnmodifiableLazyStringList(blacklistAdditions_);
}
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
blacklistRemovals_ = new com.google.protobuf.UnmodifiableLazyStringList(blacklistRemovals_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceBlacklistRequestProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceBlacklistRequestProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ResourceBlacklistRequestProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ResourceBlacklistRequestProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
// repeated string blacklist_additions = 1;
public static final int BLACKLIST_ADDITIONS_FIELD_NUMBER = 1;
private com.google.protobuf.LazyStringList blacklistAdditions_;
/**
* repeated string blacklist_additions = 1;
*/
public java.util.List
getBlacklistAdditionsList() {
return blacklistAdditions_;
}
/**
* repeated string blacklist_additions = 1;
*/
public int getBlacklistAdditionsCount() {
return blacklistAdditions_.size();
}
/**
* repeated string blacklist_additions = 1;
*/
public java.lang.String getBlacklistAdditions(int index) {
return blacklistAdditions_.get(index);
}
/**
* repeated string blacklist_additions = 1;
*/
public com.google.protobuf.ByteString
getBlacklistAdditionsBytes(int index) {
return blacklistAdditions_.getByteString(index);
}
// repeated string blacklist_removals = 2;
public static final int BLACKLIST_REMOVALS_FIELD_NUMBER = 2;
private com.google.protobuf.LazyStringList blacklistRemovals_;
/**
* repeated string blacklist_removals = 2;
*/
public java.util.List
getBlacklistRemovalsList() {
return blacklistRemovals_;
}
/**
* repeated string blacklist_removals = 2;
*/
public int getBlacklistRemovalsCount() {
return blacklistRemovals_.size();
}
/**
* repeated string blacklist_removals = 2;
*/
public java.lang.String getBlacklistRemovals(int index) {
return blacklistRemovals_.get(index);
}
/**
* repeated string blacklist_removals = 2;
*/
public com.google.protobuf.ByteString
getBlacklistRemovalsBytes(int index) {
return blacklistRemovals_.getByteString(index);
}
private void initFields() {
blacklistAdditions_ = com.google.protobuf.LazyStringArrayList.EMPTY;
blacklistRemovals_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
for (int i = 0; i < blacklistAdditions_.size(); i++) {
output.writeBytes(1, blacklistAdditions_.getByteString(i));
}
for (int i = 0; i < blacklistRemovals_.size(); i++) {
output.writeBytes(2, blacklistRemovals_.getByteString(i));
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
{
int dataSize = 0;
for (int i = 0; i < blacklistAdditions_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(blacklistAdditions_.getByteString(i));
}
size += dataSize;
size += 1 * getBlacklistAdditionsList().size();
}
{
int dataSize = 0;
for (int i = 0; i < blacklistRemovals_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(blacklistRemovals_.getByteString(i));
}
size += dataSize;
size += 1 * getBlacklistRemovalsList().size();
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto) obj;
boolean result = true;
result = result && getBlacklistAdditionsList()
.equals(other.getBlacklistAdditionsList());
result = result && getBlacklistRemovalsList()
.equals(other.getBlacklistRemovalsList());
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (getBlacklistAdditionsCount() > 0) {
hash = (37 * hash) + BLACKLIST_ADDITIONS_FIELD_NUMBER;
hash = (53 * hash) + getBlacklistAdditionsList().hashCode();
}
if (getBlacklistRemovalsCount() > 0) {
hash = (37 * hash) + BLACKLIST_REMOVALS_FIELD_NUMBER;
hash = (53 * hash) + getBlacklistRemovalsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ResourceBlacklistRequestProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceBlacklistRequestProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceBlacklistRequestProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
blacklistAdditions_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
blacklistRemovals_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ResourceBlacklistRequestProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto(this);
int from_bitField0_ = bitField0_;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
blacklistAdditions_ = new com.google.protobuf.UnmodifiableLazyStringList(
blacklistAdditions_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.blacklistAdditions_ = blacklistAdditions_;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
blacklistRemovals_ = new com.google.protobuf.UnmodifiableLazyStringList(
blacklistRemovals_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.blacklistRemovals_ = blacklistRemovals_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto.getDefaultInstance()) return this;
if (!other.blacklistAdditions_.isEmpty()) {
if (blacklistAdditions_.isEmpty()) {
blacklistAdditions_ = other.blacklistAdditions_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureBlacklistAdditionsIsMutable();
blacklistAdditions_.addAll(other.blacklistAdditions_);
}
onChanged();
}
if (!other.blacklistRemovals_.isEmpty()) {
if (blacklistRemovals_.isEmpty()) {
blacklistRemovals_ = other.blacklistRemovals_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureBlacklistRemovalsIsMutable();
blacklistRemovals_.addAll(other.blacklistRemovals_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ResourceBlacklistRequestProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// repeated string blacklist_additions = 1;
private com.google.protobuf.LazyStringList blacklistAdditions_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureBlacklistAdditionsIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
blacklistAdditions_ = new com.google.protobuf.LazyStringArrayList(blacklistAdditions_);
bitField0_ |= 0x00000001;
}
}
/**
* repeated string blacklist_additions = 1;
*/
public java.util.List
getBlacklistAdditionsList() {
return java.util.Collections.unmodifiableList(blacklistAdditions_);
}
/**
* repeated string blacklist_additions = 1;
*/
public int getBlacklistAdditionsCount() {
return blacklistAdditions_.size();
}
/**
* repeated string blacklist_additions = 1;
*/
public java.lang.String getBlacklistAdditions(int index) {
return blacklistAdditions_.get(index);
}
/**
* repeated string blacklist_additions = 1;
*/
public com.google.protobuf.ByteString
getBlacklistAdditionsBytes(int index) {
return blacklistAdditions_.getByteString(index);
}
/**
* repeated string blacklist_additions = 1;
*/
public Builder setBlacklistAdditions(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureBlacklistAdditionsIsMutable();
blacklistAdditions_.set(index, value);
onChanged();
return this;
}
/**
* repeated string blacklist_additions = 1;
*/
public Builder addBlacklistAdditions(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureBlacklistAdditionsIsMutable();
blacklistAdditions_.add(value);
onChanged();
return this;
}
/**
* repeated string blacklist_additions = 1;
*/
public Builder addAllBlacklistAdditions(
java.lang.Iterable values) {
ensureBlacklistAdditionsIsMutable();
super.addAll(values, blacklistAdditions_);
onChanged();
return this;
}
/**
* repeated string blacklist_additions = 1;
*/
public Builder clearBlacklistAdditions() {
blacklistAdditions_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* repeated string blacklist_additions = 1;
*/
public Builder addBlacklistAdditionsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
ensureBlacklistAdditionsIsMutable();
blacklistAdditions_.add(value);
onChanged();
return this;
}
// repeated string blacklist_removals = 2;
private com.google.protobuf.LazyStringList blacklistRemovals_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureBlacklistRemovalsIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
blacklistRemovals_ = new com.google.protobuf.LazyStringArrayList(blacklistRemovals_);
bitField0_ |= 0x00000002;
}
}
/**
* repeated string blacklist_removals = 2;
*/
public java.util.List
getBlacklistRemovalsList() {
return java.util.Collections.unmodifiableList(blacklistRemovals_);
}
/**
* repeated string blacklist_removals = 2;
*/
public int getBlacklistRemovalsCount() {
return blacklistRemovals_.size();
}
/**
* repeated string blacklist_removals = 2;
*/
public java.lang.String getBlacklistRemovals(int index) {
return blacklistRemovals_.get(index);
}
/**
* repeated string blacklist_removals = 2;
*/
public com.google.protobuf.ByteString
getBlacklistRemovalsBytes(int index) {
return blacklistRemovals_.getByteString(index);
}
/**
* repeated string blacklist_removals = 2;
*/
public Builder setBlacklistRemovals(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureBlacklistRemovalsIsMutable();
blacklistRemovals_.set(index, value);
onChanged();
return this;
}
/**
* repeated string blacklist_removals = 2;
*/
public Builder addBlacklistRemovals(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureBlacklistRemovalsIsMutable();
blacklistRemovals_.add(value);
onChanged();
return this;
}
/**
* repeated string blacklist_removals = 2;
*/
public Builder addAllBlacklistRemovals(
java.lang.Iterable values) {
ensureBlacklistRemovalsIsMutable();
super.addAll(values, blacklistRemovals_);
onChanged();
return this;
}
/**
* repeated string blacklist_removals = 2;
*/
public Builder clearBlacklistRemovals() {
blacklistRemovals_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* repeated string blacklist_removals = 2;
*/
public Builder addBlacklistRemovalsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
ensureBlacklistRemovalsIsMutable();
blacklistRemovals_.add(value);
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ResourceBlacklistRequestProto)
}
static {
defaultInstance = new ResourceBlacklistRequestProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ResourceBlacklistRequestProto)
}
public interface ApplicationSubmissionContextProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ApplicationIdProto application_id = 1;
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
boolean hasApplicationId();
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getApplicationId();
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getApplicationIdOrBuilder();
// optional string application_name = 2 [default = "N/A"];
/**
* optional string application_name = 2 [default = "N/A"];
*/
boolean hasApplicationName();
/**
* optional string application_name = 2 [default = "N/A"];
*/
java.lang.String getApplicationName();
/**
* optional string application_name = 2 [default = "N/A"];
*/
com.google.protobuf.ByteString
getApplicationNameBytes();
// optional string queue = 3 [default = "default"];
/**
* optional string queue = 3 [default = "default"];
*/
boolean hasQueue();
/**
* optional string queue = 3 [default = "default"];
*/
java.lang.String getQueue();
/**
* optional string queue = 3 [default = "default"];
*/
com.google.protobuf.ByteString
getQueueBytes();
// optional .hadoop.yarn.PriorityProto priority = 4;
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
boolean hasPriority();
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority();
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder();
// optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
boolean hasAmContainerSpec();
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto getAmContainerSpec();
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProtoOrBuilder getAmContainerSpecOrBuilder();
// optional bool cancel_tokens_when_complete = 6 [default = true];
/**
* optional bool cancel_tokens_when_complete = 6 [default = true];
*/
boolean hasCancelTokensWhenComplete();
/**
* optional bool cancel_tokens_when_complete = 6 [default = true];
*/
boolean getCancelTokensWhenComplete();
// optional bool unmanaged_am = 7 [default = false];
/**
* optional bool unmanaged_am = 7 [default = false];
*/
boolean hasUnmanagedAm();
/**
* optional bool unmanaged_am = 7 [default = false];
*/
boolean getUnmanagedAm();
// optional int32 maxAppAttempts = 8 [default = 0];
/**
* optional int32 maxAppAttempts = 8 [default = 0];
*/
boolean hasMaxAppAttempts();
/**
* optional int32 maxAppAttempts = 8 [default = 0];
*/
int getMaxAppAttempts();
// optional .hadoop.yarn.ResourceProto resource = 9;
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
boolean hasResource();
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource();
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder();
// optional string applicationType = 10 [default = "YARN"];
/**
* optional string applicationType = 10 [default = "YARN"];
*/
boolean hasApplicationType();
/**
* optional string applicationType = 10 [default = "YARN"];
*/
java.lang.String getApplicationType();
/**
* optional string applicationType = 10 [default = "YARN"];
*/
com.google.protobuf.ByteString
getApplicationTypeBytes();
// optional bool keep_containers_across_application_attempts = 11 [default = false];
/**
* optional bool keep_containers_across_application_attempts = 11 [default = false];
*/
boolean hasKeepContainersAcrossApplicationAttempts();
/**
* optional bool keep_containers_across_application_attempts = 11 [default = false];
*/
boolean getKeepContainersAcrossApplicationAttempts();
// repeated string applicationTags = 12;
/**
* repeated string applicationTags = 12;
*/
java.util.List
getApplicationTagsList();
/**
* repeated string applicationTags = 12;
*/
int getApplicationTagsCount();
/**
* repeated string applicationTags = 12;
*/
java.lang.String getApplicationTags(int index);
/**
* repeated string applicationTags = 12;
*/
com.google.protobuf.ByteString
getApplicationTagsBytes(int index);
// optional int64 attempt_failures_validity_interval = 13 [default = -1];
/**
* optional int64 attempt_failures_validity_interval = 13 [default = -1];
*/
boolean hasAttemptFailuresValidityInterval();
/**
* optional int64 attempt_failures_validity_interval = 13 [default = -1];
*/
long getAttemptFailuresValidityInterval();
// optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
boolean hasLogAggregationContext();
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto getLogAggregationContext();
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProtoOrBuilder getLogAggregationContextOrBuilder();
// optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
boolean hasReservationId();
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto getReservationId();
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProtoOrBuilder getReservationIdOrBuilder();
// optional string node_label_expression = 16;
/**
* optional string node_label_expression = 16;
*/
boolean hasNodeLabelExpression();
/**
* optional string node_label_expression = 16;
*/
java.lang.String getNodeLabelExpression();
/**
* optional string node_label_expression = 16;
*/
com.google.protobuf.ByteString
getNodeLabelExpressionBytes();
// optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
boolean hasAmContainerResourceRequest();
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto getAmContainerResourceRequest();
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder getAmContainerResourceRequestOrBuilder();
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationSubmissionContextProto}
*
*
*//////////////////////////////////////////////////////////////////////
* //// From client_RM_Protocol /////////////////////////////////////////
* //////////////////////////////////////////////////////////////////////
*
*/
public static final class ApplicationSubmissionContextProto extends
com.google.protobuf.GeneratedMessage
implements ApplicationSubmissionContextProtoOrBuilder {
// Use ApplicationSubmissionContextProto.newBuilder() to construct.
private ApplicationSubmissionContextProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ApplicationSubmissionContextProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ApplicationSubmissionContextProto defaultInstance;
public static ApplicationSubmissionContextProto getDefaultInstance() {
return defaultInstance;
}
public ApplicationSubmissionContextProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApplicationSubmissionContextProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = applicationId_.toBuilder();
}
applicationId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(applicationId_);
applicationId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
bitField0_ |= 0x00000002;
applicationName_ = input.readBytes();
break;
}
case 26: {
bitField0_ |= 0x00000004;
queue_ = input.readBytes();
break;
}
case 34: {
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000008) == 0x00000008)) {
subBuilder = priority_.toBuilder();
}
priority_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(priority_);
priority_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000008;
break;
}
case 42: {
org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000010) == 0x00000010)) {
subBuilder = amContainerSpec_.toBuilder();
}
amContainerSpec_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(amContainerSpec_);
amContainerSpec_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000010;
break;
}
case 48: {
bitField0_ |= 0x00000020;
cancelTokensWhenComplete_ = input.readBool();
break;
}
case 56: {
bitField0_ |= 0x00000040;
unmanagedAm_ = input.readBool();
break;
}
case 64: {
bitField0_ |= 0x00000080;
maxAppAttempts_ = input.readInt32();
break;
}
case 74: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000100) == 0x00000100)) {
subBuilder = resource_.toBuilder();
}
resource_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(resource_);
resource_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000100;
break;
}
case 82: {
bitField0_ |= 0x00000200;
applicationType_ = input.readBytes();
break;
}
case 88: {
bitField0_ |= 0x00000400;
keepContainersAcrossApplicationAttempts_ = input.readBool();
break;
}
case 98: {
if (!((mutable_bitField0_ & 0x00000800) == 0x00000800)) {
applicationTags_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000800;
}
applicationTags_.add(input.readBytes());
break;
}
case 104: {
bitField0_ |= 0x00000800;
attemptFailuresValidityInterval_ = input.readInt64();
break;
}
case 114: {
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.Builder subBuilder = null;
if (((bitField0_ & 0x00001000) == 0x00001000)) {
subBuilder = logAggregationContext_.toBuilder();
}
logAggregationContext_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(logAggregationContext_);
logAggregationContext_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00001000;
break;
}
case 122: {
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.Builder subBuilder = null;
if (((bitField0_ & 0x00002000) == 0x00002000)) {
subBuilder = reservationId_.toBuilder();
}
reservationId_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(reservationId_);
reservationId_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00002000;
break;
}
case 130: {
bitField0_ |= 0x00004000;
nodeLabelExpression_ = input.readBytes();
break;
}
case 138: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder subBuilder = null;
if (((bitField0_ & 0x00008000) == 0x00008000)) {
subBuilder = amContainerResourceRequest_.toBuilder();
}
amContainerResourceRequest_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(amContainerResourceRequest_);
amContainerResourceRequest_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00008000;
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000800) == 0x00000800)) {
applicationTags_ = new com.google.protobuf.UnmodifiableLazyStringList(applicationTags_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationSubmissionContextProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationSubmissionContextProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ApplicationSubmissionContextProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApplicationSubmissionContextProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationIdProto application_id = 1;
public static final int APPLICATION_ID_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto applicationId_;
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public boolean hasApplicationId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getApplicationId() {
return applicationId_;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getApplicationIdOrBuilder() {
return applicationId_;
}
// optional string application_name = 2 [default = "N/A"];
public static final int APPLICATION_NAME_FIELD_NUMBER = 2;
private java.lang.Object applicationName_;
/**
* optional string application_name = 2 [default = "N/A"];
*/
public boolean hasApplicationName() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string application_name = 2 [default = "N/A"];
*/
public java.lang.String getApplicationName() {
java.lang.Object ref = applicationName_;
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();
if (bs.isValidUtf8()) {
applicationName_ = s;
}
return s;
}
}
/**
* optional string application_name = 2 [default = "N/A"];
*/
public com.google.protobuf.ByteString
getApplicationNameBytes() {
java.lang.Object ref = applicationName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
applicationName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string queue = 3 [default = "default"];
public static final int QUEUE_FIELD_NUMBER = 3;
private java.lang.Object queue_;
/**
* optional string queue = 3 [default = "default"];
*/
public boolean hasQueue() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string queue = 3 [default = "default"];
*/
public java.lang.String getQueue() {
java.lang.Object ref = queue_;
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();
if (bs.isValidUtf8()) {
queue_ = s;
}
return s;
}
}
/**
* optional string queue = 3 [default = "default"];
*/
public com.google.protobuf.ByteString
getQueueBytes() {
java.lang.Object ref = queue_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
queue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional .hadoop.yarn.PriorityProto priority = 4;
public static final int PRIORITY_FIELD_NUMBER = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto priority_;
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority() {
return priority_;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder() {
return priority_;
}
// optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
public static final int AM_CONTAINER_SPEC_FIELD_NUMBER = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto amContainerSpec_;
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public boolean hasAmContainerSpec() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto getAmContainerSpec() {
return amContainerSpec_;
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProtoOrBuilder getAmContainerSpecOrBuilder() {
return amContainerSpec_;
}
// optional bool cancel_tokens_when_complete = 6 [default = true];
public static final int CANCEL_TOKENS_WHEN_COMPLETE_FIELD_NUMBER = 6;
private boolean cancelTokensWhenComplete_;
/**
* optional bool cancel_tokens_when_complete = 6 [default = true];
*/
public boolean hasCancelTokensWhenComplete() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional bool cancel_tokens_when_complete = 6 [default = true];
*/
public boolean getCancelTokensWhenComplete() {
return cancelTokensWhenComplete_;
}
// optional bool unmanaged_am = 7 [default = false];
public static final int UNMANAGED_AM_FIELD_NUMBER = 7;
private boolean unmanagedAm_;
/**
* optional bool unmanaged_am = 7 [default = false];
*/
public boolean hasUnmanagedAm() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional bool unmanaged_am = 7 [default = false];
*/
public boolean getUnmanagedAm() {
return unmanagedAm_;
}
// optional int32 maxAppAttempts = 8 [default = 0];
public static final int MAXAPPATTEMPTS_FIELD_NUMBER = 8;
private int maxAppAttempts_;
/**
* optional int32 maxAppAttempts = 8 [default = 0];
*/
public boolean hasMaxAppAttempts() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional int32 maxAppAttempts = 8 [default = 0];
*/
public int getMaxAppAttempts() {
return maxAppAttempts_;
}
// optional .hadoop.yarn.ResourceProto resource = 9;
public static final int RESOURCE_FIELD_NUMBER = 9;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto resource_;
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource() {
return resource_;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder() {
return resource_;
}
// optional string applicationType = 10 [default = "YARN"];
public static final int APPLICATIONTYPE_FIELD_NUMBER = 10;
private java.lang.Object applicationType_;
/**
* optional string applicationType = 10 [default = "YARN"];
*/
public boolean hasApplicationType() {
return ((bitField0_ & 0x00000200) == 0x00000200);
}
/**
* optional string applicationType = 10 [default = "YARN"];
*/
public java.lang.String getApplicationType() {
java.lang.Object ref = applicationType_;
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();
if (bs.isValidUtf8()) {
applicationType_ = s;
}
return s;
}
}
/**
* optional string applicationType = 10 [default = "YARN"];
*/
public com.google.protobuf.ByteString
getApplicationTypeBytes() {
java.lang.Object ref = applicationType_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
applicationType_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional bool keep_containers_across_application_attempts = 11 [default = false];
public static final int KEEP_CONTAINERS_ACROSS_APPLICATION_ATTEMPTS_FIELD_NUMBER = 11;
private boolean keepContainersAcrossApplicationAttempts_;
/**
* optional bool keep_containers_across_application_attempts = 11 [default = false];
*/
public boolean hasKeepContainersAcrossApplicationAttempts() {
return ((bitField0_ & 0x00000400) == 0x00000400);
}
/**
* optional bool keep_containers_across_application_attempts = 11 [default = false];
*/
public boolean getKeepContainersAcrossApplicationAttempts() {
return keepContainersAcrossApplicationAttempts_;
}
// repeated string applicationTags = 12;
public static final int APPLICATIONTAGS_FIELD_NUMBER = 12;
private com.google.protobuf.LazyStringList applicationTags_;
/**
* repeated string applicationTags = 12;
*/
public java.util.List
getApplicationTagsList() {
return applicationTags_;
}
/**
* repeated string applicationTags = 12;
*/
public int getApplicationTagsCount() {
return applicationTags_.size();
}
/**
* repeated string applicationTags = 12;
*/
public java.lang.String getApplicationTags(int index) {
return applicationTags_.get(index);
}
/**
* repeated string applicationTags = 12;
*/
public com.google.protobuf.ByteString
getApplicationTagsBytes(int index) {
return applicationTags_.getByteString(index);
}
// optional int64 attempt_failures_validity_interval = 13 [default = -1];
public static final int ATTEMPT_FAILURES_VALIDITY_INTERVAL_FIELD_NUMBER = 13;
private long attemptFailuresValidityInterval_;
/**
* optional int64 attempt_failures_validity_interval = 13 [default = -1];
*/
public boolean hasAttemptFailuresValidityInterval() {
return ((bitField0_ & 0x00000800) == 0x00000800);
}
/**
* optional int64 attempt_failures_validity_interval = 13 [default = -1];
*/
public long getAttemptFailuresValidityInterval() {
return attemptFailuresValidityInterval_;
}
// optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
public static final int LOG_AGGREGATION_CONTEXT_FIELD_NUMBER = 14;
private org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto logAggregationContext_;
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public boolean hasLogAggregationContext() {
return ((bitField0_ & 0x00001000) == 0x00001000);
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto getLogAggregationContext() {
return logAggregationContext_;
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProtoOrBuilder getLogAggregationContextOrBuilder() {
return logAggregationContext_;
}
// optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
public static final int RESERVATION_ID_FIELD_NUMBER = 15;
private org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto reservationId_;
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public boolean hasReservationId() {
return ((bitField0_ & 0x00002000) == 0x00002000);
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto getReservationId() {
return reservationId_;
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProtoOrBuilder getReservationIdOrBuilder() {
return reservationId_;
}
// optional string node_label_expression = 16;
public static final int NODE_LABEL_EXPRESSION_FIELD_NUMBER = 16;
private java.lang.Object nodeLabelExpression_;
/**
* optional string node_label_expression = 16;
*/
public boolean hasNodeLabelExpression() {
return ((bitField0_ & 0x00004000) == 0x00004000);
}
/**
* optional string node_label_expression = 16;
*/
public java.lang.String getNodeLabelExpression() {
java.lang.Object ref = nodeLabelExpression_;
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();
if (bs.isValidUtf8()) {
nodeLabelExpression_ = s;
}
return s;
}
}
/**
* optional string node_label_expression = 16;
*/
public com.google.protobuf.ByteString
getNodeLabelExpressionBytes() {
java.lang.Object ref = nodeLabelExpression_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodeLabelExpression_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
public static final int AM_CONTAINER_RESOURCE_REQUEST_FIELD_NUMBER = 17;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto amContainerResourceRequest_;
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public boolean hasAmContainerResourceRequest() {
return ((bitField0_ & 0x00008000) == 0x00008000);
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto getAmContainerResourceRequest() {
return amContainerResourceRequest_;
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder getAmContainerResourceRequestOrBuilder() {
return amContainerResourceRequest_;
}
private void initFields() {
applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
applicationName_ = "N/A";
queue_ = "default";
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
amContainerSpec_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.getDefaultInstance();
cancelTokensWhenComplete_ = true;
unmanagedAm_ = false;
maxAppAttempts_ = 0;
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
applicationType_ = "YARN";
keepContainersAcrossApplicationAttempts_ = false;
applicationTags_ = com.google.protobuf.LazyStringArrayList.EMPTY;
attemptFailuresValidityInterval_ = -1L;
logAggregationContext_ = org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.getDefaultInstance();
reservationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.getDefaultInstance();
nodeLabelExpression_ = "";
amContainerResourceRequest_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, applicationId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getApplicationNameBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBytes(3, getQueueBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeMessage(4, priority_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeMessage(5, amContainerSpec_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeBool(6, cancelTokensWhenComplete_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeBool(7, unmanagedAm_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
output.writeInt32(8, maxAppAttempts_);
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
output.writeMessage(9, resource_);
}
if (((bitField0_ & 0x00000200) == 0x00000200)) {
output.writeBytes(10, getApplicationTypeBytes());
}
if (((bitField0_ & 0x00000400) == 0x00000400)) {
output.writeBool(11, keepContainersAcrossApplicationAttempts_);
}
for (int i = 0; i < applicationTags_.size(); i++) {
output.writeBytes(12, applicationTags_.getByteString(i));
}
if (((bitField0_ & 0x00000800) == 0x00000800)) {
output.writeInt64(13, attemptFailuresValidityInterval_);
}
if (((bitField0_ & 0x00001000) == 0x00001000)) {
output.writeMessage(14, logAggregationContext_);
}
if (((bitField0_ & 0x00002000) == 0x00002000)) {
output.writeMessage(15, reservationId_);
}
if (((bitField0_ & 0x00004000) == 0x00004000)) {
output.writeBytes(16, getNodeLabelExpressionBytes());
}
if (((bitField0_ & 0x00008000) == 0x00008000)) {
output.writeMessage(17, amContainerResourceRequest_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, applicationId_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getApplicationNameBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, getQueueBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, priority_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(5, amContainerSpec_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(6, cancelTokensWhenComplete_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(7, unmanagedAm_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(8, maxAppAttempts_);
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(9, resource_);
}
if (((bitField0_ & 0x00000200) == 0x00000200)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(10, getApplicationTypeBytes());
}
if (((bitField0_ & 0x00000400) == 0x00000400)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(11, keepContainersAcrossApplicationAttempts_);
}
{
int dataSize = 0;
for (int i = 0; i < applicationTags_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(applicationTags_.getByteString(i));
}
size += dataSize;
size += 1 * getApplicationTagsList().size();
}
if (((bitField0_ & 0x00000800) == 0x00000800)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(13, attemptFailuresValidityInterval_);
}
if (((bitField0_ & 0x00001000) == 0x00001000)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(14, logAggregationContext_);
}
if (((bitField0_ & 0x00002000) == 0x00002000)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(15, reservationId_);
}
if (((bitField0_ & 0x00004000) == 0x00004000)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(16, getNodeLabelExpressionBytes());
}
if (((bitField0_ & 0x00008000) == 0x00008000)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(17, amContainerResourceRequest_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto) obj;
boolean result = true;
result = result && (hasApplicationId() == other.hasApplicationId());
if (hasApplicationId()) {
result = result && getApplicationId()
.equals(other.getApplicationId());
}
result = result && (hasApplicationName() == other.hasApplicationName());
if (hasApplicationName()) {
result = result && getApplicationName()
.equals(other.getApplicationName());
}
result = result && (hasQueue() == other.hasQueue());
if (hasQueue()) {
result = result && getQueue()
.equals(other.getQueue());
}
result = result && (hasPriority() == other.hasPriority());
if (hasPriority()) {
result = result && getPriority()
.equals(other.getPriority());
}
result = result && (hasAmContainerSpec() == other.hasAmContainerSpec());
if (hasAmContainerSpec()) {
result = result && getAmContainerSpec()
.equals(other.getAmContainerSpec());
}
result = result && (hasCancelTokensWhenComplete() == other.hasCancelTokensWhenComplete());
if (hasCancelTokensWhenComplete()) {
result = result && (getCancelTokensWhenComplete()
== other.getCancelTokensWhenComplete());
}
result = result && (hasUnmanagedAm() == other.hasUnmanagedAm());
if (hasUnmanagedAm()) {
result = result && (getUnmanagedAm()
== other.getUnmanagedAm());
}
result = result && (hasMaxAppAttempts() == other.hasMaxAppAttempts());
if (hasMaxAppAttempts()) {
result = result && (getMaxAppAttempts()
== other.getMaxAppAttempts());
}
result = result && (hasResource() == other.hasResource());
if (hasResource()) {
result = result && getResource()
.equals(other.getResource());
}
result = result && (hasApplicationType() == other.hasApplicationType());
if (hasApplicationType()) {
result = result && getApplicationType()
.equals(other.getApplicationType());
}
result = result && (hasKeepContainersAcrossApplicationAttempts() == other.hasKeepContainersAcrossApplicationAttempts());
if (hasKeepContainersAcrossApplicationAttempts()) {
result = result && (getKeepContainersAcrossApplicationAttempts()
== other.getKeepContainersAcrossApplicationAttempts());
}
result = result && getApplicationTagsList()
.equals(other.getApplicationTagsList());
result = result && (hasAttemptFailuresValidityInterval() == other.hasAttemptFailuresValidityInterval());
if (hasAttemptFailuresValidityInterval()) {
result = result && (getAttemptFailuresValidityInterval()
== other.getAttemptFailuresValidityInterval());
}
result = result && (hasLogAggregationContext() == other.hasLogAggregationContext());
if (hasLogAggregationContext()) {
result = result && getLogAggregationContext()
.equals(other.getLogAggregationContext());
}
result = result && (hasReservationId() == other.hasReservationId());
if (hasReservationId()) {
result = result && getReservationId()
.equals(other.getReservationId());
}
result = result && (hasNodeLabelExpression() == other.hasNodeLabelExpression());
if (hasNodeLabelExpression()) {
result = result && getNodeLabelExpression()
.equals(other.getNodeLabelExpression());
}
result = result && (hasAmContainerResourceRequest() == other.hasAmContainerResourceRequest());
if (hasAmContainerResourceRequest()) {
result = result && getAmContainerResourceRequest()
.equals(other.getAmContainerResourceRequest());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasApplicationId()) {
hash = (37 * hash) + APPLICATION_ID_FIELD_NUMBER;
hash = (53 * hash) + getApplicationId().hashCode();
}
if (hasApplicationName()) {
hash = (37 * hash) + APPLICATION_NAME_FIELD_NUMBER;
hash = (53 * hash) + getApplicationName().hashCode();
}
if (hasQueue()) {
hash = (37 * hash) + QUEUE_FIELD_NUMBER;
hash = (53 * hash) + getQueue().hashCode();
}
if (hasPriority()) {
hash = (37 * hash) + PRIORITY_FIELD_NUMBER;
hash = (53 * hash) + getPriority().hashCode();
}
if (hasAmContainerSpec()) {
hash = (37 * hash) + AM_CONTAINER_SPEC_FIELD_NUMBER;
hash = (53 * hash) + getAmContainerSpec().hashCode();
}
if (hasCancelTokensWhenComplete()) {
hash = (37 * hash) + CANCEL_TOKENS_WHEN_COMPLETE_FIELD_NUMBER;
hash = (53 * hash) + hashBoolean(getCancelTokensWhenComplete());
}
if (hasUnmanagedAm()) {
hash = (37 * hash) + UNMANAGED_AM_FIELD_NUMBER;
hash = (53 * hash) + hashBoolean(getUnmanagedAm());
}
if (hasMaxAppAttempts()) {
hash = (37 * hash) + MAXAPPATTEMPTS_FIELD_NUMBER;
hash = (53 * hash) + getMaxAppAttempts();
}
if (hasResource()) {
hash = (37 * hash) + RESOURCE_FIELD_NUMBER;
hash = (53 * hash) + getResource().hashCode();
}
if (hasApplicationType()) {
hash = (37 * hash) + APPLICATIONTYPE_FIELD_NUMBER;
hash = (53 * hash) + getApplicationType().hashCode();
}
if (hasKeepContainersAcrossApplicationAttempts()) {
hash = (37 * hash) + KEEP_CONTAINERS_ACROSS_APPLICATION_ATTEMPTS_FIELD_NUMBER;
hash = (53 * hash) + hashBoolean(getKeepContainersAcrossApplicationAttempts());
}
if (getApplicationTagsCount() > 0) {
hash = (37 * hash) + APPLICATIONTAGS_FIELD_NUMBER;
hash = (53 * hash) + getApplicationTagsList().hashCode();
}
if (hasAttemptFailuresValidityInterval()) {
hash = (37 * hash) + ATTEMPT_FAILURES_VALIDITY_INTERVAL_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getAttemptFailuresValidityInterval());
}
if (hasLogAggregationContext()) {
hash = (37 * hash) + LOG_AGGREGATION_CONTEXT_FIELD_NUMBER;
hash = (53 * hash) + getLogAggregationContext().hashCode();
}
if (hasReservationId()) {
hash = (37 * hash) + RESERVATION_ID_FIELD_NUMBER;
hash = (53 * hash) + getReservationId().hashCode();
}
if (hasNodeLabelExpression()) {
hash = (37 * hash) + NODE_LABEL_EXPRESSION_FIELD_NUMBER;
hash = (53 * hash) + getNodeLabelExpression().hashCode();
}
if (hasAmContainerResourceRequest()) {
hash = (37 * hash) + AM_CONTAINER_RESOURCE_REQUEST_FIELD_NUMBER;
hash = (53 * hash) + getAmContainerResourceRequest().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationSubmissionContextProto}
*
*
*//////////////////////////////////////////////////////////////////////
* //// From client_RM_Protocol /////////////////////////////////////////
* //////////////////////////////////////////////////////////////////////
*
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationSubmissionContextProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationSubmissionContextProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getApplicationIdFieldBuilder();
getPriorityFieldBuilder();
getAmContainerSpecFieldBuilder();
getResourceFieldBuilder();
getLogAggregationContextFieldBuilder();
getReservationIdFieldBuilder();
getAmContainerResourceRequestFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (applicationIdBuilder_ == null) {
applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
} else {
applicationIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
applicationName_ = "N/A";
bitField0_ = (bitField0_ & ~0x00000002);
queue_ = "default";
bitField0_ = (bitField0_ & ~0x00000004);
if (priorityBuilder_ == null) {
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
} else {
priorityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
if (amContainerSpecBuilder_ == null) {
amContainerSpec_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.getDefaultInstance();
} else {
amContainerSpecBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
cancelTokensWhenComplete_ = true;
bitField0_ = (bitField0_ & ~0x00000020);
unmanagedAm_ = false;
bitField0_ = (bitField0_ & ~0x00000040);
maxAppAttempts_ = 0;
bitField0_ = (bitField0_ & ~0x00000080);
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000100);
applicationType_ = "YARN";
bitField0_ = (bitField0_ & ~0x00000200);
keepContainersAcrossApplicationAttempts_ = false;
bitField0_ = (bitField0_ & ~0x00000400);
applicationTags_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000800);
attemptFailuresValidityInterval_ = -1L;
bitField0_ = (bitField0_ & ~0x00001000);
if (logAggregationContextBuilder_ == null) {
logAggregationContext_ = org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.getDefaultInstance();
} else {
logAggregationContextBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00002000);
if (reservationIdBuilder_ == null) {
reservationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.getDefaultInstance();
} else {
reservationIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00004000);
nodeLabelExpression_ = "";
bitField0_ = (bitField0_ & ~0x00008000);
if (amContainerResourceRequestBuilder_ == null) {
amContainerResourceRequest_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance();
} else {
amContainerResourceRequestBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00010000);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationSubmissionContextProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (applicationIdBuilder_ == null) {
result.applicationId_ = applicationId_;
} else {
result.applicationId_ = applicationIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.applicationName_ = applicationName_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.queue_ = queue_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
if (priorityBuilder_ == null) {
result.priority_ = priority_;
} else {
result.priority_ = priorityBuilder_.build();
}
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
if (amContainerSpecBuilder_ == null) {
result.amContainerSpec_ = amContainerSpec_;
} else {
result.amContainerSpec_ = amContainerSpecBuilder_.build();
}
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.cancelTokensWhenComplete_ = cancelTokensWhenComplete_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
result.unmanagedAm_ = unmanagedAm_;
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
result.maxAppAttempts_ = maxAppAttempts_;
if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
to_bitField0_ |= 0x00000100;
}
if (resourceBuilder_ == null) {
result.resource_ = resource_;
} else {
result.resource_ = resourceBuilder_.build();
}
if (((from_bitField0_ & 0x00000200) == 0x00000200)) {
to_bitField0_ |= 0x00000200;
}
result.applicationType_ = applicationType_;
if (((from_bitField0_ & 0x00000400) == 0x00000400)) {
to_bitField0_ |= 0x00000400;
}
result.keepContainersAcrossApplicationAttempts_ = keepContainersAcrossApplicationAttempts_;
if (((bitField0_ & 0x00000800) == 0x00000800)) {
applicationTags_ = new com.google.protobuf.UnmodifiableLazyStringList(
applicationTags_);
bitField0_ = (bitField0_ & ~0x00000800);
}
result.applicationTags_ = applicationTags_;
if (((from_bitField0_ & 0x00001000) == 0x00001000)) {
to_bitField0_ |= 0x00000800;
}
result.attemptFailuresValidityInterval_ = attemptFailuresValidityInterval_;
if (((from_bitField0_ & 0x00002000) == 0x00002000)) {
to_bitField0_ |= 0x00001000;
}
if (logAggregationContextBuilder_ == null) {
result.logAggregationContext_ = logAggregationContext_;
} else {
result.logAggregationContext_ = logAggregationContextBuilder_.build();
}
if (((from_bitField0_ & 0x00004000) == 0x00004000)) {
to_bitField0_ |= 0x00002000;
}
if (reservationIdBuilder_ == null) {
result.reservationId_ = reservationId_;
} else {
result.reservationId_ = reservationIdBuilder_.build();
}
if (((from_bitField0_ & 0x00008000) == 0x00008000)) {
to_bitField0_ |= 0x00004000;
}
result.nodeLabelExpression_ = nodeLabelExpression_;
if (((from_bitField0_ & 0x00010000) == 0x00010000)) {
to_bitField0_ |= 0x00008000;
}
if (amContainerResourceRequestBuilder_ == null) {
result.amContainerResourceRequest_ = amContainerResourceRequest_;
} else {
result.amContainerResourceRequest_ = amContainerResourceRequestBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto.getDefaultInstance()) return this;
if (other.hasApplicationId()) {
mergeApplicationId(other.getApplicationId());
}
if (other.hasApplicationName()) {
bitField0_ |= 0x00000002;
applicationName_ = other.applicationName_;
onChanged();
}
if (other.hasQueue()) {
bitField0_ |= 0x00000004;
queue_ = other.queue_;
onChanged();
}
if (other.hasPriority()) {
mergePriority(other.getPriority());
}
if (other.hasAmContainerSpec()) {
mergeAmContainerSpec(other.getAmContainerSpec());
}
if (other.hasCancelTokensWhenComplete()) {
setCancelTokensWhenComplete(other.getCancelTokensWhenComplete());
}
if (other.hasUnmanagedAm()) {
setUnmanagedAm(other.getUnmanagedAm());
}
if (other.hasMaxAppAttempts()) {
setMaxAppAttempts(other.getMaxAppAttempts());
}
if (other.hasResource()) {
mergeResource(other.getResource());
}
if (other.hasApplicationType()) {
bitField0_ |= 0x00000200;
applicationType_ = other.applicationType_;
onChanged();
}
if (other.hasKeepContainersAcrossApplicationAttempts()) {
setKeepContainersAcrossApplicationAttempts(other.getKeepContainersAcrossApplicationAttempts());
}
if (!other.applicationTags_.isEmpty()) {
if (applicationTags_.isEmpty()) {
applicationTags_ = other.applicationTags_;
bitField0_ = (bitField0_ & ~0x00000800);
} else {
ensureApplicationTagsIsMutable();
applicationTags_.addAll(other.applicationTags_);
}
onChanged();
}
if (other.hasAttemptFailuresValidityInterval()) {
setAttemptFailuresValidityInterval(other.getAttemptFailuresValidityInterval());
}
if (other.hasLogAggregationContext()) {
mergeLogAggregationContext(other.getLogAggregationContext());
}
if (other.hasReservationId()) {
mergeReservationId(other.getReservationId());
}
if (other.hasNodeLabelExpression()) {
bitField0_ |= 0x00008000;
nodeLabelExpression_ = other.nodeLabelExpression_;
onChanged();
}
if (other.hasAmContainerResourceRequest()) {
mergeAmContainerResourceRequest(other.getAmContainerResourceRequest());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationSubmissionContextProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationIdProto application_id = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder> applicationIdBuilder_;
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public boolean hasApplicationId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto getApplicationId() {
if (applicationIdBuilder_ == null) {
return applicationId_;
} else {
return applicationIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public Builder setApplicationId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto value) {
if (applicationIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
applicationId_ = value;
onChanged();
} else {
applicationIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public Builder setApplicationId(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder builderForValue) {
if (applicationIdBuilder_ == null) {
applicationId_ = builderForValue.build();
onChanged();
} else {
applicationIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public Builder mergeApplicationId(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto value) {
if (applicationIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
applicationId_ != org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance()) {
applicationId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.newBuilder(applicationId_).mergeFrom(value).buildPartial();
} else {
applicationId_ = value;
}
onChanged();
} else {
applicationIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public Builder clearApplicationId() {
if (applicationIdBuilder_ == null) {
applicationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.getDefaultInstance();
onChanged();
} else {
applicationIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder getApplicationIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getApplicationIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder getApplicationIdOrBuilder() {
if (applicationIdBuilder_ != null) {
return applicationIdBuilder_.getMessageOrBuilder();
} else {
return applicationId_;
}
}
/**
* optional .hadoop.yarn.ApplicationIdProto application_id = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder>
getApplicationIdFieldBuilder() {
if (applicationIdBuilder_ == null) {
applicationIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationIdProtoOrBuilder>(
applicationId_,
getParentForChildren(),
isClean());
applicationId_ = null;
}
return applicationIdBuilder_;
}
// optional string application_name = 2 [default = "N/A"];
private java.lang.Object applicationName_ = "N/A";
/**
* optional string application_name = 2 [default = "N/A"];
*/
public boolean hasApplicationName() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string application_name = 2 [default = "N/A"];
*/
public java.lang.String getApplicationName() {
java.lang.Object ref = applicationName_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
applicationName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string application_name = 2 [default = "N/A"];
*/
public com.google.protobuf.ByteString
getApplicationNameBytes() {
java.lang.Object ref = applicationName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
applicationName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string application_name = 2 [default = "N/A"];
*/
public Builder setApplicationName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
applicationName_ = value;
onChanged();
return this;
}
/**
* optional string application_name = 2 [default = "N/A"];
*/
public Builder clearApplicationName() {
bitField0_ = (bitField0_ & ~0x00000002);
applicationName_ = getDefaultInstance().getApplicationName();
onChanged();
return this;
}
/**
* optional string application_name = 2 [default = "N/A"];
*/
public Builder setApplicationNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
applicationName_ = value;
onChanged();
return this;
}
// optional string queue = 3 [default = "default"];
private java.lang.Object queue_ = "default";
/**
* optional string queue = 3 [default = "default"];
*/
public boolean hasQueue() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string queue = 3 [default = "default"];
*/
public java.lang.String getQueue() {
java.lang.Object ref = queue_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
queue_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string queue = 3 [default = "default"];
*/
public com.google.protobuf.ByteString
getQueueBytes() {
java.lang.Object ref = queue_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
queue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string queue = 3 [default = "default"];
*/
public Builder setQueue(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
queue_ = value;
onChanged();
return this;
}
/**
* optional string queue = 3 [default = "default"];
*/
public Builder clearQueue() {
bitField0_ = (bitField0_ & ~0x00000004);
queue_ = getDefaultInstance().getQueue();
onChanged();
return this;
}
/**
* optional string queue = 3 [default = "default"];
*/
public Builder setQueueBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
queue_ = value;
onChanged();
return this;
}
// optional .hadoop.yarn.PriorityProto priority = 4;
private org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder> priorityBuilder_;
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public boolean hasPriority() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto getPriority() {
if (priorityBuilder_ == null) {
return priority_;
} else {
return priorityBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public Builder setPriority(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto value) {
if (priorityBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
priority_ = value;
onChanged();
} else {
priorityBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public Builder setPriority(
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder builderForValue) {
if (priorityBuilder_ == null) {
priority_ = builderForValue.build();
onChanged();
} else {
priorityBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public Builder mergePriority(org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto value) {
if (priorityBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008) &&
priority_ != org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance()) {
priority_ =
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.newBuilder(priority_).mergeFrom(value).buildPartial();
} else {
priority_ = value;
}
onChanged();
} else {
priorityBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public Builder clearPriority() {
if (priorityBuilder_ == null) {
priority_ = org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.getDefaultInstance();
onChanged();
} else {
priorityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder getPriorityBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getPriorityFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder getPriorityOrBuilder() {
if (priorityBuilder_ != null) {
return priorityBuilder_.getMessageOrBuilder();
} else {
return priority_;
}
}
/**
* optional .hadoop.yarn.PriorityProto priority = 4;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder>
getPriorityFieldBuilder() {
if (priorityBuilder_ == null) {
priorityBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.PriorityProtoOrBuilder>(
priority_,
getParentForChildren(),
isClean());
priority_ = null;
}
return priorityBuilder_;
}
// optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto amContainerSpec_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProtoOrBuilder> amContainerSpecBuilder_;
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public boolean hasAmContainerSpec() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto getAmContainerSpec() {
if (amContainerSpecBuilder_ == null) {
return amContainerSpec_;
} else {
return amContainerSpecBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public Builder setAmContainerSpec(org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto value) {
if (amContainerSpecBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
amContainerSpec_ = value;
onChanged();
} else {
amContainerSpecBuilder_.setMessage(value);
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public Builder setAmContainerSpec(
org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.Builder builderForValue) {
if (amContainerSpecBuilder_ == null) {
amContainerSpec_ = builderForValue.build();
onChanged();
} else {
amContainerSpecBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public Builder mergeAmContainerSpec(org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto value) {
if (amContainerSpecBuilder_ == null) {
if (((bitField0_ & 0x00000010) == 0x00000010) &&
amContainerSpec_ != org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.getDefaultInstance()) {
amContainerSpec_ =
org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.newBuilder(amContainerSpec_).mergeFrom(value).buildPartial();
} else {
amContainerSpec_ = value;
}
onChanged();
} else {
amContainerSpecBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000010;
return this;
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public Builder clearAmContainerSpec() {
if (amContainerSpecBuilder_ == null) {
amContainerSpec_ = org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.getDefaultInstance();
onChanged();
} else {
amContainerSpecBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.Builder getAmContainerSpecBuilder() {
bitField0_ |= 0x00000010;
onChanged();
return getAmContainerSpecFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProtoOrBuilder getAmContainerSpecOrBuilder() {
if (amContainerSpecBuilder_ != null) {
return amContainerSpecBuilder_.getMessageOrBuilder();
} else {
return amContainerSpec_;
}
}
/**
* optional .hadoop.yarn.ContainerLaunchContextProto am_container_spec = 5;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProtoOrBuilder>
getAmContainerSpecFieldBuilder() {
if (amContainerSpecBuilder_ == null) {
amContainerSpecBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto, org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ContainerLaunchContextProtoOrBuilder>(
amContainerSpec_,
getParentForChildren(),
isClean());
amContainerSpec_ = null;
}
return amContainerSpecBuilder_;
}
// optional bool cancel_tokens_when_complete = 6 [default = true];
private boolean cancelTokensWhenComplete_ = true;
/**
* optional bool cancel_tokens_when_complete = 6 [default = true];
*/
public boolean hasCancelTokensWhenComplete() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional bool cancel_tokens_when_complete = 6 [default = true];
*/
public boolean getCancelTokensWhenComplete() {
return cancelTokensWhenComplete_;
}
/**
* optional bool cancel_tokens_when_complete = 6 [default = true];
*/
public Builder setCancelTokensWhenComplete(boolean value) {
bitField0_ |= 0x00000020;
cancelTokensWhenComplete_ = value;
onChanged();
return this;
}
/**
* optional bool cancel_tokens_when_complete = 6 [default = true];
*/
public Builder clearCancelTokensWhenComplete() {
bitField0_ = (bitField0_ & ~0x00000020);
cancelTokensWhenComplete_ = true;
onChanged();
return this;
}
// optional bool unmanaged_am = 7 [default = false];
private boolean unmanagedAm_ ;
/**
* optional bool unmanaged_am = 7 [default = false];
*/
public boolean hasUnmanagedAm() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional bool unmanaged_am = 7 [default = false];
*/
public boolean getUnmanagedAm() {
return unmanagedAm_;
}
/**
* optional bool unmanaged_am = 7 [default = false];
*/
public Builder setUnmanagedAm(boolean value) {
bitField0_ |= 0x00000040;
unmanagedAm_ = value;
onChanged();
return this;
}
/**
* optional bool unmanaged_am = 7 [default = false];
*/
public Builder clearUnmanagedAm() {
bitField0_ = (bitField0_ & ~0x00000040);
unmanagedAm_ = false;
onChanged();
return this;
}
// optional int32 maxAppAttempts = 8 [default = 0];
private int maxAppAttempts_ ;
/**
* optional int32 maxAppAttempts = 8 [default = 0];
*/
public boolean hasMaxAppAttempts() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional int32 maxAppAttempts = 8 [default = 0];
*/
public int getMaxAppAttempts() {
return maxAppAttempts_;
}
/**
* optional int32 maxAppAttempts = 8 [default = 0];
*/
public Builder setMaxAppAttempts(int value) {
bitField0_ |= 0x00000080;
maxAppAttempts_ = value;
onChanged();
return this;
}
/**
* optional int32 maxAppAttempts = 8 [default = 0];
*/
public Builder clearMaxAppAttempts() {
bitField0_ = (bitField0_ & ~0x00000080);
maxAppAttempts_ = 0;
onChanged();
return this;
}
// optional .hadoop.yarn.ResourceProto resource = 9;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> resourceBuilder_;
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public boolean hasResource() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getResource() {
if (resourceBuilder_ == null) {
return resource_;
} else {
return resourceBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public Builder setResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (resourceBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resource_ = value;
onChanged();
} else {
resourceBuilder_.setMessage(value);
}
bitField0_ |= 0x00000100;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public Builder setResource(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (resourceBuilder_ == null) {
resource_ = builderForValue.build();
onChanged();
} else {
resourceBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000100;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public Builder mergeResource(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (resourceBuilder_ == null) {
if (((bitField0_ & 0x00000100) == 0x00000100) &&
resource_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
resource_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(resource_).mergeFrom(value).buildPartial();
} else {
resource_ = value;
}
onChanged();
} else {
resourceBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000100;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public Builder clearResource() {
if (resourceBuilder_ == null) {
resource_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
resourceBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000100);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getResourceBuilder() {
bitField0_ |= 0x00000100;
onChanged();
return getResourceFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getResourceOrBuilder() {
if (resourceBuilder_ != null) {
return resourceBuilder_.getMessageOrBuilder();
} else {
return resource_;
}
}
/**
* optional .hadoop.yarn.ResourceProto resource = 9;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getResourceFieldBuilder() {
if (resourceBuilder_ == null) {
resourceBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
resource_,
getParentForChildren(),
isClean());
resource_ = null;
}
return resourceBuilder_;
}
// optional string applicationType = 10 [default = "YARN"];
private java.lang.Object applicationType_ = "YARN";
/**
* optional string applicationType = 10 [default = "YARN"];
*/
public boolean hasApplicationType() {
return ((bitField0_ & 0x00000200) == 0x00000200);
}
/**
* optional string applicationType = 10 [default = "YARN"];
*/
public java.lang.String getApplicationType() {
java.lang.Object ref = applicationType_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
applicationType_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string applicationType = 10 [default = "YARN"];
*/
public com.google.protobuf.ByteString
getApplicationTypeBytes() {
java.lang.Object ref = applicationType_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
applicationType_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string applicationType = 10 [default = "YARN"];
*/
public Builder setApplicationType(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000200;
applicationType_ = value;
onChanged();
return this;
}
/**
* optional string applicationType = 10 [default = "YARN"];
*/
public Builder clearApplicationType() {
bitField0_ = (bitField0_ & ~0x00000200);
applicationType_ = getDefaultInstance().getApplicationType();
onChanged();
return this;
}
/**
* optional string applicationType = 10 [default = "YARN"];
*/
public Builder setApplicationTypeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000200;
applicationType_ = value;
onChanged();
return this;
}
// optional bool keep_containers_across_application_attempts = 11 [default = false];
private boolean keepContainersAcrossApplicationAttempts_ ;
/**
* optional bool keep_containers_across_application_attempts = 11 [default = false];
*/
public boolean hasKeepContainersAcrossApplicationAttempts() {
return ((bitField0_ & 0x00000400) == 0x00000400);
}
/**
* optional bool keep_containers_across_application_attempts = 11 [default = false];
*/
public boolean getKeepContainersAcrossApplicationAttempts() {
return keepContainersAcrossApplicationAttempts_;
}
/**
* optional bool keep_containers_across_application_attempts = 11 [default = false];
*/
public Builder setKeepContainersAcrossApplicationAttempts(boolean value) {
bitField0_ |= 0x00000400;
keepContainersAcrossApplicationAttempts_ = value;
onChanged();
return this;
}
/**
* optional bool keep_containers_across_application_attempts = 11 [default = false];
*/
public Builder clearKeepContainersAcrossApplicationAttempts() {
bitField0_ = (bitField0_ & ~0x00000400);
keepContainersAcrossApplicationAttempts_ = false;
onChanged();
return this;
}
// repeated string applicationTags = 12;
private com.google.protobuf.LazyStringList applicationTags_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureApplicationTagsIsMutable() {
if (!((bitField0_ & 0x00000800) == 0x00000800)) {
applicationTags_ = new com.google.protobuf.LazyStringArrayList(applicationTags_);
bitField0_ |= 0x00000800;
}
}
/**
* repeated string applicationTags = 12;
*/
public java.util.List
getApplicationTagsList() {
return java.util.Collections.unmodifiableList(applicationTags_);
}
/**
* repeated string applicationTags = 12;
*/
public int getApplicationTagsCount() {
return applicationTags_.size();
}
/**
* repeated string applicationTags = 12;
*/
public java.lang.String getApplicationTags(int index) {
return applicationTags_.get(index);
}
/**
* repeated string applicationTags = 12;
*/
public com.google.protobuf.ByteString
getApplicationTagsBytes(int index) {
return applicationTags_.getByteString(index);
}
/**
* repeated string applicationTags = 12;
*/
public Builder setApplicationTags(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureApplicationTagsIsMutable();
applicationTags_.set(index, value);
onChanged();
return this;
}
/**
* repeated string applicationTags = 12;
*/
public Builder addApplicationTags(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureApplicationTagsIsMutable();
applicationTags_.add(value);
onChanged();
return this;
}
/**
* repeated string applicationTags = 12;
*/
public Builder addAllApplicationTags(
java.lang.Iterable values) {
ensureApplicationTagsIsMutable();
super.addAll(values, applicationTags_);
onChanged();
return this;
}
/**
* repeated string applicationTags = 12;
*/
public Builder clearApplicationTags() {
applicationTags_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000800);
onChanged();
return this;
}
/**
* repeated string applicationTags = 12;
*/
public Builder addApplicationTagsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
ensureApplicationTagsIsMutable();
applicationTags_.add(value);
onChanged();
return this;
}
// optional int64 attempt_failures_validity_interval = 13 [default = -1];
private long attemptFailuresValidityInterval_ = -1L;
/**
* optional int64 attempt_failures_validity_interval = 13 [default = -1];
*/
public boolean hasAttemptFailuresValidityInterval() {
return ((bitField0_ & 0x00001000) == 0x00001000);
}
/**
* optional int64 attempt_failures_validity_interval = 13 [default = -1];
*/
public long getAttemptFailuresValidityInterval() {
return attemptFailuresValidityInterval_;
}
/**
* optional int64 attempt_failures_validity_interval = 13 [default = -1];
*/
public Builder setAttemptFailuresValidityInterval(long value) {
bitField0_ |= 0x00001000;
attemptFailuresValidityInterval_ = value;
onChanged();
return this;
}
/**
* optional int64 attempt_failures_validity_interval = 13 [default = -1];
*/
public Builder clearAttemptFailuresValidityInterval() {
bitField0_ = (bitField0_ & ~0x00001000);
attemptFailuresValidityInterval_ = -1L;
onChanged();
return this;
}
// optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
private org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto logAggregationContext_ = org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto, org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProtoOrBuilder> logAggregationContextBuilder_;
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public boolean hasLogAggregationContext() {
return ((bitField0_ & 0x00002000) == 0x00002000);
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto getLogAggregationContext() {
if (logAggregationContextBuilder_ == null) {
return logAggregationContext_;
} else {
return logAggregationContextBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public Builder setLogAggregationContext(org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto value) {
if (logAggregationContextBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
logAggregationContext_ = value;
onChanged();
} else {
logAggregationContextBuilder_.setMessage(value);
}
bitField0_ |= 0x00002000;
return this;
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public Builder setLogAggregationContext(
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.Builder builderForValue) {
if (logAggregationContextBuilder_ == null) {
logAggregationContext_ = builderForValue.build();
onChanged();
} else {
logAggregationContextBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00002000;
return this;
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public Builder mergeLogAggregationContext(org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto value) {
if (logAggregationContextBuilder_ == null) {
if (((bitField0_ & 0x00002000) == 0x00002000) &&
logAggregationContext_ != org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.getDefaultInstance()) {
logAggregationContext_ =
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.newBuilder(logAggregationContext_).mergeFrom(value).buildPartial();
} else {
logAggregationContext_ = value;
}
onChanged();
} else {
logAggregationContextBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00002000;
return this;
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public Builder clearLogAggregationContext() {
if (logAggregationContextBuilder_ == null) {
logAggregationContext_ = org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.getDefaultInstance();
onChanged();
} else {
logAggregationContextBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00002000);
return this;
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.Builder getLogAggregationContextBuilder() {
bitField0_ |= 0x00002000;
onChanged();
return getLogAggregationContextFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProtoOrBuilder getLogAggregationContextOrBuilder() {
if (logAggregationContextBuilder_ != null) {
return logAggregationContextBuilder_.getMessageOrBuilder();
} else {
return logAggregationContext_;
}
}
/**
* optional .hadoop.yarn.LogAggregationContextProto log_aggregation_context = 14;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto, org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProtoOrBuilder>
getLogAggregationContextFieldBuilder() {
if (logAggregationContextBuilder_ == null) {
logAggregationContextBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto, org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProtoOrBuilder>(
logAggregationContext_,
getParentForChildren(),
isClean());
logAggregationContext_ = null;
}
return logAggregationContextBuilder_;
}
// optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
private org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto reservationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProtoOrBuilder> reservationIdBuilder_;
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public boolean hasReservationId() {
return ((bitField0_ & 0x00004000) == 0x00004000);
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto getReservationId() {
if (reservationIdBuilder_ == null) {
return reservationId_;
} else {
return reservationIdBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public Builder setReservationId(org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto value) {
if (reservationIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
reservationId_ = value;
onChanged();
} else {
reservationIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00004000;
return this;
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public Builder setReservationId(
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.Builder builderForValue) {
if (reservationIdBuilder_ == null) {
reservationId_ = builderForValue.build();
onChanged();
} else {
reservationIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00004000;
return this;
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public Builder mergeReservationId(org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto value) {
if (reservationIdBuilder_ == null) {
if (((bitField0_ & 0x00004000) == 0x00004000) &&
reservationId_ != org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.getDefaultInstance()) {
reservationId_ =
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.newBuilder(reservationId_).mergeFrom(value).buildPartial();
} else {
reservationId_ = value;
}
onChanged();
} else {
reservationIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00004000;
return this;
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public Builder clearReservationId() {
if (reservationIdBuilder_ == null) {
reservationId_ = org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.getDefaultInstance();
onChanged();
} else {
reservationIdBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00004000);
return this;
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.Builder getReservationIdBuilder() {
bitField0_ |= 0x00004000;
onChanged();
return getReservationIdFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProtoOrBuilder getReservationIdOrBuilder() {
if (reservationIdBuilder_ != null) {
return reservationIdBuilder_.getMessageOrBuilder();
} else {
return reservationId_;
}
}
/**
* optional .hadoop.yarn.ReservationIdProto reservation_id = 15;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProtoOrBuilder>
getReservationIdFieldBuilder() {
if (reservationIdBuilder_ == null) {
reservationIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto, org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProtoOrBuilder>(
reservationId_,
getParentForChildren(),
isClean());
reservationId_ = null;
}
return reservationIdBuilder_;
}
// optional string node_label_expression = 16;
private java.lang.Object nodeLabelExpression_ = "";
/**
* optional string node_label_expression = 16;
*/
public boolean hasNodeLabelExpression() {
return ((bitField0_ & 0x00008000) == 0x00008000);
}
/**
* optional string node_label_expression = 16;
*/
public java.lang.String getNodeLabelExpression() {
java.lang.Object ref = nodeLabelExpression_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
nodeLabelExpression_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string node_label_expression = 16;
*/
public com.google.protobuf.ByteString
getNodeLabelExpressionBytes() {
java.lang.Object ref = nodeLabelExpression_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodeLabelExpression_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string node_label_expression = 16;
*/
public Builder setNodeLabelExpression(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00008000;
nodeLabelExpression_ = value;
onChanged();
return this;
}
/**
* optional string node_label_expression = 16;
*/
public Builder clearNodeLabelExpression() {
bitField0_ = (bitField0_ & ~0x00008000);
nodeLabelExpression_ = getDefaultInstance().getNodeLabelExpression();
onChanged();
return this;
}
/**
* optional string node_label_expression = 16;
*/
public Builder setNodeLabelExpressionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00008000;
nodeLabelExpression_ = value;
onChanged();
return this;
}
// optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto amContainerResourceRequest_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder> amContainerResourceRequestBuilder_;
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public boolean hasAmContainerResourceRequest() {
return ((bitField0_ & 0x00010000) == 0x00010000);
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto getAmContainerResourceRequest() {
if (amContainerResourceRequestBuilder_ == null) {
return amContainerResourceRequest_;
} else {
return amContainerResourceRequestBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public Builder setAmContainerResourceRequest(org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto value) {
if (amContainerResourceRequestBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
amContainerResourceRequest_ = value;
onChanged();
} else {
amContainerResourceRequestBuilder_.setMessage(value);
}
bitField0_ |= 0x00010000;
return this;
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public Builder setAmContainerResourceRequest(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder builderForValue) {
if (amContainerResourceRequestBuilder_ == null) {
amContainerResourceRequest_ = builderForValue.build();
onChanged();
} else {
amContainerResourceRequestBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00010000;
return this;
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public Builder mergeAmContainerResourceRequest(org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto value) {
if (amContainerResourceRequestBuilder_ == null) {
if (((bitField0_ & 0x00010000) == 0x00010000) &&
amContainerResourceRequest_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance()) {
amContainerResourceRequest_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.newBuilder(amContainerResourceRequest_).mergeFrom(value).buildPartial();
} else {
amContainerResourceRequest_ = value;
}
onChanged();
} else {
amContainerResourceRequestBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00010000;
return this;
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public Builder clearAmContainerResourceRequest() {
if (amContainerResourceRequestBuilder_ == null) {
amContainerResourceRequest_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.getDefaultInstance();
onChanged();
} else {
amContainerResourceRequestBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00010000);
return this;
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder getAmContainerResourceRequestBuilder() {
bitField0_ |= 0x00010000;
onChanged();
return getAmContainerResourceRequestFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder getAmContainerResourceRequestOrBuilder() {
if (amContainerResourceRequestBuilder_ != null) {
return amContainerResourceRequestBuilder_.getMessageOrBuilder();
} else {
return amContainerResourceRequest_;
}
}
/**
* optional .hadoop.yarn.ResourceRequestProto am_container_resource_request = 17;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder>
getAmContainerResourceRequestFieldBuilder() {
if (amContainerResourceRequestBuilder_ == null) {
amContainerResourceRequestBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProtoOrBuilder>(
amContainerResourceRequest_,
getParentForChildren(),
isClean());
amContainerResourceRequest_ = null;
}
return amContainerResourceRequestBuilder_;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ApplicationSubmissionContextProto)
}
static {
defaultInstance = new ApplicationSubmissionContextProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ApplicationSubmissionContextProto)
}
public interface LogAggregationContextProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional string include_pattern = 1 [default = ".*"];
/**
* optional string include_pattern = 1 [default = ".*"];
*/
boolean hasIncludePattern();
/**
* optional string include_pattern = 1 [default = ".*"];
*/
java.lang.String getIncludePattern();
/**
* optional string include_pattern = 1 [default = ".*"];
*/
com.google.protobuf.ByteString
getIncludePatternBytes();
// optional string exclude_pattern = 2 [default = ""];
/**
* optional string exclude_pattern = 2 [default = ""];
*/
boolean hasExcludePattern();
/**
* optional string exclude_pattern = 2 [default = ""];
*/
java.lang.String getExcludePattern();
/**
* optional string exclude_pattern = 2 [default = ""];
*/
com.google.protobuf.ByteString
getExcludePatternBytes();
// optional string rolled_logs_include_pattern = 3 [default = ""];
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
boolean hasRolledLogsIncludePattern();
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
java.lang.String getRolledLogsIncludePattern();
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
com.google.protobuf.ByteString
getRolledLogsIncludePatternBytes();
// optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
boolean hasRolledLogsExcludePattern();
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
java.lang.String getRolledLogsExcludePattern();
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
com.google.protobuf.ByteString
getRolledLogsExcludePatternBytes();
}
/**
* Protobuf type {@code hadoop.yarn.LogAggregationContextProto}
*/
public static final class LogAggregationContextProto extends
com.google.protobuf.GeneratedMessage
implements LogAggregationContextProtoOrBuilder {
// Use LogAggregationContextProto.newBuilder() to construct.
private LogAggregationContextProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private LogAggregationContextProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final LogAggregationContextProto defaultInstance;
public static LogAggregationContextProto getDefaultInstance() {
return defaultInstance;
}
public LogAggregationContextProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private LogAggregationContextProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
bitField0_ |= 0x00000001;
includePattern_ = input.readBytes();
break;
}
case 18: {
bitField0_ |= 0x00000002;
excludePattern_ = input.readBytes();
break;
}
case 26: {
bitField0_ |= 0x00000004;
rolledLogsIncludePattern_ = input.readBytes();
break;
}
case 34: {
bitField0_ |= 0x00000008;
rolledLogsExcludePattern_ = input.readBytes();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LogAggregationContextProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LogAggregationContextProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.class, org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public LogAggregationContextProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new LogAggregationContextProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional string include_pattern = 1 [default = ".*"];
public static final int INCLUDE_PATTERN_FIELD_NUMBER = 1;
private java.lang.Object includePattern_;
/**
* optional string include_pattern = 1 [default = ".*"];
*/
public boolean hasIncludePattern() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string include_pattern = 1 [default = ".*"];
*/
public java.lang.String getIncludePattern() {
java.lang.Object ref = includePattern_;
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();
if (bs.isValidUtf8()) {
includePattern_ = s;
}
return s;
}
}
/**
* optional string include_pattern = 1 [default = ".*"];
*/
public com.google.protobuf.ByteString
getIncludePatternBytes() {
java.lang.Object ref = includePattern_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
includePattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string exclude_pattern = 2 [default = ""];
public static final int EXCLUDE_PATTERN_FIELD_NUMBER = 2;
private java.lang.Object excludePattern_;
/**
* optional string exclude_pattern = 2 [default = ""];
*/
public boolean hasExcludePattern() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string exclude_pattern = 2 [default = ""];
*/
public java.lang.String getExcludePattern() {
java.lang.Object ref = excludePattern_;
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();
if (bs.isValidUtf8()) {
excludePattern_ = s;
}
return s;
}
}
/**
* optional string exclude_pattern = 2 [default = ""];
*/
public com.google.protobuf.ByteString
getExcludePatternBytes() {
java.lang.Object ref = excludePattern_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
excludePattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string rolled_logs_include_pattern = 3 [default = ""];
public static final int ROLLED_LOGS_INCLUDE_PATTERN_FIELD_NUMBER = 3;
private java.lang.Object rolledLogsIncludePattern_;
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
public boolean hasRolledLogsIncludePattern() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
public java.lang.String getRolledLogsIncludePattern() {
java.lang.Object ref = rolledLogsIncludePattern_;
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();
if (bs.isValidUtf8()) {
rolledLogsIncludePattern_ = s;
}
return s;
}
}
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
public com.google.protobuf.ByteString
getRolledLogsIncludePatternBytes() {
java.lang.Object ref = rolledLogsIncludePattern_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rolledLogsIncludePattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
public static final int ROLLED_LOGS_EXCLUDE_PATTERN_FIELD_NUMBER = 4;
private java.lang.Object rolledLogsExcludePattern_;
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
public boolean hasRolledLogsExcludePattern() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
public java.lang.String getRolledLogsExcludePattern() {
java.lang.Object ref = rolledLogsExcludePattern_;
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();
if (bs.isValidUtf8()) {
rolledLogsExcludePattern_ = s;
}
return s;
}
}
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
public com.google.protobuf.ByteString
getRolledLogsExcludePatternBytes() {
java.lang.Object ref = rolledLogsExcludePattern_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rolledLogsExcludePattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private void initFields() {
includePattern_ = ".*";
excludePattern_ = "";
rolledLogsIncludePattern_ = "";
rolledLogsExcludePattern_ = ".*";
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeBytes(1, getIncludePatternBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getExcludePatternBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBytes(3, getRolledLogsIncludePatternBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeBytes(4, getRolledLogsExcludePatternBytes());
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(1, getIncludePatternBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getExcludePatternBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, getRolledLogsIncludePatternBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(4, getRolledLogsExcludePatternBytes());
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto other = (org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto) obj;
boolean result = true;
result = result && (hasIncludePattern() == other.hasIncludePattern());
if (hasIncludePattern()) {
result = result && getIncludePattern()
.equals(other.getIncludePattern());
}
result = result && (hasExcludePattern() == other.hasExcludePattern());
if (hasExcludePattern()) {
result = result && getExcludePattern()
.equals(other.getExcludePattern());
}
result = result && (hasRolledLogsIncludePattern() == other.hasRolledLogsIncludePattern());
if (hasRolledLogsIncludePattern()) {
result = result && getRolledLogsIncludePattern()
.equals(other.getRolledLogsIncludePattern());
}
result = result && (hasRolledLogsExcludePattern() == other.hasRolledLogsExcludePattern());
if (hasRolledLogsExcludePattern()) {
result = result && getRolledLogsExcludePattern()
.equals(other.getRolledLogsExcludePattern());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasIncludePattern()) {
hash = (37 * hash) + INCLUDE_PATTERN_FIELD_NUMBER;
hash = (53 * hash) + getIncludePattern().hashCode();
}
if (hasExcludePattern()) {
hash = (37 * hash) + EXCLUDE_PATTERN_FIELD_NUMBER;
hash = (53 * hash) + getExcludePattern().hashCode();
}
if (hasRolledLogsIncludePattern()) {
hash = (37 * hash) + ROLLED_LOGS_INCLUDE_PATTERN_FIELD_NUMBER;
hash = (53 * hash) + getRolledLogsIncludePattern().hashCode();
}
if (hasRolledLogsExcludePattern()) {
hash = (37 * hash) + ROLLED_LOGS_EXCLUDE_PATTERN_FIELD_NUMBER;
hash = (53 * hash) + getRolledLogsExcludePattern().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.LogAggregationContextProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LogAggregationContextProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LogAggregationContextProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.class, org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
includePattern_ = ".*";
bitField0_ = (bitField0_ & ~0x00000001);
excludePattern_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
rolledLogsIncludePattern_ = "";
bitField0_ = (bitField0_ & ~0x00000004);
rolledLogsExcludePattern_ = ".*";
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_LogAggregationContextProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto result = new org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.includePattern_ = includePattern_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.excludePattern_ = excludePattern_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.rolledLogsIncludePattern_ = rolledLogsIncludePattern_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.rolledLogsExcludePattern_ = rolledLogsExcludePattern_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto.getDefaultInstance()) return this;
if (other.hasIncludePattern()) {
bitField0_ |= 0x00000001;
includePattern_ = other.includePattern_;
onChanged();
}
if (other.hasExcludePattern()) {
bitField0_ |= 0x00000002;
excludePattern_ = other.excludePattern_;
onChanged();
}
if (other.hasRolledLogsIncludePattern()) {
bitField0_ |= 0x00000004;
rolledLogsIncludePattern_ = other.rolledLogsIncludePattern_;
onChanged();
}
if (other.hasRolledLogsExcludePattern()) {
bitField0_ |= 0x00000008;
rolledLogsExcludePattern_ = other.rolledLogsExcludePattern_;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.LogAggregationContextProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional string include_pattern = 1 [default = ".*"];
private java.lang.Object includePattern_ = ".*";
/**
* optional string include_pattern = 1 [default = ".*"];
*/
public boolean hasIncludePattern() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string include_pattern = 1 [default = ".*"];
*/
public java.lang.String getIncludePattern() {
java.lang.Object ref = includePattern_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
includePattern_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string include_pattern = 1 [default = ".*"];
*/
public com.google.protobuf.ByteString
getIncludePatternBytes() {
java.lang.Object ref = includePattern_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
includePattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string include_pattern = 1 [default = ".*"];
*/
public Builder setIncludePattern(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
includePattern_ = value;
onChanged();
return this;
}
/**
* optional string include_pattern = 1 [default = ".*"];
*/
public Builder clearIncludePattern() {
bitField0_ = (bitField0_ & ~0x00000001);
includePattern_ = getDefaultInstance().getIncludePattern();
onChanged();
return this;
}
/**
* optional string include_pattern = 1 [default = ".*"];
*/
public Builder setIncludePatternBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
includePattern_ = value;
onChanged();
return this;
}
// optional string exclude_pattern = 2 [default = ""];
private java.lang.Object excludePattern_ = "";
/**
* optional string exclude_pattern = 2 [default = ""];
*/
public boolean hasExcludePattern() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string exclude_pattern = 2 [default = ""];
*/
public java.lang.String getExcludePattern() {
java.lang.Object ref = excludePattern_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
excludePattern_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string exclude_pattern = 2 [default = ""];
*/
public com.google.protobuf.ByteString
getExcludePatternBytes() {
java.lang.Object ref = excludePattern_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
excludePattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string exclude_pattern = 2 [default = ""];
*/
public Builder setExcludePattern(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
excludePattern_ = value;
onChanged();
return this;
}
/**
* optional string exclude_pattern = 2 [default = ""];
*/
public Builder clearExcludePattern() {
bitField0_ = (bitField0_ & ~0x00000002);
excludePattern_ = getDefaultInstance().getExcludePattern();
onChanged();
return this;
}
/**
* optional string exclude_pattern = 2 [default = ""];
*/
public Builder setExcludePatternBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
excludePattern_ = value;
onChanged();
return this;
}
// optional string rolled_logs_include_pattern = 3 [default = ""];
private java.lang.Object rolledLogsIncludePattern_ = "";
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
public boolean hasRolledLogsIncludePattern() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
public java.lang.String getRolledLogsIncludePattern() {
java.lang.Object ref = rolledLogsIncludePattern_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
rolledLogsIncludePattern_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
public com.google.protobuf.ByteString
getRolledLogsIncludePatternBytes() {
java.lang.Object ref = rolledLogsIncludePattern_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rolledLogsIncludePattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
public Builder setRolledLogsIncludePattern(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
rolledLogsIncludePattern_ = value;
onChanged();
return this;
}
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
public Builder clearRolledLogsIncludePattern() {
bitField0_ = (bitField0_ & ~0x00000004);
rolledLogsIncludePattern_ = getDefaultInstance().getRolledLogsIncludePattern();
onChanged();
return this;
}
/**
* optional string rolled_logs_include_pattern = 3 [default = ""];
*/
public Builder setRolledLogsIncludePatternBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
rolledLogsIncludePattern_ = value;
onChanged();
return this;
}
// optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
private java.lang.Object rolledLogsExcludePattern_ = ".*";
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
public boolean hasRolledLogsExcludePattern() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
public java.lang.String getRolledLogsExcludePattern() {
java.lang.Object ref = rolledLogsExcludePattern_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
rolledLogsExcludePattern_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
public com.google.protobuf.ByteString
getRolledLogsExcludePatternBytes() {
java.lang.Object ref = rolledLogsExcludePattern_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
rolledLogsExcludePattern_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
public Builder setRolledLogsExcludePattern(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
rolledLogsExcludePattern_ = value;
onChanged();
return this;
}
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
public Builder clearRolledLogsExcludePattern() {
bitField0_ = (bitField0_ & ~0x00000008);
rolledLogsExcludePattern_ = getDefaultInstance().getRolledLogsExcludePattern();
onChanged();
return this;
}
/**
* optional string rolled_logs_exclude_pattern = 4 [default = ".*"];
*/
public Builder setRolledLogsExcludePatternBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
rolledLogsExcludePattern_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.LogAggregationContextProto)
}
static {
defaultInstance = new LogAggregationContextProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.LogAggregationContextProto)
}
public interface ApplicationACLMapProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
/**
* optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
*/
boolean hasAccessType();
/**
* optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto getAccessType();
// optional string acl = 2 [default = " "];
/**
* optional string acl = 2 [default = " "];
*/
boolean hasAcl();
/**
* optional string acl = 2 [default = " "];
*/
java.lang.String getAcl();
/**
* optional string acl = 2 [default = " "];
*/
com.google.protobuf.ByteString
getAclBytes();
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationACLMapProto}
*/
public static final class ApplicationACLMapProto extends
com.google.protobuf.GeneratedMessage
implements ApplicationACLMapProtoOrBuilder {
// Use ApplicationACLMapProto.newBuilder() to construct.
private ApplicationACLMapProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ApplicationACLMapProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ApplicationACLMapProto defaultInstance;
public static ApplicationACLMapProto getDefaultInstance() {
return defaultInstance;
}
public ApplicationACLMapProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApplicationACLMapProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto value = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(1, rawValue);
} else {
bitField0_ |= 0x00000001;
accessType_ = value;
}
break;
}
case 18: {
bitField0_ |= 0x00000002;
acl_ = input.readBytes();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationACLMapProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationACLMapProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ApplicationACLMapProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApplicationACLMapProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
public static final int ACCESSTYPE_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto accessType_;
/**
* optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
*/
public boolean hasAccessType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto getAccessType() {
return accessType_;
}
// optional string acl = 2 [default = " "];
public static final int ACL_FIELD_NUMBER = 2;
private java.lang.Object acl_;
/**
* optional string acl = 2 [default = " "];
*/
public boolean hasAcl() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string acl = 2 [default = " "];
*/
public java.lang.String getAcl() {
java.lang.Object ref = acl_;
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();
if (bs.isValidUtf8()) {
acl_ = s;
}
return s;
}
}
/**
* optional string acl = 2 [default = " "];
*/
public com.google.protobuf.ByteString
getAclBytes() {
java.lang.Object ref = acl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
acl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private void initFields() {
accessType_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto.APPACCESS_VIEW_APP;
acl_ = " ";
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeEnum(1, accessType_.getNumber());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getAclBytes());
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, accessType_.getNumber());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getAclBytes());
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto) obj;
boolean result = true;
result = result && (hasAccessType() == other.hasAccessType());
if (hasAccessType()) {
result = result &&
(getAccessType() == other.getAccessType());
}
result = result && (hasAcl() == other.hasAcl());
if (hasAcl()) {
result = result && getAcl()
.equals(other.getAcl());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasAccessType()) {
hash = (37 * hash) + ACCESSTYPE_FIELD_NUMBER;
hash = (53 * hash) + hashEnum(getAccessType());
}
if (hasAcl()) {
hash = (37 * hash) + ACL_FIELD_NUMBER;
hash = (53 * hash) + getAcl().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ApplicationACLMapProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationACLMapProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationACLMapProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
accessType_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto.APPACCESS_VIEW_APP;
bitField0_ = (bitField0_ & ~0x00000001);
acl_ = " ";
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ApplicationACLMapProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.accessType_ = accessType_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.acl_ = acl_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto.getDefaultInstance()) return this;
if (other.hasAccessType()) {
setAccessType(other.getAccessType());
}
if (other.hasAcl()) {
bitField0_ |= 0x00000002;
acl_ = other.acl_;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ApplicationACLMapProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto accessType_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto.APPACCESS_VIEW_APP;
/**
* optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
*/
public boolean hasAccessType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto getAccessType() {
return accessType_;
}
/**
* optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
*/
public Builder setAccessType(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
accessType_ = value;
onChanged();
return this;
}
/**
* optional .hadoop.yarn.ApplicationAccessTypeProto accessType = 1;
*/
public Builder clearAccessType() {
bitField0_ = (bitField0_ & ~0x00000001);
accessType_ = org.apache.hadoop.yarn.proto.YarnProtos.ApplicationAccessTypeProto.APPACCESS_VIEW_APP;
onChanged();
return this;
}
// optional string acl = 2 [default = " "];
private java.lang.Object acl_ = " ";
/**
* optional string acl = 2 [default = " "];
*/
public boolean hasAcl() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string acl = 2 [default = " "];
*/
public java.lang.String getAcl() {
java.lang.Object ref = acl_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
acl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string acl = 2 [default = " "];
*/
public com.google.protobuf.ByteString
getAclBytes() {
java.lang.Object ref = acl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
acl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string acl = 2 [default = " "];
*/
public Builder setAcl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
acl_ = value;
onChanged();
return this;
}
/**
* optional string acl = 2 [default = " "];
*/
public Builder clearAcl() {
bitField0_ = (bitField0_ & ~0x00000002);
acl_ = getDefaultInstance().getAcl();
onChanged();
return this;
}
/**
* optional string acl = 2 [default = " "];
*/
public Builder setAclBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
acl_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ApplicationACLMapProto)
}
static {
defaultInstance = new ApplicationACLMapProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ApplicationACLMapProto)
}
public interface YarnClusterMetricsProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional int32 num_node_managers = 1;
/**
* optional int32 num_node_managers = 1;
*/
boolean hasNumNodeManagers();
/**
* optional int32 num_node_managers = 1;
*/
int getNumNodeManagers();
}
/**
* Protobuf type {@code hadoop.yarn.YarnClusterMetricsProto}
*/
public static final class YarnClusterMetricsProto extends
com.google.protobuf.GeneratedMessage
implements YarnClusterMetricsProtoOrBuilder {
// Use YarnClusterMetricsProto.newBuilder() to construct.
private YarnClusterMetricsProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private YarnClusterMetricsProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final YarnClusterMetricsProto defaultInstance;
public static YarnClusterMetricsProto getDefaultInstance() {
return defaultInstance;
}
public YarnClusterMetricsProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private YarnClusterMetricsProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
numNodeManagers_ = input.readInt32();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_YarnClusterMetricsProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_YarnClusterMetricsProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto.class, org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public YarnClusterMetricsProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new YarnClusterMetricsProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional int32 num_node_managers = 1;
public static final int NUM_NODE_MANAGERS_FIELD_NUMBER = 1;
private int numNodeManagers_;
/**
* optional int32 num_node_managers = 1;
*/
public boolean hasNumNodeManagers() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 num_node_managers = 1;
*/
public int getNumNodeManagers() {
return numNodeManagers_;
}
private void initFields() {
numNodeManagers_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(1, numNodeManagers_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, numNodeManagers_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto other = (org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto) obj;
boolean result = true;
result = result && (hasNumNodeManagers() == other.hasNumNodeManagers());
if (hasNumNodeManagers()) {
result = result && (getNumNodeManagers()
== other.getNumNodeManagers());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasNumNodeManagers()) {
hash = (37 * hash) + NUM_NODE_MANAGERS_FIELD_NUMBER;
hash = (53 * hash) + getNumNodeManagers();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.YarnClusterMetricsProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_YarnClusterMetricsProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_YarnClusterMetricsProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto.class, org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
numNodeManagers_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_YarnClusterMetricsProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto result = new org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.numNodeManagers_ = numNodeManagers_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto.getDefaultInstance()) return this;
if (other.hasNumNodeManagers()) {
setNumNodeManagers(other.getNumNodeManagers());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional int32 num_node_managers = 1;
private int numNodeManagers_ ;
/**
* optional int32 num_node_managers = 1;
*/
public boolean hasNumNodeManagers() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 num_node_managers = 1;
*/
public int getNumNodeManagers() {
return numNodeManagers_;
}
/**
* optional int32 num_node_managers = 1;
*/
public Builder setNumNodeManagers(int value) {
bitField0_ |= 0x00000001;
numNodeManagers_ = value;
onChanged();
return this;
}
/**
* optional int32 num_node_managers = 1;
*/
public Builder clearNumNodeManagers() {
bitField0_ = (bitField0_ & ~0x00000001);
numNodeManagers_ = 0;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.YarnClusterMetricsProto)
}
static {
defaultInstance = new YarnClusterMetricsProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.YarnClusterMetricsProto)
}
public interface QueueInfoProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional string queueName = 1;
/**
* optional string queueName = 1;
*/
boolean hasQueueName();
/**
* optional string queueName = 1;
*/
java.lang.String getQueueName();
/**
* optional string queueName = 1;
*/
com.google.protobuf.ByteString
getQueueNameBytes();
// optional float capacity = 2;
/**
* optional float capacity = 2;
*/
boolean hasCapacity();
/**
* optional float capacity = 2;
*/
float getCapacity();
// optional float maximumCapacity = 3;
/**
* optional float maximumCapacity = 3;
*/
boolean hasMaximumCapacity();
/**
* optional float maximumCapacity = 3;
*/
float getMaximumCapacity();
// optional float currentCapacity = 4;
/**
* optional float currentCapacity = 4;
*/
boolean hasCurrentCapacity();
/**
* optional float currentCapacity = 4;
*/
float getCurrentCapacity();
// optional .hadoop.yarn.QueueStateProto state = 5;
/**
* optional .hadoop.yarn.QueueStateProto state = 5;
*/
boolean hasState();
/**
* optional .hadoop.yarn.QueueStateProto state = 5;
*/
org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto getState();
// repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
java.util.List
getChildQueuesList();
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto getChildQueues(int index);
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
int getChildQueuesCount();
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder>
getChildQueuesOrBuilderList();
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder getChildQueuesOrBuilder(
int index);
// repeated .hadoop.yarn.ApplicationReportProto applications = 7;
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
java.util.List
getApplicationsList();
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto getApplications(int index);
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
int getApplicationsCount();
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder>
getApplicationsOrBuilderList();
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder getApplicationsOrBuilder(
int index);
// repeated string accessibleNodeLabels = 8;
/**
* repeated string accessibleNodeLabels = 8;
*/
java.util.List
getAccessibleNodeLabelsList();
/**
* repeated string accessibleNodeLabels = 8;
*/
int getAccessibleNodeLabelsCount();
/**
* repeated string accessibleNodeLabels = 8;
*/
java.lang.String getAccessibleNodeLabels(int index);
/**
* repeated string accessibleNodeLabels = 8;
*/
com.google.protobuf.ByteString
getAccessibleNodeLabelsBytes(int index);
// optional string defaultNodeLabelExpression = 9;
/**
* optional string defaultNodeLabelExpression = 9;
*/
boolean hasDefaultNodeLabelExpression();
/**
* optional string defaultNodeLabelExpression = 9;
*/
java.lang.String getDefaultNodeLabelExpression();
/**
* optional string defaultNodeLabelExpression = 9;
*/
com.google.protobuf.ByteString
getDefaultNodeLabelExpressionBytes();
}
/**
* Protobuf type {@code hadoop.yarn.QueueInfoProto}
*/
public static final class QueueInfoProto extends
com.google.protobuf.GeneratedMessage
implements QueueInfoProtoOrBuilder {
// Use QueueInfoProto.newBuilder() to construct.
private QueueInfoProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private QueueInfoProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final QueueInfoProto defaultInstance;
public static QueueInfoProto getDefaultInstance() {
return defaultInstance;
}
public QueueInfoProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private QueueInfoProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
bitField0_ |= 0x00000001;
queueName_ = input.readBytes();
break;
}
case 21: {
bitField0_ |= 0x00000002;
capacity_ = input.readFloat();
break;
}
case 29: {
bitField0_ |= 0x00000004;
maximumCapacity_ = input.readFloat();
break;
}
case 37: {
bitField0_ |= 0x00000008;
currentCapacity_ = input.readFloat();
break;
}
case 40: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto value = org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(5, rawValue);
} else {
bitField0_ |= 0x00000010;
state_ = value;
}
break;
}
case 50: {
if (!((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
childQueues_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000020;
}
childQueues_.add(input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.PARSER, extensionRegistry));
break;
}
case 58: {
if (!((mutable_bitField0_ & 0x00000040) == 0x00000040)) {
applications_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000040;
}
applications_.add(input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.PARSER, extensionRegistry));
break;
}
case 66: {
if (!((mutable_bitField0_ & 0x00000080) == 0x00000080)) {
accessibleNodeLabels_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000080;
}
accessibleNodeLabels_.add(input.readBytes());
break;
}
case 74: {
bitField0_ |= 0x00000020;
defaultNodeLabelExpression_ = input.readBytes();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
childQueues_ = java.util.Collections.unmodifiableList(childQueues_);
}
if (((mutable_bitField0_ & 0x00000040) == 0x00000040)) {
applications_ = java.util.Collections.unmodifiableList(applications_);
}
if (((mutable_bitField0_ & 0x00000080) == 0x00000080)) {
accessibleNodeLabels_ = new com.google.protobuf.UnmodifiableLazyStringList(accessibleNodeLabels_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueInfoProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueInfoProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.class, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public QueueInfoProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new QueueInfoProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional string queueName = 1;
public static final int QUEUENAME_FIELD_NUMBER = 1;
private java.lang.Object queueName_;
/**
* optional string queueName = 1;
*/
public boolean hasQueueName() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string queueName = 1;
*/
public java.lang.String getQueueName() {
java.lang.Object ref = queueName_;
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();
if (bs.isValidUtf8()) {
queueName_ = s;
}
return s;
}
}
/**
* optional string queueName = 1;
*/
public com.google.protobuf.ByteString
getQueueNameBytes() {
java.lang.Object ref = queueName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
queueName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional float capacity = 2;
public static final int CAPACITY_FIELD_NUMBER = 2;
private float capacity_;
/**
* optional float capacity = 2;
*/
public boolean hasCapacity() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional float capacity = 2;
*/
public float getCapacity() {
return capacity_;
}
// optional float maximumCapacity = 3;
public static final int MAXIMUMCAPACITY_FIELD_NUMBER = 3;
private float maximumCapacity_;
/**
* optional float maximumCapacity = 3;
*/
public boolean hasMaximumCapacity() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional float maximumCapacity = 3;
*/
public float getMaximumCapacity() {
return maximumCapacity_;
}
// optional float currentCapacity = 4;
public static final int CURRENTCAPACITY_FIELD_NUMBER = 4;
private float currentCapacity_;
/**
* optional float currentCapacity = 4;
*/
public boolean hasCurrentCapacity() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional float currentCapacity = 4;
*/
public float getCurrentCapacity() {
return currentCapacity_;
}
// optional .hadoop.yarn.QueueStateProto state = 5;
public static final int STATE_FIELD_NUMBER = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto state_;
/**
* optional .hadoop.yarn.QueueStateProto state = 5;
*/
public boolean hasState() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.QueueStateProto state = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto getState() {
return state_;
}
// repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
public static final int CHILDQUEUES_FIELD_NUMBER = 6;
private java.util.List childQueues_;
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public java.util.List getChildQueuesList() {
return childQueues_;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder>
getChildQueuesOrBuilderList() {
return childQueues_;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public int getChildQueuesCount() {
return childQueues_.size();
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto getChildQueues(int index) {
return childQueues_.get(index);
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder getChildQueuesOrBuilder(
int index) {
return childQueues_.get(index);
}
// repeated .hadoop.yarn.ApplicationReportProto applications = 7;
public static final int APPLICATIONS_FIELD_NUMBER = 7;
private java.util.List applications_;
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public java.util.List getApplicationsList() {
return applications_;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder>
getApplicationsOrBuilderList() {
return applications_;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public int getApplicationsCount() {
return applications_.size();
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto getApplications(int index) {
return applications_.get(index);
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder getApplicationsOrBuilder(
int index) {
return applications_.get(index);
}
// repeated string accessibleNodeLabels = 8;
public static final int ACCESSIBLENODELABELS_FIELD_NUMBER = 8;
private com.google.protobuf.LazyStringList accessibleNodeLabels_;
/**
* repeated string accessibleNodeLabels = 8;
*/
public java.util.List
getAccessibleNodeLabelsList() {
return accessibleNodeLabels_;
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public int getAccessibleNodeLabelsCount() {
return accessibleNodeLabels_.size();
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public java.lang.String getAccessibleNodeLabels(int index) {
return accessibleNodeLabels_.get(index);
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public com.google.protobuf.ByteString
getAccessibleNodeLabelsBytes(int index) {
return accessibleNodeLabels_.getByteString(index);
}
// optional string defaultNodeLabelExpression = 9;
public static final int DEFAULTNODELABELEXPRESSION_FIELD_NUMBER = 9;
private java.lang.Object defaultNodeLabelExpression_;
/**
* optional string defaultNodeLabelExpression = 9;
*/
public boolean hasDefaultNodeLabelExpression() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional string defaultNodeLabelExpression = 9;
*/
public java.lang.String getDefaultNodeLabelExpression() {
java.lang.Object ref = defaultNodeLabelExpression_;
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();
if (bs.isValidUtf8()) {
defaultNodeLabelExpression_ = s;
}
return s;
}
}
/**
* optional string defaultNodeLabelExpression = 9;
*/
public com.google.protobuf.ByteString
getDefaultNodeLabelExpressionBytes() {
java.lang.Object ref = defaultNodeLabelExpression_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
defaultNodeLabelExpression_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private void initFields() {
queueName_ = "";
capacity_ = 0F;
maximumCapacity_ = 0F;
currentCapacity_ = 0F;
state_ = org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto.Q_STOPPED;
childQueues_ = java.util.Collections.emptyList();
applications_ = java.util.Collections.emptyList();
accessibleNodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
defaultNodeLabelExpression_ = "";
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
for (int i = 0; i < getChildQueuesCount(); i++) {
if (!getChildQueues(i).isInitialized()) {
memoizedIsInitialized = 0;
return false;
}
}
for (int i = 0; i < getApplicationsCount(); i++) {
if (!getApplications(i).isInitialized()) {
memoizedIsInitialized = 0;
return false;
}
}
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeBytes(1, getQueueNameBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeFloat(2, capacity_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeFloat(3, maximumCapacity_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeFloat(4, currentCapacity_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeEnum(5, state_.getNumber());
}
for (int i = 0; i < childQueues_.size(); i++) {
output.writeMessage(6, childQueues_.get(i));
}
for (int i = 0; i < applications_.size(); i++) {
output.writeMessage(7, applications_.get(i));
}
for (int i = 0; i < accessibleNodeLabels_.size(); i++) {
output.writeBytes(8, accessibleNodeLabels_.getByteString(i));
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeBytes(9, getDefaultNodeLabelExpressionBytes());
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(1, getQueueNameBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(2, capacity_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(3, maximumCapacity_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(4, currentCapacity_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(5, state_.getNumber());
}
for (int i = 0; i < childQueues_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(6, childQueues_.get(i));
}
for (int i = 0; i < applications_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(7, applications_.get(i));
}
{
int dataSize = 0;
for (int i = 0; i < accessibleNodeLabels_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(accessibleNodeLabels_.getByteString(i));
}
size += dataSize;
size += 1 * getAccessibleNodeLabelsList().size();
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(9, getDefaultNodeLabelExpressionBytes());
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto other = (org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto) obj;
boolean result = true;
result = result && (hasQueueName() == other.hasQueueName());
if (hasQueueName()) {
result = result && getQueueName()
.equals(other.getQueueName());
}
result = result && (hasCapacity() == other.hasCapacity());
if (hasCapacity()) {
result = result && (Float.floatToIntBits(getCapacity()) == Float.floatToIntBits(other.getCapacity()));
}
result = result && (hasMaximumCapacity() == other.hasMaximumCapacity());
if (hasMaximumCapacity()) {
result = result && (Float.floatToIntBits(getMaximumCapacity()) == Float.floatToIntBits(other.getMaximumCapacity()));
}
result = result && (hasCurrentCapacity() == other.hasCurrentCapacity());
if (hasCurrentCapacity()) {
result = result && (Float.floatToIntBits(getCurrentCapacity()) == Float.floatToIntBits(other.getCurrentCapacity()));
}
result = result && (hasState() == other.hasState());
if (hasState()) {
result = result &&
(getState() == other.getState());
}
result = result && getChildQueuesList()
.equals(other.getChildQueuesList());
result = result && getApplicationsList()
.equals(other.getApplicationsList());
result = result && getAccessibleNodeLabelsList()
.equals(other.getAccessibleNodeLabelsList());
result = result && (hasDefaultNodeLabelExpression() == other.hasDefaultNodeLabelExpression());
if (hasDefaultNodeLabelExpression()) {
result = result && getDefaultNodeLabelExpression()
.equals(other.getDefaultNodeLabelExpression());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasQueueName()) {
hash = (37 * hash) + QUEUENAME_FIELD_NUMBER;
hash = (53 * hash) + getQueueName().hashCode();
}
if (hasCapacity()) {
hash = (37 * hash) + CAPACITY_FIELD_NUMBER;
hash = (53 * hash) + Float.floatToIntBits(
getCapacity());
}
if (hasMaximumCapacity()) {
hash = (37 * hash) + MAXIMUMCAPACITY_FIELD_NUMBER;
hash = (53 * hash) + Float.floatToIntBits(
getMaximumCapacity());
}
if (hasCurrentCapacity()) {
hash = (37 * hash) + CURRENTCAPACITY_FIELD_NUMBER;
hash = (53 * hash) + Float.floatToIntBits(
getCurrentCapacity());
}
if (hasState()) {
hash = (37 * hash) + STATE_FIELD_NUMBER;
hash = (53 * hash) + hashEnum(getState());
}
if (getChildQueuesCount() > 0) {
hash = (37 * hash) + CHILDQUEUES_FIELD_NUMBER;
hash = (53 * hash) + getChildQueuesList().hashCode();
}
if (getApplicationsCount() > 0) {
hash = (37 * hash) + APPLICATIONS_FIELD_NUMBER;
hash = (53 * hash) + getApplicationsList().hashCode();
}
if (getAccessibleNodeLabelsCount() > 0) {
hash = (37 * hash) + ACCESSIBLENODELABELS_FIELD_NUMBER;
hash = (53 * hash) + getAccessibleNodeLabelsList().hashCode();
}
if (hasDefaultNodeLabelExpression()) {
hash = (37 * hash) + DEFAULTNODELABELEXPRESSION_FIELD_NUMBER;
hash = (53 * hash) + getDefaultNodeLabelExpression().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.QueueInfoProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueInfoProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueInfoProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.class, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getChildQueuesFieldBuilder();
getApplicationsFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
queueName_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
capacity_ = 0F;
bitField0_ = (bitField0_ & ~0x00000002);
maximumCapacity_ = 0F;
bitField0_ = (bitField0_ & ~0x00000004);
currentCapacity_ = 0F;
bitField0_ = (bitField0_ & ~0x00000008);
state_ = org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto.Q_STOPPED;
bitField0_ = (bitField0_ & ~0x00000010);
if (childQueuesBuilder_ == null) {
childQueues_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
} else {
childQueuesBuilder_.clear();
}
if (applicationsBuilder_ == null) {
applications_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000040);
} else {
applicationsBuilder_.clear();
}
accessibleNodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000080);
defaultNodeLabelExpression_ = "";
bitField0_ = (bitField0_ & ~0x00000100);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueInfoProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto result = new org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.queueName_ = queueName_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.capacity_ = capacity_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.maximumCapacity_ = maximumCapacity_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.currentCapacity_ = currentCapacity_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.state_ = state_;
if (childQueuesBuilder_ == null) {
if (((bitField0_ & 0x00000020) == 0x00000020)) {
childQueues_ = java.util.Collections.unmodifiableList(childQueues_);
bitField0_ = (bitField0_ & ~0x00000020);
}
result.childQueues_ = childQueues_;
} else {
result.childQueues_ = childQueuesBuilder_.build();
}
if (applicationsBuilder_ == null) {
if (((bitField0_ & 0x00000040) == 0x00000040)) {
applications_ = java.util.Collections.unmodifiableList(applications_);
bitField0_ = (bitField0_ & ~0x00000040);
}
result.applications_ = applications_;
} else {
result.applications_ = applicationsBuilder_.build();
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
accessibleNodeLabels_ = new com.google.protobuf.UnmodifiableLazyStringList(
accessibleNodeLabels_);
bitField0_ = (bitField0_ & ~0x00000080);
}
result.accessibleNodeLabels_ = accessibleNodeLabels_;
if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
to_bitField0_ |= 0x00000020;
}
result.defaultNodeLabelExpression_ = defaultNodeLabelExpression_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.getDefaultInstance()) return this;
if (other.hasQueueName()) {
bitField0_ |= 0x00000001;
queueName_ = other.queueName_;
onChanged();
}
if (other.hasCapacity()) {
setCapacity(other.getCapacity());
}
if (other.hasMaximumCapacity()) {
setMaximumCapacity(other.getMaximumCapacity());
}
if (other.hasCurrentCapacity()) {
setCurrentCapacity(other.getCurrentCapacity());
}
if (other.hasState()) {
setState(other.getState());
}
if (childQueuesBuilder_ == null) {
if (!other.childQueues_.isEmpty()) {
if (childQueues_.isEmpty()) {
childQueues_ = other.childQueues_;
bitField0_ = (bitField0_ & ~0x00000020);
} else {
ensureChildQueuesIsMutable();
childQueues_.addAll(other.childQueues_);
}
onChanged();
}
} else {
if (!other.childQueues_.isEmpty()) {
if (childQueuesBuilder_.isEmpty()) {
childQueuesBuilder_.dispose();
childQueuesBuilder_ = null;
childQueues_ = other.childQueues_;
bitField0_ = (bitField0_ & ~0x00000020);
childQueuesBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getChildQueuesFieldBuilder() : null;
} else {
childQueuesBuilder_.addAllMessages(other.childQueues_);
}
}
}
if (applicationsBuilder_ == null) {
if (!other.applications_.isEmpty()) {
if (applications_.isEmpty()) {
applications_ = other.applications_;
bitField0_ = (bitField0_ & ~0x00000040);
} else {
ensureApplicationsIsMutable();
applications_.addAll(other.applications_);
}
onChanged();
}
} else {
if (!other.applications_.isEmpty()) {
if (applicationsBuilder_.isEmpty()) {
applicationsBuilder_.dispose();
applicationsBuilder_ = null;
applications_ = other.applications_;
bitField0_ = (bitField0_ & ~0x00000040);
applicationsBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getApplicationsFieldBuilder() : null;
} else {
applicationsBuilder_.addAllMessages(other.applications_);
}
}
}
if (!other.accessibleNodeLabels_.isEmpty()) {
if (accessibleNodeLabels_.isEmpty()) {
accessibleNodeLabels_ = other.accessibleNodeLabels_;
bitField0_ = (bitField0_ & ~0x00000080);
} else {
ensureAccessibleNodeLabelsIsMutable();
accessibleNodeLabels_.addAll(other.accessibleNodeLabels_);
}
onChanged();
}
if (other.hasDefaultNodeLabelExpression()) {
bitField0_ |= 0x00000100;
defaultNodeLabelExpression_ = other.defaultNodeLabelExpression_;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
for (int i = 0; i < getChildQueuesCount(); i++) {
if (!getChildQueues(i).isInitialized()) {
return false;
}
}
for (int i = 0; i < getApplicationsCount(); i++) {
if (!getApplications(i).isInitialized()) {
return false;
}
}
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional string queueName = 1;
private java.lang.Object queueName_ = "";
/**
* optional string queueName = 1;
*/
public boolean hasQueueName() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string queueName = 1;
*/
public java.lang.String getQueueName() {
java.lang.Object ref = queueName_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
queueName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string queueName = 1;
*/
public com.google.protobuf.ByteString
getQueueNameBytes() {
java.lang.Object ref = queueName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
queueName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string queueName = 1;
*/
public Builder setQueueName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
queueName_ = value;
onChanged();
return this;
}
/**
* optional string queueName = 1;
*/
public Builder clearQueueName() {
bitField0_ = (bitField0_ & ~0x00000001);
queueName_ = getDefaultInstance().getQueueName();
onChanged();
return this;
}
/**
* optional string queueName = 1;
*/
public Builder setQueueNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
queueName_ = value;
onChanged();
return this;
}
// optional float capacity = 2;
private float capacity_ ;
/**
* optional float capacity = 2;
*/
public boolean hasCapacity() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional float capacity = 2;
*/
public float getCapacity() {
return capacity_;
}
/**
* optional float capacity = 2;
*/
public Builder setCapacity(float value) {
bitField0_ |= 0x00000002;
capacity_ = value;
onChanged();
return this;
}
/**
* optional float capacity = 2;
*/
public Builder clearCapacity() {
bitField0_ = (bitField0_ & ~0x00000002);
capacity_ = 0F;
onChanged();
return this;
}
// optional float maximumCapacity = 3;
private float maximumCapacity_ ;
/**
* optional float maximumCapacity = 3;
*/
public boolean hasMaximumCapacity() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional float maximumCapacity = 3;
*/
public float getMaximumCapacity() {
return maximumCapacity_;
}
/**
* optional float maximumCapacity = 3;
*/
public Builder setMaximumCapacity(float value) {
bitField0_ |= 0x00000004;
maximumCapacity_ = value;
onChanged();
return this;
}
/**
* optional float maximumCapacity = 3;
*/
public Builder clearMaximumCapacity() {
bitField0_ = (bitField0_ & ~0x00000004);
maximumCapacity_ = 0F;
onChanged();
return this;
}
// optional float currentCapacity = 4;
private float currentCapacity_ ;
/**
* optional float currentCapacity = 4;
*/
public boolean hasCurrentCapacity() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional float currentCapacity = 4;
*/
public float getCurrentCapacity() {
return currentCapacity_;
}
/**
* optional float currentCapacity = 4;
*/
public Builder setCurrentCapacity(float value) {
bitField0_ |= 0x00000008;
currentCapacity_ = value;
onChanged();
return this;
}
/**
* optional float currentCapacity = 4;
*/
public Builder clearCurrentCapacity() {
bitField0_ = (bitField0_ & ~0x00000008);
currentCapacity_ = 0F;
onChanged();
return this;
}
// optional .hadoop.yarn.QueueStateProto state = 5;
private org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto state_ = org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto.Q_STOPPED;
/**
* optional .hadoop.yarn.QueueStateProto state = 5;
*/
public boolean hasState() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional .hadoop.yarn.QueueStateProto state = 5;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto getState() {
return state_;
}
/**
* optional .hadoop.yarn.QueueStateProto state = 5;
*/
public Builder setState(org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
state_ = value;
onChanged();
return this;
}
/**
* optional .hadoop.yarn.QueueStateProto state = 5;
*/
public Builder clearState() {
bitField0_ = (bitField0_ & ~0x00000010);
state_ = org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto.Q_STOPPED;
onChanged();
return this;
}
// repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
private java.util.List childQueues_ =
java.util.Collections.emptyList();
private void ensureChildQueuesIsMutable() {
if (!((bitField0_ & 0x00000020) == 0x00000020)) {
childQueues_ = new java.util.ArrayList(childQueues_);
bitField0_ |= 0x00000020;
}
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder> childQueuesBuilder_;
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public java.util.List getChildQueuesList() {
if (childQueuesBuilder_ == null) {
return java.util.Collections.unmodifiableList(childQueues_);
} else {
return childQueuesBuilder_.getMessageList();
}
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public int getChildQueuesCount() {
if (childQueuesBuilder_ == null) {
return childQueues_.size();
} else {
return childQueuesBuilder_.getCount();
}
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto getChildQueues(int index) {
if (childQueuesBuilder_ == null) {
return childQueues_.get(index);
} else {
return childQueuesBuilder_.getMessage(index);
}
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public Builder setChildQueues(
int index, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto value) {
if (childQueuesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChildQueuesIsMutable();
childQueues_.set(index, value);
onChanged();
} else {
childQueuesBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public Builder setChildQueues(
int index, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder builderForValue) {
if (childQueuesBuilder_ == null) {
ensureChildQueuesIsMutable();
childQueues_.set(index, builderForValue.build());
onChanged();
} else {
childQueuesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public Builder addChildQueues(org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto value) {
if (childQueuesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChildQueuesIsMutable();
childQueues_.add(value);
onChanged();
} else {
childQueuesBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public Builder addChildQueues(
int index, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto value) {
if (childQueuesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChildQueuesIsMutable();
childQueues_.add(index, value);
onChanged();
} else {
childQueuesBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public Builder addChildQueues(
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder builderForValue) {
if (childQueuesBuilder_ == null) {
ensureChildQueuesIsMutable();
childQueues_.add(builderForValue.build());
onChanged();
} else {
childQueuesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public Builder addChildQueues(
int index, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder builderForValue) {
if (childQueuesBuilder_ == null) {
ensureChildQueuesIsMutable();
childQueues_.add(index, builderForValue.build());
onChanged();
} else {
childQueuesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public Builder addAllChildQueues(
java.lang.Iterable extends org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto> values) {
if (childQueuesBuilder_ == null) {
ensureChildQueuesIsMutable();
super.addAll(values, childQueues_);
onChanged();
} else {
childQueuesBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public Builder clearChildQueues() {
if (childQueuesBuilder_ == null) {
childQueues_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
onChanged();
} else {
childQueuesBuilder_.clear();
}
return this;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public Builder removeChildQueues(int index) {
if (childQueuesBuilder_ == null) {
ensureChildQueuesIsMutable();
childQueues_.remove(index);
onChanged();
} else {
childQueuesBuilder_.remove(index);
}
return this;
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder getChildQueuesBuilder(
int index) {
return getChildQueuesFieldBuilder().getBuilder(index);
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder getChildQueuesOrBuilder(
int index) {
if (childQueuesBuilder_ == null) {
return childQueues_.get(index); } else {
return childQueuesBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder>
getChildQueuesOrBuilderList() {
if (childQueuesBuilder_ != null) {
return childQueuesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(childQueues_);
}
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder addChildQueuesBuilder() {
return getChildQueuesFieldBuilder().addBuilder(
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder addChildQueuesBuilder(
int index) {
return getChildQueuesFieldBuilder().addBuilder(
index, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.QueueInfoProto childQueues = 6;
*/
public java.util.List
getChildQueuesBuilderList() {
return getChildQueuesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder>
getChildQueuesFieldBuilder() {
if (childQueuesBuilder_ == null) {
childQueuesBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder>(
childQueues_,
((bitField0_ & 0x00000020) == 0x00000020),
getParentForChildren(),
isClean());
childQueues_ = null;
}
return childQueuesBuilder_;
}
// repeated .hadoop.yarn.ApplicationReportProto applications = 7;
private java.util.List applications_ =
java.util.Collections.emptyList();
private void ensureApplicationsIsMutable() {
if (!((bitField0_ & 0x00000040) == 0x00000040)) {
applications_ = new java.util.ArrayList(applications_);
bitField0_ |= 0x00000040;
}
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder> applicationsBuilder_;
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public java.util.List getApplicationsList() {
if (applicationsBuilder_ == null) {
return java.util.Collections.unmodifiableList(applications_);
} else {
return applicationsBuilder_.getMessageList();
}
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public int getApplicationsCount() {
if (applicationsBuilder_ == null) {
return applications_.size();
} else {
return applicationsBuilder_.getCount();
}
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto getApplications(int index) {
if (applicationsBuilder_ == null) {
return applications_.get(index);
} else {
return applicationsBuilder_.getMessage(index);
}
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public Builder setApplications(
int index, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto value) {
if (applicationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureApplicationsIsMutable();
applications_.set(index, value);
onChanged();
} else {
applicationsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public Builder setApplications(
int index, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder builderForValue) {
if (applicationsBuilder_ == null) {
ensureApplicationsIsMutable();
applications_.set(index, builderForValue.build());
onChanged();
} else {
applicationsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public Builder addApplications(org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto value) {
if (applicationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureApplicationsIsMutable();
applications_.add(value);
onChanged();
} else {
applicationsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public Builder addApplications(
int index, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto value) {
if (applicationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureApplicationsIsMutable();
applications_.add(index, value);
onChanged();
} else {
applicationsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public Builder addApplications(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder builderForValue) {
if (applicationsBuilder_ == null) {
ensureApplicationsIsMutable();
applications_.add(builderForValue.build());
onChanged();
} else {
applicationsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public Builder addApplications(
int index, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder builderForValue) {
if (applicationsBuilder_ == null) {
ensureApplicationsIsMutable();
applications_.add(index, builderForValue.build());
onChanged();
} else {
applicationsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public Builder addAllApplications(
java.lang.Iterable extends org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto> values) {
if (applicationsBuilder_ == null) {
ensureApplicationsIsMutable();
super.addAll(values, applications_);
onChanged();
} else {
applicationsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public Builder clearApplications() {
if (applicationsBuilder_ == null) {
applications_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000040);
onChanged();
} else {
applicationsBuilder_.clear();
}
return this;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public Builder removeApplications(int index) {
if (applicationsBuilder_ == null) {
ensureApplicationsIsMutable();
applications_.remove(index);
onChanged();
} else {
applicationsBuilder_.remove(index);
}
return this;
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder getApplicationsBuilder(
int index) {
return getApplicationsFieldBuilder().getBuilder(index);
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder getApplicationsOrBuilder(
int index) {
if (applicationsBuilder_ == null) {
return applications_.get(index); } else {
return applicationsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder>
getApplicationsOrBuilderList() {
if (applicationsBuilder_ != null) {
return applicationsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(applications_);
}
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder addApplicationsBuilder() {
return getApplicationsFieldBuilder().addBuilder(
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder addApplicationsBuilder(
int index) {
return getApplicationsFieldBuilder().addBuilder(
index, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.getDefaultInstance());
}
/**
* repeated .hadoop.yarn.ApplicationReportProto applications = 7;
*/
public java.util.List
getApplicationsBuilderList() {
return getApplicationsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder>
getApplicationsFieldBuilder() {
if (applicationsBuilder_ == null) {
applicationsBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProtoOrBuilder>(
applications_,
((bitField0_ & 0x00000040) == 0x00000040),
getParentForChildren(),
isClean());
applications_ = null;
}
return applicationsBuilder_;
}
// repeated string accessibleNodeLabels = 8;
private com.google.protobuf.LazyStringList accessibleNodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureAccessibleNodeLabelsIsMutable() {
if (!((bitField0_ & 0x00000080) == 0x00000080)) {
accessibleNodeLabels_ = new com.google.protobuf.LazyStringArrayList(accessibleNodeLabels_);
bitField0_ |= 0x00000080;
}
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public java.util.List
getAccessibleNodeLabelsList() {
return java.util.Collections.unmodifiableList(accessibleNodeLabels_);
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public int getAccessibleNodeLabelsCount() {
return accessibleNodeLabels_.size();
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public java.lang.String getAccessibleNodeLabels(int index) {
return accessibleNodeLabels_.get(index);
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public com.google.protobuf.ByteString
getAccessibleNodeLabelsBytes(int index) {
return accessibleNodeLabels_.getByteString(index);
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public Builder setAccessibleNodeLabels(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureAccessibleNodeLabelsIsMutable();
accessibleNodeLabels_.set(index, value);
onChanged();
return this;
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public Builder addAccessibleNodeLabels(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureAccessibleNodeLabelsIsMutable();
accessibleNodeLabels_.add(value);
onChanged();
return this;
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public Builder addAllAccessibleNodeLabels(
java.lang.Iterable values) {
ensureAccessibleNodeLabelsIsMutable();
super.addAll(values, accessibleNodeLabels_);
onChanged();
return this;
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public Builder clearAccessibleNodeLabels() {
accessibleNodeLabels_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000080);
onChanged();
return this;
}
/**
* repeated string accessibleNodeLabels = 8;
*/
public Builder addAccessibleNodeLabelsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
ensureAccessibleNodeLabelsIsMutable();
accessibleNodeLabels_.add(value);
onChanged();
return this;
}
// optional string defaultNodeLabelExpression = 9;
private java.lang.Object defaultNodeLabelExpression_ = "";
/**
* optional string defaultNodeLabelExpression = 9;
*/
public boolean hasDefaultNodeLabelExpression() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional string defaultNodeLabelExpression = 9;
*/
public java.lang.String getDefaultNodeLabelExpression() {
java.lang.Object ref = defaultNodeLabelExpression_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
defaultNodeLabelExpression_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string defaultNodeLabelExpression = 9;
*/
public com.google.protobuf.ByteString
getDefaultNodeLabelExpressionBytes() {
java.lang.Object ref = defaultNodeLabelExpression_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
defaultNodeLabelExpression_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string defaultNodeLabelExpression = 9;
*/
public Builder setDefaultNodeLabelExpression(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000100;
defaultNodeLabelExpression_ = value;
onChanged();
return this;
}
/**
* optional string defaultNodeLabelExpression = 9;
*/
public Builder clearDefaultNodeLabelExpression() {
bitField0_ = (bitField0_ & ~0x00000100);
defaultNodeLabelExpression_ = getDefaultInstance().getDefaultNodeLabelExpression();
onChanged();
return this;
}
/**
* optional string defaultNodeLabelExpression = 9;
*/
public Builder setDefaultNodeLabelExpressionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000100;
defaultNodeLabelExpression_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.QueueInfoProto)
}
static {
defaultInstance = new QueueInfoProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.QueueInfoProto)
}
public interface QueueUserACLInfoProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional string queueName = 1;
/**
* optional string queueName = 1;
*/
boolean hasQueueName();
/**
* optional string queueName = 1;
*/
java.lang.String getQueueName();
/**
* optional string queueName = 1;
*/
com.google.protobuf.ByteString
getQueueNameBytes();
// repeated .hadoop.yarn.QueueACLProto userAcls = 2;
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
java.util.List getUserAclsList();
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
int getUserAclsCount();
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto getUserAcls(int index);
}
/**
* Protobuf type {@code hadoop.yarn.QueueUserACLInfoProto}
*/
public static final class QueueUserACLInfoProto extends
com.google.protobuf.GeneratedMessage
implements QueueUserACLInfoProtoOrBuilder {
// Use QueueUserACLInfoProto.newBuilder() to construct.
private QueueUserACLInfoProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private QueueUserACLInfoProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final QueueUserACLInfoProto defaultInstance;
public static QueueUserACLInfoProto getDefaultInstance() {
return defaultInstance;
}
public QueueUserACLInfoProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private QueueUserACLInfoProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
bitField0_ |= 0x00000001;
queueName_ = input.readBytes();
break;
}
case 16: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto value = org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(2, rawValue);
} else {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
userAcls_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
userAcls_.add(value);
}
break;
}
case 18: {
int length = input.readRawVarint32();
int oldLimit = input.pushLimit(length);
while(input.getBytesUntilLimit() > 0) {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto value = org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(2, rawValue);
} else {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
userAcls_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
userAcls_.add(value);
}
}
input.popLimit(oldLimit);
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
userAcls_ = java.util.Collections.unmodifiableList(userAcls_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueUserACLInfoProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueUserACLInfoProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto.class, org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public QueueUserACLInfoProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new QueueUserACLInfoProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional string queueName = 1;
public static final int QUEUENAME_FIELD_NUMBER = 1;
private java.lang.Object queueName_;
/**
* optional string queueName = 1;
*/
public boolean hasQueueName() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string queueName = 1;
*/
public java.lang.String getQueueName() {
java.lang.Object ref = queueName_;
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();
if (bs.isValidUtf8()) {
queueName_ = s;
}
return s;
}
}
/**
* optional string queueName = 1;
*/
public com.google.protobuf.ByteString
getQueueNameBytes() {
java.lang.Object ref = queueName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
queueName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// repeated .hadoop.yarn.QueueACLProto userAcls = 2;
public static final int USERACLS_FIELD_NUMBER = 2;
private java.util.List userAcls_;
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public java.util.List getUserAclsList() {
return userAcls_;
}
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public int getUserAclsCount() {
return userAcls_.size();
}
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto getUserAcls(int index) {
return userAcls_.get(index);
}
private void initFields() {
queueName_ = "";
userAcls_ = java.util.Collections.emptyList();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeBytes(1, getQueueNameBytes());
}
for (int i = 0; i < userAcls_.size(); i++) {
output.writeEnum(2, userAcls_.get(i).getNumber());
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(1, getQueueNameBytes());
}
{
int dataSize = 0;
for (int i = 0; i < userAcls_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeEnumSizeNoTag(userAcls_.get(i).getNumber());
}
size += dataSize;
size += 1 * userAcls_.size();
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto other = (org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto) obj;
boolean result = true;
result = result && (hasQueueName() == other.hasQueueName());
if (hasQueueName()) {
result = result && getQueueName()
.equals(other.getQueueName());
}
result = result && getUserAclsList()
.equals(other.getUserAclsList());
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasQueueName()) {
hash = (37 * hash) + QUEUENAME_FIELD_NUMBER;
hash = (53 * hash) + getQueueName().hashCode();
}
if (getUserAclsCount() > 0) {
hash = (37 * hash) + USERACLS_FIELD_NUMBER;
hash = (53 * hash) + hashEnumList(getUserAclsList());
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.QueueUserACLInfoProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueUserACLInfoProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueUserACLInfoProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto.class, org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
queueName_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
userAcls_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_QueueUserACLInfoProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto result = new org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.queueName_ = queueName_;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
userAcls_ = java.util.Collections.unmodifiableList(userAcls_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.userAcls_ = userAcls_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto.getDefaultInstance()) return this;
if (other.hasQueueName()) {
bitField0_ |= 0x00000001;
queueName_ = other.queueName_;
onChanged();
}
if (!other.userAcls_.isEmpty()) {
if (userAcls_.isEmpty()) {
userAcls_ = other.userAcls_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureUserAclsIsMutable();
userAcls_.addAll(other.userAcls_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional string queueName = 1;
private java.lang.Object queueName_ = "";
/**
* optional string queueName = 1;
*/
public boolean hasQueueName() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string queueName = 1;
*/
public java.lang.String getQueueName() {
java.lang.Object ref = queueName_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
queueName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string queueName = 1;
*/
public com.google.protobuf.ByteString
getQueueNameBytes() {
java.lang.Object ref = queueName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
queueName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string queueName = 1;
*/
public Builder setQueueName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
queueName_ = value;
onChanged();
return this;
}
/**
* optional string queueName = 1;
*/
public Builder clearQueueName() {
bitField0_ = (bitField0_ & ~0x00000001);
queueName_ = getDefaultInstance().getQueueName();
onChanged();
return this;
}
/**
* optional string queueName = 1;
*/
public Builder setQueueNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
queueName_ = value;
onChanged();
return this;
}
// repeated .hadoop.yarn.QueueACLProto userAcls = 2;
private java.util.List userAcls_ =
java.util.Collections.emptyList();
private void ensureUserAclsIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
userAcls_ = new java.util.ArrayList(userAcls_);
bitField0_ |= 0x00000002;
}
}
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public java.util.List getUserAclsList() {
return java.util.Collections.unmodifiableList(userAcls_);
}
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public int getUserAclsCount() {
return userAcls_.size();
}
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto getUserAcls(int index) {
return userAcls_.get(index);
}
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public Builder setUserAcls(
int index, org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto value) {
if (value == null) {
throw new NullPointerException();
}
ensureUserAclsIsMutable();
userAcls_.set(index, value);
onChanged();
return this;
}
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public Builder addUserAcls(org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto value) {
if (value == null) {
throw new NullPointerException();
}
ensureUserAclsIsMutable();
userAcls_.add(value);
onChanged();
return this;
}
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public Builder addAllUserAcls(
java.lang.Iterable extends org.apache.hadoop.yarn.proto.YarnProtos.QueueACLProto> values) {
ensureUserAclsIsMutable();
super.addAll(values, userAcls_);
onChanged();
return this;
}
/**
* repeated .hadoop.yarn.QueueACLProto userAcls = 2;
*/
public Builder clearUserAcls() {
userAcls_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.QueueUserACLInfoProto)
}
static {
defaultInstance = new QueueUserACLInfoProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.QueueUserACLInfoProto)
}
public interface ReservationIdProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional int64 id = 1;
/**
* optional int64 id = 1;
*/
boolean hasId();
/**
* optional int64 id = 1;
*/
long getId();
// optional int64 cluster_timestamp = 2;
/**
* optional int64 cluster_timestamp = 2;
*/
boolean hasClusterTimestamp();
/**
* optional int64 cluster_timestamp = 2;
*/
long getClusterTimestamp();
}
/**
* Protobuf type {@code hadoop.yarn.ReservationIdProto}
*/
public static final class ReservationIdProto extends
com.google.protobuf.GeneratedMessage
implements ReservationIdProtoOrBuilder {
// Use ReservationIdProto.newBuilder() to construct.
private ReservationIdProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ReservationIdProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ReservationIdProto defaultInstance;
public static ReservationIdProto getDefaultInstance() {
return defaultInstance;
}
public ReservationIdProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ReservationIdProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
id_ = input.readInt64();
break;
}
case 16: {
bitField0_ |= 0x00000002;
clusterTimestamp_ = input.readInt64();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ReservationIdProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ReservationIdProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional int64 id = 1;
public static final int ID_FIELD_NUMBER = 1;
private long id_;
/**
* optional int64 id = 1;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int64 id = 1;
*/
public long getId() {
return id_;
}
// optional int64 cluster_timestamp = 2;
public static final int CLUSTER_TIMESTAMP_FIELD_NUMBER = 2;
private long clusterTimestamp_;
/**
* optional int64 cluster_timestamp = 2;
*/
public boolean hasClusterTimestamp() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int64 cluster_timestamp = 2;
*/
public long getClusterTimestamp() {
return clusterTimestamp_;
}
private void initFields() {
id_ = 0L;
clusterTimestamp_ = 0L;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt64(1, id_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt64(2, clusterTimestamp_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(1, id_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(2, clusterTimestamp_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto) obj;
boolean result = true;
result = result && (hasId() == other.hasId());
if (hasId()) {
result = result && (getId()
== other.getId());
}
result = result && (hasClusterTimestamp() == other.hasClusterTimestamp());
if (hasClusterTimestamp()) {
result = result && (getClusterTimestamp()
== other.getClusterTimestamp());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasId()) {
hash = (37 * hash) + ID_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getId());
}
if (hasClusterTimestamp()) {
hash = (37 * hash) + CLUSTER_TIMESTAMP_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getClusterTimestamp());
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ReservationIdProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationIdProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationIdProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
id_ = 0L;
bitField0_ = (bitField0_ & ~0x00000001);
clusterTimestamp_ = 0L;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationIdProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.id_ = id_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.clusterTimestamp_ = clusterTimestamp_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto.getDefaultInstance()) return this;
if (other.hasId()) {
setId(other.getId());
}
if (other.hasClusterTimestamp()) {
setClusterTimestamp(other.getClusterTimestamp());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ReservationIdProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional int64 id = 1;
private long id_ ;
/**
* optional int64 id = 1;
*/
public boolean hasId() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int64 id = 1;
*/
public long getId() {
return id_;
}
/**
* optional int64 id = 1;
*/
public Builder setId(long value) {
bitField0_ |= 0x00000001;
id_ = value;
onChanged();
return this;
}
/**
* optional int64 id = 1;
*/
public Builder clearId() {
bitField0_ = (bitField0_ & ~0x00000001);
id_ = 0L;
onChanged();
return this;
}
// optional int64 cluster_timestamp = 2;
private long clusterTimestamp_ ;
/**
* optional int64 cluster_timestamp = 2;
*/
public boolean hasClusterTimestamp() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int64 cluster_timestamp = 2;
*/
public long getClusterTimestamp() {
return clusterTimestamp_;
}
/**
* optional int64 cluster_timestamp = 2;
*/
public Builder setClusterTimestamp(long value) {
bitField0_ |= 0x00000002;
clusterTimestamp_ = value;
onChanged();
return this;
}
/**
* optional int64 cluster_timestamp = 2;
*/
public Builder clearClusterTimestamp() {
bitField0_ = (bitField0_ & ~0x00000002);
clusterTimestamp_ = 0L;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ReservationIdProto)
}
static {
defaultInstance = new ReservationIdProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ReservationIdProto)
}
public interface ReservationRequestProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .hadoop.yarn.ResourceProto capability = 1;
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
boolean hasCapability();
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getCapability();
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getCapabilityOrBuilder();
// optional int32 num_containers = 2 [default = 1];
/**
* optional int32 num_containers = 2 [default = 1];
*/
boolean hasNumContainers();
/**
* optional int32 num_containers = 2 [default = 1];
*/
int getNumContainers();
// optional int32 concurrency = 3 [default = 1];
/**
* optional int32 concurrency = 3 [default = 1];
*/
boolean hasConcurrency();
/**
* optional int32 concurrency = 3 [default = 1];
*/
int getConcurrency();
// optional int64 duration = 4 [default = -1];
/**
* optional int64 duration = 4 [default = -1];
*/
boolean hasDuration();
/**
* optional int64 duration = 4 [default = -1];
*/
long getDuration();
}
/**
* Protobuf type {@code hadoop.yarn.ReservationRequestProto}
*/
public static final class ReservationRequestProto extends
com.google.protobuf.GeneratedMessage
implements ReservationRequestProtoOrBuilder {
// Use ReservationRequestProto.newBuilder() to construct.
private ReservationRequestProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ReservationRequestProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ReservationRequestProto defaultInstance;
public static ReservationRequestProto getDefaultInstance() {
return defaultInstance;
}
public ReservationRequestProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ReservationRequestProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = capability_.toBuilder();
}
capability_ = input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(capability_);
capability_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 16: {
bitField0_ |= 0x00000002;
numContainers_ = input.readInt32();
break;
}
case 24: {
bitField0_ |= 0x00000004;
concurrency_ = input.readInt32();
break;
}
case 32: {
bitField0_ |= 0x00000008;
duration_ = input.readInt64();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationRequestProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationRequestProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ReservationRequestProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ReservationRequestProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
// optional .hadoop.yarn.ResourceProto capability = 1;
public static final int CAPABILITY_FIELD_NUMBER = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto capability_;
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public boolean hasCapability() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getCapability() {
return capability_;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getCapabilityOrBuilder() {
return capability_;
}
// optional int32 num_containers = 2 [default = 1];
public static final int NUM_CONTAINERS_FIELD_NUMBER = 2;
private int numContainers_;
/**
* optional int32 num_containers = 2 [default = 1];
*/
public boolean hasNumContainers() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 num_containers = 2 [default = 1];
*/
public int getNumContainers() {
return numContainers_;
}
// optional int32 concurrency = 3 [default = 1];
public static final int CONCURRENCY_FIELD_NUMBER = 3;
private int concurrency_;
/**
* optional int32 concurrency = 3 [default = 1];
*/
public boolean hasConcurrency() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int32 concurrency = 3 [default = 1];
*/
public int getConcurrency() {
return concurrency_;
}
// optional int64 duration = 4 [default = -1];
public static final int DURATION_FIELD_NUMBER = 4;
private long duration_;
/**
* optional int64 duration = 4 [default = -1];
*/
public boolean hasDuration() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional int64 duration = 4 [default = -1];
*/
public long getDuration() {
return duration_;
}
private void initFields() {
capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
numContainers_ = 1;
concurrency_ = 1;
duration_ = -1L;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeMessage(1, capability_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, numContainers_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt32(3, concurrency_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeInt64(4, duration_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, capability_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, numContainers_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, concurrency_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(4, duration_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto)) {
return super.equals(obj);
}
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto other = (org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto) obj;
boolean result = true;
result = result && (hasCapability() == other.hasCapability());
if (hasCapability()) {
result = result && getCapability()
.equals(other.getCapability());
}
result = result && (hasNumContainers() == other.hasNumContainers());
if (hasNumContainers()) {
result = result && (getNumContainers()
== other.getNumContainers());
}
result = result && (hasConcurrency() == other.hasConcurrency());
if (hasConcurrency()) {
result = result && (getConcurrency()
== other.getConcurrency());
}
result = result && (hasDuration() == other.hasDuration());
if (hasDuration()) {
result = result && (getDuration()
== other.getDuration());
}
result = result &&
getUnknownFields().equals(other.getUnknownFields());
return result;
}
private int memoizedHashCode = 0;
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasCapability()) {
hash = (37 * hash) + CAPABILITY_FIELD_NUMBER;
hash = (53 * hash) + getCapability().hashCode();
}
if (hasNumContainers()) {
hash = (37 * hash) + NUM_CONTAINERS_FIELD_NUMBER;
hash = (53 * hash) + getNumContainers();
}
if (hasConcurrency()) {
hash = (37 * hash) + CONCURRENCY_FIELD_NUMBER;
hash = (53 * hash) + getConcurrency();
}
if (hasDuration()) {
hash = (37 * hash) + DURATION_FIELD_NUMBER;
hash = (53 * hash) + hashLong(getDuration());
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code hadoop.yarn.ReservationRequestProto}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProtoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationRequestProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationRequestProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto.Builder.class);
}
// Construct using org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getCapabilityFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (capabilityBuilder_ == null) {
capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
} else {
capabilityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
numContainers_ = 1;
bitField0_ = (bitField0_ & ~0x00000002);
concurrency_ = 1;
bitField0_ = (bitField0_ & ~0x00000004);
duration_ = -1L;
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationRequestProto_descriptor;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto getDefaultInstanceForType() {
return org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto.getDefaultInstance();
}
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto build() {
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto buildPartial() {
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto result = new org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (capabilityBuilder_ == null) {
result.capability_ = capability_;
} else {
result.capability_ = capabilityBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.numContainers_ = numContainers_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.concurrency_ = concurrency_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.duration_ = duration_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto) {
return mergeFrom((org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto other) {
if (other == org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto.getDefaultInstance()) return this;
if (other.hasCapability()) {
mergeCapability(other.getCapability());
}
if (other.hasNumContainers()) {
setNumContainers(other.getNumContainers());
}
if (other.hasConcurrency()) {
setConcurrency(other.getConcurrency());
}
if (other.hasDuration()) {
setDuration(other.getDuration());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .hadoop.yarn.ResourceProto capability = 1;
private org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder> capabilityBuilder_;
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public boolean hasCapability() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto getCapability() {
if (capabilityBuilder_ == null) {
return capability_;
} else {
return capabilityBuilder_.getMessage();
}
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public Builder setCapability(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (capabilityBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
capability_ = value;
onChanged();
} else {
capabilityBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public Builder setCapability(
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder builderForValue) {
if (capabilityBuilder_ == null) {
capability_ = builderForValue.build();
onChanged();
} else {
capabilityBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public Builder mergeCapability(org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto value) {
if (capabilityBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
capability_ != org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance()) {
capability_ =
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.newBuilder(capability_).mergeFrom(value).buildPartial();
} else {
capability_ = value;
}
onChanged();
} else {
capabilityBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public Builder clearCapability() {
if (capabilityBuilder_ == null) {
capability_ = org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.getDefaultInstance();
onChanged();
} else {
capabilityBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder getCapabilityBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getCapabilityFieldBuilder().getBuilder();
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
public org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder getCapabilityOrBuilder() {
if (capabilityBuilder_ != null) {
return capabilityBuilder_.getMessageOrBuilder();
} else {
return capability_;
}
}
/**
* optional .hadoop.yarn.ResourceProto capability = 1;
*/
private com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>
getCapabilityFieldBuilder() {
if (capabilityBuilder_ == null) {
capabilityBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto.Builder, org.apache.hadoop.yarn.proto.YarnProtos.ResourceProtoOrBuilder>(
capability_,
getParentForChildren(),
isClean());
capability_ = null;
}
return capabilityBuilder_;
}
// optional int32 num_containers = 2 [default = 1];
private int numContainers_ = 1;
/**
* optional int32 num_containers = 2 [default = 1];
*/
public boolean hasNumContainers() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 num_containers = 2 [default = 1];
*/
public int getNumContainers() {
return numContainers_;
}
/**
* optional int32 num_containers = 2 [default = 1];
*/
public Builder setNumContainers(int value) {
bitField0_ |= 0x00000002;
numContainers_ = value;
onChanged();
return this;
}
/**
* optional int32 num_containers = 2 [default = 1];
*/
public Builder clearNumContainers() {
bitField0_ = (bitField0_ & ~0x00000002);
numContainers_ = 1;
onChanged();
return this;
}
// optional int32 concurrency = 3 [default = 1];
private int concurrency_ = 1;
/**
* optional int32 concurrency = 3 [default = 1];
*/
public boolean hasConcurrency() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int32 concurrency = 3 [default = 1];
*/
public int getConcurrency() {
return concurrency_;
}
/**
* optional int32 concurrency = 3 [default = 1];
*/
public Builder setConcurrency(int value) {
bitField0_ |= 0x00000004;
concurrency_ = value;
onChanged();
return this;
}
/**
* optional int32 concurrency = 3 [default = 1];
*/
public Builder clearConcurrency() {
bitField0_ = (bitField0_ & ~0x00000004);
concurrency_ = 1;
onChanged();
return this;
}
// optional int64 duration = 4 [default = -1];
private long duration_ = -1L;
/**
* optional int64 duration = 4 [default = -1];
*/
public boolean hasDuration() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional int64 duration = 4 [default = -1];
*/
public long getDuration() {
return duration_;
}
/**
* optional int64 duration = 4 [default = -1];
*/
public Builder setDuration(long value) {
bitField0_ |= 0x00000008;
duration_ = value;
onChanged();
return this;
}
/**
* optional int64 duration = 4 [default = -1];
*/
public Builder clearDuration() {
bitField0_ = (bitField0_ & ~0x00000008);
duration_ = -1L;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:hadoop.yarn.ReservationRequestProto)
}
static {
defaultInstance = new ReservationRequestProto(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:hadoop.yarn.ReservationRequestProto)
}
public interface ReservationRequestsProtoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// repeated .hadoop.yarn.ReservationRequestProto reservation_resources = 1;
/**
* repeated .hadoop.yarn.ReservationRequestProto reservation_resources = 1;
*/
java.util.List
getReservationResourcesList();
/**
* repeated .hadoop.yarn.ReservationRequestProto reservation_resources = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto getReservationResources(int index);
/**
* repeated .hadoop.yarn.ReservationRequestProto reservation_resources = 1;
*/
int getReservationResourcesCount();
/**
* repeated .hadoop.yarn.ReservationRequestProto reservation_resources = 1;
*/
java.util.List extends org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProtoOrBuilder>
getReservationResourcesOrBuilderList();
/**
* repeated .hadoop.yarn.ReservationRequestProto reservation_resources = 1;
*/
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProtoOrBuilder getReservationResourcesOrBuilder(
int index);
// optional .hadoop.yarn.ReservationRequestInterpreterProto interpreter = 2 [default = R_ALL];
/**
* optional .hadoop.yarn.ReservationRequestInterpreterProto interpreter = 2 [default = R_ALL];
*/
boolean hasInterpreter();
/**
* optional .hadoop.yarn.ReservationRequestInterpreterProto interpreter = 2 [default = R_ALL];
*/
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestInterpreterProto getInterpreter();
}
/**
* Protobuf type {@code hadoop.yarn.ReservationRequestsProto}
*/
public static final class ReservationRequestsProto extends
com.google.protobuf.GeneratedMessage
implements ReservationRequestsProtoOrBuilder {
// Use ReservationRequestsProto.newBuilder() to construct.
private ReservationRequestsProto(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private ReservationRequestsProto(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final ReservationRequestsProto defaultInstance;
public static ReservationRequestsProto getDefaultInstance() {
return defaultInstance;
}
public ReservationRequestsProto getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ReservationRequestsProto(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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 (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
reservationResources_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
reservationResources_.add(input.readMessage(org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestProto.PARSER, extensionRegistry));
break;
}
case 16: {
int rawValue = input.readEnum();
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestInterpreterProto value = org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestInterpreterProto.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(2, rawValue);
} else {
bitField0_ |= 0x00000001;
interpreter_ = value;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
reservationResources_ = java.util.Collections.unmodifiableList(reservationResources_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationRequestsProto_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.hadoop.yarn.proto.YarnProtos.internal_static_hadoop_yarn_ReservationRequestsProto_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestsProto.class, org.apache.hadoop.yarn.proto.YarnProtos.ReservationRequestsProto.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public ReservationRequestsProto parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ReservationRequestsProto(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser