blob: f9bc18c0669a1f016a7e5ef0b42c095303af6991 [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.db.mpp.plan.statement.crud;
import org.apache.iotdb.common.rpc.thrift.TEndPoint;
import org.apache.iotdb.common.rpc.thrift.TTimePartitionSlot;
import org.apache.iotdb.commons.partition.DataPartition;
import org.apache.iotdb.commons.path.PartialPath;
import org.apache.iotdb.db.mpp.plan.constant.StatementType;
import org.apache.iotdb.db.mpp.plan.statement.StatementVisitor;
import org.apache.iotdb.db.utils.TimePartitionUtils;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
public class InsertRowsOfOneDeviceStatement extends InsertBaseStatement {
public InsertRowsOfOneDeviceStatement() {
super();
statementType = StatementType.BATCH_INSERT_ONE_DEVICE;
}
/** the InsertRowsStatement list */
private List<InsertRowStatement> insertRowStatementList;
@Override
public boolean isEmpty() {
return insertRowStatementList.isEmpty();
}
public List<InsertRowStatement> getInsertRowStatementList() {
return insertRowStatementList;
}
public void setInsertRowStatementList(List<InsertRowStatement> insertRowStatementList) {
this.insertRowStatementList = insertRowStatementList;
// set device path, measurements, and data types
if (insertRowStatementList == null || insertRowStatementList.size() == 0) {
return;
}
devicePath = insertRowStatementList.get(0).getDevicePath();
isAligned = insertRowStatementList.get(0).isAligned;
Map<String, TSDataType> measurementsAndDataType = new HashMap<>();
for (InsertRowStatement insertRowStatement : insertRowStatementList) {
List<String> measurements = Arrays.asList(insertRowStatement.getMeasurements());
Map<String, TSDataType> subMap =
measurements.stream()
.collect(
Collectors.toMap(
key -> key, key -> insertRowStatement.dataTypes[measurements.indexOf(key)]));
measurementsAndDataType.putAll(subMap);
}
measurements = measurementsAndDataType.keySet().toArray(new String[0]);
dataTypes = measurementsAndDataType.values().toArray(new TSDataType[0]);
}
public List<TTimePartitionSlot> getTimePartitionSlots() {
Set<TTimePartitionSlot> timePartitionSlotSet = new HashSet<>();
for (InsertRowStatement insertRowStatement : insertRowStatementList) {
timePartitionSlotSet.add(
TimePartitionUtils.getTimePartitionForRouting(insertRowStatement.getTime()));
}
return new ArrayList<>(timePartitionSlotSet);
}
@Override
public List<TEndPoint> collectRedirectInfo(DataPartition dataPartition) {
return insertRowStatementList
.get(insertRowStatementList.size() - 1)
.collectRedirectInfo(dataPartition);
}
public <R, C> R accept(StatementVisitor<R, C> visitor, C context) {
return visitor.visitInsertRowsOfOneDevice(this, context);
}
@Override
public List<PartialPath> getPaths() {
List<PartialPath> ret = new ArrayList<>();
for (String m : measurements) {
PartialPath fullPath = devicePath.concatNode(m);
ret.add(fullPath);
}
return ret;
}
}