/** * * 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.9.3) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package org.apache.airavata.cloud.aurora.client.sdk; import org.apache.thrift.scheme.IScheme; import org.apache.thrift.scheme.SchemeFactory; import org.apache.thrift.scheme.StandardScheme; import org.apache.thrift.scheme.TupleScheme; import org.apache.thrift.protocol.TTupleProtocol; import org.apache.thrift.protocol.TProtocolException; import org.apache.thrift.EncodingUtils; import org.apache.thrift.TException; import org.apache.thrift.async.AsyncMethodCallback; import org.apache.thrift.server.AbstractNonblockingServer.*; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.util.HashMap; import java.util.EnumMap; import java.util.Set; import java.util.HashSet; import java.util.EnumSet; import java.util.Collections; import java.util.BitSet; import java.nio.ByteBuffer; import java.util.Arrays; import javax.annotation.Generated; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"}) @Generated(value = "Autogenerated by Thrift Compiler (0.9.3)", date = "2016-10-21") public class Response implements org.apache.thrift.TBase<Response, Response._Fields>, java.io.Serializable, Cloneable, Comparable<Response> { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("Response"); private static final org.apache.thrift.protocol.TField RESPONSE_CODE_FIELD_DESC = new org.apache.thrift.protocol.TField("responseCode", org.apache.thrift.protocol.TType.I32, (short)1); private static final org.apache.thrift.protocol.TField SERVER_INFO_FIELD_DESC = new org.apache.thrift.protocol.TField("serverInfo", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField RESULT_FIELD_DESC = new org.apache.thrift.protocol.TField("result", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField DETAILS_FIELD_DESC = new org.apache.thrift.protocol.TField("details", org.apache.thrift.protocol.TType.LIST, (short)6); private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { schemes.put(StandardScheme.class, new ResponseStandardSchemeFactory()); schemes.put(TupleScheme.class, new ResponseTupleSchemeFactory()); } /** * * @see ResponseCode */ public ResponseCode responseCode; // required public ServerInfo serverInfo; // required /** * Payload from the invoked RPC. */ public Result result; // optional /** * Messages from the server relevant to the request, such as warnings or use of deprecated * features. */ public List<ResponseDetail> details; // required /** 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 ResponseCode */ RESPONSE_CODE((short)1, "responseCode"), SERVER_INFO((short)5, "serverInfo"), /** * Payload from the invoked RPC. */ RESULT((short)3, "result"), /** * Messages from the server relevant to the request, such as warnings or use of deprecated * features. */ DETAILS((short)6, "details"); private static final Map<String, _Fields> byName = new HashMap<String, _Fields>(); static { for (_Fields field : EnumSet.allOf(_Fields.class)) { byName.put(field.getFieldName(), field); } } /** * Find the _Fields constant that matches fieldId, or null if its not found. */ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // RESPONSE_CODE return RESPONSE_CODE; case 5: // SERVER_INFO return SERVER_INFO; case 3: // RESULT return RESULT; case 6: // DETAILS return DETAILS; 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 IllegalArgumentException("Field " + fieldId + " doesn't exist!"); return fields; } /** * Find the _Fields constant that matches name, or null if its not found. */ public static _Fields findByName(String name) { return byName.get(name); } private final short _thriftId; private final String _fieldName; _Fields(short thriftId, String fieldName) { _thriftId = thriftId; _fieldName = fieldName; } public short getThriftFieldId() { return _thriftId; } public String getFieldName() { return _fieldName; } } // isset id assignments private static final _Fields optionals[] = {_Fields.RESULT}; public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.RESPONSE_CODE, new org.apache.thrift.meta_data.FieldMetaData("responseCode", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, ResponseCode.class))); tmpMap.put(_Fields.SERVER_INFO, new org.apache.thrift.meta_data.FieldMetaData("serverInfo", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ServerInfo.class))); tmpMap.put(_Fields.RESULT, new org.apache.thrift.meta_data.FieldMetaData("result", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, Result.class))); tmpMap.put(_Fields.DETAILS, new org.apache.thrift.meta_data.FieldMetaData("details", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ResponseDetail.class)))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(Response.class, metaDataMap); } public Response() { } public Response( ResponseCode responseCode, ServerInfo serverInfo, List<ResponseDetail> details) { this(); this.responseCode = responseCode; this.serverInfo = serverInfo; this.details = details; } /** * Performs a deep copy on <i>other</i>. */ public Response(Response other) { if (other.isSetResponseCode()) { this.responseCode = other.responseCode; } if (other.isSetServerInfo()) { this.serverInfo = new ServerInfo(other.serverInfo); } if (other.isSetResult()) { this.result = new Result(other.result); } if (other.isSetDetails()) { List<ResponseDetail> __this__details = new ArrayList<ResponseDetail>(other.details.size()); for (ResponseDetail other_element : other.details) { __this__details.add(new ResponseDetail(other_element)); } this.details = __this__details; } } public Response deepCopy() { return new Response(this); } @Override public void clear() { this.responseCode = null; this.serverInfo = null; this.result = null; this.details = null; } /** * * @see ResponseCode */ public ResponseCode getResponseCode() { return this.responseCode; } /** * * @see ResponseCode */ public Response setResponseCode(ResponseCode responseCode) { this.responseCode = responseCode; return this; } public void unsetResponseCode() { this.responseCode = null; } /** Returns true if field responseCode is set (has been assigned a value) and false otherwise */ public boolean isSetResponseCode() { return this.responseCode != null; } public void setResponseCodeIsSet(boolean value) { if (!value) { this.responseCode = null; } } public ServerInfo getServerInfo() { return this.serverInfo; } public Response setServerInfo(ServerInfo serverInfo) { this.serverInfo = serverInfo; return this; } public void unsetServerInfo() { this.serverInfo = null; } /** Returns true if field serverInfo is set (has been assigned a value) and false otherwise */ public boolean isSetServerInfo() { return this.serverInfo != null; } public void setServerInfoIsSet(boolean value) { if (!value) { this.serverInfo = null; } } /** * Payload from the invoked RPC. */ public Result getResult() { return this.result; } /** * Payload from the invoked RPC. */ public Response setResult(Result result) { this.result = result; return this; } public void unsetResult() { this.result = null; } /** Returns true if field result is set (has been assigned a value) and false otherwise */ public boolean isSetResult() { return this.result != null; } public void setResultIsSet(boolean value) { if (!value) { this.result = null; } } public int getDetailsSize() { return (this.details == null) ? 0 : this.details.size(); } public java.util.Iterator<ResponseDetail> getDetailsIterator() { return (this.details == null) ? null : this.details.iterator(); } public void addToDetails(ResponseDetail elem) { if (this.details == null) { this.details = new ArrayList<ResponseDetail>(); } this.details.add(elem); } /** * Messages from the server relevant to the request, such as warnings or use of deprecated * features. */ public List<ResponseDetail> getDetails() { return this.details; } /** * Messages from the server relevant to the request, such as warnings or use of deprecated * features. */ public Response setDetails(List<ResponseDetail> details) { this.details = details; return this; } public void unsetDetails() { this.details = null; } /** Returns true if field details is set (has been assigned a value) and false otherwise */ public boolean isSetDetails() { return this.details != null; } public void setDetailsIsSet(boolean value) { if (!value) { this.details = null; } } public void setFieldValue(_Fields field, Object value) { switch (field) { case RESPONSE_CODE: if (value == null) { unsetResponseCode(); } else { setResponseCode((ResponseCode)value); } break; case SERVER_INFO: if (value == null) { unsetServerInfo(); } else { setServerInfo((ServerInfo)value); } break; case RESULT: if (value == null) { unsetResult(); } else { setResult((Result)value); } break; case DETAILS: if (value == null) { unsetDetails(); } else { setDetails((List<ResponseDetail>)value); } break; } } public Object getFieldValue(_Fields field) { switch (field) { case RESPONSE_CODE: return getResponseCode(); case SERVER_INFO: return getServerInfo(); case RESULT: return getResult(); case DETAILS: return getDetails(); } throw new IllegalStateException(); } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ public boolean isSet(_Fields field) { if (field == null) { throw new IllegalArgumentException(); } switch (field) { case RESPONSE_CODE: return isSetResponseCode(); case SERVER_INFO: return isSetServerInfo(); case RESULT: return isSetResult(); case DETAILS: return isSetDetails(); } throw new IllegalStateException(); } @Override public boolean equals(Object that) { if (that == null) return false; if (that instanceof Response) return this.equals((Response)that); return false; } public boolean equals(Response that) { if (that == null) return false; boolean this_present_responseCode = true && this.isSetResponseCode(); boolean that_present_responseCode = true && that.isSetResponseCode(); if (this_present_responseCode || that_present_responseCode) { if (!(this_present_responseCode && that_present_responseCode)) return false; if (!this.responseCode.equals(that.responseCode)) return false; } boolean this_present_serverInfo = true && this.isSetServerInfo(); boolean that_present_serverInfo = true && that.isSetServerInfo(); if (this_present_serverInfo || that_present_serverInfo) { if (!(this_present_serverInfo && that_present_serverInfo)) return false; if (!this.serverInfo.equals(that.serverInfo)) return false; } boolean this_present_result = true && this.isSetResult(); boolean that_present_result = true && that.isSetResult(); if (this_present_result || that_present_result) { if (!(this_present_result && that_present_result)) return false; if (!this.result.equals(that.result)) return false; } boolean this_present_details = true && this.isSetDetails(); boolean that_present_details = true && that.isSetDetails(); if (this_present_details || that_present_details) { if (!(this_present_details && that_present_details)) return false; if (!this.details.equals(that.details)) return false; } return true; } @Override public int hashCode() { List<Object> list = new ArrayList<Object>(); boolean present_responseCode = true && (isSetResponseCode()); list.add(present_responseCode); if (present_responseCode) list.add(responseCode.getValue()); boolean present_serverInfo = true && (isSetServerInfo()); list.add(present_serverInfo); if (present_serverInfo) list.add(serverInfo); boolean present_result = true && (isSetResult()); list.add(present_result); if (present_result) list.add(result); boolean present_details = true && (isSetDetails()); list.add(present_details); if (present_details) list.add(details); return list.hashCode(); } @Override public int compareTo(Response other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = Boolean.valueOf(isSetResponseCode()).compareTo(other.isSetResponseCode()); if (lastComparison != 0) { return lastComparison; } if (isSetResponseCode()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.responseCode, other.responseCode); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetServerInfo()).compareTo(other.isSetServerInfo()); if (lastComparison != 0) { return lastComparison; } if (isSetServerInfo()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serverInfo, other.serverInfo); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetResult()).compareTo(other.isSetResult()); if (lastComparison != 0) { return lastComparison; } if (isSetResult()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.result, other.result); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetDetails()).compareTo(other.isSetDetails()); if (lastComparison != 0) { return lastComparison; } if (isSetDetails()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.details, other.details); if (lastComparison != 0) { return lastComparison; } } return 0; } public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { schemes.get(iprot.getScheme()).getScheme().read(iprot, this); } public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { schemes.get(oprot.getScheme()).getScheme().write(oprot, this); } @Override public String toString() { StringBuilder sb = new StringBuilder("Response("); boolean first = true; sb.append("responseCode:"); if (this.responseCode == null) { sb.append("null"); } else { sb.append(this.responseCode); } first = false; if (!first) sb.append(", "); sb.append("serverInfo:"); if (this.serverInfo == null) { sb.append("null"); } else { sb.append(this.serverInfo); } first = false; if (isSetResult()) { if (!first) sb.append(", "); sb.append("result:"); if (this.result == null) { sb.append("null"); } else { sb.append(this.result); } first = false; } if (!first) sb.append(", "); sb.append("details:"); if (this.details == null) { sb.append("null"); } else { sb.append(this.details); } first = false; sb.append(")"); return sb.toString(); } public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity if (serverInfo != null) { serverInfo.validate(); } } 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, ClassNotFoundException { try { 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 ResponseStandardSchemeFactory implements SchemeFactory { public ResponseStandardScheme getScheme() { return new ResponseStandardScheme(); } } private static class ResponseStandardScheme extends StandardScheme<Response> { public void read(org.apache.thrift.protocol.TProtocol iprot, Response 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: // RESPONSE_CODE if (schemeField.type == org.apache.thrift.protocol.TType.I32) { struct.responseCode = org.apache.airavata.cloud.aurora.client.sdk.ResponseCode.findByValue(iprot.readI32()); struct.setResponseCodeIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 5: // SERVER_INFO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.serverInfo = new ServerInfo(); struct.serverInfo.read(iprot); struct.setServerInfoIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // RESULT if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.result = new Result(); struct.result.read(iprot); struct.setResultIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 6: // DETAILS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { org.apache.thrift.protocol.TList _list392 = iprot.readListBegin(); struct.details = new ArrayList<ResponseDetail>(_list392.size); ResponseDetail _elem393; for (int _i394 = 0; _i394 < _list392.size; ++_i394) { _elem393 = new ResponseDetail(); _elem393.read(iprot); struct.details.add(_elem393); } iprot.readListEnd(); } struct.setDetailsIsSet(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(); // check for required fields of primitive type, which can't be checked in the validate method struct.validate(); } public void write(org.apache.thrift.protocol.TProtocol oprot, Response struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.responseCode != null) { oprot.writeFieldBegin(RESPONSE_CODE_FIELD_DESC); oprot.writeI32(struct.responseCode.getValue()); oprot.writeFieldEnd(); } if (struct.result != null) { if (struct.isSetResult()) { oprot.writeFieldBegin(RESULT_FIELD_DESC); struct.result.write(oprot); oprot.writeFieldEnd(); } } if (struct.serverInfo != null) { oprot.writeFieldBegin(SERVER_INFO_FIELD_DESC); struct.serverInfo.write(oprot); oprot.writeFieldEnd(); } if (struct.details != null) { oprot.writeFieldBegin(DETAILS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.details.size())); for (ResponseDetail _iter395 : struct.details) { _iter395.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); } } private static class ResponseTupleSchemeFactory implements SchemeFactory { public ResponseTupleScheme getScheme() { return new ResponseTupleScheme(); } } private static class ResponseTupleScheme extends TupleScheme<Response> { @Override public void write(org.apache.thrift.protocol.TProtocol prot, Response struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; BitSet optionals = new BitSet(); if (struct.isSetResponseCode()) { optionals.set(0); } if (struct.isSetServerInfo()) { optionals.set(1); } if (struct.isSetResult()) { optionals.set(2); } if (struct.isSetDetails()) { optionals.set(3); } oprot.writeBitSet(optionals, 4); if (struct.isSetResponseCode()) { oprot.writeI32(struct.responseCode.getValue()); } if (struct.isSetServerInfo()) { struct.serverInfo.write(oprot); } if (struct.isSetResult()) { struct.result.write(oprot); } if (struct.isSetDetails()) { { oprot.writeI32(struct.details.size()); for (ResponseDetail _iter396 : struct.details) { _iter396.write(oprot); } } } } @Override public void read(org.apache.thrift.protocol.TProtocol prot, Response struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.responseCode = org.apache.airavata.cloud.aurora.client.sdk.ResponseCode.findByValue(iprot.readI32()); struct.setResponseCodeIsSet(true); } if (incoming.get(1)) { struct.serverInfo = new ServerInfo(); struct.serverInfo.read(iprot); struct.setServerInfoIsSet(true); } if (incoming.get(2)) { struct.result = new Result(); struct.result.read(iprot); struct.setResultIsSet(true); } if (incoming.get(3)) { { org.apache.thrift.protocol.TList _list397 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); struct.details = new ArrayList<ResponseDetail>(_list397.size); ResponseDetail _elem398; for (int _i399 = 0; _i399 < _list397.size; ++_i399) { _elem398 = new ResponseDetail(); _elem398.read(iprot); struct.details.add(_elem398); } } struct.setDetailsIsSet(true); } } } }