blob: 658fa5239a425560052f00cba9a31ff10b11825e [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.storagegroup;
import org.apache.iotdb.confignode.consensus.request.ConfigPhysicalPlan;
import org.apache.iotdb.confignode.consensus.request.ConfigPhysicalPlanType;
import org.apache.iotdb.tsfile.utils.Pair;
import org.apache.iotdb.tsfile.utils.ReadWriteIOUtils;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
public class AdjustMaxRegionGroupCountPlan extends ConfigPhysicalPlan {
// Map<StorageGroupName, Pair<maxSchemaRegionGroupCount, maxDataRegionGroupCount>>
public final Map<String, Pair<Integer, Integer>> maxRegionGroupCountMap;
public AdjustMaxRegionGroupCountPlan() {
super(ConfigPhysicalPlanType.AdjustMaxRegionGroupCount);
this.maxRegionGroupCountMap = new HashMap<>();
}
public void putEntry(String storageGroup, Pair<Integer, Integer> maxRegionGroupCount) {
maxRegionGroupCountMap.put(storageGroup, maxRegionGroupCount);
}
public Map<String, Pair<Integer, Integer>> getMaxRegionGroupCountMap() {
return maxRegionGroupCountMap;
}
@Override
protected void serializeImpl(DataOutputStream stream) throws IOException {
ReadWriteIOUtils.write(ConfigPhysicalPlanType.AdjustMaxRegionGroupCount.ordinal(), stream);
ReadWriteIOUtils.write(maxRegionGroupCountMap.size(), stream);
for (Map.Entry<String, Pair<Integer, Integer>> maxRegionGroupCountEntry :
maxRegionGroupCountMap.entrySet()) {
ReadWriteIOUtils.write(maxRegionGroupCountEntry.getKey(), stream);
ReadWriteIOUtils.write(maxRegionGroupCountEntry.getValue().getLeft(), stream);
ReadWriteIOUtils.write(maxRegionGroupCountEntry.getValue().getRight(), stream);
}
}
@Override
protected void deserializeImpl(ByteBuffer buffer) throws IOException {
int storageGroupNum = buffer.getInt();
for (int i = 0; i < storageGroupNum; i++) {
String storageGroup = ReadWriteIOUtils.readString(buffer);
int maxSchemaRegionGroupCount = buffer.getInt();
int maxDataRegionGroupCount = buffer.getInt();
maxRegionGroupCountMap.put(
storageGroup, new Pair<>(maxSchemaRegionGroupCount, maxDataRegionGroupCount));
}
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
AdjustMaxRegionGroupCountPlan that = (AdjustMaxRegionGroupCountPlan) o;
return maxRegionGroupCountMap.equals(that.maxRegionGroupCountMap);
}
@Override
public int hashCode() {
return Objects.hash(maxRegionGroupCountMap);
}
}