Files
libreoffice/xmlhelp/source/cxxhelp/qe/QueryProcessor.cxx
Oliver Bolte 4f25ea43d8 INTEGRATION: CWS pchfix02 (1.8.8); FILE MERGED
2006/09/01 17:58:34 kaib 1.8.8.1: #i68856# Added header markers and pch files
2006-09-17 00:20:00 +00:00

179 lines
5.1 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: QueryProcessor.cxx,v $
*
* $Revision: 1.9 $
*
* last change: $Author: obo $ $Date: 2006-09-17 01:19:45 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_xmlhelp.hxx"
#ifndef _XMLSEARCH_QE_QUERYPROCESSOR_HXX_
#include <qe/QueryProcessor.hxx>
#endif
#ifndef _XMLSEARCH_DB_DBENV_HXX_
#include <db/DBEnv.hxx>
#endif
using namespace std;
using namespace xmlsearch;
using namespace xmlsearch::excep;
using namespace xmlsearch::qe;
const double QueryProcessor::INFLpenalty = 0.0;
QueryProcessor::QueryProcessor( const rtl::OUString& installDir )
throw( IOException )
: env_( installDir )
{
}
QueryProcessor::~QueryProcessor()
{
// delete env_;
}
QueryResults* QueryProcessor::processQuery( const QueryStatement& ment )
{
Search search( &env_ );
Query* query = processQuery( search,ment );
query->setIgnoredElements( 0,0 );
search.startSearch();
return makeQueryResults( query,ment.getHitCount() );
}
Query* QueryProcessor::processQuery( Search& search,const QueryStatement& ment )
{
sal_Int32 nValidTerms = 0, nMissingTerms = 0, nContentTerms = 0;
double variantPenalty = 0.0;
const sal_Int32 nHits = ment.getHitCount();
const rtl::OUString scope = ment.getScope();
const vector< rtl::OUString >& terms = ment.getTerms();
const sal_Int32 nTerms = terms.size();
vector< sal_Int32 > primary( nTerms );
vector< sal_Int32 > missingTerms( nTerms );
vector< vector< sal_Int32 > > columns( nTerms );
for( int i = 0; i < nTerms; ++i )
{
const sal_Int32 lgt = terms[i].getLength();
const sal_Unicode* str = terms[i].getStr();
if( str[0] == sal_Unicode('+') )
{
// poor man's escape for query control
// not implemented yet
}
else
{
++nContentTerms;
rtl::OUString term = terms[i].toAsciiLowerCase();
sal_Int32 id = 0;
std::vector< sal_Int32 > ids;
if( str[0] == sal_Unicode('\"') )
{
id = env_.fetch( term.copy( 1 ) ); // goes to BtreeDict::fetch
}
else if( str[lgt-1] == sal_Unicode( '*' ) )
{
ids = env_.withPrefix( term.copy( 0,lgt - 1 ) ); // goes to BtreeDict::withPrefix
variantPenalty = 0.0;
}
else
{
sal_Int32 formID;
id = env_.fetch( term );
// std::vector< rtl::OUString > variants( morph_->getVariants( term ) );
std::vector< rtl::OUString > variants;
for( sal_uInt32 j = 0; j < variants.size(); ++j )
{
formID = env_.fetch( variants[j] );
if( formID > 0 && formID != id )
ids.push_back( formID );
}
variantPenalty = INFLpenalty;
}
if( ids.size() > 0 || id > 0 )
{
columns[ nValidTerms ] = ids;
primary[ nValidTerms++ ] = id;
}
else
{
++nMissingTerms;
// !!! not used now (intended to fill out appropriate missing terms in QueryHits
missingTerms.push_back( nContentTerms - 1 );
}
}
}
return search.addQuery( scope,
nValidTerms,nMissingTerms,nHits,
variantPenalty,
primary,
columns );
}
QueryResults::QueryResults( Query* query, sal_Int32 nHits )
{
if( query )
query->getHits( queryHits_,nHits );
}
QueryResults::~QueryResults()
{
for( sal_uInt32 i = 0; i < queryHits_.size(); ++i )
delete queryHits_[i];
}
QueryResults* QueryProcessor::makeQueryResults( Query* query,sal_Int32 nHits )
{
return new QueryResults( query,nHits );
}