这是我正在处理的一个有趣的RxJava小难题。假设我有一个无限的Observable<List<Parent>> infiniteParentListStream
,每个Parent
都有一个无限的Observable<List<Child>> infiniteChildListStream
。
我想在发出的List<Parent>
中取所有Parent
实例,并将它们发出的List<Child>
项目合并为一个单独的、完整的List<Child>
,反映所有父母的所有子女。
事实上,Parent
中的Observable<List<Child>> infiniteChildListStream
属性是无限的,这使得toList()
任务有点挑战性。
public final class NestedInfiniteTest {
private static final BehaviorSubject<Integer> parentSubject = BehaviorSubject.create(1);
private static final BehaviorSubject<Integer> childSubject = BehaviorSubject.create(1);
public static void main(String[] args) {
Observable<List<Parent>> infiniteParentListStream = parentSubject
.map(i -> Arrays.asList(new Parent(), new Parent(), new Parent()))
.cache(1);
Observable<List<Child>> allCurrentChildren = infiniteParentListStream.<List<Child>>flatMap(parentList ->
Observable.from(parentList)
.flatMap(p -> p.getInfiniteChildListStream().flatMap(Observable::from)).toList()
).cache(1);
allCurrentChildren.subscribe(cl -> System.out.println("WHOLE CHILD LIST SIZE: " + cl.size()));
}
private static final class Parent {
private final Observable<List<Child>> infiniteChildListStream = childSubject
.map(i -> Arrays.asList(new Child(), new Child(), new Child())).cache(1);
public Observable<List<Child>> getInfiniteChildListStream() {
return infiniteChildListStream;
}
}
private static final class Child {
}
}
当然,我发现的一个变通解决方案是通过调用first()
来将infiniteChildListStream
变为有限的。但这是不太理想的,因为它不再更新。Observable<List<Child>> allCurrentChildren = infiniteParentListStream.<List<Child>>flatMap(parentList ->
Observable.from(parentList)
.flatMap(p -> p.getInfiniteChildListStream().first().flatMap(Observable::from)).toList()
).cache(1);
我觉得有一种方法可以手动调用Observable.create()
或使用flatMap()
技巧来解决这个问题。有没有更好的方法来做到这一点,并使事物与无限源保持反应?在我在这个SSCCE之外的实际应用中,这些可观察对象是无限的,因为驱动Parent
和Child
的数据源可以改变并发出新的值…
我想我的问题的根源是我如何采取多个无限Observable<List<T>>
并将它们合并到单个Observable<List<T>>
?
我想我通过使用Observable.combineLatest()
弄清楚了。为了增强测试,我还修改了源可观察对象,以根据主题的压入整数值创建不同的List
大小。这看起来很漂亮。
public final class NestedInfiniteTest {
private static final BehaviorSubject<Integer> parentSubject = BehaviorSubject.create(1);
private static final BehaviorSubject<Integer> childSubject = BehaviorSubject.create(1);
public static void main(String[] args) {
Observable<List<Parent>> infiniteParentListStream = parentSubject
.map(i -> IntStream.range(0,i).mapToObj(val -> new Parent()).collect(Collectors.toList()))
.cache(1);
Observable<List<Child>> allCurrentChildren = infiniteParentListStream.flatMap(parentList ->
Observable.<Observable<List<Child>>>create(s -> {
parentList.stream().map(Parent::getInfiniteChildListStream).forEach(s::onNext);
s.onCompleted();
})
.toList() //List<<Observable<List<Child>>>>
.flatMap(consolidatedChildList -> Observable.combineLatest(consolidatedChildList, new FuncN<List<Child>>() {
@Override
public List<Child> call(Object... args) {
ArrayList<Child> list = new ArrayList<>();
for (Object obj : args) {
list.addAll((List<Child>) obj);
}
return list;
}
}))
);
allCurrentChildren.subscribe(cl -> System.out.println("WHOLE CHILD LIST SIZE: " + cl.size()));
childSubject.onNext(10);
parentSubject.onNext(5);
childSubject.onNext(2);
}
private static final class Parent {
private final Observable<List<Child>> infiniteChildListStream = childSubject
.map(i -> IntStream.range(0, i).mapToObj(val -> new Child()).collect(Collectors.toList())).cache(1);
public Observable<List<Child>> getInfiniteChildListStream() {
return infiniteChildListStream;
}
}
private static final class Child {
}
}
输出:WHOLE CHILD LIST SIZE: 1 //parentSubject = 1, childSubject = 1
WHOLE CHILD LIST SIZE: 10 //parentSubject = 1, childSubject = 10
WHOLE CHILD LIST SIZE: 50 //parentSubject = 5, childSubject = 10
WHOLE CHILD LIST SIZE: 2 //parentSubject = 5, childSubject = 2, adjusting
WHOLE CHILD LIST SIZE: 42 //adjusting
WHOLE CHILD LIST SIZE: 34 //adjusting
WHOLE CHILD LIST SIZE: 26 //adjusting
WHOLE CHILD LIST SIZE: 18 //adjusting
WHOLE CHILD LIST SIZE: 10 //parentSubject = 5, childSubject = 2, done!
UPDATE:创建了一个Transformer来执行这个任务
public static class CombinedListTransformer<T,R> implements Observable.Transformer<List<T>,List<R>> {
private final Func1<T,Observable<List<R>>> listMapper;
public CombinedListTransformer(Func1<T,Observable<List<R>>> listMapper) {
this.listMapper = listMapper;
}
@Override
public Observable<List<R>> call(Observable<List<T>> sourceList) {
return sourceList.flatMap(sl ->
Observable.from(sl).map(t -> listMapper.call(t)).toList() //List<Observable<List<R>>
.flatMap(consolidatedChildList -> Observable.combineLatest(consolidatedChildList, args -> {
ArrayList<R> list = new ArrayList<>();
for (Object obj : args) {
list.addAll((List<R>) obj);
}
return list;
}))
);
}
}