Skip to content

Commit

Permalink
[MOREL-208] FromBuilder should remove trivial yield step between two …
Browse files Browse the repository at this point in the history
…scan steps

Fixes hydromatic#208
  • Loading branch information
julianhyde committed Jan 19, 2024
1 parent 77809e3 commit 949e59d
Show file tree
Hide file tree
Showing 2 changed files with 125 additions and 15 deletions.
27 changes: 12 additions & 15 deletions src/main/java/net/hydromatic/morel/ast/FromBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

import static net.hydromatic.morel.ast.CoreBuilder.core;
import static net.hydromatic.morel.util.Pair.forEach;
import static net.hydromatic.morel.util.Static.append;

import static com.google.common.collect.Iterables.getLast;

Expand Down Expand Up @@ -134,7 +135,6 @@ public FromBuilder scan(Core.Pat pat, Core.Exp exp) {

public FromBuilder scan(Core.Pat pat, Core.Exp exp, Core.Exp condition) {
if (exp.op == Op.FROM
&& steps.isEmpty()
&& core.boolLiteral(true).equals(condition)
&& (pat instanceof Core.IdPat
&& !((Core.From) exp).steps.isEmpty()
Expand All @@ -147,9 +147,18 @@ && getLast(((Core.From) exp).steps).bindings.size() == 1
final List<Binding> bindings;
if (pat instanceof Core.RecordPat) {
final Core.RecordPat recordPat = (Core.RecordPat) pat;
this.bindings.forEach(b -> nameExps.add(b.id.name, core.id(b.id)));
forEach(recordPat.type().argNameTypes.keySet(), recordPat.args,
(name, arg) -> nameExps.add(name, core.id((Core.IdPat) arg)));
bindings = null;
} else if (!this.bindings.isEmpty()) {
// With at least one binding, and one new variable, the output will be
// a record type.
final Core.IdPat idPat = (Core.IdPat) pat;
final Core.FromStep lastStep = getLast(from.steps);
this.bindings.forEach(b -> nameExps.add(b.id.name, core.id(b.id)));
lastStep.bindings.forEach(b -> nameExps.add(idPat.name, core.id(b.id)));
bindings = null;
} else {
final Core.IdPat idPat = (Core.IdPat) pat;
final Core.FromStep lastStep = getLast(from.steps);
Expand All @@ -168,7 +177,7 @@ && getLast(((Core.From) exp).steps).bindings.size() == 1
}
final Binding binding = Iterables.getOnlyElement(lastStep.bindings);
nameExps.add(idPat.name, core.id(binding.id));
bindings = ImmutableList.of(Binding.of(idPat));
bindings = append(this.bindings, Binding.of(idPat));
}
addAll(from.steps);
return yield_(true, bindings, core.record(typeSystem, nameExps));
Expand Down Expand Up @@ -224,7 +233,7 @@ public FromBuilder yield_(Core.Exp exp) {
}

public FromBuilder yield_(boolean uselessIfLast, Core.Exp exp) {
return yield_(false, null, exp);
return yield_(uselessIfLast, null, exp);
}

/** Creates a "yield" step.
Expand Down Expand Up @@ -328,24 +337,12 @@ private static TupleType tupleType(Core.Tuple tuple, List<Binding> bindings,
return identity ? TupleType.IDENTITY : TupleType.RENAME;
}

/** Returns whether tuple is something like "{i = j, j = x}". */
private boolean isRename(Core.Tuple tuple) {
for (int i = 0; i < tuple.args.size(); i++) {
Core.Exp exp = tuple.args.get(i);
if (exp.op != Op.ID) {
return false;
}
}
return true;
}

private Core.Exp build(boolean simplify) {
if (removeIfLastIndex == steps.size() - 1) {
removeIfLastIndex = Integer.MIN_VALUE;
final Core.Yield yield = (Core.Yield) getLast(steps);
assert yield.exp.op == Op.TUPLE
&& ((Core.Tuple) yield.exp).args.size() == 1
&& isTrivial((Core.Tuple) yield.exp, bindings, yield.bindings)
: yield.exp;
steps.remove(steps.size() - 1);
}
Expand Down
113 changes: 113 additions & 0 deletions src/test/java/net/hydromatic/morel/FromBuilderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
import net.hydromatic.morel.ast.Core;
import net.hydromatic.morel.ast.FromBuilder;
import net.hydromatic.morel.compile.Environments;
import net.hydromatic.morel.type.Binding;
import net.hydromatic.morel.type.PrimitiveType;
import net.hydromatic.morel.type.Type;
import net.hydromatic.morel.type.TypeSystem;
import net.hydromatic.morel.util.PairList;

Expand All @@ -31,6 +33,8 @@
import org.junit.jupiter.api.Test;

import java.util.Arrays;
import java.util.List;
import java.util.function.Function;

import static net.hydromatic.morel.ast.CoreBuilder.core;

Expand All @@ -45,15 +49,22 @@ public class FromBuilderTest {
private static class Fixture {
final TypeSystem typeSystem = new TypeSystem();
final PrimitiveType intType = PrimitiveType.INT;
final Type intPairType = typeSystem.tupleType(intType, intType);
final Core.IdPat aPat = core.idPat(intType, "a", 0);
final Core.Id aId = core.id(aPat);
final Core.IdPat bPat = core.idPat(intType, "b", 0);
final Core.IdPat dPat = core.idPat(intPairType, "d", 0);
final Core.Id dId = core.id(dPat);
final Core.IdPat iPat = core.idPat(intType, "i", 0);
final Core.Id iId = core.id(iPat);
final Core.IdPat jPat = core.idPat(intType, "j", 0);
final Core.Id jId = core.id(jPat);
final Core.Exp list12 = core.list(typeSystem, intLiteral(1), intLiteral(2));
final Core.Exp list34 = core.list(typeSystem, intLiteral(3), intLiteral(4));
final Core.Exp tuple12 =
core.tuple(typeSystem, intLiteral(1), intLiteral(2));
final Core.Exp tuple34 =
core.tuple(typeSystem, intLiteral(3), intLiteral(4));

Core.Literal intLiteral(int i) {
return core.literal(intType, i);
Expand Down Expand Up @@ -193,6 +204,108 @@ FromBuilder fromBuilder() {
assertThat(e, is(from));
}

@Test void testNested3() {
// from i in (from j in [1, 2]) where i > 1
// ==>
// from j in [1, 2] yield {i = j} where i > 1
final Fixture f = new Fixture();
final Core.From innerFrom =
f.fromBuilder()
.scan(f.jPat, f.list12)
.build();

final FromBuilder fromBuilder = f.fromBuilder();
fromBuilder.scan(f.iPat, innerFrom)
.where(core.greaterThan(f.typeSystem, f.iId, f.intLiteral(1)));

final Core.From from = fromBuilder.build();
final String expected = "from j in [1, 2] yield {i = j} where i > 1";
assertThat(from, hasToString(expected));
final Core.Exp e = fromBuilder.buildSimplify();
assertThat(e, is(from));

// from j in (from j in [1, 2]) where j > 1
// ==>
// from j in [1, 2] where j > 1
final FromBuilder fromBuilder2 = f.fromBuilder();
fromBuilder2.scan(f.jPat, innerFrom)
.where(core.greaterThan(f.typeSystem, f.jId, f.intLiteral(1)));

final Core.From from2 = fromBuilder2.build();
final String expected2 = "from j in [1, 2] where j > 1";
assertThat(from2, hasToString(expected2));
final Core.Exp e2 = fromBuilder2.buildSimplify();
assertThat(e2, is(from2));

// from i in (from j in [1, 2])
// ==>
// from j in [1, 2]
// ==> simplification
// [1, 2]
final FromBuilder fromBuilder3 = f.fromBuilder();
fromBuilder3.scan(f.iPat, innerFrom);

final Core.From from3 = fromBuilder3.build();
final String expected3 = "from j in [1, 2]";
assertThat(from3, hasToString(expected3));
final Core.Exp e3 = fromBuilder3.buildSimplify();
assertThat(e3, is(f.list12));
}

@Test void testNested4() {
// from d in [(1, 2), (3, 4)]
// join i in (from i in [#1 d])
// ==>
// from d in [(1, 2), (3, 4)]
// join i in [#1 d]
final Fixture f = new Fixture();
final Function<List<Binding>, Core.From> innerFrom = bindings ->
core.fromBuilder(f.typeSystem,
Environments.empty().bindAll(bindings))
.scan(f.iPat,
core.list(f.typeSystem,
core.field(f.typeSystem, f.dId, 0)))
.build();
final FromBuilder fromBuilder = f.fromBuilder();
fromBuilder
.scan(f.dPat,
core.list(f.typeSystem, f.tuple12, f.tuple34))
.scan(f.iPat, innerFrom.apply(fromBuilder.bindings()));

final Core.From from = fromBuilder.build();
final String expected = "from d in [(1, 2), (3, 4)] "
+ "join i in [#1 d]";
assertThat(from, hasToString(expected));
final Core.Exp e = fromBuilder.buildSimplify();
assertThat(e, is(from));

// from d in [(1, 2), (3, 4)]
// join j in (from i in [#1 d])
// where j > #1 d
// ==>
// from d in [(1, 2), (3, 4)]
// join i in [#1 d]
// yield {d, j = i}
// where j > #1 d
final FromBuilder fromBuilder2 = f.fromBuilder();
fromBuilder2
.scan(f.dPat,
core.list(f.typeSystem, f.tuple12, f.tuple34))
.scan(f.jPat, innerFrom.apply(fromBuilder.bindings()))
.where(
core.greaterThan(f.typeSystem, f.jId,
core.field(f.typeSystem, f.dId, 0)));

final Core.From from2 = fromBuilder2.build();
final String expected2 = "from d in [(1, 2), (3, 4)] "
+ "join i in [#1 d] "
+ "yield {d = d, j = i} "
+ "where j > #1 d";
assertThat(from2, hasToString(expected2));
final Core.Exp e2 = fromBuilder2.buildSimplify();
assertThat(e2, is(from2));
}

/** As {@link #testNested()} but inner and outer variables have the same
* name, and therefore no yield is required. */
@Test void testNestedSameName() {
Expand Down

0 comments on commit 949e59d

Please sign in to comment.