reactor.rx.action.aggregation.BatchAction Maven / Gradle / Ivy
/*
* Copyright (c) 2011-2014 Pivotal Software, Inc.
*
* 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 reactor.rx.action.aggregation;
import org.reactivestreams.Subscription;
import reactor.core.Dispatcher;
import reactor.core.processor.InsufficientCapacityException;
import reactor.fn.Consumer;
import reactor.fn.Pausable;
import reactor.fn.timer.Timer;
import reactor.rx.action.Action;
import reactor.rx.subscription.BatchSubscription;
import reactor.rx.subscription.PushSubscription;
import java.util.concurrent.TimeUnit;
/**
* @author Stephane Maldini
* @since 1.1
*/
public abstract class BatchAction extends Action {
protected final boolean next;
protected final boolean flush;
protected final boolean first;
protected final int batchSize;
protected final Dispatcher dispatcher;
protected final long timespan;
protected final TimeUnit unit;
protected final Timer timer;
protected final Consumer flushConsumer = new FlushConsumer();
protected int index = 0;
private Pausable timespanRegistration;
public BatchAction(
Dispatcher dispatcher, int batchSize, boolean next, boolean first, boolean flush) {
this(dispatcher, batchSize, next, first, flush, -1l, null, null);
}
public BatchAction(final Dispatcher dispatcher, int batchSize, boolean next, boolean first, boolean flush,
long timespan, TimeUnit unit, Timer timer) {
super(batchSize);
this.dispatcher = dispatcher;
if (timespan > 0) {
this.unit = unit != null ? unit : TimeUnit.SECONDS;
this.timespan = timespan;
this.timer = timer;
} else {
this.timespan = -1L;
this.timer = null;
this.unit = null;
}
this.first = first;
this.flush = flush;
this.next = next;
this.batchSize = batchSize;
//this.capacity = batchSize;
}
@Override
protected PushSubscription createTrackingSubscription(Subscription subscription) {
return new BatchSubscription(subscription, this, batchSize);
}
@Override
public boolean isReactivePull(Dispatcher dispatcher, long producerCapacity) {
return false;
}
protected void nextCallback(T event) {
}
protected void flushCallback(T event) {
}
protected void firstCallback(T event) {
}
@Override
protected void doNext(T value) {
if (++index == 1) {
if (timer != null) {
timespanRegistration = timer.submit( new Consumer() {
@Override
public void accept(Long aLong) {
try {
if(isPublishing()) {
dispatcher.tryDispatch(null, flushConsumer, null);
}
} catch (InsufficientCapacityException e) {
//IGNORE
}
}
}, timespan, unit);
}
if (first ) {
firstCallback(value);
}
}
if (next) {
nextCallback(value);
}
if (index % batchSize == 0) {
if (timespanRegistration != null) {
timespanRegistration.cancel();
timespanRegistration = null;
}
index = 0;
if (flush) {
flushConsumer.accept(value);
}
}
}
@Override
protected void doComplete() {
flushConsumer.accept(null);
super.doComplete();
}
final private class FlushConsumer implements Consumer {
@Override
public void accept(T n) {
flushCallback(n);
index = 0;
}
}
@Override
public String toString() {
return super.toString() + "{" + (timer != null ? "timed - "+timespan+" "+unit : "") + " batchSize=" + index + "/" +
batchSize + " [" + (int) ((((float) index) / ((float) batchSize)) * 100) + "%]";
}
@Override
public final Dispatcher getDispatcher() {
return dispatcher;
}
}