Skip to content
Merged
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
@@ -0,0 +1,59 @@
/*
* 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.wayang.api.sql.calcite.rules;

import org.apache.calcite.plan.Convention;
import org.apache.calcite.rel.RelNode;
import org.apache.calcite.rel.convert.ConverterRule;
import org.apache.calcite.rel.logical.LogicalAggregate;

import org.apache.wayang.api.sql.calcite.convention.WayangConvention;
import org.apache.wayang.api.sql.calcite.rel.WayangAggregate;

/**
* Rule that converts {@link LogicalAggregate} to Wayang convention
* {@link WayangAggregate}
*/
public class WayangAggregateRule extends ConverterRule {

public static final Config DEFAULT_CONFIG = Config.INSTANCE
.withConversion(LogicalAggregate.class,
Convention.NONE, WayangConvention.INSTANCE,
"WayangAggregateRule")
.withRuleFactory(WayangAggregateRule::new);

protected WayangAggregateRule(final Config config) {
super(config);
}

@Override
public RelNode convert(final RelNode relNode) {
final LogicalAggregate aggregate = (LogicalAggregate) relNode;
final RelNode input = convert(aggregate.getInput(),
aggregate.getInput().getTraitSet().replace(WayangConvention.INSTANCE));

return new WayangAggregate(
aggregate.getCluster(),
aggregate.getTraitSet().replace(WayangConvention.INSTANCE),
aggregate.getHints(),
input,
aggregate.getGroupSet(),
aggregate.getGroupSets(),
aggregate.getAggCallList());
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
* 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.wayang.api.sql.calcite.rules;

import org.apache.calcite.plan.Convention;
import org.apache.calcite.rel.RelNode;
import org.apache.calcite.rel.convert.ConverterRule;
import org.apache.calcite.rel.logical.LogicalFilter;

import org.apache.wayang.api.sql.calcite.convention.WayangConvention;
import org.apache.wayang.api.sql.calcite.rel.WayangFilter;

/**
* Rule that converts {@link LogicalFilter} to Wayang convention
* {@link WayangFilter}
*/
public class WayangFilterRule extends ConverterRule {
public static final Config DEFAULT_CONFIG = Config.INSTANCE
.withConversion(LogicalFilter.class,
Convention.NONE, WayangConvention.INSTANCE,
"WayangFilterRule")
.withRuleFactory(WayangFilterRule::new);

protected WayangFilterRule(final Config config) {
super(config);
}

@Override
public RelNode convert(final RelNode rel) {
final LogicalFilter filter = (LogicalFilter) rel;
return new WayangFilter(
rel.getCluster(),
rel.getTraitSet().replace(WayangConvention.INSTANCE),
convert(filter.getInput(), filter.getInput().getTraitSet().replace(WayangConvention.INSTANCE)),
filter.getCondition());
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
/*
* 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.wayang.api.sql.calcite.rules;

import java.util.ArrayList;
import java.util.List;

import org.apache.calcite.plan.Convention;
import org.apache.calcite.rel.RelNode;
import org.apache.calcite.rel.convert.ConverterRule;
import org.apache.calcite.rel.logical.LogicalJoin;

import org.apache.wayang.api.sql.calcite.convention.WayangConvention;
import org.apache.wayang.api.sql.calcite.rel.WayangJoin;


/**
* Rule that converts {@link LogicalJoin} to Wayang convention
* {@link WayangJoin}
*/
public class WayangJoinRule extends ConverterRule {

public static final Config DEFAULT_CONFIG = Config.INSTANCE
.withConversion(LogicalJoin.class, Convention.NONE,
WayangConvention.INSTANCE, "WayangJoinRule")
.withRuleFactory(WayangJoinRule::new);

protected WayangJoinRule(final Config config) {
super(config);
}

@Override
public RelNode convert(final RelNode relNode) {
final LogicalJoin join = (LogicalJoin) relNode;
final List<RelNode> newInputs = new ArrayList<>();
for (final RelNode input : join.getInputs()) {
final RelNode convertedNode = !(input.getConvention() instanceof WayangConvention)
? convert(input, input.getTraitSet().replace(WayangConvention.INSTANCE))
: input;

newInputs.add(convertedNode);
}

return new WayangJoin(
join.getCluster(),
join.getTraitSet().replace(WayangConvention.INSTANCE),
newInputs.get(0),
newInputs.get(1),
join.getCondition(),
join.getVariablesSet(),
join.getJoinType());
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
* 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.wayang.api.sql.calcite.rules;

import org.apache.calcite.plan.Convention;
import org.apache.calcite.rel.RelNode;
import org.apache.calcite.rel.convert.ConverterRule;
import org.apache.calcite.rel.logical.LogicalProject;

import org.apache.wayang.api.sql.calcite.convention.WayangConvention;
import org.apache.wayang.api.sql.calcite.rel.WayangProject;

/**
* Rule that converts {@link LogicalProject} to Wayang convention
* {@link WayangProject}
*/
public class WayangProjectRule extends ConverterRule {
public static final Config DEFAULT_CONFIG = Config.INSTANCE
.withConversion(LogicalProject.class,
Convention.NONE, WayangConvention.INSTANCE,
"WayangProjectRule")
.withRuleFactory(WayangProjectRule::new);

protected WayangProjectRule(final Config config) {
super(config);
}

public RelNode convert(final RelNode rel) {
final LogicalProject project = (LogicalProject) rel;
return new WayangProject(
project.getCluster(),
project.getTraitSet().replace(WayangConvention.INSTANCE),
convert(project.getInput(), project.getInput().getTraitSet()
.replace(WayangConvention.INSTANCE)),
project.getProjects(),
project.getRowType());
}
}
Loading
Loading