blob: f1a4da03327f97dc04201e6b37e4dbfd8c0e8f45 [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.confignode.consensus.request.write;
import org.apache.iotdb.common.rpc.thrift.TRegionReplicaSet;
import org.apache.iotdb.commons.utils.BasicStructureSerDeUtil;
import org.apache.iotdb.commons.utils.ThriftCommonsSerDeUtils;
import org.apache.iotdb.confignode.consensus.request.ConfigPhysicalPlanType;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Objects;
public class DeleteRegionGroupsPlan extends CreateRegionGroupsPlan {
boolean needsDeleteInPartitionTable = true;
public DeleteRegionGroupsPlan() {
super(ConfigPhysicalPlanType.DeleteRegionGroups);
}
public boolean isNeedsDeleteInPartitionTable() {
return needsDeleteInPartitionTable;
}
public void setNeedsDeleteInPartitionTable(boolean needsDeleteInPartitionTable) {
this.needsDeleteInPartitionTable = needsDeleteInPartitionTable;
}
@Override
protected void serializeImpl(DataOutputStream stream) throws IOException {
stream.writeInt(ConfigPhysicalPlanType.DeleteRegionGroups.ordinal());
stream.writeByte(needsDeleteInPartitionTable ? 1 : 0);
stream.writeInt(regionGroupMap.size());
for (Map.Entry<String, List<TRegionReplicaSet>> entry : regionGroupMap.entrySet()) {
BasicStructureSerDeUtil.write(entry.getKey(), stream);
stream.writeInt(entry.getValue().size());
for (TRegionReplicaSet regionReplicaSet : entry.getValue()) {
ThriftCommonsSerDeUtils.serializeTRegionReplicaSet(regionReplicaSet, stream);
}
}
}
@Override
protected void deserializeImpl(ByteBuffer buffer) throws IOException {
needsDeleteInPartitionTable = buffer.get() > 0;
int length = buffer.getInt();
for (int i = 0; i < length; i++) {
String name = BasicStructureSerDeUtil.readString(buffer);
regionGroupMap.put(name, new ArrayList<>());
int regionNum = buffer.getInt();
for (int j = 0; j < regionNum; j++) {
regionGroupMap.get(name).add(ThriftCommonsSerDeUtils.deserializeTRegionReplicaSet(buffer));
}
}
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DeleteRegionGroupsPlan that = (DeleteRegionGroupsPlan) o;
return regionGroupMap.equals(that.regionGroupMap);
}
@Override
public int hashCode() {
return Objects.hash(regionGroupMap);
}
}