📄 relatedsearch.cpp
字号:
//
// RelatedSearch.cpp
//
// Copyright (c) Shareaza Development Team, 2002-2004.
// This file is part of SHAREAZA (www.shareaza.com)
//
// Shareaza 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.
//
// Shareaza 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 Shareaza; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
#include "StdAfx.h"
#include "Shareaza.h"
#include "Library.h"
#include "MatchObjects.h"
#include "SharedFile.h"
#include "RelatedSearch.h"
#include "QuerySearch.h"
#include "QueryHit.h"
#include "Schema.h"
#include "SchemaCache.h"
#include "XML.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
#define MIN_LENGTH 3
//////////////////////////////////////////////////////////////////////
// CRelatedSearch construction
CRelatedSearch::CRelatedSearch(CMatchFile* pFile)
{
if ( pFile != NULL )
{
m_bSHA1 = pFile->m_bSHA1;
m_pSHA1 = pFile->m_pSHA1;
m_bTiger = pFile->m_bTiger;
m_pTiger = pFile->m_pTiger;
m_bED2K = pFile->m_bED2K;
m_pED2K = pFile->m_pED2K;
m_sName = pFile->m_pBest->m_sName;
m_pSchema = SchemaCache.Get( pFile->m_pBest->m_sSchemaURI );
m_pXML = NULL;
m_bXML = FALSE;
if ( m_pSchema != NULL )
{
m_pXML = new CXMLElement( NULL, m_pSchema->m_sSingular );
m_bXML = TRUE;
for ( CQueryHit* pHit = pFile->m_pHits ; pHit ; pHit = pHit->m_pNext )
{
if ( pHit->m_pXML != NULL )
{
for ( POSITION pos = pHit->m_pXML->GetAttributeIterator() ; pos ; )
{
CXMLAttribute* pAttribute = pHit->m_pXML->GetNextAttribute( pos );
m_pXML->AddAttribute( pAttribute->GetName(), pAttribute->GetValue() );
}
}
}
}
}
else
{
m_bSHA1 = m_bTiger = m_bED2K = m_bXML = FALSE;
m_pSchema = NULL;
m_pXML = NULL;
}
}
CRelatedSearch::CRelatedSearch(CLibraryFile* pFile)
{
if ( pFile != NULL )
{
m_bSHA1 = pFile->m_bSHA1;
m_pSHA1 = pFile->m_pSHA1;
m_bTiger = pFile->m_bTiger;
m_pTiger = pFile->m_pTiger;
m_bED2K = pFile->m_bED2K;
m_pED2K = pFile->m_pED2K;
m_sName = pFile->m_sName;
m_pSchema = pFile->m_pSchema;
m_bXML = ( pFile->m_pMetadata != NULL );
m_pXML = m_bXML ? pFile->m_pMetadata->Clone() : NULL;
}
else
{
m_bSHA1 = m_bTiger = m_bED2K = m_bXML = FALSE;
m_pSchema = NULL;
m_pXML = NULL;
}
}
CRelatedSearch::~CRelatedSearch()
{
if ( m_bXML ) delete m_pXML;
}
//////////////////////////////////////////////////////////////////////
// CRelatedSearch search for this
BOOL CRelatedSearch::CanSearchForThis()
{
return m_bSHA1 || m_bTiger || m_bED2K;
}
BOOL CRelatedSearch::RunSearchForThis()
{
if ( ! CanSearchForThis() ) return FALSE;
CQuerySearch* pSearch = new CQuerySearch();
pSearch->m_bSHA1 = m_bSHA1;
pSearch->m_pSHA1 = m_pSHA1;
pSearch->m_bTiger = m_bTiger;
pSearch->m_pTiger = m_pTiger;
pSearch->m_bED2K = m_bED2K;
pSearch->m_pED2K = m_pED2K;
return pSearch->OpenWindow() != NULL;
}
//////////////////////////////////////////////////////////////////////
// CRelatedSearch search for similar
BOOL CRelatedSearch::CanSearchForSimilar()
{
return m_sName.GetLength() >= MIN_LENGTH;
}
BOOL CRelatedSearch::RunSearchForSimilar()
{
if ( ! CanSearchForSimilar() ) return FALSE;
CQuerySearch* pSearch = new CQuerySearch();
pSearch->m_sSearch = Tokenise( m_sName );
return pSearch->OpenWindow() != NULL;
}
//////////////////////////////////////////////////////////////////////
// CRelatedSearch search for artist
BOOL CRelatedSearch::CanSearchForArtist()
{
if ( m_pSchema == NULL || m_pXML == NULL ) return FALSE;
CString str = m_pXML->GetAttributeValue( _T("artist") );
return str.GetLength() >= MIN_LENGTH;
}
BOOL CRelatedSearch::RunSearchForArtist()
{
if ( ! CanSearchForArtist() ) return FALSE;
CQuerySearch* pSearch = new CQuerySearch();
pSearch->m_pSchema = m_pSchema ? m_pSchema : SchemaCache.Get( CSchema::uriAudio );
pSearch->m_pXML = pSearch->m_pSchema->Instantiate();
CXMLElement* pXML = pSearch->m_pXML->AddElement( pSearch->m_pSchema->m_sSingular );
pXML->AddAttribute( _T("artist"), Tokenise( m_pXML->GetAttributeValue( _T("artist") ) ) );
return pSearch->OpenWindow() != NULL;
}
//////////////////////////////////////////////////////////////////////
// CRelatedSearch search for album
BOOL CRelatedSearch::CanSearchForAlbum()
{
if ( m_pSchema == NULL || m_pXML == NULL ) return FALSE;
CString str = m_pXML->GetAttributeValue( _T("album") );
return str.GetLength() >= MIN_LENGTH;
}
BOOL CRelatedSearch::RunSearchForAlbum()
{
if ( ! CanSearchForAlbum() ) return FALSE;
CQuerySearch* pSearch = new CQuerySearch();
pSearch->m_pSchema = m_pSchema ? m_pSchema : SchemaCache.Get( CSchema::uriAudio );
pSearch->m_pXML = pSearch->m_pSchema->Instantiate();
CXMLElement* pXML = pSearch->m_pXML->AddElement( pSearch->m_pSchema->m_sSingular );
pXML->AddAttribute( _T("album"), Tokenise( m_pXML->GetAttributeValue( _T("album") ) ) );
return pSearch->OpenWindow() != NULL;
}
//////////////////////////////////////////////////////////////////////
// CRelatedSearch search for series
BOOL CRelatedSearch::CanSearchForSeries()
{
if ( m_pSchema == NULL || m_pXML == NULL ) return FALSE;
CString str = m_pXML->GetAttributeValue( _T("series") );
return str.GetLength() >= MIN_LENGTH;
}
BOOL CRelatedSearch::RunSearchForSeries()
{
if ( ! CanSearchForSeries() ) return FALSE;
CQuerySearch* pSearch = new CQuerySearch();
pSearch->m_pSchema = m_pSchema ? m_pSchema : SchemaCache.Get( CSchema::uriVideo );
pSearch->m_pXML = pSearch->m_pSchema->Instantiate();
CXMLElement* pXML = pSearch->m_pXML->AddElement( pSearch->m_pSchema->m_sSingular );
pXML->AddAttribute( _T("series"), Tokenise( m_pXML->GetAttributeValue( _T("series") ) ) );
return pSearch->OpenWindow() != NULL;
}
//////////////////////////////////////////////////////////////////////
// CRelatedSearch string token processing
CString CRelatedSearch::Tokenise(LPCTSTR psz)
{
int nChars = 0;
CString str;
for ( ; *psz ; psz++ )
{
if ( *psz == '.' )
{
break;
}
else if ( _istalnum( *psz ) )
{
str += *psz;
nChars ++;
}
else if ( nChars > 1 )
{
str += ' ';
nChars = 0;
}
else if ( nChars == 1 )
{
str = str.Left( str.GetLength() - 1 );
nChars = 0;
}
}
return str;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -