blob: 7f51a161090f7710809b04a3d1eeb1cc7cf01b1f [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.wayang.basic.operators;
import java.util.Optional;
import org.apache.wayang.core.api.Configuration;
import org.apache.wayang.core.optimizer.cardinality.CardinalityEstimator;
import org.apache.wayang.core.optimizer.cardinality.FixedSizeCardinalityEstimator;
import org.apache.wayang.core.plan.wayangplan.UnaryToUnaryOperator;
import org.apache.wayang.core.types.DataSetType;
/**
* This operator groups the elements of a data set into a single data quantum.
*/
public class GlobalMaterializedGroupOperator<Type> extends UnaryToUnaryOperator<Type, Iterable<Type>> {
/**
* Creates a new instance.
*
* @param typeClass the class of data quanta being grouped
*/
public GlobalMaterializedGroupOperator(Class<Type> typeClass) {
this(DataSetType.createDefault(typeClass), DataSetType.createGrouped(typeClass));
}
/**
* Creates a new instance.
*
* @param inputType the input {@link DataSetType} of the new instance
* @param outputType the output {@link DataSetType} of the new instance
*/
public GlobalMaterializedGroupOperator(DataSetType<Type> inputType, DataSetType<Iterable<Type>> outputType) {
super(inputType, outputType, false);
}
/**
* Copies an instance (exclusive of broadcasts).
*
* @param that that should be copied
*/
public GlobalMaterializedGroupOperator(GlobalMaterializedGroupOperator<Type> that) {
super(that);
}
@Override
public Optional<CardinalityEstimator> createCardinalityEstimator(
final int outputIndex,
final Configuration configuration) {
assert outputIndex == 0;
return Optional.of(new FixedSizeCardinalityEstimator(1));
}
}