com.github.dm.jrt.invocation.DelegatingInvocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jroutine Show documentation
Show all versions of jroutine Show documentation
Parallel programming on the go
/*
* Licensed 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 com.github.dm.jrt.invocation;
import com.github.dm.jrt.channel.InvocationChannel;
import com.github.dm.jrt.channel.ResultChannel;
import com.github.dm.jrt.channel.RoutineException;
import com.github.dm.jrt.routine.Routine;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Invocation implementation delegating the execution to another routine.
*
* Created by davide-maestroni on 04/18/2015.
*
* @param the input data type.
* @param the output data type.
*/
public class DelegatingInvocation implements Invocation {
private final DelegationType mDelegationType;
private final Routine mRoutine;
private InvocationChannel mChannel;
/**
* Constructor.
*
* @param routine the routine used to execute this invocation.
* @param delegation the type of routine invocation.
*/
@SuppressWarnings("ConstantConditions")
public DelegatingInvocation(@NotNull final Routine routine,
@NotNull final DelegationType delegation) {
if (routine == null) {
throw new NullPointerException("the routine must not be null");
}
if (delegation == null) {
throw new NullPointerException("the delegation type must not be null");
}
mRoutine = routine;
mDelegationType = delegation;
mChannel = null;
}
/**
* Returns a factory of delegating invocations.
*
* @param routine the routine used to execute this invocation.
* @param delegation the type of routine invocation.
* @param the input data type.
* @param the output data type.
* @return the factory.
*/
@NotNull
@SuppressWarnings("ConstantConditions")
public static InvocationFactory factoryFrom(
@NotNull final Routine routine, @NotNull final DelegationType delegation) {
return new DelegatingInvocationFactory(routine, delegation);
}
public void onAbort(@Nullable final RoutineException reason) {
mChannel.abort(reason);
}
public void onDestroy() {
mRoutine.purge();
}
public void onInitialize() {
final DelegationType delegationType = mDelegationType;
mChannel = (delegationType == DelegationType.SYNC) ? mRoutine.syncInvoke()
: (delegationType == DelegationType.ASYNC) ? mRoutine.asyncInvoke()
: mRoutine.parallelInvoke();
}
public void onInput(final IN input, @NotNull final ResultChannel result) {
mChannel.pass(input);
}
public void onResult(@NotNull final ResultChannel result) {
result.pass(mChannel.result());
}
public void onTerminate() {
mChannel = null;
}
/**
* Delegation type enumeration.
*/
public enum DelegationType {
/**
* The delegated routine is invoked in synchronous mode.
*/
SYNC,
/**
* The delegated routine is invoked in asynchronous mode.
*/
ASYNC,
/**
* The delegated routine is invoked in parallel mode.
*/
PARALLEL
}
/**
* Factory creating delegating invocation instances.
*
* @param the input data type.
* @param the output data type.
*/
private static class DelegatingInvocationFactory extends InvocationFactory {
private final DelegationType mDelegationType;
private final Routine mRoutine;
/**
* Constructor.
*
* @param routine the delegated routine.
* @param delegationType the type of routine invocation.
*/
@SuppressWarnings("ConstantConditions")
private DelegatingInvocationFactory(@NotNull final Routine routine,
@NotNull final DelegationType delegationType) {
if (routine == null) {
throw new NullPointerException("the routine must not be null");
}
if (delegationType == null) {
throw new NullPointerException("the invocation type must not be null");
}
mRoutine = routine;
mDelegationType = delegationType;
}
@NotNull
@Override
public Invocation newInvocation() {
return new DelegatingInvocation(mRoutine, mDelegationType);
}
}
}