-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(interactive): Support
Unfold
Operation in Cypher Queries (#…
…4241) <!-- Thanks for your contribution! please review https://github.com/alibaba/GraphScope/blob/main/CONTRIBUTING.md before opening an issue. --> ## What do these changes do? as titled. <!-- Please give a short brief about these changes. --> ## Related issue number <!-- Are there any issues opened that will be resolved by merging this change? --> Fixes --------- Co-authored-by: BingqingLyu <[email protected]>
- Loading branch information
1 parent
ee28147
commit 27dc402
Showing
12 changed files
with
224 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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 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 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
95 changes: 95 additions & 0 deletions
95
...ngine/compiler/src/main/java/com/alibaba/graphscope/common/ir/rel/GraphLogicalUnfold.java
This file contains 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,95 @@ | ||
/* | ||
* | ||
* * Copyright 2020 Alibaba Group Holding Limited. | ||
* * | ||
* * Licensed 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 com.alibaba.graphscope.common.ir.rel; | ||
|
||
import com.alibaba.graphscope.common.ir.tools.AliasInference; | ||
import com.alibaba.graphscope.common.ir.tools.Utils; | ||
|
||
import org.apache.calcite.plan.GraphOptCluster; | ||
import org.apache.calcite.plan.RelTraitSet; | ||
import org.apache.calcite.rel.RelNode; | ||
import org.apache.calcite.rel.RelShuttle; | ||
import org.apache.calcite.rel.RelWriter; | ||
import org.apache.calcite.rel.SingleRel; | ||
import org.apache.calcite.rel.type.*; | ||
import org.apache.calcite.rex.RexNode; | ||
import org.checkerframework.checker.nullness.qual.Nullable; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
public class GraphLogicalUnfold extends SingleRel { | ||
private final RexNode key; | ||
private final String aliasName; | ||
private final int aliasId; | ||
|
||
public GraphLogicalUnfold( | ||
GraphOptCluster cluster, RelNode input, RexNode key, @Nullable String aliasName) { | ||
super(cluster, RelTraitSet.createEmpty(), input); | ||
this.key = key; | ||
this.aliasName = | ||
AliasInference.inferDefault( | ||
aliasName, AliasInference.getUniqueAliasList(input, true)); | ||
this.aliasId = cluster.getIdGenerator().generate(this.aliasName); | ||
} | ||
|
||
public RexNode getUnfoldKey() { | ||
return this.key; | ||
} | ||
|
||
@Override | ||
public RelWriter explainTerms(RelWriter pw) { | ||
return super.explainTerms(pw).item("key", key).item("alias", aliasName); | ||
} | ||
|
||
@Override | ||
public RelDataType deriveRowType() { | ||
RelDataType inputOutputType = Utils.getOutputType(input); | ||
List<RelDataTypeField> fields = | ||
inputOutputType.getFieldList().stream() | ||
.filter(k -> k.getIndex() != AliasInference.DEFAULT_ID) | ||
.collect(Collectors.toList()); | ||
fields.add( | ||
new RelDataTypeFieldImpl( | ||
this.aliasName, this.aliasId, key.getType().getComponentType())); | ||
return new RelRecordType(StructKind.FULLY_QUALIFIED, fields); | ||
} | ||
|
||
@Override | ||
public GraphLogicalUnfold copy(RelTraitSet traitSet, List<RelNode> inputs) { | ||
return new GraphLogicalUnfold( | ||
(GraphOptCluster) getCluster(), inputs.get(0), this.key, this.aliasName); | ||
} | ||
|
||
@Override | ||
public RelNode accept(RelShuttle shuttle) { | ||
if (shuttle instanceof GraphShuttle) { | ||
return ((GraphShuttle) shuttle).visit(this); | ||
} | ||
return shuttle.visit(this); | ||
} | ||
|
||
public String getAliasName() { | ||
return this.aliasName; | ||
} | ||
|
||
public int getAliasId() { | ||
return this.aliasId; | ||
} | ||
} |
This file contains 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 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 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 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 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 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 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 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