/* * 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.cyclop.service.search.intern; import java.util.Comparator; import java.util.Optional; import java.util.Set; import java.util.SortedMap; import java.util.TreeMap; import javax.inject.Named; import org.cyclop.model.FilterResult; import org.cyclop.service.search.FieldAccessor; import org.cyclop.service.search.SearchService; import org.cyclop.validation.EnableValidation; import com.google.common.collect.ImmutableCollection; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; @Named @EnableValidation public class SearchServiceImpl<T> implements SearchService<T> { private final static WeightSortingComparator COMP = new WeightSortingComparator(); private final static int MIN_KW_LENGHT = 3; @Override public Optional<FilterResult<T>> filter(ImmutableCollection<T> input, FieldAccessor<T> accessor, String... keywords) { ImmutableSet<String> normKeywords = normalize(keywords); if (normKeywords.isEmpty()) { return Optional.empty(); } SortedMap<WeightSortingKey, T> sorted = new TreeMap<>(COMP); for (T el : input) { String elVal = accessor.getText(el); if (elVal == null) { continue; } String normElVal = normalize(elVal); int weigth = calculateWeight(normElVal, normKeywords); if (weigth == 0) { continue; } sorted.put(new WeightSortingKey(weigth, normElVal), el); } ImmutableList<T> result = mapResult(sorted); return Optional.of(new FilterResult<T>(result, normKeywords)); } private ImmutableList<T> mapResult(SortedMap<WeightSortingKey, T> sorted) { ImmutableList.Builder<T> resList = ImmutableList.builder(); for (T val : sorted.values()) { resList.add(val); } return resList.build(); } private ImmutableSet<String> normalize(String... strArray) { ImmutableSet.Builder<String> resSet = ImmutableSet.builder(); for (int idx = 0; idx < strArray.length; idx++) { String normalized = normalize(strArray[idx]); if (normalized.length() < MIN_KW_LENGHT) { continue; } resSet.add(normalized); } return resSet.build(); } private String normalize(String str) { return str.trim().toLowerCase(); } private int calculateWeight(String valueLc, Set<String> keywordsLc) { int weight = (int) keywordsLc.stream().filter(k -> valueLc.contains(k)).count(); return weight; } public final static class WeightSortingComparator implements Comparator<WeightSortingKey> { @Override public int compare(WeightSortingKey o1, WeightSortingKey o2) { int compRes = 0; if (o1.weight == o2.weight) { compRes = o1.keyLc.compareTo(o2.keyLc); } else { compRes = o2.weight - o1.weight; } return compRes; } } private final static class WeightSortingKey { public final int weight; public final String keyLc; public WeightSortingKey(int weight, String keyLc) { this.weight = weight; this.keyLc = keyLc; } @Override public String toString() { return "WeightSortingKey [weight=" + weight + ", keyLc=" + keyLc + "]"; } } }