Skip to content

Instantly share code, notes, and snippets.

@tnine
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tnine/06001e6c6a0ceece4d0a to your computer and use it in GitHub Desktop.
Save tnine/06001e6c6a0ceece4d0a to your computer and use it in GitHub Desktop.
Collector that short circuits on a predicate
/*
* 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.
*/
/**
* An operation for performing a collect until the predicate returns true
*/
public class CollectUntil<T, R> implements Observable.Transformer<T, R> {
final Func0<R> stateFactory;
final Action2<R, ? super T> collector;
final Func1<R, Boolean> predicate;
public CollectUntil( final Func0<R> stateFactory, final Action2<R, ? super T> collector,
final Func1<R, Boolean> predicate ) {
this.stateFactory = stateFactory;
this.collector = collector;
this.predicate = predicate;
}
@Override
public Observable<R> call( final Observable<T> tObservable ) {
Func2<R, T, R> accumulator = ( state, value ) -> {
collector.call( state, value );
return state;
};
return tObservable.lift( new OperatorScan<>( stateFactory, accumulator ) ).takeUntil( predicate );
}
}
/*
* 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.usergrid.corepersistence.rx.impl;
import org.junit.Test;
import rx.Observable;
import static org.junit.Assert.assertEquals;
public class CollectUntilTest {
@Test
public void testCollectUntil() {
final CollectUntil<Integer, CountCollector> collectUntil =
new CollectUntil<>(
() -> new CountCollector(),
( collector, value ) -> collector.mark(),
collector -> collector.isFull() );
final CountCollector collector = Observable.range( 0, 200 ).compose( collectUntil ).toBlocking().last();
assertEquals( 100, collector.count );
}
private static final class CountCollector {
private int count;
public void mark() {
count++;
}
public boolean isFull() {
return count == 100;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment