-
Notifications
You must be signed in to change notification settings - Fork 615
fix(core): keep unsafe range filters local #3068
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
LegendPei
wants to merge
4
commits into
apache:master
Choose a base branch
from
LegendPei:fix/issue-2929-connective-range
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
6e11a89
fix(core): keep unsafe range filters local
LegendPei 346f56e
fix(core): narrow connective label filter extraction
LegendPei 13df957
fix(core): handle connective label edge cases
LegendPei 49168a4
fix(core): add connective label optimizer tests
LegendPei File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
132 changes: 132 additions & 0 deletions
132
...rc/main/java/org/apache/hugegraph/traversal/optimize/HugeConnectiveLabelStepStrategy.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,132 @@ | ||
| /* | ||
| * 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.hugegraph.traversal.optimize; | ||
|
|
||
| import java.util.Collections; | ||
| import java.util.IdentityHashMap; | ||
| import java.util.Set; | ||
|
|
||
| import org.apache.tinkerpop.gremlin.process.traversal.Step; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.Traversal; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParent; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.step.filter.AndStep; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.step.filter.HasStep; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.step.filter.OrStep; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.step.util.HasContainer; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.strategy.AbstractTraversalStrategy; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.strategy.optimization.InlineFilterStrategy; | ||
| import org.apache.tinkerpop.gremlin.process.traversal.util.TraversalHelper; | ||
|
|
||
| public final class HugeConnectiveLabelStepStrategy | ||
| extends AbstractTraversalStrategy<TraversalStrategy.OptimizationStrategy> | ||
| implements TraversalStrategy.OptimizationStrategy { | ||
|
|
||
| private static final long serialVersionUID = 2532355470697047377L; | ||
|
|
||
| private static final HugeConnectiveLabelStepStrategy INSTANCE = | ||
| new HugeConnectiveLabelStepStrategy(); | ||
|
|
||
| private HugeConnectiveLabelStepStrategy() { | ||
| // pass | ||
| } | ||
|
|
||
| @Override | ||
| public void apply(Traversal.Admin<?, ?> traversal) { | ||
| Set<Traversal.Admin<?, ?>> visited = | ||
| Collections.newSetFromMap(new IdentityHashMap<>()); | ||
| markConnectiveLabelSteps(traversal, visited); | ||
| } | ||
|
|
||
| @Override | ||
| public Set<Class<? extends TraversalStrategy.OptimizationStrategy>> applyPost() { | ||
| return Collections.singleton(InlineFilterStrategy.class); | ||
| } | ||
|
|
||
| public static HugeConnectiveLabelStepStrategy instance() { | ||
| return INSTANCE; | ||
| } | ||
|
|
||
| private static void markConnectiveLabelSteps(Traversal.Admin<?, ?> traversal, | ||
| Set<Traversal.Admin<?, ?>> visited) { | ||
| if (!visited.add(traversal)) { | ||
| return; | ||
| } | ||
|
|
||
| for (AndStep<?> step : TraversalHelper.getStepsOfClass(AndStep.class, | ||
| traversal)) { | ||
| markConnectiveLabelChildren(step, step); | ||
| } | ||
| for (OrStep<?> step : TraversalHelper.getStepsOfClass(OrStep.class, | ||
| traversal)) { | ||
| markConnectiveLabelChildren(step, step); | ||
| } | ||
|
|
||
| for (Step<?, ?> step : traversal.getSteps()) { | ||
| if (!(step instanceof TraversalParent)) { | ||
| continue; | ||
| } | ||
| TraversalParent parent = (TraversalParent) step; | ||
| for (Traversal.Admin<?, ?> child : parent.getLocalChildren()) { | ||
| markConnectiveLabelSteps(child, visited); | ||
| } | ||
| for (Traversal.Admin<?, ?> child : parent.getGlobalChildren()) { | ||
| markConnectiveLabelSteps(child, visited); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| private static void markConnectiveLabelChildren(Step<?, ?> step, | ||
| TraversalParent parent) { | ||
| if (!(step.getPreviousStep() instanceof HasStep)) { | ||
| return; | ||
| } | ||
| for (Traversal.Admin<?, ?> child : parent.getLocalChildren()) { | ||
| markPositiveLabelOnlyTraversal(child); | ||
| } | ||
| } | ||
|
|
||
| private static void markPositiveLabelOnlyTraversal( | ||
| Traversal.Admin<?, ?> traversal) { | ||
| for (Step<?, ?> step : traversal.getSteps()) { | ||
| if (!(step instanceof HasStep)) { | ||
| return; | ||
| } | ||
| HasStep<?> hasStep = (HasStep<?>) step; | ||
| if (!hasOnlyPositiveLabelContainers(hasStep)) { | ||
| return; | ||
| } | ||
| } | ||
|
|
||
| for (Step<?, ?> step : traversal.getSteps()) { | ||
| TraversalUtil.markConnectiveLabelStep(step); | ||
| } | ||
| } | ||
|
|
||
| private static boolean hasOnlyPositiveLabelContainers(HasStep<?> step) { | ||
| if (step.getHasContainers().isEmpty()) { | ||
| return false; | ||
| } | ||
| for (HasContainer has : step.getHasContainers()) { | ||
|
LegendPei marked this conversation as resolved.
|
||
| if (!TraversalUtil.isPositiveLabelContainer(has)) { | ||
| return false; | ||
| } | ||
| } | ||
| return true; | ||
| } | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.