blob: 59aef6b80355583e25c58a9694c2835ae96d0af3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.search.engine.internal;
import java.util.Collection;
import java.util.List;
import java.util.logging.Level;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.search.engine.IAttributeTaggerProviderManager;
import org.eclipse.osee.framework.search.engine.ISearchEngine;
import org.eclipse.osee.framework.search.engine.MatchLocation;
import org.eclipse.osee.framework.search.engine.SearchOptions;
import org.eclipse.osee.framework.search.engine.SearchResult;
import org.eclipse.osee.framework.search.engine.SearchOptions.SearchOptionsEnum;
import org.eclipse.osee.framework.search.engine.attribute.AttributeData;
import org.eclipse.osee.framework.search.engine.data.AttributeSearch;
/**
* @author Roberto E. Escobar
*/
public class SearchEngine implements ISearchEngine {
private SearchStatistics statistics;
public SearchEngine() {
this.statistics = new SearchStatistics();
}
/* (non-Javadoc)
* @see org.eclipse.osee.framework.search.engine.ISearchEngine#search(java.lang.String, org.eclipse.osee.framework.search.engine.Options)
*/
@Override
public SearchResult search(String searchString, int branchId, SearchOptions options, String... attributeTypes) throws Exception {
SearchResult results = new SearchResult();
long startTime = System.currentTimeMillis();
IAttributeTaggerProviderManager manager = Activator.getTaggerManager();
AttributeSearch attributeSearch = new AttributeSearch(searchString, branchId, options, attributeTypes);
Collection<AttributeData> tagMatches = attributeSearch.getMatchingAttributes();
long timeAfterPass1 = System.currentTimeMillis() - startTime;
long secondPass = System.currentTimeMillis();
boolean bypassSecondPass = !options.getBoolean(SearchOptionsEnum.match_word_order.asStringOption());
if (bypassSecondPass) {
for (AttributeData attributeData : tagMatches) {
results.add(attributeData.getBranchId(), attributeData.getArtId(), attributeData.getGammaId());
}
} else {
for (AttributeData attributeData : tagMatches) {
try {
List<MatchLocation> locations = manager.find(attributeData, searchString, options);
if (!locations.isEmpty()) {
results.add(attributeData.getBranchId(), attributeData.getArtId(), attributeData.getGammaId(),
locations);
}
} catch (Exception ex) {
OseeLog.log(Activator.class, Level.SEVERE, String.format("Error processing: [%s]", attributeData));
}
}
}
secondPass = System.currentTimeMillis() - secondPass;
String firstPassMsg =
String.format("Pass 1: [%d items in %d ms]);", bypassSecondPass ? results.size() : tagMatches.size(),
timeAfterPass1);
String secondPassMsg = String.format(" Pass 2: [%d items in %d ms]", results.size(), secondPass);
System.out.println(String.format("Search for [%s] - %s%s", searchString, firstPassMsg,
bypassSecondPass ? "" : secondPassMsg));
statistics.addEntry(searchString, branchId, options, results.size(), System.currentTimeMillis() - startTime);
return results;
}
/* (non-Javadoc)
* @see org.eclipse.osee.framework.search.engine.ISearchEngine#clearStatistics()
*/
@Override
public void clearStatistics() {
this.statistics.clear();
}
/* (non-Javadoc)
* @see org.eclipse.osee.framework.search.engine.ISearchEngine#getStatistics()
*/
@Override
public SearchStatistics getStatistics() {
try {
return this.statistics.clone();
} catch (CloneNotSupportedException ex) {
return SearchStatistics.EMPTY_STATS;
}
}
}