Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Supplier;
import java.util.regex.Pattern;

import static org.apache.iotdb.commons.conf.IoTDBConstant.MULTI_LEVEL_PATH_WILDCARD;
import static org.apache.iotdb.commons.conf.IoTDBConstant.ONE_LEVEL_PATH_WILDCARD;
Expand All @@ -58,9 +59,9 @@ public class PathPatternNode<V, VSerializer extends PathPatternNode.Serializer<V

private final VSerializer serializer;

// Children names with wildcard, for accelerating wildcard searching.
// Here we do not include "*" or "**" to ensure that the set is empty in most cases.
private final Set<String> childrenNamesWithNonTrivialWildcard = new HashSet<>();
// Compiled patterns for child names with wildcard, for accelerating wildcard searching.
// Here we do not include "*" or "**" to ensure that the map is empty most of the time.
private final Map<String, Pattern> childrenPatternsWithNonTrivialWildcard = new HashMap<>();

public PathPatternNode(String name, VSerializer serializer) {
this.name = name;
Expand Down Expand Up @@ -94,10 +95,12 @@ public List<PathPatternNode<V, VSerializer>> getMatchChildren(String nodeName) {
if (children.containsKey(MULTI_LEVEL_PATH_WILDCARD)) {
res.add(children.get(MULTI_LEVEL_PATH_WILDCARD));
}
childrenNamesWithNonTrivialWildcard.stream()
.filter(path -> PathPatternUtil.isNodeMatch(path, nodeName))
.map(children::get)
.forEach(res::add);
for (final Map.Entry<String, Pattern> entry :
childrenPatternsWithNonTrivialWildcard.entrySet()) {
if (entry.getValue().matcher(nodeName).matches()) {
res.add(children.get(entry.getKey()));
}
}
return res;
}

Expand All @@ -110,13 +113,16 @@ public void addChild(PathPatternNode<V, VSerializer> tmpNode) {
if (PathPatternUtil.hasWildcard(nodeName)
&& !PathPatternUtil.isMultiLevelMatchWildcard(nodeName)
&& !ONE_LEVEL_PATH_WILDCARD.equals(nodeName)) {
childrenNamesWithNonTrivialWildcard.add(nodeName);
childrenPatternsWithNonTrivialWildcard.computeIfAbsent(
nodeName, PathPatternUtil::compileNodePattern);
}
children.put(nodeName, tmpNode);
}

public void deleteChild(PathPatternNode<V, VSerializer> tmpNode) {
children.remove(tmpNode.getName());
public void deleteChild(final PathPatternNode<V, VSerializer> tmpNode) {
final String nodeName = tmpNode.getName();
children.remove(nodeName);
childrenPatternsWithNonTrivialWildcard.remove(nodeName);
}

public void appendValue(V value, BiConsumer<V, Set<V>> remappingFunction) {
Expand Down Expand Up @@ -248,6 +254,14 @@ void serializeChildren(DataOutputStream outputStream) throws IOException {
}
}

void clear() {
if (Objects.nonNull(valueSet)) {
valueSet.clear();
}
children.clear();
childrenPatternsWithNonTrivialWildcard.clear();
}

public static <V, T extends PathPatternNode.Serializer<V>> PathPatternNode<V, T> deserializeNode(
ByteBuffer buffer, T serializer, Consumer<String> nodeNameProcessor) {
PathPatternNode<V, T> node =
Expand Down Expand Up @@ -279,7 +293,10 @@ public long ramBytesUsed() {
return SHALLOW_SIZE
+ RamUsageEstimator.sizeOf(name)
+ RamUsageEstimator.sizeOfHashSet(valueSet)
+ RamUsageEstimator.sizeOfHashSet(childrenNamesWithNonTrivialWildcard)
+ RamUsageEstimator.sizeOfMapWithKnownShallowSize(
childrenPatternsWithNonTrivialWildcard,
RamUsageEstimator.SHALLOW_SIZE_OF_HASHMAP,
RamUsageEstimator.SHALLOW_SIZE_OF_HASHMAP_ENTRY)
+ RamUsageEstimator.sizeOfMapWithKnownShallowSize(
children,
RamUsageEstimator.SHALLOW_SIZE_OF_HASHMAP,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ public static boolean isNodeMatch(String patternNode, String nodeName) {
|| patternNode.equals(MULTI_LEVEL_PATH_WILDCARD)) {
return true;
}
return Pattern.matches(patternNode.replace("*", ".*"), nodeName);
return compileNodePattern(patternNode).matcher(nodeName).matches();
}

static Pattern compileNodePattern(final String patternNode) {
return Pattern.compile(patternNode.replace("*", ".*"));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
* 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.commons.path;

import org.apache.iotdb.commons.path.PathPatternNode.VoidSerializer;

import org.junit.Test;

import java.util.List;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;

public class PathPatternNodeTest {

@Test
public void testNonTrivialWildcardChildCacheLifecycle() {
final PathPatternNode<Void, VoidSerializer> parent = newNode("parent");
final PathPatternNode<Void, VoidSerializer> wildcardChild = newNode("device*");

parent.addChild(wildcardChild);
final List<PathPatternNode<Void, VoidSerializer>> matchedChildren =
parent.getMatchChildren("device1");
assertEquals(1, matchedChildren.size());
assertSame(wildcardChild, matchedChildren.get(0));

parent.deleteChild(wildcardChild);
assertTrue(parent.getMatchChildren("device1").isEmpty());

parent.addChild(wildcardChild);
parent.clear();
assertTrue(parent.getMatchChildren("device1").isEmpty());
}

@Test
public void testReplacingNonTrivialWildcardChildKeepsCache() {
final PathPatternNode<Void, VoidSerializer> parent = newNode("parent");
final PathPatternNode<Void, VoidSerializer> originalChild = newNode("device*");
final PathPatternNode<Void, VoidSerializer> replacementChild = newNode("device*");

parent.addChild(originalChild);
parent.addChild(replacementChild);

final List<PathPatternNode<Void, VoidSerializer>> matchedChildren =
parent.getMatchChildren("device1");
assertEquals(1, matchedChildren.size());
assertSame(replacementChild, matchedChildren.get(0));
}

private PathPatternNode<Void, VoidSerializer> newNode(final String name) {
return new PathPatternNode<>(name, VoidSerializer.getInstance());
}
}
Loading