/** * Autogenerated by Thrift Compiler (0.9.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package org.apache.jena.riot.thrift.wire; 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 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 org.slf4j.Logger; import org.slf4j.LoggerFactory; @SuppressWarnings("all") public class RDF_Triple implements org.apache.thrift.TBase<RDF_Triple, RDF_Triple._Fields>, java.io.Serializable, Cloneable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("RDF_Triple"); private static final org.apache.thrift.protocol.TField S_FIELD_DESC = new org.apache.thrift.protocol.TField("S", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField P_FIELD_DESC = new org.apache.thrift.protocol.TField("P", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField O_FIELD_DESC = new org.apache.thrift.protocol.TField("O", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { schemes.put(StandardScheme.class, new RDF_TripleStandardSchemeFactory()); schemes.put(TupleScheme.class, new RDF_TripleTupleSchemeFactory()); } public RDF_Term S; // required public RDF_Term P; // required public RDF_Term O; // 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 { S((short)1, "S"), P((short)2, "P"), O((short)3, "O"); 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: // S return S; case 2: // P return P; case 3: // O return O; 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 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.S, new org.apache.thrift.meta_data.FieldMetaData("S", org.apache.thrift.TFieldRequirementType.REQUIRED, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, RDF_Term.class))); tmpMap.put(_Fields.P, new org.apache.thrift.meta_data.FieldMetaData("P", org.apache.thrift.TFieldRequirementType.REQUIRED, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, RDF_Term.class))); tmpMap.put(_Fields.O, new org.apache.thrift.meta_data.FieldMetaData("O", org.apache.thrift.TFieldRequirementType.REQUIRED, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, RDF_Term.class))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(RDF_Triple.class, metaDataMap); } public RDF_Triple() { } public RDF_Triple( RDF_Term S, RDF_Term P, RDF_Term O) { this(); this.S = S; this.P = P; this.O = O; } /** * Performs a deep copy on <i>other</i>. */ public RDF_Triple(RDF_Triple other) { if (other.isSetS()) { this.S = new RDF_Term(other.S); } if (other.isSetP()) { this.P = new RDF_Term(other.P); } if (other.isSetO()) { this.O = new RDF_Term(other.O); } } public RDF_Triple deepCopy() { return new RDF_Triple(this); } @Override public void clear() { this.S = null; this.P = null; this.O = null; } public RDF_Term getS() { return this.S; } public RDF_Triple setS(RDF_Term S) { this.S = S; return this; } public void unsetS() { this.S = null; } /** Returns true if field S is set (has been assigned a value) and false otherwise */ public boolean isSetS() { return this.S != null; } public void setSIsSet(boolean value) { if (!value) { this.S = null; } } public RDF_Term getP() { return this.P; } public RDF_Triple setP(RDF_Term P) { this.P = P; return this; } public void unsetP() { this.P = null; } /** Returns true if field P is set (has been assigned a value) and false otherwise */ public boolean isSetP() { return this.P != null; } public void setPIsSet(boolean value) { if (!value) { this.P = null; } } public RDF_Term getO() { return this.O; } public RDF_Triple setO(RDF_Term O) { this.O = O; return this; } public void unsetO() { this.O = null; } /** Returns true if field O is set (has been assigned a value) and false otherwise */ public boolean isSetO() { return this.O != null; } public void setOIsSet(boolean value) { if (!value) { this.O = null; } } public void setFieldValue(_Fields field, Object value) { switch (field) { case S: if (value == null) { unsetS(); } else { setS((RDF_Term)value); } break; case P: if (value == null) { unsetP(); } else { setP((RDF_Term)value); } break; case O: if (value == null) { unsetO(); } else { setO((RDF_Term)value); } break; } } public Object getFieldValue(_Fields field) { switch (field) { case S: return getS(); case P: return getP(); case O: return getO(); } 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 S: return isSetS(); case P: return isSetP(); case O: return isSetO(); } throw new IllegalStateException(); } @Override public boolean equals(Object that) { if (that == null) return false; if (that instanceof RDF_Triple) return this.equals((RDF_Triple)that); return false; } public boolean equals(RDF_Triple that) { if (that == null) return false; boolean this_present_S = true && this.isSetS(); boolean that_present_S = true && that.isSetS(); if (this_present_S || that_present_S) { if (!(this_present_S && that_present_S)) return false; if (!this.S.equals(that.S)) return false; } boolean this_present_P = true && this.isSetP(); boolean that_present_P = true && that.isSetP(); if (this_present_P || that_present_P) { if (!(this_present_P && that_present_P)) return false; if (!this.P.equals(that.P)) return false; } boolean this_present_O = true && this.isSetO(); boolean that_present_O = true && that.isSetO(); if (this_present_O || that_present_O) { if (!(this_present_O && that_present_O)) return false; if (!this.O.equals(that.O)) return false; } return true; } @Override public int hashCode() { return 0; } public int compareTo(RDF_Triple other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; RDF_Triple typedOther = (RDF_Triple)other; lastComparison = Boolean.valueOf(isSetS()).compareTo(typedOther.isSetS()); if (lastComparison != 0) { return lastComparison; } if (isSetS()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.S, typedOther.S); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetP()).compareTo(typedOther.isSetP()); if (lastComparison != 0) { return lastComparison; } if (isSetP()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.P, typedOther.P); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetO()).compareTo(typedOther.isSetO()); if (lastComparison != 0) { return lastComparison; } if (isSetO()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.O, typedOther.O); 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("RDF_Triple("); boolean first = true; sb.append("S:"); if (this.S == null) { sb.append("null"); } else { sb.append(this.S); } first = false; if (!first) sb.append(", "); sb.append("P:"); if (this.P == null) { sb.append("null"); } else { sb.append(this.P); } first = false; if (!first) sb.append(", "); sb.append("O:"); if (this.O == null) { sb.append("null"); } else { sb.append(this.O); } first = false; sb.append(")"); return sb.toString(); } public void validate() throws org.apache.thrift.TException { // check for required fields if (S == null) { throw new org.apache.thrift.protocol.TProtocolException("Required field 'S' was not present! Struct: " + toString()); } if (P == null) { throw new org.apache.thrift.protocol.TProtocolException("Required field 'P' was not present! Struct: " + toString()); } if (O == null) { throw new org.apache.thrift.protocol.TProtocolException("Required field 'O' was not present! 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, 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 RDF_TripleStandardSchemeFactory implements SchemeFactory { public RDF_TripleStandardScheme getScheme() { return new RDF_TripleStandardScheme(); } } private static class RDF_TripleStandardScheme extends StandardScheme<RDF_Triple> { public void read(org.apache.thrift.protocol.TProtocol iprot, RDF_Triple 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: // S if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.S = new RDF_Term(); struct.S.read(iprot); struct.setSIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // P if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.P = new RDF_Term(); struct.P.read(iprot); struct.setPIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // O if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.O = new RDF_Term(); struct.O.read(iprot); struct.setOIsSet(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, RDF_Triple struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.S != null) { oprot.writeFieldBegin(S_FIELD_DESC); struct.S.write(oprot); oprot.writeFieldEnd(); } if (struct.P != null) { oprot.writeFieldBegin(P_FIELD_DESC); struct.P.write(oprot); oprot.writeFieldEnd(); } if (struct.O != null) { oprot.writeFieldBegin(O_FIELD_DESC); struct.O.write(oprot); oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); } } private static class RDF_TripleTupleSchemeFactory implements SchemeFactory { public RDF_TripleTupleScheme getScheme() { return new RDF_TripleTupleScheme(); } } private static class RDF_TripleTupleScheme extends TupleScheme<RDF_Triple> { @Override public void write(org.apache.thrift.protocol.TProtocol prot, RDF_Triple struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; struct.S.write(oprot); struct.P.write(oprot); struct.O.write(oprot); } @Override public void read(org.apache.thrift.protocol.TProtocol prot, RDF_Triple struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; struct.S = new RDF_Term(); struct.S.read(iprot); struct.setSIsSet(true); struct.P = new RDF_Term(); struct.P.read(iprot); struct.setPIsSet(true); struct.O = new RDF_Term(); struct.O.read(iprot); struct.setOIsSet(true); } } }