blob: 67d9a14d96af8ec053dd213453490369d90c519c [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Autogenerated by Thrift Compiler (0.18.1)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.airavata.model.status;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.18.1)")
public class ProcessStatus implements org.apache.thrift.TBase<ProcessStatus, ProcessStatus._Fields>, java.io.Serializable, Cloneable, Comparable<ProcessStatus> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("ProcessStatus");
private static final org.apache.thrift.protocol.TField STATE_FIELD_DESC = new org.apache.thrift.protocol.TField("state", org.apache.thrift.protocol.TType.I32, (short)1);
private static final org.apache.thrift.protocol.TField TIME_OF_STATE_CHANGE_FIELD_DESC = new org.apache.thrift.protocol.TField("timeOfStateChange", org.apache.thrift.protocol.TType.I64, (short)2);
private static final org.apache.thrift.protocol.TField REASON_FIELD_DESC = new org.apache.thrift.protocol.TField("reason", org.apache.thrift.protocol.TType.STRING, (short)3);
private static final org.apache.thrift.protocol.TField STATUS_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("statusId", org.apache.thrift.protocol.TType.STRING, (short)4);
private static final org.apache.thrift.protocol.TField PROCESS_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("processId", org.apache.thrift.protocol.TType.STRING, (short)5);
private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new ProcessStatusStandardSchemeFactory();
private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new ProcessStatusTupleSchemeFactory();
private @org.apache.thrift.annotation.Nullable ProcessState state; // required
private long timeOfStateChange; // optional
private @org.apache.thrift.annotation.Nullable java.lang.String reason; // optional
private @org.apache.thrift.annotation.Nullable java.lang.String statusId; // optional
private @org.apache.thrift.annotation.Nullable java.lang.String processId; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
/**
*
* @see ProcessState
*/
STATE((short)1, "state"),
TIME_OF_STATE_CHANGE((short)2, "timeOfStateChange"),
REASON((short)3, "reason"),
STATUS_ID((short)4, "statusId"),
PROCESS_ID((short)5, "processId");
private static final java.util.Map<java.lang.String, _Fields> byName = new java.util.HashMap<java.lang.String, _Fields>();
static {
for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
@org.apache.thrift.annotation.Nullable
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // STATE
return STATE;
case 2: // TIME_OF_STATE_CHANGE
return TIME_OF_STATE_CHANGE;
case 3: // REASON
return REASON;
case 4: // STATUS_ID
return STATUS_ID;
case 5: // PROCESS_ID
return PROCESS_ID;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
@org.apache.thrift.annotation.Nullable
public static _Fields findByName(java.lang.String name) {
return byName.get(name);
}
private final short _thriftId;
private final java.lang.String _fieldName;
_Fields(short thriftId, java.lang.String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
@Override
public short getThriftFieldId() {
return _thriftId;
}
@Override
public java.lang.String getFieldName() {
return _fieldName;
}
}
// isset id assignments
private static final int __TIMEOFSTATECHANGE_ISSET_ID = 0;
private byte __isset_bitfield = 0;
private static final _Fields optionals[] = {_Fields.TIME_OF_STATE_CHANGE,_Fields.REASON,_Fields.STATUS_ID,_Fields.PROCESS_ID};
public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.STATE, new org.apache.thrift.meta_data.FieldMetaData("state", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, ProcessState.class)));
tmpMap.put(_Fields.TIME_OF_STATE_CHANGE, new org.apache.thrift.meta_data.FieldMetaData("timeOfStateChange", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
tmpMap.put(_Fields.REASON, new org.apache.thrift.meta_data.FieldMetaData("reason", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.STATUS_ID, new org.apache.thrift.meta_data.FieldMetaData("statusId", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.PROCESS_ID, new org.apache.thrift.meta_data.FieldMetaData("processId", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(ProcessStatus.class, metaDataMap);
}
public ProcessStatus() {
}
public ProcessStatus(
ProcessState state)
{
this();
this.state = state;
}
/**
* Performs a deep copy on <i>other</i>.
*/
public ProcessStatus(ProcessStatus other) {
__isset_bitfield = other.__isset_bitfield;
if (other.isSetState()) {
this.state = other.state;
}
this.timeOfStateChange = other.timeOfStateChange;
if (other.isSetReason()) {
this.reason = other.reason;
}
if (other.isSetStatusId()) {
this.statusId = other.statusId;
}
if (other.isSetProcessId()) {
this.processId = other.processId;
}
}
@Override
public ProcessStatus deepCopy() {
return new ProcessStatus(this);
}
@Override
public void clear() {
this.state = null;
setTimeOfStateChangeIsSet(false);
this.timeOfStateChange = 0;
this.reason = null;
this.statusId = null;
this.processId = null;
}
/**
*
* @see ProcessState
*/
@org.apache.thrift.annotation.Nullable
public ProcessState getState() {
return this.state;
}
/**
*
* @see ProcessState
*/
public void setState(@org.apache.thrift.annotation.Nullable ProcessState state) {
this.state = state;
}
public void unsetState() {
this.state = null;
}
/** Returns true if field state is set (has been assigned a value) and false otherwise */
public boolean isSetState() {
return this.state != null;
}
public void setStateIsSet(boolean value) {
if (!value) {
this.state = null;
}
}
public long getTimeOfStateChange() {
return this.timeOfStateChange;
}
public void setTimeOfStateChange(long timeOfStateChange) {
this.timeOfStateChange = timeOfStateChange;
setTimeOfStateChangeIsSet(true);
}
public void unsetTimeOfStateChange() {
__isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMEOFSTATECHANGE_ISSET_ID);
}
/** Returns true if field timeOfStateChange is set (has been assigned a value) and false otherwise */
public boolean isSetTimeOfStateChange() {
return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMEOFSTATECHANGE_ISSET_ID);
}
public void setTimeOfStateChangeIsSet(boolean value) {
__isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMEOFSTATECHANGE_ISSET_ID, value);
}
@org.apache.thrift.annotation.Nullable
public java.lang.String getReason() {
return this.reason;
}
public void setReason(@org.apache.thrift.annotation.Nullable java.lang.String reason) {
this.reason = reason;
}
public void unsetReason() {
this.reason = null;
}
/** Returns true if field reason is set (has been assigned a value) and false otherwise */
public boolean isSetReason() {
return this.reason != null;
}
public void setReasonIsSet(boolean value) {
if (!value) {
this.reason = null;
}
}
@org.apache.thrift.annotation.Nullable
public java.lang.String getStatusId() {
return this.statusId;
}
public void setStatusId(@org.apache.thrift.annotation.Nullable java.lang.String statusId) {
this.statusId = statusId;
}
public void unsetStatusId() {
this.statusId = null;
}
/** Returns true if field statusId is set (has been assigned a value) and false otherwise */
public boolean isSetStatusId() {
return this.statusId != null;
}
public void setStatusIdIsSet(boolean value) {
if (!value) {
this.statusId = null;
}
}
@org.apache.thrift.annotation.Nullable
public java.lang.String getProcessId() {
return this.processId;
}
public void setProcessId(@org.apache.thrift.annotation.Nullable java.lang.String processId) {
this.processId = processId;
}
public void unsetProcessId() {
this.processId = null;
}
/** Returns true if field processId is set (has been assigned a value) and false otherwise */
public boolean isSetProcessId() {
return this.processId != null;
}
public void setProcessIdIsSet(boolean value) {
if (!value) {
this.processId = null;
}
}
@Override
public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case STATE:
if (value == null) {
unsetState();
} else {
setState((ProcessState)value);
}
break;
case TIME_OF_STATE_CHANGE:
if (value == null) {
unsetTimeOfStateChange();
} else {
setTimeOfStateChange((java.lang.Long)value);
}
break;
case REASON:
if (value == null) {
unsetReason();
} else {
setReason((java.lang.String)value);
}
break;
case STATUS_ID:
if (value == null) {
unsetStatusId();
} else {
setStatusId((java.lang.String)value);
}
break;
case PROCESS_ID:
if (value == null) {
unsetProcessId();
} else {
setProcessId((java.lang.String)value);
}
break;
}
}
@org.apache.thrift.annotation.Nullable
@Override
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case STATE:
return getState();
case TIME_OF_STATE_CHANGE:
return getTimeOfStateChange();
case REASON:
return getReason();
case STATUS_ID:
return getStatusId();
case PROCESS_ID:
return getProcessId();
}
throw new java.lang.IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
@Override
public boolean isSet(_Fields field) {
if (field == null) {
throw new java.lang.IllegalArgumentException();
}
switch (field) {
case STATE:
return isSetState();
case TIME_OF_STATE_CHANGE:
return isSetTimeOfStateChange();
case REASON:
return isSetReason();
case STATUS_ID:
return isSetStatusId();
case PROCESS_ID:
return isSetProcessId();
}
throw new java.lang.IllegalStateException();
}
@Override
public boolean equals(java.lang.Object that) {
if (that instanceof ProcessStatus)
return this.equals((ProcessStatus)that);
return false;
}
public boolean equals(ProcessStatus that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_state = true && this.isSetState();
boolean that_present_state = true && that.isSetState();
if (this_present_state || that_present_state) {
if (!(this_present_state && that_present_state))
return false;
if (!this.state.equals(that.state))
return false;
}
boolean this_present_timeOfStateChange = true && this.isSetTimeOfStateChange();
boolean that_present_timeOfStateChange = true && that.isSetTimeOfStateChange();
if (this_present_timeOfStateChange || that_present_timeOfStateChange) {
if (!(this_present_timeOfStateChange && that_present_timeOfStateChange))
return false;
if (this.timeOfStateChange != that.timeOfStateChange)
return false;
}
boolean this_present_reason = true && this.isSetReason();
boolean that_present_reason = true && that.isSetReason();
if (this_present_reason || that_present_reason) {
if (!(this_present_reason && that_present_reason))
return false;
if (!this.reason.equals(that.reason))
return false;
}
boolean this_present_statusId = true && this.isSetStatusId();
boolean that_present_statusId = true && that.isSetStatusId();
if (this_present_statusId || that_present_statusId) {
if (!(this_present_statusId && that_present_statusId))
return false;
if (!this.statusId.equals(that.statusId))
return false;
}
boolean this_present_processId = true && this.isSetProcessId();
boolean that_present_processId = true && that.isSetProcessId();
if (this_present_processId || that_present_processId) {
if (!(this_present_processId && that_present_processId))
return false;
if (!this.processId.equals(that.processId))
return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = hashCode * 8191 + ((isSetState()) ? 131071 : 524287);
if (isSetState())
hashCode = hashCode * 8191 + state.getValue();
hashCode = hashCode * 8191 + ((isSetTimeOfStateChange()) ? 131071 : 524287);
if (isSetTimeOfStateChange())
hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timeOfStateChange);
hashCode = hashCode * 8191 + ((isSetReason()) ? 131071 : 524287);
if (isSetReason())
hashCode = hashCode * 8191 + reason.hashCode();
hashCode = hashCode * 8191 + ((isSetStatusId()) ? 131071 : 524287);
if (isSetStatusId())
hashCode = hashCode * 8191 + statusId.hashCode();
hashCode = hashCode * 8191 + ((isSetProcessId()) ? 131071 : 524287);
if (isSetProcessId())
hashCode = hashCode * 8191 + processId.hashCode();
return hashCode;
}
@Override
public int compareTo(ProcessStatus other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetState()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.state, other.state);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetTimeOfStateChange(), other.isSetTimeOfStateChange());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetTimeOfStateChange()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timeOfStateChange, other.timeOfStateChange);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetReason(), other.isSetReason());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetReason()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.reason, other.reason);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetStatusId(), other.isSetStatusId());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetStatusId()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.statusId, other.statusId);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetProcessId(), other.isSetProcessId());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetProcessId()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.processId, other.processId);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
@org.apache.thrift.annotation.Nullable
@Override
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
@Override
public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
scheme(iprot).read(iprot, this);
}
@Override
public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
scheme(oprot).write(oprot, this);
}
@Override
public java.lang.String toString() {
java.lang.StringBuilder sb = new java.lang.StringBuilder("ProcessStatus(");
boolean first = true;
sb.append("state:");
if (this.state == null) {
sb.append("null");
} else {
sb.append(this.state);
}
first = false;
if (isSetTimeOfStateChange()) {
if (!first) sb.append(", ");
sb.append("timeOfStateChange:");
sb.append(this.timeOfStateChange);
first = false;
}
if (isSetReason()) {
if (!first) sb.append(", ");
sb.append("reason:");
if (this.reason == null) {
sb.append("null");
} else {
sb.append(this.reason);
}
first = false;
}
if (isSetStatusId()) {
if (!first) sb.append(", ");
sb.append("statusId:");
if (this.statusId == null) {
sb.append("null");
} else {
sb.append(this.statusId);
}
first = false;
}
if (isSetProcessId()) {
if (!first) sb.append(", ");
sb.append("processId:");
if (this.processId == null) {
sb.append("null");
} else {
sb.append(this.processId);
}
first = false;
}
sb.append(")");
return sb.toString();
}
public void validate() throws org.apache.thrift.TException {
// check for required fields
if (!isSetState()) {
throw new org.apache.thrift.protocol.TProtocolException("Required field 'state' is unset! Struct:" + toString());
}
// check for sub-struct validity
}
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
try {
write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException {
try {
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
__isset_bitfield = 0;
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private static class ProcessStatusStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
@Override
public ProcessStatusStandardScheme getScheme() {
return new ProcessStatusStandardScheme();
}
}
private static class ProcessStatusStandardScheme extends org.apache.thrift.scheme.StandardScheme<ProcessStatus> {
@Override
public void read(org.apache.thrift.protocol.TProtocol iprot, ProcessStatus struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TField schemeField;
iprot.readStructBegin();
while (true)
{
schemeField = iprot.readFieldBegin();
if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
break;
}
switch (schemeField.id) {
case 1: // STATE
if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
struct.state = org.apache.airavata.model.status.ProcessState.findByValue(iprot.readI32());
struct.setStateIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 2: // TIME_OF_STATE_CHANGE
if (schemeField.type == org.apache.thrift.protocol.TType.I64) {
struct.timeOfStateChange = iprot.readI64();
struct.setTimeOfStateChangeIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 3: // REASON
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.reason = iprot.readString();
struct.setReasonIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 4: // STATUS_ID
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.statusId = iprot.readString();
struct.setStatusIdIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 5: // PROCESS_ID
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.processId = iprot.readString();
struct.setProcessIdIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
struct.validate();
}
@Override
public void write(org.apache.thrift.protocol.TProtocol oprot, ProcessStatus struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.state != null) {
oprot.writeFieldBegin(STATE_FIELD_DESC);
oprot.writeI32(struct.state.getValue());
oprot.writeFieldEnd();
}
if (struct.isSetTimeOfStateChange()) {
oprot.writeFieldBegin(TIME_OF_STATE_CHANGE_FIELD_DESC);
oprot.writeI64(struct.timeOfStateChange);
oprot.writeFieldEnd();
}
if (struct.reason != null) {
if (struct.isSetReason()) {
oprot.writeFieldBegin(REASON_FIELD_DESC);
oprot.writeString(struct.reason);
oprot.writeFieldEnd();
}
}
if (struct.statusId != null) {
if (struct.isSetStatusId()) {
oprot.writeFieldBegin(STATUS_ID_FIELD_DESC);
oprot.writeString(struct.statusId);
oprot.writeFieldEnd();
}
}
if (struct.processId != null) {
if (struct.isSetProcessId()) {
oprot.writeFieldBegin(PROCESS_ID_FIELD_DESC);
oprot.writeString(struct.processId);
oprot.writeFieldEnd();
}
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class ProcessStatusTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
@Override
public ProcessStatusTupleScheme getScheme() {
return new ProcessStatusTupleScheme();
}
}
private static class ProcessStatusTupleScheme extends org.apache.thrift.scheme.TupleScheme<ProcessStatus> {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, ProcessStatus struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
oprot.writeI32(struct.state.getValue());
java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetTimeOfStateChange()) {
optionals.set(0);
}
if (struct.isSetReason()) {
optionals.set(1);
}
if (struct.isSetStatusId()) {
optionals.set(2);
}
if (struct.isSetProcessId()) {
optionals.set(3);
}
oprot.writeBitSet(optionals, 4);
if (struct.isSetTimeOfStateChange()) {
oprot.writeI64(struct.timeOfStateChange);
}
if (struct.isSetReason()) {
oprot.writeString(struct.reason);
}
if (struct.isSetStatusId()) {
oprot.writeString(struct.statusId);
}
if (struct.isSetProcessId()) {
oprot.writeString(struct.processId);
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, ProcessStatus struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
struct.state = org.apache.airavata.model.status.ProcessState.findByValue(iprot.readI32());
struct.setStateIsSet(true);
java.util.BitSet incoming = iprot.readBitSet(4);
if (incoming.get(0)) {
struct.timeOfStateChange = iprot.readI64();
struct.setTimeOfStateChangeIsSet(true);
}
if (incoming.get(1)) {
struct.reason = iprot.readString();
struct.setReasonIsSet(true);
}
if (incoming.get(2)) {
struct.statusId = iprot.readString();
struct.setStatusIdIsSet(true);
}
if (incoming.get(3)) {
struct.processId = iprot.readString();
struct.setProcessIdIsSet(true);
}
}
}
private static <S extends org.apache.thrift.scheme.IScheme> S scheme(org.apache.thrift.protocol.TProtocol proto) {
return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
}
}