blob: 9bcae958d684300e4fe4a4d6dd3acef0de1bcb14 [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.
*/
package org.apache.iotdb.rpc.subscription.payload;
import org.apache.iotdb.tsfile.utils.ReadWriteIOUtils;
import org.apache.iotdb.tsfile.write.record.Tablet;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
public class EnrichedTablets {
private transient String topicName;
private transient String subscriptionCommitId;
private transient List<Tablet> tablets;
public String getTopicName() {
return topicName;
}
public String getSubscriptionCommitId() {
return subscriptionCommitId;
}
public List<Tablet> getTablets() {
return tablets;
}
public EnrichedTablets() {
this.tablets = new ArrayList<>();
}
public EnrichedTablets(String topicName, List<Tablet> tablets, String subscriptionCommitId) {
this.topicName = topicName;
this.tablets = tablets;
this.subscriptionCommitId = subscriptionCommitId;
}
/////////////////////////////// de/ser ///////////////////////////////
public void serialize(DataOutputStream stream) throws IOException {
ReadWriteIOUtils.write(topicName, stream);
ReadWriteIOUtils.write(subscriptionCommitId, stream);
ReadWriteIOUtils.write(tablets.size(), stream);
for (Tablet tablet : tablets) {
tablet.serialize(stream);
}
}
public static EnrichedTablets deserialize(ByteBuffer buffer) {
final EnrichedTablets enrichedTablets = new EnrichedTablets();
enrichedTablets.topicName = ReadWriteIOUtils.readString(buffer);
enrichedTablets.subscriptionCommitId = ReadWriteIOUtils.readString(buffer);
int size = ReadWriteIOUtils.readInt(buffer);
for (int i = 0; i < size; ++i) {
enrichedTablets.tablets.add(Tablet.deserialize(buffer));
}
return enrichedTablets;
}
/////////////////////////////// Object ///////////////////////////////
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
EnrichedTablets that = (EnrichedTablets) obj;
return Objects.equals(this.topicName, that.topicName)
&& Objects.equals(this.subscriptionCommitId, that.subscriptionCommitId)
&& Objects.equals(this.tablets, that.tablets);
}
@Override
public int hashCode() {
// Considering that the Tablet class has not implemented the hashCode method, the tablets member
// should not be included when calculating the hashCode of EnrichedTablets.
return Objects.hash(topicName, subscriptionCommitId);
}
}