@Override public void write(org.apache.thrift.protocol.TProtocol prot, RateData struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; BitSet optionals = new BitSet(); if (struct.isSetUserID()) { optionals.set(0); } if (struct.isSetPostID()) { optionals.set(1); } if (struct.isSetRatingValue()) { optionals.set(2); } oprot.writeBitSet(optionals, 3); if (struct.isSetUserID()) { oprot.writeI64(struct.userID); } if (struct.isSetPostID()) { oprot.writeI64(struct.postID); } if (struct.isSetRatingValue()) { oprot.writeDouble(struct.ratingValue); } }
@Override public int compareTo(RateData other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = Boolean.valueOf(isSetUserID()).compareTo(other.isSetUserID()); if (lastComparison != 0) { return lastComparison; } if (isSetUserID()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.userID, other.userID); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetPostID()).compareTo(other.isSetPostID()); if (lastComparison != 0) { return lastComparison; } if (isSetPostID()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.postID, other.postID); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetRatingValue()).compareTo(other.isSetRatingValue()); if (lastComparison != 0) { return lastComparison; } if (isSetRatingValue()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ratingValue, other.ratingValue); if (lastComparison != 0) { return lastComparison; } } return 0; }
public void write(org.apache.thrift.protocol.TProtocol oprot, RateData struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(USER_ID_FIELD_DESC); oprot.writeI64(struct.userID); oprot.writeFieldEnd(); oprot.writeFieldBegin(POST_ID_FIELD_DESC); oprot.writeI64(struct.postID); oprot.writeFieldEnd(); oprot.writeFieldBegin(RATING_VALUE_FIELD_DESC); oprot.writeDouble(struct.ratingValue); oprot.writeFieldEnd(); oprot.writeFieldStop(); oprot.writeStructEnd(); }
public void read(org.apache.thrift.protocol.TProtocol iprot, RateData 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: // USER_ID if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.userID = iprot.readI64(); struct.setUserIDIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // POST_ID if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.postID = iprot.readI64(); struct.setPostIDIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // RATING_VALUE if (schemeField.type == org.apache.thrift.protocol.TType.DOUBLE) { struct.ratingValue = iprot.readDouble(); struct.setRatingValueIsSet(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(); }
@Override public void read(org.apache.thrift.protocol.TProtocol prot, RateData struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { struct.userID = iprot.readI64(); struct.setUserIDIsSet(true); } if (incoming.get(1)) { struct.postID = iprot.readI64(); struct.setPostIDIsSet(true); } if (incoming.get(2)) { struct.ratingValue = iprot.readDouble(); struct.setRatingValueIsSet(true); } }