Skip to content

Commit 8d7f100

Browse files
Treiblesschorlectrueden
authored andcommitted
Add utility to retrieve functions
1 parent 18c9a91 commit 8d7f100

2 files changed

Lines changed: 102 additions & 0 deletions

File tree

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
package org.scijava.ops.util;
2+
3+
import java.lang.reflect.Type;
4+
import java.util.function.BiFunction;
5+
import java.util.function.Function;
6+
7+
import org.scijava.ops.Op;
8+
import org.scijava.ops.base.OpService;
9+
import org.scijava.ops.types.Nil;
10+
11+
/**
12+
* Utility providing adaptation between {@link Op} types.
13+
*/
14+
public class Functions {
15+
16+
private Functions() {
17+
// NB: Prevent instantiation of utility class.
18+
}
19+
20+
public static <I, O> Function<I, O> unary(final OpService ops, final Class<? extends Op> opClass,
21+
final Class<I> inputType, final Class<O> outputType) {
22+
return ops.findOp( //
23+
new Nil<Function<I, O>>() {
24+
}, //
25+
new Type[] { opClass }, //
26+
new Type[] { inputType }, //
27+
outputType);
28+
}
29+
30+
public static <I1, I2, O> BiFunction<I1, I2, O> binary(final OpService ops, final Class<? extends Op> opClass,
31+
final Class<I1> input1Type, final Class<I2> input2Type, final Class<O> outputType) {
32+
return ops.findOp( //
33+
new Nil<BiFunction<I1, I2, O>>() {
34+
}, //
35+
new Type[] { opClass }, //
36+
new Type[] { input1Type, input2Type }, //
37+
outputType);
38+
}
39+
40+
}
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/*
2+
* #%L
3+
* SciJava Operations: a framework for reusable algorithms.
4+
* %%
5+
* Copyright (C) 2018 SciJava developers.
6+
* %%
7+
* Redistribution and use in source and binary forms, with or without
8+
* modification, are permitted provided that the following conditions are met:
9+
*
10+
* 1. Redistributions of source code must retain the above copyright notice,
11+
* this list of conditions and the following disclaimer.
12+
* 2. Redistributions in binary form must reproduce the above copyright notice,
13+
* this list of conditions and the following disclaimer in the documentation
14+
* and/or other materials provided with the distribution.
15+
*
16+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
20+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26+
* POSSIBILITY OF SUCH DAMAGE.
27+
* #L%
28+
*/
29+
30+
package org.scijava.ops;
31+
32+
import java.util.function.BiFunction;
33+
import java.util.function.Function;
34+
35+
import org.junit.Test;
36+
import org.scijava.ops.math.Add.MathAddOp;
37+
import org.scijava.ops.math.Power.MathPowerOp;
38+
import org.scijava.ops.math.Sqrt.MathSqrtOp;
39+
import org.scijava.ops.util.Functions;
40+
41+
public class FunctionsTest extends AbstractTestEnvironment {
42+
43+
@Test
44+
public void testUnaryFunctions() {
45+
Function<Double, Double> sqrtFunction = Functions.unary(ops, MathSqrtOp.class, Double.class, Double.class);
46+
double answer = sqrtFunction.apply(16.0);
47+
assert 4.0 == answer;
48+
}
49+
50+
@Test
51+
public void testBinaryFunctions() {
52+
BiFunction<Double, Double, Double> addFunction = Functions.binary(ops, MathAddOp.class, Double.class,
53+
Double.class, Double.class);
54+
double answer = addFunction.apply(16.0, 14.0);
55+
assert 30.0 == answer;
56+
57+
BiFunction<Double, Double, Double> powerFunction = Functions.binary(ops, MathPowerOp.class, Double.class,
58+
Double.class, Double.class);
59+
answer = powerFunction.apply(2.0, 10.0);
60+
assert 1024.0 == answer;
61+
}
62+
}

0 commit comments

Comments
 (0)