blob: 54b400f08d00cd5909afd1041ffbb739856a6f7a [file] [log] [blame]
/*
* 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.beam.runners.spark.structuredstreaming.translation.helpers;
import org.apache.spark.sql.Encoder;
import org.apache.spark.sql.catalyst.encoders.ExpressionEncoder;
import org.apache.spark.sql.catalyst.expressions.Expression;
import org.apache.spark.sql.catalyst.expressions.objects.StaticInvoke;
import org.apache.spark.sql.types.DataType;
import scala.collection.immutable.List;
import scala.collection.immutable.Nil$;
import scala.collection.mutable.WrappedArray;
import scala.reflect.ClassTag$;
public class EncoderFactory {
static <T> Encoder<T> create(
Expression serializer, Expression deserializer, Class<? super T> clazz) {
// TODO Isolate usage of Scala APIs in utility https://github.com/apache/beam/issues/22382
List<Expression> serializers = Nil$.MODULE$.$colon$colon(serializer);
return new ExpressionEncoder<>(
SchemaHelpers.binarySchema(),
false,
serializers,
deserializer,
ClassTag$.MODULE$.apply(clazz));
}
/**
* Invoke method {@code fun} on Class {@code cls}, immediately propagating {@code null} if any
* input arg is {@code null}.
*/
static Expression invokeIfNotNull(Class<?> cls, String fun, DataType type, Expression... args) {
return new StaticInvoke(cls, type, fun, new WrappedArray.ofRef<>(args), true, true);
}
}