From 7b1a783b749ab04ab8219ef28f9b1abb0ded6ca4 Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Wed, 3 Jun 2015 14:32:07 +1000 Subject: Rename RoseTree to ShrinkTree (less confusing and more specific) --- .../java/au/id/zancanaro/javacheck/ShrinkTree.java | 128 +++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 src/main/java/au/id/zancanaro/javacheck/ShrinkTree.java (limited to 'src/main/java/au/id/zancanaro/javacheck/ShrinkTree.java') diff --git a/src/main/java/au/id/zancanaro/javacheck/ShrinkTree.java b/src/main/java/au/id/zancanaro/javacheck/ShrinkTree.java new file mode 100644 index 0000000..a424806 --- /dev/null +++ b/src/main/java/au/id/zancanaro/javacheck/ShrinkTree.java @@ -0,0 +1,128 @@ +package au.id.zancanaro.javacheck; + +import java.io.IOException; +import java.io.Writer; +import java.util.*; +import java.util.function.Function; +import java.util.function.Predicate; + +@SuppressWarnings("unused") +public class ShrinkTree { + private final T value; + private final Iterable> children; + + public ShrinkTree(T value, Iterable> children) { + this.value = value; + this.children = children; + } + + public T getValue() { + return value; + } + + public Iterator> getChildren() { + return children.iterator(); + } + + public static ShrinkTree pure(T value) { + return new ShrinkTree<>(value, Collections.emptyList()); + } + + public static ShrinkTree join(ShrinkTree> tree) { + return new ShrinkTree<>( + tree.getValue().getValue(), + () -> Iterators.concat( + Iterators.mappingIterator(ShrinkTree::join, tree.children.iterator()), + tree.getValue().children.iterator())); + } + + private static Iterator[]> permutations(ShrinkTree[] trees) { + return Iterators.flatten( + Iterators.rangeIterator(trees.length, + index -> Iterators.mappingIterator(child -> { + @SuppressWarnings("unchecked") + ShrinkTree[] result = (ShrinkTree[]) new ShrinkTree[trees.length]; + for (int i = 0; i < trees.length; ++i) { + result[i] = (i == index ? child : trees[i]); + } + return result; + }, trees[index].getChildren()) + )); + } + + private static List makeHeadList(ShrinkTree[] trees) { + List heads = new ArrayList<>(trees.length); + for (ShrinkTree tree : trees) { + heads.add(tree.getValue()); + } + return heads; + } + + public static ShrinkTree zip(Function, R> fn, ShrinkTree[] trees) { + return new ShrinkTree<>( + fn.apply(makeHeadList(trees)), + () -> Iterators.mappingIterator( + shrinks -> ShrinkTree.zip(fn, shrinks), + ShrinkTree.permutations(trees))); + } + + private static Iterator[]> removeEach(ShrinkTree[] trees) { + return Iterators.concat( + Iterators.rangeIterator(trees.length, index -> { + @SuppressWarnings("unchecked") + ShrinkTree[] result = (ShrinkTree[]) new ShrinkTree[trees.length - 1]; + for (int i = 0; i < trees.length - 1; ++i) { + result[i] = trees[(i >= index ? i + 1 : i)]; + } + return result; + }), + permutations(trees)); + } + + public static ShrinkTree shrink(Function, R> fn, ShrinkTree[] trees) { + return new ShrinkTree<>( + fn.apply(makeHeadList(trees)), + () -> Iterators.mappingIterator( + shrinks -> ShrinkTree.shrink(fn, shrinks), + ShrinkTree.removeEach(trees))); + } + + public ShrinkTree map(Function f) { + return new ShrinkTree<>( + f.apply(this.value), + () -> Iterators.mappingIterator(tree -> tree.map(f), this.children.iterator())); + } + + public ShrinkTree flatMap(Function> f) { + return ShrinkTree.join(this.map(f)); + } + + public ShrinkTree filter(Predicate predicate) { + if (predicate.test(this.getValue())) { + return new ShrinkTree<>( + this.getValue(), + () -> Iterators.mappingIterator(tree -> tree.filter(predicate), + Iterators.filteringIterator( + tree -> predicate.test(tree.getValue()), + this.getChildren()))); + } else { + throw new IllegalArgumentException("Current value doesn't match predicate: whoops!"); + } + } + + @SuppressWarnings("unused") + public void print(Writer output) throws IOException { + print(output, Object::toString); + } + + @SuppressWarnings("unused") + public void print(Writer output, Function toString) throws IOException { + output.write(toString.apply(this.getValue())); + output.write('['); + for (ShrinkTree child : children) { + child.print(output, toString); + } + output.write(']'); + output.flush(); + } +} -- cgit v1.2.3