blob: 931102226923b84c66528adea80b32712e243860 [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.tools;
import org.apache.iotdb.commons.conf.CommonDescriptor;
import org.apache.iotdb.commons.exception.MetadataException;
import org.apache.iotdb.commons.schema.SchemaConstant;
import org.apache.iotdb.commons.schema.node.utils.IMNodeFactory;
import org.apache.iotdb.db.schemaengine.SchemaEngineMode;
import org.apache.iotdb.db.schemaengine.schemaregion.mtree.impl.pbtree.mnode.ICachedMNode;
import org.apache.iotdb.db.schemaengine.schemaregion.mtree.impl.pbtree.mnode.container.ICachedMNodeContainer;
import org.apache.iotdb.db.schemaengine.schemaregion.mtree.impl.pbtree.schemafile.ISchemaFile;
import org.apache.iotdb.db.schemaengine.schemaregion.mtree.impl.pbtree.schemafile.SchemaFile;
import org.apache.iotdb.db.schemaengine.schemaregion.mtree.loader.MNodeFactoryLoader;
import org.apache.iotdb.db.tools.schema.PBTreeFileSketchTool;
import org.apache.iotdb.db.utils.EnvironmentUtils;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
import org.apache.iotdb.tsfile.write.schema.IMeasurementSchema;
import org.apache.iotdb.tsfile.write.schema.MeasurementSchema;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.Queue;
import static org.apache.iotdb.db.schemaengine.schemaregion.mtree.impl.pbtree.mnode.container.ICachedMNodeContainer.getCachedMNodeContainer;
public class PBTreeFileSketchTest {
private final IMNodeFactory<ICachedMNode> nodeFactory =
MNodeFactoryLoader.getInstance().getCachedMNodeIMNodeFactory();
@Before
public void setUp() {
CommonDescriptor.getInstance()
.getConfig()
.setSchemaEngineMode(SchemaEngineMode.PBTree.toString());
EnvironmentUtils.envSetUp();
}
@After
public void tearDown() throws Exception {
File sketch = new File("sketch_schemafile.txt");
sketch.deleteOnExit();
EnvironmentUtils.cleanEnv();
CommonDescriptor.getInstance()
.getConfig()
.setSchemaEngineMode(SchemaEngineMode.Memory.toString());
}
private void prepareData() throws IOException, MetadataException {
int TEST_SCHEMA_REGION_ID = 0;
ISchemaFile sf = SchemaFile.initSchemaFile("root.test.vRoot1", TEST_SCHEMA_REGION_ID);
Iterator<ICachedMNode> ite = getTreeBFT(getFlatTree(500, "aa"));
while (ite.hasNext()) {
ICachedMNode cur = ite.next();
if (!cur.isMeasurement()) {
ICachedMNodeContainer container = getCachedMNodeContainer(cur);
container.transferAllBufferReceivingToFlushing();
sf.writeMNode(cur);
}
}
sf.close();
}
@Test
public void testSchemaFileSketch() throws Exception {
prepareData();
File file =
new File(
"target"
+ File.separator
+ "tmp"
+ File.separator
+ "system"
+ File.separator
+ "schema"
+ File.separator
+ "root.test.vRoot1"
+ File.separator
+ "0"
+ File.separator
+ SchemaConstant.PBTREE_FILE_NAME);
File sketchFile = new File("sketch_schemafile.txt");
PBTreeFileSketchTool.main(
new String[] {"-f", file.getAbsolutePath(), "-o", sketchFile.getAbsolutePath()});
ISchemaFile sf = SchemaFile.loadSchemaFile(file);
try {
StringWriter sw = new StringWriter();
((SchemaFile) sf).inspect(new PrintWriter(sw));
Assert.assertEquals(
sw.toString(), new String(Files.readAllBytes(Paths.get(sketchFile.getAbsolutePath()))));
} finally {
sf.close();
}
}
private Iterator<ICachedMNode> getTreeBFT(ICachedMNode root) {
return new Iterator<ICachedMNode>() {
Queue<ICachedMNode> queue = new LinkedList<>();
{
this.queue.add(root);
}
@Override
public boolean hasNext() {
return queue.size() > 0;
}
@Override
public ICachedMNode next() {
ICachedMNode curNode = queue.poll();
if (!curNode.isMeasurement() && curNode.getChildren().size() > 0) {
for (ICachedMNode child : curNode.getChildren().values()) {
queue.add(child);
}
}
return curNode;
}
};
}
private ICachedMNode getFlatTree(int flatSize, String id) {
ICachedMNode root = nodeFactory.createInternalMNode(null, "root");
ICachedMNode test = nodeFactory.createInternalMNode(root, "test");
ICachedMNode internalNode = nodeFactory.createDatabaseDeviceMNode(null, "vRoot1", 0L);
for (int idx = 0; idx < flatSize; idx++) {
String measurementId = id + idx;
IMeasurementSchema schema = new MeasurementSchema(measurementId, TSDataType.FLOAT);
internalNode.addChild(
nodeFactory
.createMeasurementMNode(
internalNode.getAsDeviceMNode(), measurementId, schema, measurementId + "als")
.getAsMNode());
}
test.addChild(internalNode);
return internalNode;
}
}