diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/UserDataConverter.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/UserDataConverter.java index e73a45124..1d64b772d 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/UserDataConverter.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/UserDataConverter.java @@ -41,6 +41,8 @@ /** Converts user input into the Firestore Value representation. */ class UserDataConverter { + + static final Value NULL_VALUE = Value.newBuilder().setNullValue(NullValue.NULL_VALUE).build(); private static final Logger LOGGER = Logger.getLogger(UserDataConverter.class.getName()); /** Controls the behavior for field deletes. */ @@ -120,8 +122,9 @@ static Value encodeValue( + " as an argument at field '%s'.", path); return null; + } else if (sanitizedObject == null) { - return Value.newBuilder().setNullValue(NullValue.NULL_VALUE).build(); + return NULL_VALUE; } else if (sanitizedObject instanceof String) { return Value.newBuilder().setStringValue((String) sanitizedObject).build(); } else if (sanitizedObject instanceof Integer) { diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Accumulator.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Accumulator.java index 61bcb74f2..526902ec3 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Accumulator.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Accumulator.java @@ -17,12 +17,18 @@ package com.google.cloud.firestore.pipeline.expressions; import com.google.api.core.BetaApi; +import com.google.common.collect.ImmutableList; @BetaApi -public interface Accumulator extends Expr { +public abstract class Accumulator extends Function { + + protected Accumulator(String name, ImmutableList params) { + super(name, params); + } + @BetaApi @Override - default ExprWithAlias as(String fieldName) { + public ExprWithAlias as(String fieldName) { return new ExprWithAlias<>(this, fieldName); } } diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/And.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/And.java index 0a2e34fc4..c07a9dc36 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/And.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/And.java @@ -22,7 +22,7 @@ import java.util.List; @BetaApi -public final class And extends Function implements FilterCondition { +public final class And extends FilterCondition { @InternalApi And(List conditions) { super("and", ImmutableList.copyOf(conditions)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContains.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContains.java index 0d77b70e4..801de3022 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContains.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContains.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class ArrayContains extends Function implements FilterCondition { +public final class ArrayContains extends FilterCondition { @InternalApi ArrayContains(Expr array, Expr element) { super( diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContainsAll.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContainsAll.java index 1b2a4bd31..a8d7868f3 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContainsAll.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContainsAll.java @@ -22,7 +22,7 @@ import java.util.List; @BetaApi -public final class ArrayContainsAll extends Function implements FilterCondition { +public final class ArrayContainsAll extends FilterCondition { @InternalApi ArrayContainsAll(Expr array, List elements) { super("array_contains_all", ImmutableList.of(array, new ListOfExprs(elements))); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContainsAny.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContainsAny.java index 2a67fbfeb..c5f30251c 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContainsAny.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ArrayContainsAny.java @@ -22,7 +22,7 @@ import java.util.List; @BetaApi -public final class ArrayContainsAny extends Function implements FilterCondition { +public final class ArrayContainsAny extends FilterCondition { @InternalApi ArrayContainsAny(Expr array, List elements) { super("array_contains_any", ImmutableList.of(array, new ListOfExprs(elements))); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Avg.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Avg.java index e32184062..869e32a7e 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Avg.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Avg.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Avg extends Function implements Accumulator { +public final class Avg extends Accumulator { @InternalApi Avg(Expr value, boolean distinct) { super("avg", ImmutableList.of(value)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Constant.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Constant.java index 5d678a6d2..c31281484 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Constant.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Constant.java @@ -25,13 +25,17 @@ import com.google.cloud.firestore.DocumentReference; import com.google.cloud.firestore.FieldValue; import com.google.cloud.firestore.GeoPoint; +import com.google.common.collect.ImmutableMap; import com.google.firestore.v1.Value; import java.util.Arrays; import java.util.Date; import java.util.Map; @BetaApi -public final class Constant implements Expr { +public final class Constant extends Expr { + + static final Constant NULL = new Constant(null); + private final Object value; Constant(Object value) { @@ -85,16 +89,14 @@ public static Constant of(Value value) { @InternalApi public static Constant nullValue() { - return new Constant(null); + return NULL; } @BetaApi static Constant of(Object value) { if (value == null) { - return new Constant(null); - } - - if (value instanceof String) { + return NULL; + } else if (value instanceof String) { return of((String) value); } else if (value instanceof Number) { return of((Number) value); @@ -112,23 +114,25 @@ static Constant of(Object value) { return of((DocumentReference) value); } else if (value instanceof Value) { return of((Value) value); + } else if (value instanceof Constant) { + return (Constant) value; } else { throw new IllegalArgumentException("Unknown type: " + value); } } @BetaApi - public static Constant of(Iterable value) { + public static Constant of(Iterable value) { return new Constant(value); } @BetaApi - public static Constant of(T[] value) { + public static Constant of(Object[] value) { return new Constant(Arrays.asList(value.clone())); // Convert array to list } @BetaApi - public static Constant of(Map value) { + public static Constant of(Map value) { return new Constant(value); } @@ -137,8 +141,8 @@ public static Constant vector(double[] value) { return new Constant(FieldValue.vector(value)); } - @InternalApi - public Value toProto() { + @Override + Value toProto() { return encodeValue(value); } } diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Count.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Count.java index a709dd420..2419de06b 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Count.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Count.java @@ -22,7 +22,7 @@ import javax.annotation.Nonnull; @BetaApi -public final class Count extends Function implements Accumulator { +public final class Count extends Accumulator { @InternalApi Count(@Nonnull Expr value) { super("count", ImmutableList.of(value)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/CountIf.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/CountIf.java index cff9b7f1f..3b76ba7cd 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/CountIf.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/CountIf.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class CountIf extends Function implements Accumulator { +public final class CountIf extends Accumulator { @InternalApi CountIf(Expr value, boolean distinct) { super("countif", (value != null) ? ImmutableList.of(value) : ImmutableList.of()); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/EndsWith.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/EndsWith.java index ab18544f0..6520788dc 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/EndsWith.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/EndsWith.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class EndsWith extends Function implements FilterCondition { +public final class EndsWith extends FilterCondition { @InternalApi EndsWith(Expr expr, Expr postfix) { super("ends_with", ImmutableList.of(expr, postfix)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Eq.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Eq.java index 7b2ea20fc..153fe990f 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Eq.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Eq.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Eq extends Function implements FilterCondition { +public final class Eq extends FilterCondition { @InternalApi Eq(Expr left, Expr right) { super("eq", ImmutableList.of(left, right == null ? Constant.nullValue() : right)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Exists.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Exists.java index 350c0e512..40507475a 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Exists.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Exists.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Exists extends Function implements FilterCondition { +public final class Exists extends FilterCondition { @InternalApi Exists(Expr expr) { super("exists", ImmutableList.of(expr)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Expr.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Expr.java index 20e8825bb..d0818d2bc 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Expr.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Expr.java @@ -19,6 +19,8 @@ import static com.google.cloud.firestore.pipeline.expressions.FunctionUtils.toExprList; import com.google.api.core.BetaApi; +import com.google.api.core.InternalApi; +import com.google.firestore.v1.Value; import java.util.Arrays; import java.util.List; @@ -40,7 +42,15 @@ * method calls to create complex expressions. */ @BetaApi -public interface Expr { +public abstract class Expr { + + /** Constructor is package-private to prevent extension. */ + Expr() { + } + + private static Expr castToExprOrConvertToConstant(Object o) { + return o instanceof Expr ? (Expr) o : Constant.of(o); + } // Arithmetic Operators @@ -58,7 +68,7 @@ public interface Expr { * @return A new {@code Expr} representing the addition operation. */ @BetaApi - default Add add(Expr other) { + public final Add add(Expr other) { return new Add(this, other); } @@ -76,8 +86,8 @@ default Add add(Expr other) { * @return A new {@code Expr} representing the addition operation. */ @BetaApi - default Add add(Object other) { - return new Add(this, Constant.of(other)); + public final Add add(Object other) { + return new Add(this, castToExprOrConvertToConstant(other)); } /** @@ -94,7 +104,7 @@ default Add add(Object other) { * @return A new {@code Expr} representing the subtraction operation. */ @BetaApi - default Subtract subtract(Expr other) { + public final Subtract subtract(Expr other) { return new Subtract(this, other); } @@ -112,8 +122,8 @@ default Subtract subtract(Expr other) { * @return A new {@code Expr} representing the subtraction operation. */ @BetaApi - default Subtract subtract(Object other) { - return new Subtract(this, Constant.of(other)); + public final Subtract subtract(Object other) { + return new Subtract(this, castToExprOrConvertToConstant(other)); } /** @@ -130,7 +140,7 @@ default Subtract subtract(Object other) { * @return A new {@code Expr} representing the multiplication operation. */ @BetaApi - default Multiply multiply(Expr other) { + public final Multiply multiply(Expr other) { return new Multiply(this, other); } @@ -148,8 +158,8 @@ default Multiply multiply(Expr other) { * @return A new {@code Expr} representing the multiplication operation. */ @BetaApi - default Multiply multiply(Object other) { - return new Multiply(this, Constant.of(other)); + public final Multiply multiply(Object other) { + return new Multiply(this, castToExprOrConvertToConstant(other)); } /** @@ -166,7 +176,7 @@ default Multiply multiply(Object other) { * @return A new {@code Expr} representing the division operation. */ @BetaApi - default Divide divide(Expr other) { + public final Divide divide(Expr other) { return new Divide(this, other); } @@ -184,8 +194,8 @@ default Divide divide(Expr other) { * @return A new {@code Expr} representing the division operation. */ @BetaApi - default Divide divide(Object other) { - return new Divide(this, Constant.of(other)); + public final Divide divide(Object other) { + return new Divide(this, castToExprOrConvertToConstant(other)); } /** @@ -202,7 +212,7 @@ default Divide divide(Object other) { * @return A new {@code Expr} representing the modulo operation. */ @BetaApi - default Mod mod(Expr other) { + public final Mod mod(Expr other) { return new Mod(this, other); } @@ -220,8 +230,8 @@ default Mod mod(Expr other) { * @return A new {@code Expr} representing the modulo operation. */ @BetaApi - default Mod mod(Object other) { - return new Mod(this, Constant.of(other)); + public final Mod mod(Object other) { + return new Mod(this, castToExprOrConvertToConstant(other)); } // /** @@ -257,7 +267,7 @@ default Mod mod(Object other) { // */ // @BetaApi // default BitAnd bitAnd(Object other) { - // return new BitAnd(this, Constant.of(other)); + // return new BitAnd(this, of(other)); // } // // /** @@ -293,7 +303,7 @@ default Mod mod(Object other) { // */ // @BetaApi // default BitOr bitOr(Object other) { - // return new BitOr(this, Constant.of(other)); + // return new BitOr(this, of(other)); // } // // /** @@ -329,7 +339,7 @@ default Mod mod(Object other) { // */ // @BetaApi // default BitXor bitXor(Object other) { - // return new BitXor(this, Constant.of(other)); + // return new BitXor(this, of(other)); // } // // /** @@ -382,7 +392,7 @@ default Mod mod(Object other) { // */ // @BetaApi // default BitLeftShift bitLeftShift(Object other) { - // return new BitLeftShift(this, Constant.of(other)); + // return new BitLeftShift(this, of(other)); // } // // /** @@ -418,7 +428,7 @@ default Mod mod(Object other) { // */ // @BetaApi // default BitRightShift bitRightShift(Object other) { - // return new BitRightShift(this, Constant.of(other)); + // return new BitRightShift(this, of(other)); // } // Logical Functions @@ -440,7 +450,7 @@ default Mod mod(Object other) { * @param other The other expression to compare with. * @return A new {@code Expr} representing the logical max operation. */ - default LogicalMax logicalMax(Expr other) { + public final LogicalMax logicalMax(Expr other) { return new LogicalMax(this, other); } @@ -461,8 +471,8 @@ default LogicalMax logicalMax(Expr other) { * @param other The constant value to compare with. * @return A new {@code Expr} representing the logical max operation. */ - default LogicalMax logicalMax(Object other) { - return new LogicalMax(this, Constant.of(other)); + public final LogicalMax logicalMax(Object other) { + return new LogicalMax(this, castToExprOrConvertToConstant(other)); } /** @@ -482,7 +492,7 @@ default LogicalMax logicalMax(Object other) { * @param other The other expression to compare with. * @return A new {@code Expr} representing the logical min operation. */ - default LogicalMin logicalMin(Expr other) { + public final LogicalMin logicalMin(Expr other) { return new LogicalMin(this, other); } @@ -503,8 +513,8 @@ default LogicalMin logicalMin(Expr other) { * @param other The constant value to compare with. * @return A new {@code Expr} representing the logical min operation. */ - default LogicalMin logicalMin(Object other) { - return new LogicalMin(this, Constant.of(other)); + public final LogicalMin logicalMin(Object other) { + return new LogicalMin(this, castToExprOrConvertToConstant(other)); } // Comparison Operators @@ -523,7 +533,7 @@ default LogicalMin logicalMin(Object other) { * @return A new {@code Expr} representing the equality comparison. */ @BetaApi - default Eq eq(Expr other) { + public final Eq eq(Expr other) { return new Eq(this, other); } @@ -541,8 +551,8 @@ default Eq eq(Expr other) { * @return A new {@code Expr} representing the equality comparison. */ @BetaApi - default Eq eq(Object other) { - return new Eq(this, Constant.of(other)); + public final Eq eq(Object other) { + return new Eq(this, castToExprOrConvertToConstant(other)); } /** @@ -559,7 +569,7 @@ default Eq eq(Object other) { * @return A new {@code Expr} representing the inequality comparison. */ @BetaApi - default Neq neq(Expr other) { + public final Neq neq(Expr other) { return new Neq(this, other); } @@ -577,8 +587,8 @@ default Neq neq(Expr other) { * @return A new {@code Expr} representing the inequality comparison. */ @BetaApi - default Neq neq(Object other) { - return new Neq(this, Constant.of(other)); + public final Neq neq(Object other) { + return new Neq(this, castToExprOrConvertToConstant(other)); } /** @@ -595,7 +605,7 @@ default Neq neq(Object other) { * @return A new {@code Expr} representing the greater than comparison. */ @BetaApi - default Gt gt(Expr other) { + public final Gt gt(Expr other) { return new Gt(this, other); } @@ -613,8 +623,8 @@ default Gt gt(Expr other) { * @return A new {@code Expr} representing the greater than comparison. */ @BetaApi - default Gt gt(Object other) { - return new Gt(this, Constant.of(other)); + public final Gt gt(Object other) { + return new Gt(this, castToExprOrConvertToConstant(other)); } /** @@ -632,7 +642,7 @@ default Gt gt(Object other) { * @return A new {@code Expr} representing the greater than or equal to comparison. */ @BetaApi - default Gte gte(Expr other) { + public final Gte gte(Expr other) { return new Gte(this, other); } @@ -651,8 +661,8 @@ default Gte gte(Expr other) { * @return A new {@code Expr} representing the greater than or equal to comparison. */ @BetaApi - default Gte gte(Object other) { - return new Gte(this, Constant.of(other)); + public final Gte gte(Object other) { + return new Gte(this, castToExprOrConvertToConstant(other)); } /** @@ -669,7 +679,7 @@ default Gte gte(Object other) { * @return A new {@code Expr} representing the less than comparison. */ @BetaApi - default Lt lt(Expr other) { + public final Lt lt(Expr other) { return new Lt(this, other); } @@ -687,8 +697,8 @@ default Lt lt(Expr other) { * @return A new {@code Expr} representing the less than comparison. */ @BetaApi - default Lt lt(Object other) { - return new Lt(this, Constant.of(other)); + public final Lt lt(Object other) { + return new Lt(this, castToExprOrConvertToConstant(other)); } /** @@ -706,7 +716,7 @@ default Lt lt(Object other) { * @return A new {@code Expr} representing the less than or equal to comparison. */ @BetaApi - default Lte lte(Expr other) { + public final Lte lte(Expr other) { return new Lte(this, other); } @@ -724,8 +734,8 @@ default Lte lte(Expr other) { * @return A new {@code Expr} representing the less than or equal to comparison. */ @BetaApi - default Lte lte(Object other) { - return new Lte(this, Constant.of(other)); + public final Lte lte(Object other) { + return new Lte(this, castToExprOrConvertToConstant(other)); } // IN operator @@ -744,7 +754,7 @@ default Lte lte(Object other) { * @return A new {@code Expr} representing the 'IN' comparison. */ @BetaApi - default In inAny(Object... other) { + public final In inAny(Object... other) { return new In(this, toExprList(other)); } @@ -763,7 +773,7 @@ default In inAny(Object... other) { * @return A new {@code Expr} representing the 'NOT IN' comparison. */ @BetaApi - default Not notInAny(Object... other) { + public final Not notInAny(Object... other) { return new Not(inAny(other)); } @@ -783,7 +793,7 @@ default Not notInAny(Object... other) { * @return A new {@code Expr} representing the concatenated array. */ @BetaApi - default ArrayConcat arrayConcat(List array) { + public final ArrayConcat arrayConcat(List array) { return new ArrayConcat(this, toExprList(array.toArray())); } @@ -801,7 +811,7 @@ default ArrayConcat arrayConcat(List array) { * @return A new {@code Expr} representing the 'array_contains' comparison. */ @BetaApi - default ArrayContains arrayContains(Expr element) { + public final ArrayContains arrayContains(Expr element) { return new ArrayContains(this, element); } @@ -819,8 +829,8 @@ default ArrayContains arrayContains(Expr element) { * @return A new {@code Expr} representing the 'array_contains' comparison. */ @BetaApi - default ArrayContains arrayContains(Object element) { - return new ArrayContains(this, Constant.of(element)); + public final ArrayContains arrayContains(Object element) { + return new ArrayContains(this, castToExprOrConvertToConstant(element)); } /** @@ -837,7 +847,7 @@ default ArrayContains arrayContains(Object element) { * @return A new {@code Expr} representing the 'array_contains_all' comparison. */ @BetaApi - default ArrayContainsAll arrayContainsAll(Expr... elements) { + public final ArrayContainsAll arrayContainsAll(Expr... elements) { return new ArrayContainsAll(this, Arrays.asList(elements)); } @@ -855,7 +865,7 @@ default ArrayContainsAll arrayContainsAll(Expr... elements) { * @return A new {@code Expr} representing the 'array_contains_all' comparison. */ @BetaApi - default ArrayContainsAll arrayContainsAll(Object... elements) { + public final ArrayContainsAll arrayContainsAll(Object... elements) { return new ArrayContainsAll(this, toExprList(elements)); } @@ -873,7 +883,7 @@ default ArrayContainsAll arrayContainsAll(Object... elements) { * @return A new {@code Expr} representing the 'array_contains_any' comparison. */ @BetaApi - default ArrayContainsAny arrayContainsAny(Expr... elements) { + public final ArrayContainsAny arrayContainsAny(Expr... elements) { return new ArrayContainsAny(this, Arrays.asList(elements)); } @@ -892,7 +902,7 @@ default ArrayContainsAny arrayContainsAny(Expr... elements) { * @return A new {@code Expr} representing the 'array_contains_any' comparison. */ @BetaApi - default ArrayContainsAny arrayContainsAny(Object... elements) { + public final ArrayContainsAny arrayContainsAny(Object... elements) { return new ArrayContainsAny(this, toExprList(elements)); } @@ -909,7 +919,7 @@ default ArrayContainsAny arrayContainsAny(Object... elements) { * @return A new {@code Expr} representing the length of the array. */ @BetaApi - default ArrayLength arrayLength() { + public final ArrayLength arrayLength() { return new ArrayLength(this); } @@ -926,7 +936,7 @@ default ArrayLength arrayLength() { * @return A new {@code Expr} representing the length of the array. */ @BetaApi - default ArrayReverse arrayReverse() { + public final ArrayReverse arrayReverse() { return new ArrayReverse(this); } @@ -945,7 +955,7 @@ default ArrayReverse arrayReverse() { * @return A new {@code Expr} representing the 'isNaN' check. */ @BetaApi - default IsNaN isNaN() { + public final IsNaN isNaN() { return new IsNaN(this); } @@ -962,7 +972,7 @@ default IsNaN isNaN() { * @return A new {@code Expr} representing the 'exists' check. */ @BetaApi - default Exists exists() { + public final Exists exists() { return new Exists(this); } @@ -981,7 +991,7 @@ default Exists exists() { * @return A new {@code Accumulator} representing the 'sum' aggregation. */ @BetaApi - default Sum sum() { + public final Sum sum() { return new Sum(this, false); } @@ -999,7 +1009,7 @@ default Sum sum() { * @return A new {@code Accumulator} representing the 'avg' aggregation. */ @BetaApi - default Avg avg() { + public final Avg avg() { return new Avg(this, false); } @@ -1017,7 +1027,7 @@ default Avg avg() { * @return A new {@code Accumulator} representing the 'count' aggregation. */ @BetaApi - default Count count() { + public final Count count() { return new Count(this); } @@ -1034,7 +1044,7 @@ default Count count() { * @return A new {@code Accumulator} representing the 'min' aggregation. */ @BetaApi - default Min min() { + public final Min min() { return new Min(this, false); } @@ -1051,7 +1061,7 @@ default Min min() { * @return A new {@code Accumulator} representing the 'max' aggregation. */ @BetaApi - default Max max() { + public final Max max() { return new Max(this, false); } @@ -1070,7 +1080,7 @@ default Max max() { * @return A new {@code Expr} representing the length of the string. */ @BetaApi - default CharLength charLength() { + public final CharLength charLength() { return new CharLength(this); } @@ -1087,7 +1097,7 @@ default CharLength charLength() { * @return A new {@code Expr} representing the byte length of the string. */ @BetaApi - default ByteLength byteLength() { + public final ByteLength byteLength() { return new ByteLength(this); } @@ -1105,7 +1115,7 @@ default ByteLength byteLength() { * @return A new {@code Expr} representing the 'like' comparison. */ @BetaApi - default Like like(String pattern) { + public final Like like(String pattern) { return new Like(this, Constant.of(pattern)); } @@ -1123,7 +1133,7 @@ default Like like(String pattern) { * @return A new {@code Expr} representing the 'like' comparison. */ @BetaApi - default Like like(Expr pattern) { + public final Like like(Expr pattern) { return new Like(this, pattern); } @@ -1142,7 +1152,7 @@ default Like like(Expr pattern) { * @return A new {@code Expr} representing the 'contains' comparison. */ @BetaApi - default RegexContains regexContains(String regex) { + public final RegexContains regexContains(String regex) { return new RegexContains(this, Constant.of(regex)); } @@ -1161,7 +1171,7 @@ default RegexContains regexContains(String regex) { * @return A new {@code Expr} representing the 'contains' comparison. */ @BetaApi - default RegexContains regexContains(Expr regex) { + public final RegexContains regexContains(Expr regex) { return new RegexContains(this, regex); } @@ -1179,7 +1189,7 @@ default RegexContains regexContains(Expr regex) { * @return A new {@code Expr} representing the regular expression match. */ @BetaApi - default RegexMatch regexMatches(String regex) { + public final RegexMatch regexMatches(String regex) { return new RegexMatch(this, Constant.of(regex)); } @@ -1197,7 +1207,7 @@ default RegexMatch regexMatches(String regex) { * @return A new {@code Expr} representing the regular expression match. */ @BetaApi - default RegexMatch regexMatches(Expr regex) { + public final RegexMatch regexMatches(Expr regex) { return new RegexMatch(this, regex); } @@ -1215,7 +1225,7 @@ default RegexMatch regexMatches(Expr regex) { * @return A new {@code Expr} representing the 'contains' comparison. */ @BetaApi - default StrContains strContains(String substring) { + public final StrContains strContains(String substring) { return new StrContains(this, Constant.of(substring)); } @@ -1234,7 +1244,7 @@ default StrContains strContains(String substring) { * @return A new {@code Expr} representing the 'contains' comparison. */ @BetaApi - default StrContains strContains(Expr expr) { + public final StrContains strContains(Expr expr) { return new StrContains(this, expr); } @@ -1252,7 +1262,7 @@ default StrContains strContains(Expr expr) { * @return A new {@code Expr} representing the 'starts with' comparison. */ @BetaApi - default StartsWith startsWith(String prefix) { + public final StartsWith startsWith(String prefix) { return new StartsWith(this, Constant.of(prefix)); } @@ -1271,7 +1281,7 @@ default StartsWith startsWith(String prefix) { * @return A new {@code Expr} representing the 'starts with' comparison. */ @BetaApi - default StartsWith startsWith(Expr prefix) { + public final StartsWith startsWith(Expr prefix) { return new StartsWith(this, prefix); } @@ -1289,7 +1299,7 @@ default StartsWith startsWith(Expr prefix) { * @return A new {@code Expr} representing the 'ends with' comparison. */ @BetaApi - default EndsWith endsWith(String postfix) { + public final EndsWith endsWith(String postfix) { return new EndsWith(this, Constant.of(postfix)); } @@ -1308,7 +1318,7 @@ default EndsWith endsWith(String postfix) { * @return A new {@code Expr} representing the 'ends with' comparison. */ @BetaApi - default EndsWith endsWith(Expr postfix) { + public final EndsWith endsWith(Expr postfix) { return new EndsWith(this, postfix); } @@ -1326,7 +1336,7 @@ default EndsWith endsWith(Expr postfix) { * @return A new {@code Expr} representing the concatenated string. */ @BetaApi - default StrConcat strConcat(Expr... elements) { + public final StrConcat strConcat(Expr... elements) { return new StrConcat(this, Arrays.asList(elements)); } @@ -1344,7 +1354,7 @@ default StrConcat strConcat(Expr... elements) { * @return A new {@code Expr} representing the concatenated string. */ @BetaApi - default StrConcat strConcat(Object... elements) { + public final StrConcat strConcat(Object... elements) { return new StrConcat(this, toExprList(elements)); } @@ -1361,7 +1371,7 @@ default StrConcat strConcat(Object... elements) { * @return A new {@code Expr} representing the lowercase string. */ @BetaApi - default ToLower toLower() { + public final ToLower toLower() { return new ToLower(this); } @@ -1378,7 +1388,7 @@ default ToLower toLower() { * @return A new {@code Expr} representing the uppercase string. */ @BetaApi - default ToUpper toUpper() { + public final ToUpper toUpper() { return new ToUpper(this); } @@ -1395,7 +1405,7 @@ default ToUpper toUpper() { * @return A new {@code Expr} representing the trimmed string. */ @BetaApi - default Trim trim() { + public final Trim trim() { return new Trim(this); } @@ -1412,7 +1422,7 @@ default Trim trim() { * @return A new {@code Expr} representing the reversed string. */ @BetaApi - default Reverse reverse() { + public final Reverse reverse() { return new Reverse(this); } @@ -1432,7 +1442,7 @@ default Reverse reverse() { * @return A new {@code Expr} representing the string with the first occurrence replaced. */ @BetaApi - default ReplaceFirst replaceFirst(String find, String replace) { + public final ReplaceFirst replaceFirst(String find, String replace) { return new ReplaceFirst(this, Constant.of(find), Constant.of(replace)); } @@ -1454,7 +1464,7 @@ default ReplaceFirst replaceFirst(String find, String replace) { * @return A new {@code Expr} representing the string with the first occurrence replaced. */ @BetaApi - default ReplaceFirst replaceFirst(Expr find, Expr replace) { + public final ReplaceFirst replaceFirst(Expr find, Expr replace) { return new ReplaceFirst(this, find, replace); } @@ -1474,7 +1484,7 @@ default ReplaceFirst replaceFirst(Expr find, Expr replace) { * @return A new {@code Expr} representing the string with all occurrences replaced. */ @BetaApi - default ReplaceAll replaceAll(String find, String replace) { + public final ReplaceAll replaceAll(String find, String replace) { return new ReplaceAll(this, Constant.of(find), Constant.of(replace)); } @@ -1496,7 +1506,7 @@ default ReplaceAll replaceAll(String find, String replace) { * @return A new {@code Expr} representing the string with all occurrences replaced. */ @BetaApi - default ReplaceAll replaceAll(Expr find, Expr replace) { + public final ReplaceAll replaceAll(Expr find, Expr replace) { return new ReplaceAll(this, find, replace); } @@ -1517,7 +1527,7 @@ default ReplaceAll replaceAll(Expr find, Expr replace) { * @return A new {@code Expr} representing the value associated with the given key in the map. */ @BetaApi - default MapGet mapGet(String key) { + public final MapGet mapGet(String key) { return new MapGet(this, key); } @@ -1535,7 +1545,7 @@ default MapGet mapGet(String key) { * @return A new {@code Expr} representing the cosine distance between the two vectors. */ @BetaApi - default CosineDistance cosineDistance(Expr other) { + public final CosineDistance cosineDistance(Expr other) { return new CosineDistance(this, other); } @@ -1553,7 +1563,7 @@ default CosineDistance cosineDistance(Expr other) { * @return A new {@code Expr} representing the Cosine distance between the two vectors. */ @BetaApi - default CosineDistance cosineDistance(double[] other) { + public final CosineDistance cosineDistance(double[] other) { return new CosineDistance(this, Constant.vector(other)); } @@ -1571,7 +1581,7 @@ default CosineDistance cosineDistance(double[] other) { * @return A new {@code Expr} representing the Euclidean distance between the two vectors. */ @BetaApi - default EuclideanDistance euclideanDistance(double[] other) { + public final EuclideanDistance euclideanDistance(double[] other) { return new EuclideanDistance(this, Constant.vector(other)); } @@ -1589,7 +1599,7 @@ default EuclideanDistance euclideanDistance(double[] other) { * @return A new {@code Expr} representing the Euclidean distance between the two vectors. */ @BetaApi - default EuclideanDistance euclideanDistance(Expr other) { + public final EuclideanDistance euclideanDistance(Expr other) { return new EuclideanDistance(this, other); } @@ -1607,7 +1617,7 @@ default EuclideanDistance euclideanDistance(Expr other) { * @return A new {@code Expr} representing the dot product between the two vectors. */ @BetaApi - default DotProduct dotProduct(double[] other) { + public final DotProduct dotProduct(double[] other) { return new DotProduct(this, Constant.vector(other)); } @@ -1625,7 +1635,7 @@ default DotProduct dotProduct(double[] other) { * @return A new {@code Expr} representing the dot product between the two vectors. */ @BetaApi - default DotProduct dotProduct(Expr other) { + public final DotProduct dotProduct(Expr other) { return new DotProduct(this, other); } @@ -1642,7 +1652,7 @@ default DotProduct dotProduct(Expr other) { * @return A new {@code Expr} representing the length of the array. */ @BetaApi - default VectorLength vectorLength() { + public final VectorLength vectorLength() { return new VectorLength(this); } @@ -1664,7 +1674,7 @@ default VectorLength vectorLength() { * @return A new {@code Expr} representing the number of microseconds since the epoch. */ @BetaApi - default TimestampToUnixMicros timestampToUnixMicros() { + public final TimestampToUnixMicros timestampToUnixMicros() { return new TimestampToUnixMicros(this); } @@ -1682,7 +1692,7 @@ default TimestampToUnixMicros timestampToUnixMicros() { * @return A new {@code Expr} representing the timestamp. */ @BetaApi - default UnixMicrosToTimestamp unixMicrosToTimestamp() { + public final UnixMicrosToTimestamp unixMicrosToTimestamp() { return new UnixMicrosToTimestamp(this); } @@ -1702,7 +1712,7 @@ default UnixMicrosToTimestamp unixMicrosToTimestamp() { * @return A new {@code Expr} representing the number of milliseconds since the epoch. */ @BetaApi - default TimestampToUnixMillis timestampToUnixMillis() { + public final TimestampToUnixMillis timestampToUnixMillis() { return new TimestampToUnixMillis(this); } @@ -1720,7 +1730,7 @@ default TimestampToUnixMillis timestampToUnixMillis() { * @return A new {@code Expr} representing the timestamp. */ @BetaApi - default UnixMillisToTimestamp unixMillisToTimestamp() { + public final UnixMillisToTimestamp unixMillisToTimestamp() { return new UnixMillisToTimestamp(this); } @@ -1740,7 +1750,7 @@ default UnixMillisToTimestamp unixMillisToTimestamp() { * @return A new {@code Expr} representing the number of seconds since the epoch. */ @BetaApi - default TimestampToUnixSeconds timestampToUnixSeconds() { + public final TimestampToUnixSeconds timestampToUnixSeconds() { return new TimestampToUnixSeconds(this); } @@ -1758,7 +1768,7 @@ default TimestampToUnixSeconds timestampToUnixSeconds() { * @return A new {@code Expr} representing the timestamp. */ @BetaApi - default UnixSecondsToTimestamp unixSecondsToTimestamp() { + public final UnixSecondsToTimestamp unixSecondsToTimestamp() { return new UnixSecondsToTimestamp(this); } @@ -1778,7 +1788,7 @@ default UnixSecondsToTimestamp unixSecondsToTimestamp() { * @return A new {@code Expr} representing the resulting timestamp. */ @BetaApi - default TimestampAdd timestampAdd(Expr unit, Expr amount) { + public final TimestampAdd timestampAdd(Expr unit, Expr amount) { return new TimestampAdd(this, unit, amount); } @@ -1798,7 +1808,7 @@ default TimestampAdd timestampAdd(Expr unit, Expr amount) { * @return A new {@code Expr} representing the resulting timestamp. */ @BetaApi - default TimestampAdd timestampAdd(String unit, Double amount) { + public final TimestampAdd timestampAdd(String unit, Double amount) { return new TimestampAdd(this, Constant.of(unit), Constant.of(amount)); } @@ -1818,7 +1828,7 @@ default TimestampAdd timestampAdd(String unit, Double amount) { * @return A new {@code Expr} representing the resulting timestamp. */ @BetaApi - default TimestampSub timestampSub(Expr unit, Expr amount) { + public final TimestampSub timestampSub(Expr unit, Expr amount) { return new TimestampSub(this, unit, amount); } @@ -1838,7 +1848,7 @@ default TimestampSub timestampSub(Expr unit, Expr amount) { * @return A new {@code Expr} representing the resulting timestamp. */ @BetaApi - default TimestampSub timestampSub(String unit, Double amount) { + public final TimestampSub timestampSub(String unit, Double amount) { return new TimestampSub(this, Constant.of(unit), Constant.of(amount)); } @@ -1858,7 +1868,7 @@ default TimestampSub timestampSub(String unit, Double amount) { * @return A new {@code Ordering} for ascending sorting. */ @BetaApi - default Ordering ascending() { + public final Ordering ascending() { return Ordering.ascending(this); } @@ -1876,7 +1886,7 @@ default Ordering ascending() { * @return A new {@code Ordering} for descending sorting. */ @BetaApi - default Ordering descending() { + public final Ordering descending() { return Ordering.descending(this); } @@ -1901,7 +1911,10 @@ default Ordering descending() { * expression and associates it with the provided alias. */ @BetaApi - default Selectable as(String alias) { + public Selectable as(String alias) { return new ExprWithAlias<>(this, alias); } + + @InternalApi + abstract Value toProto(); } diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ExprWithAlias.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ExprWithAlias.java index c248937c3..e629a7261 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ExprWithAlias.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ExprWithAlias.java @@ -17,9 +17,10 @@ package com.google.cloud.firestore.pipeline.expressions; import com.google.api.core.InternalApi; +import com.google.firestore.v1.Value; @InternalApi -public final class ExprWithAlias implements Expr, Selectable { +public final class ExprWithAlias extends Expr implements Selectable { private final String alias; private final T expr; @@ -44,4 +45,9 @@ public T getExpr() { public Selectable as(String alias) { return new ExprWithAlias<>(this.expr, alias); } + + @Override + Value toProto() { + return expr.toProto(); + } } diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Field.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Field.java index 02a5db2e0..a68121eb9 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Field.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Field.java @@ -22,6 +22,7 @@ import com.google.cloud.firestore.Pipeline; import com.google.common.base.Objects; import com.google.firestore.v1.Value; +import java.util.Map; import javax.annotation.Nullable; /** @@ -41,7 +42,7 @@ * } */ @BetaApi -public final class Field implements Expr, Selectable { +public final class Field extends Expr implements Selectable { public static final String DOCUMENT_ID = "__name__"; private final FieldPath path; @Nullable private Pipeline pipeline; // Nullable @@ -49,7 +50,6 @@ public final class Field implements Expr, Selectable { private Field(FieldPath path) { this.path = path; } - /** * Creates a {@code Field} instance representing the field at the given path. * diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/FilterCondition.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/FilterCondition.java index 748fba460..c772733fb 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/FilterCondition.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/FilterCondition.java @@ -17,6 +17,12 @@ package com.google.cloud.firestore.pipeline.expressions; import com.google.api.core.BetaApi; +import com.google.common.collect.ImmutableList; @BetaApi -public interface FilterCondition extends Expr {} +public abstract class FilterCondition extends Function { + + FilterCondition(String name, ImmutableList params) { + super(name, params); + } +} diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Function.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Function.java index 1f8ba602f..5be768012 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Function.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Function.java @@ -44,16 +44,17 @@ *

You can chain together these static functions to create more complex expressions. */ @BetaApi -public class Function implements Expr { +public class Function extends Expr { private final String name; private final List params; - protected Function(String name, ImmutableList params) { + Function(String name, ImmutableList params) { this.name = name; this.params = Collections.unmodifiableList(params); } @InternalApi + @Override Value toProto() { return Value.newBuilder() .setFunctionValue( diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/FunctionUtils.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/FunctionUtils.java index 4f1e85cec..0cb590126 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/FunctionUtils.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/FunctionUtils.java @@ -17,7 +17,6 @@ package com.google.cloud.firestore.pipeline.expressions; import com.google.api.core.InternalApi; -import com.google.firestore.v1.ArrayValue; import com.google.firestore.v1.Value; import java.util.Arrays; import java.util.List; @@ -27,29 +26,7 @@ public final class FunctionUtils { @InternalApi public static Value exprToValue(Expr expr) { - if (expr == null) { - return Constant.of((String) null).toProto(); - } else if (expr instanceof ExprWithAlias) { - return exprToValue(((ExprWithAlias) expr).getExpr()); - } else if (expr instanceof Constant) { - return ((Constant) expr).toProto(); - } else if (expr instanceof Field) { - return ((Field) expr).toProto(); - } else if (expr instanceof Function) { - return ((Function) expr).toProto(); - } else if (expr instanceof ListOfExprs) { - ListOfExprs listOfExprs = (ListOfExprs) expr; - return Value.newBuilder() - .setArrayValue( - ArrayValue.newBuilder() - .addAllValues( - listOfExprs.getConditions().stream() - .map(FunctionUtils::exprToValue) - .collect(Collectors.toList()))) - .build(); - } else { - throw new IllegalArgumentException("Unsupported expression type: " + expr.getClass()); - } + return (expr == null ? Constant.NULL : expr).toProto(); } @InternalApi diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Gt.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Gt.java index a4e289212..7806178a3 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Gt.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Gt.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Gt extends Function implements FilterCondition { +public final class Gt extends FilterCondition { @InternalApi Gt(Expr left, Expr right) { super("gt", ImmutableList.of(left, right == null ? Constant.nullValue() : right)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Gte.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Gte.java index 32481120c..7499d6fa8 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Gte.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Gte.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Gte extends Function implements FilterCondition { +public final class Gte extends FilterCondition { @InternalApi Gte(Expr left, Expr right) { super("gte", ImmutableList.of(left, right == null ? Constant.nullValue() : right)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/If.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/If.java index 1b6327f75..ac8a1d405 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/If.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/If.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class If extends Function implements FilterCondition { +public final class If extends FilterCondition { @InternalApi If(FilterCondition condition, Expr trueExpr, Expr falseExpr) { super( diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/In.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/In.java index 9b3e58cd5..4f001b241 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/In.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/In.java @@ -22,7 +22,7 @@ import java.util.List; @BetaApi -public final class In extends Function implements FilterCondition { +public final class In extends FilterCondition { @InternalApi In(Expr left, List others) { super("in", ImmutableList.of(left, new ListOfExprs(others))); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/IsNaN.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/IsNaN.java index d0eefb8be..92c78cd1a 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/IsNaN.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/IsNaN.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class IsNaN extends Function implements FilterCondition { +public final class IsNaN extends FilterCondition { @InternalApi IsNaN(Expr value) { super("is_nan", ImmutableList.of(value)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Like.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Like.java index ae4241b55..c3768520e 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Like.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Like.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Like extends Function implements FilterCondition { +public final class Like extends FilterCondition { @InternalApi Like(Expr expr, Expr pattern) { super("like", ImmutableList.of(expr, pattern)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ListOfExprs.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ListOfExprs.java index d895a0bf3..46c08d2bb 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ListOfExprs.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/ListOfExprs.java @@ -18,10 +18,13 @@ import com.google.api.core.InternalApi; import com.google.common.collect.ImmutableList; +import com.google.firestore.v1.ArrayValue; +import com.google.firestore.v1.Value; import java.util.List; +import java.util.stream.Collectors; @InternalApi -public final class ListOfExprs implements Expr { +public final class ListOfExprs extends Expr { private final ImmutableList conditions; @InternalApi @@ -33,4 +36,14 @@ public final class ListOfExprs implements Expr { public List getConditions() { return conditions; } + + @Override + Value toProto() { + Value.Builder builder = Value.newBuilder(); + ArrayValue.Builder arrayBuilder = builder.getArrayValueBuilder(); + for (Expr condition : conditions) { + arrayBuilder.addValues(condition.toProto()); + } + return builder.build(); + } } diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Lt.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Lt.java index f88b05736..061f9c5e1 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Lt.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Lt.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Lt extends Function implements FilterCondition { +public final class Lt extends FilterCondition { @InternalApi Lt(Expr left, Expr right) { super("lt", ImmutableList.of(left, right == null ? Constant.nullValue() : right)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Lte.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Lte.java index d31f72bf1..337074d80 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Lte.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Lte.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Lte extends Function implements FilterCondition { +public final class Lte extends FilterCondition { @InternalApi Lte(Expr left, Expr right) { super("lte", ImmutableList.of(left, right == null ? Constant.nullValue() : right)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Max.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Max.java index 0ec9cb92e..89833eefe 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Max.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Max.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Max extends Function implements Accumulator { +public final class Max extends Accumulator { @InternalApi Max(Expr value, boolean distinct) { super("max", ImmutableList.of(value)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Min.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Min.java index 67fa34a7c..40b9db439 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Min.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Min.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Min extends Function implements Accumulator { +public final class Min extends Accumulator { @InternalApi Min(Expr value, boolean distinct) { super("min", ImmutableList.of(value)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Neq.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Neq.java index 961727d23..478a72c11 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Neq.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Neq.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Neq extends Function implements FilterCondition { +public final class Neq extends FilterCondition { @InternalApi Neq(Expr left, Expr right) { super("neq", ImmutableList.of(left, right == null ? Constant.nullValue() : right)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Not.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Not.java index 477a8559c..e072ab120 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Not.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Not.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Not extends Function implements FilterCondition { +public final class Not extends FilterCondition { @InternalApi Not(Expr condition) { super("not", ImmutableList.of(condition)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Or.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Or.java index a9f9357f1..f46c23a40 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Or.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Or.java @@ -22,7 +22,7 @@ import java.util.List; @BetaApi -public final class Or extends Function implements FilterCondition { +public final class Or extends FilterCondition { @InternalApi Or(List conditions) { super("or", ImmutableList.copyOf(conditions)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/RegexContains.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/RegexContains.java index 81ca5ddb4..ececfb08c 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/RegexContains.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/RegexContains.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class RegexContains extends Function implements FilterCondition { +public final class RegexContains extends FilterCondition { @InternalApi RegexContains(Expr expr, Expr regex) { super("regex_contains", ImmutableList.of(expr, regex)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/RegexMatch.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/RegexMatch.java index 3a90b6ad8..c7634ad3e 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/RegexMatch.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/RegexMatch.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class RegexMatch extends Function implements FilterCondition { +public final class RegexMatch extends FilterCondition { @InternalApi RegexMatch(Expr expr, Expr regex) { super("regex_match", ImmutableList.of(expr, regex)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/StartsWith.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/StartsWith.java index 590d1bf53..20bda29d6 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/StartsWith.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/StartsWith.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class StartsWith extends Function implements FilterCondition { +public final class StartsWith extends FilterCondition { @InternalApi StartsWith(Expr expr, Expr prefix) { super("starts_with", ImmutableList.of(expr, prefix)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/StrContains.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/StrContains.java index cc0fe97c9..1f3e072c0 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/StrContains.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/StrContains.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class StrContains extends Function implements FilterCondition { +public final class StrContains extends FilterCondition { @InternalApi StrContains(Expr expr, Expr substring) { super("str_contains", ImmutableList.of(expr, substring)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Sum.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Sum.java index 6a1a7796e..8fc996ca5 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Sum.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Sum.java @@ -21,7 +21,7 @@ import com.google.common.collect.ImmutableList; @BetaApi -public final class Sum extends Function implements Accumulator { +public final class Sum extends Accumulator { @InternalApi Sum(Expr value, boolean distinct) { super("sum", ImmutableList.of(value)); diff --git a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Xor.java b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Xor.java index 6a1312205..14b306e95 100644 --- a/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Xor.java +++ b/google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Xor.java @@ -22,7 +22,7 @@ import java.util.List; @BetaApi -public final class Xor extends Function implements FilterCondition { +public final class Xor extends FilterCondition { @InternalApi Xor(List conditions) { super("xor", ImmutableList.copyOf(conditions));