com.mongodb.async.client.MappingIterable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-async Show documentation
Show all versions of mongodb-driver-async Show documentation
The MongoDB Asynchronous Driver
/*
* Copyright (c) 2008-2014 MongoDB, 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 com.mongodb.async.client;
import com.mongodb.Block;
import com.mongodb.Function;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.async.AsyncBatchCursor;
import java.util.Collection;
class MappingIterable implements MongoIterable {
private final MongoIterable iterable;
private final Function mapper;
public MappingIterable(final MongoIterable iterable, final Function mapper) {
this.iterable = iterable;
this.mapper = mapper;
}
@Override
public void first(final SingleResultCallback callback) {
iterable.first(new SingleResultCallback() {
@Override
public void onResult(final T result, final Throwable t) {
if (t != null) {
callback.onResult(null, t);
} else {
callback.onResult(mapper.apply(result), null);
}
}
});
}
@Override
public void forEach(final Block super U> block, final SingleResultCallback callback) {
iterable.forEach(new Block() {
@Override
public void apply(final T t) {
block.apply(mapper.apply(t));
}
}, new SingleResultCallback() {
@Override
public void onResult(final Void result, final Throwable t) {
if (t != null) {
callback.onResult(null, t);
} else {
callback.onResult(null, null);
}
}
});
}
@Override
public > void into(final A target, final SingleResultCallback callback) {
iterable.forEach(new Block() {
@Override
public void apply(final T t) {
target.add(mapper.apply(t));
}
}, new SingleResultCallback() {
@Override
public void onResult(final Void result, final Throwable t) {
if (t != null) {
callback.onResult(null, t);
} else {
callback.onResult(target, null);
}
}
});
}
@Override
public MongoIterable map(final Function mapper) {
return new MappingIterable(this, mapper);
}
@Override
public MongoIterable batchSize(final int batchSize) {
iterable.batchSize(batchSize);
return this;
}
@Override
public void batchCursor(final SingleResultCallback> callback) {
iterable.batchCursor(new SingleResultCallback>() {
@Override
public void onResult(final AsyncBatchCursor batchCursor, final Throwable t) {
if (t != null) {
callback.onResult(null, t);
} else {
callback.onResult(new MappingAsyncBatchCursor(batchCursor, mapper), null);
}
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy