/* **************************************************************************** This file is part of KBabel Copyright (C) 2000 by Matthias Kiefer This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. In addition, as a special exception, the copyright holders give permission to link the code of this program with any edition of the TQt library by Trolltech AS, Norway (or with modified versions of TQt that use the same license as TQt), and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than TQt. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. **************************************************************************** */ #include "searchengine.h" #include SearchResult::SearchResult() { score=0; descriptions.setAutoDelete(true); } SearchResult::SearchResult(const SearchResult& r) { requested=r.requested; found=r.found; translation=r.translation; plainTranslation=r.plainTranslation; plainFound=r.plainFound; plainRequested=r.plainRequested; descriptions.setAutoDelete(true); score=r.score; TQPtrListIterator it(r.descriptions); for ( ; it.current(); ++it ) { TranslationInfo *ti=new TranslationInfo(*(*it)); descriptions.append(ti); } } PrefWidget::PrefWidget(TQWidget *parent, const char *name) : TQWidget(parent,name) { } PrefWidget::~PrefWidget() { } SearchEngine::SearchEngine(TQObject *parent, const char *name) : TQObject(parent, name) { autoUpdate=false; results.setAutoDelete(true); } SearchEngine::~SearchEngine() { } bool SearchEngine::startSearchInTranslation(const TQString&, unsigned int, const SearchFilter*) { return true; } bool SearchEngine::usesRichTextResults() { return false; } bool SearchEngine::isEditable() { return false; } void SearchEngine::edit() { } void SearchEngine::setAutoUpdateOptions(bool activate) { autoUpdate=activate; } SearchResult *SearchEngine::result(int n) { SearchResult *r=0; if(n >= 0 && n < (int)results.count()) r = results.at(n); return r; } int SearchEngine::numberOfResults() const { return results.count(); } SearchResult *SearchEngine::nextResult() { SearchResult *r= results.next(); if(r) return r; else { return 0; } } SearchResult *SearchEngine::prevResult() { SearchResult *r= results.prev(); if(r) return r; else { return 0; } } SearchResult *SearchEngine::firstResult() { SearchResult *r= results.first(); if(r) return r; else { return 0; } } SearchResult *SearchEngine::lastResult() { SearchResult *r= results.last(); if(r) return r; else { return 0; } } void SearchEngine::clearResults() { results.clear(); emit numberOfResultsChanged(0); } void SearchEngine::setEditedFile(const TQString&) { } void SearchEngine::setEditedPackage(const TQString&) { } void SearchEngine::setLanguageCode(const TQString&) { } void SearchEngine::setLanguage(const TQString&,const TQString&) { } void SearchEngine::stringChanged(const TQStringList&,const TQString&,unsigned int, const TQString&) { } TQString SearchEngine::directory(const TQString& path, int n) { if(n<0) return TQString(); int begin=path.findRev('/'); int end=path.length(); if(begin < 0) { kdDebug() << "not found" << endl; if(n==0) return path; else return TQString(); } for(int i=0; i < n; i++) { if(begin==0) { return TQString(); } end = begin; begin = path.findRev('/', end-1); if(begin < 0) { return TQString(); } } begin++; return path.mid(begin,end-begin); } uint SearchEngine::score(const TQString& orig, const TQString& found) { if(orig == found) return 100; uint scoreA = ngramMatch(found, orig); uint scoreB = ngramMatch(orig,found); uint score = TQMIN(scoreA, scoreB); TQString f = found.lower(); TQString o = orig.lower(); scoreA = ngramMatch(f, o); scoreB = ngramMatch(o, f); score = (TQMIN(scoreA, scoreB)+score)/2; return score; } uint SearchEngine::ngramMatch (const TQString& text1, const TQString& text2, uint ngram_len) { if (text1.length() < ngram_len || text2.length() < ngram_len) return 0; uint cnt=0; uint ngram_cnt = text1.length() - ngram_len + 1; for (uint i = 0; i < ngram_cnt; i++) { if (text2.find(text1.mid(i,ngram_len)) >= 0) cnt++; } return (cnt*100) / ngram_cnt; } bool SearchFilter::match( const TranslationInfo& toCheck ) { // FIXME: not implemented yet return true; } #include "searchengine.moc"