/* * @(#)UnitAutoCompleteProvider.java * * Copyright 2010 Instituto Superior Tecnico * Founding Authors: Luis Cruz * * https://fenix-ashes.ist.utl.pt/ * * This file is part of the Working Capital Module. * * The Working Capital Module is free software: you can * redistribute it and/or modify it under the terms of the GNU Lesser General * Public License as published by the Free Software Foundation, either version * 3 of the License, or (at your option) any later version. * * The Working Capital Module is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with the Working Capital Module. If not, see <http://www.gnu.org/licenses/>. * */ package module.workingCapital.presentationTier.renderers; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; import java.util.Map; import org.apache.commons.lang.StringUtils; import org.fenixedu.bennu.core.presentationTier.renderers.autoCompleteProvider.AutoCompleteProvider; import org.fenixedu.commons.StringNormalizer; import pt.ist.expenditureTrackingSystem.domain.ExpenditureTrackingSystem; import pt.ist.expenditureTrackingSystem.domain.organization.CostCenter; import pt.ist.expenditureTrackingSystem.domain.organization.Project; import pt.ist.expenditureTrackingSystem.domain.organization.Unit; /** * * @author Luis Cruz * */ public class UnitAutoCompleteProvider implements AutoCompleteProvider { @Override public Collection getSearchResults(Map argsMap, String value, int maxCount) { final List<Unit> units = new ArrayList<Unit>(); final String trimmedValue = value.trim(); final String[] input = StringNormalizer.normalize(trimmedValue).split(" "); for (final Unit unit : ExpenditureTrackingSystem.getInstance().getUnits()) { if (unit instanceof CostCenter || unit instanceof Project) { final String unitName = StringNormalizer.normalize(unit.getName()); if (hasMatch(input, unitName)) { units.add(unit); } else if (unit instanceof CostCenter) { final CostCenter costCenter = (CostCenter) unit; final String unitCode = costCenter.getCostCenter(); if (!StringUtils.isEmpty(unitCode) && unitCode.indexOf(trimmedValue) >= 0) { units.add(unit); } } else if (unit instanceof Project) { final Project project = (Project) unit; final String unitCode = project.getProjectCode(); if (!StringUtils.isEmpty(unitCode) && unitCode.indexOf(trimmedValue) >= 0) { units.add(unit); } } } } Collections.sort(units, Unit.COMPARATOR_BY_PRESENTATION_NAME); return units; } private boolean hasMatch(final String[] input, final String unitNameParts) { for (final String namePart : input) { if (unitNameParts.indexOf(namePart) == -1) { return false; } } return true; } }