functionalj.stream.StreamableWithCalculate Maven / Gradle / Ivy
// ============================================================================
// Copyright (c) 2017-2019 Nawapunth Manusitthipol (NawaMan - http://nawaman.net).
// ----------------------------------------------------------------------------
// MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ============================================================================
package functionalj.stream;
import functionalj.tuple.Tuple;
import functionalj.tuple.Tuple2;
import functionalj.tuple.Tuple3;
import functionalj.tuple.Tuple4;
import functionalj.tuple.Tuple5;
import functionalj.tuple.Tuple6;
import lombok.val;
public interface StreamableWithCalculate {
public StreamPlus stream();
public default T calculate(
StreamProcessor processor) {
val streamble = Streamable.from(()->stream());
val collected = Collected.of(processor, streamble);
streamble
.forEach(each -> {
collected.accumulate(each);
});
val value = collected.finish();
return value;
}
public default Tuple2 calculate(
StreamProcessor processor1,
StreamProcessor processor2) {
val streamble = Streamable.from(()->stream());
val collected1 = Collected.of(processor1, streamble);
val collected2 = Collected.of(processor2, streamble);
streamble
.forEach(each -> {
collected1.accumulate(each);
collected2.accumulate(each);
});
val value1 = collected1.finish();
val value2 = collected2.finish();
return Tuple.of(value1, value2);
}
public default Tuple3 calculate(
StreamProcessor processor1,
StreamProcessor processor2,
StreamProcessor processor3) {
val streamble = Streamable.from(()->stream());
val collected1 = Collected.of(processor1, streamble);
val collected2 = Collected.of(processor2, streamble);
val collected3 = Collected.of(processor3, streamble);
streamble
.forEach(each -> {
collected1.accumulate(each);
collected2.accumulate(each);
collected3.accumulate(each);
});
val value1 = collected1.finish();
val value2 = collected2.finish();
val value3 = collected3.finish();
return Tuple.of(value1, value2, value3);
}
public default Tuple4 calculate(
StreamProcessor processor1,
StreamProcessor processor2,
StreamProcessor processor3,
StreamProcessor processor4) {
val streamble = Streamable.from(()->stream());
val collected1 = Collected.of(processor1, streamble);
val collected2 = Collected.of(processor2, streamble);
val collected3 = Collected.of(processor3, streamble);
val collected4 = Collected.of(processor4, streamble);
streamble
.forEach(each -> {
collected1.accumulate(each);
collected2.accumulate(each);
collected3.accumulate(each);
collected4.accumulate(each);
});
val value1 = collected1.finish();
val value2 = collected2.finish();
val value3 = collected3.finish();
val value4 = collected4.finish();
return Tuple.of(value1, value2, value3, value4);
}
public default Tuple5 calculate(
StreamProcessor processor1,
StreamProcessor processor2,
StreamProcessor processor3,
StreamProcessor processor4,
StreamProcessor processor5) {
val streamble = Streamable.from(()->stream());
val collected1 = Collected.of(processor1, streamble);
val collected2 = Collected.of(processor2, streamble);
val collected3 = Collected.of(processor3, streamble);
val collected4 = Collected.of(processor4, streamble);
val collected5 = Collected.of(processor5, streamble);
streamble
.forEach(each -> {
collected1.accumulate(each);
collected2.accumulate(each);
collected3.accumulate(each);
collected4.accumulate(each);
collected5.accumulate(each);
});
val value1 = collected1.finish();
val value2 = collected2.finish();
val value3 = collected3.finish();
val value4 = collected4.finish();
val value5 = collected5.finish();
return Tuple.of(value1, value2, value3, value4, value5);
}
public default Tuple6 calculate(
StreamProcessor processor1,
StreamProcessor processor2,
StreamProcessor processor3,
StreamProcessor processor4,
StreamProcessor processor5,
StreamProcessor processor6) {
val streamble = Streamable.from(()->stream());
val collected1 = Collected.of(processor1, streamble);
val collected2 = Collected.of(processor2, streamble);
val collected3 = Collected.of(processor3, streamble);
val collected4 = Collected.of(processor4, streamble);
val collected5 = Collected.of(processor5, streamble);
val collected6 = Collected.of(processor6, streamble);
streamble
.forEach(each -> {
collected1.accumulate(each);
collected2.accumulate(each);
collected3.accumulate(each);
collected4.accumulate(each);
collected5.accumulate(each);
collected6.accumulate(each);
});
val value1 = collected1.finish();
val value2 = collected2.finish();
val value3 = collected3.finish();
val value4 = collected4.finish();
val value5 = collected5.finish();
val value6 = collected6.finish();
return Tuple.of(value1, value2, value3, value4, value5, value6);
}
}