blob: 4ea2ee23af29de921a52cfdd48077805f225938a [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.iejoin;
import org.apache.wayang.core.api.Configuration;
import org.apache.wayang.core.mapping.Mapping;
import org.apache.wayang.core.optimizer.channels.ChannelConversion;
import org.apache.wayang.core.platform.Platform;
import org.apache.wayang.core.plugin.Plugin;
import org.apache.wayang.iejoin.mapping.Mappings;
import org.apache.wayang.iejoin.operators.IEJoinOperator;
import org.apache.wayang.iejoin.operators.IESelfJoinOperator;
import org.apache.wayang.java.Java;
import org.apache.wayang.java.platform.JavaPlatform;
import org.apache.wayang.spark.Spark;
import org.apache.wayang.spark.platform.SparkPlatform;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
/**
* Provides {@link Plugin}s that enable usage of the {@link IEJoinOperator} and the {@link IESelfJoinOperator}.
*/
public class IEJoin {
/**
* Enables use with the {@link JavaPlatform} and {@link SparkPlatform}.
*/
private static final Plugin PLUGIN = new Plugin() {
@Override
public Collection<Platform> getRequiredPlatforms() {
return Arrays.asList(Java.platform(), Spark.platform());
}
@Override
public Collection<Mapping> getMappings() {
Collection<Mapping> mappings = new ArrayList<>();
mappings.addAll(Mappings.javaMappings);
mappings.addAll(Mappings.sparkMappings);
return mappings;
}
@Override
public Collection<ChannelConversion> getChannelConversions() {
return Collections.emptyList();
}
@Override
public void setProperties(Configuration configuration) {
}
};
/**
* Retrieve a {@link Plugin} to use {@link IEJoinOperator} and {@link IESelfJoinOperator} on the
* {@link JavaPlatform} and {@link SparkPlatform}.
*
* @return the {@link Plugin}
*/
public static Plugin plugin() {
return PLUGIN;
}
/**
* Enables use with the {@link JavaPlatform}.
*/
private static final Plugin JAVA_PLUGIN = new Plugin() {
@Override
public Collection<Platform> getRequiredPlatforms() {
return Collections.singleton(Java.platform());
}
@Override
public Collection<Mapping> getMappings() {
return Mappings.javaMappings;
}
@Override
public Collection<ChannelConversion> getChannelConversions() {
return Collections.emptyList();
}
@Override
public void setProperties(Configuration configuration) {
}
};
/**
* Retrieve a {@link Plugin} to use {@link IEJoinOperator} and {@link IESelfJoinOperator} on the
* and {@link JavaPlatform}.
*
* @return the {@link Plugin}
*/
public static Plugin javaPlugin() {
return JAVA_PLUGIN;
}
/**
* Enables use with the {@link SparkPlatform}.
*/
public static final Plugin SPARK_PLUGIN = new Plugin() {
@Override
public Collection<Platform> getRequiredPlatforms() {
return Collections.singleton(Spark.platform());
}
@Override
public Collection<Mapping> getMappings() {
return Mappings.sparkMappings;
}
@Override
public Collection<ChannelConversion> getChannelConversions() {
return Collections.emptyList();
}
@Override
public void setProperties(Configuration configuration) {
}
};
/**
* Retrieve a {@link Plugin} to use {@link IEJoinOperator} and {@link IESelfJoinOperator} on the
* and {@link SparkPlatform}.
*
* @return the {@link Plugin}
*/
public static Plugin sparkPlugin() {
return SPARK_PLUGIN;
}
}