use of org.jboss.pnc.spi.datastore.repositories.BuildRecordRepository in project pnc by project-ncl.
the class BuildProviderImpl method getByAttribute.
public Page<Build> getByAttribute(BuildPageInfo buildPageInfo, Map<String, String> attributeConstraints) {
Set<Predicate<BuildRecord>> predicates = new HashSet<>();
for (Map.Entry<String, String> entry : attributeConstraints.entrySet()) {
String key = entry.getKey();
String value = entry.getValue();
if (key.startsWith("!")) {
predicates.add(withoutAttribute(key.substring(1)));
} else {
predicates.add(withAttribute(key, value));
}
}
Predicate<BuildRecord> queryPredicate = rsqlPredicateProducer.getCriteriaPredicate(BuildRecord.class, buildPageInfo.getQ());
predicates.add(queryPredicate);
Predicate<BuildRecord>[] predicatesArray = predicates.toArray(new Predicate[predicates.size()]);
PageInfo pageInfo = toPageInfo(buildPageInfo);
SortInfo sortInfo = rsqlPredicateProducer.getSortInfo(type, buildPageInfo.getSort());
List<BuildRecord> resultList = ((BuildRecordRepository) BuildProviderImpl.this.repository).queryWithPredicatesUsingCursor(pageInfo, sortInfo, predicatesArray);
int hits = repository.count(predicatesArray);
return new Page<>(buildPageInfo.getPageIndex(), buildPageInfo.getPageSize(), hits, resultList.stream().map(b -> mapper.toDTO(b)).collect(Collectors.toList()));
}
Aggregations