io.resys.thena.docdb.file.builders.BlobQueryFilePool Maven / Gradle / Ivy
The newest version!
package io.resys.thena.docdb.file.builders;
/*-
* #%L
* thena-docdb-pgsql
* %%
* Copyright (C) 2021 Copyright 2021 ReSys OÜ
* %%
* 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.
* #L%
*/
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import io.resys.thena.docdb.api.actions.ObjectsActions.MatchCriteria;
import io.resys.thena.docdb.api.models.Objects.Blob;
import io.resys.thena.docdb.api.models.Objects.Tree;
import io.resys.thena.docdb.file.FileBuilder;
import io.resys.thena.docdb.file.tables.Table.FileMapper;
import io.resys.thena.docdb.file.tables.Table.FilePool;
import io.resys.thena.docdb.spi.ClientQuery.BlobQuery;
import io.resys.thena.docdb.spi.ErrorHandler;
import io.smallrye.mutiny.Multi;
import io.smallrye.mutiny.Uni;
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor
public class BlobQueryFilePool implements BlobQuery {
private final FilePool client;
private final FileMapper mapper;
private final FileBuilder builder;
private final ErrorHandler errorHandler;
@Override
public Uni id(String blobId) {
final var sql = builder.blobs().getById(blobId);
return client.preparedQuery(sql)
.mapping(row -> mapper.blob(row))
.execute()
.onItem()
.transform((Collection rowset) -> {
final var it = rowset.iterator();
if(it.hasNext()) {
return it.next();
}
return null;
})
.onFailure(e -> errorHandler.notFound(e)).recoverWithNull()
.onFailure().invoke(e -> errorHandler.deadEnd("Can't find 'BLOB' by 'id': '" + blobId + "'!", e));
}
@Override
public Uni> id(String treeId, List blobId, List criteria) {
if(!criteria.isEmpty()) {
throw new IllegalArgumentException("Not implemented for version");
}
final var sql = builder.blobs().findByIds(blobId);
return client.preparedQuery(sql)
.mapping(row -> mapper.blob(row))
.execute()
.onItem()
.transform((Collection rowset) -> {
List result = new ArrayList();
for(final var item : rowset) {
result.add(item);
}
return result;
})
.onFailure(e -> errorHandler.notFound(e)).recoverWithNull()
.onFailure().invoke(e -> errorHandler.deadEnd("Can't find 'BLOB' by 'id'-s: '" + String.join(",", blobId) + "'!", e));
}
@Override
public Multi find() {
final var sql = builder.blobs().findAll();
return client.preparedQuery(sql)
.mapping(row -> mapper.blob(row))
.execute()
.onItem()
.transformToMulti((Collection rowset) -> Multi.createFrom().iterable(rowset))
.onFailure().invoke(e -> errorHandler.deadEnd("Can't find 'BLOB'!", e));
}
@Override
public Multi find(Tree tree) {
final var sql = builder.blobs().findByTree(tree);
return client.preparedQuery(sql)
.mapping(row -> mapper.blob(row))
.execute()
.onItem()
.transformToMulti((Collection rowset) -> Multi.createFrom().iterable(rowset))
.onFailure().invoke(e -> errorHandler.deadEnd("Can't find 'BLOB' by tree: " + tree.getId() + "!", e));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy