diff -r 2b7283837edb -r 3104fc151679 uiservicetab/vimpstcmdprocess/src/cvimpstcmdsearch.cpp --- a/uiservicetab/vimpstcmdprocess/src/cvimpstcmdsearch.cpp Thu Aug 19 09:41:53 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,143 +0,0 @@ -/* -* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: command process for search -* -*/ - - -// INCLUDE FILES -#include "cvimpstcmdsearch.h" - -#include "vimpstcmd.hrh" -#include "mvimpstcmdobserver.h" - -#include "uiservicetabtracer.h" - -#include -#include "mvimpstengine.h" -#include "mvimpstenginesearchmgrextention.h" - -#include "mvimpstengineextentionfeatures.h" - -// -------------------------------------------------------------------------- -// CVIMPSTCmdSearch::CVIMPSTCmdSearch -// -------------------------------------------------------------------------- -// -CVIMPSTCmdSearch::CVIMPSTCmdSearch( - const TInt aCommandId , - RArray& aKeyDataArray, - MVIMPSTEngine& aEngine) : - iCommandId( aCommandId ), - iKeyDataArray( aKeyDataArray ), - iEngine(aEngine) - { - - } - -// -------------------------------------------------------------------------- -// CVIMPSTCmdSearch::~CVIMPSTCmdSearch -// -------------------------------------------------------------------------- -// -CVIMPSTCmdSearch::~CVIMPSTCmdSearch() - { - - } - -// -------------------------------------------------------------------------- -// CVIMPSTCmdSearch::NewL -// -------------------------------------------------------------------------- -// -CVIMPSTCmdSearch* CVIMPSTCmdSearch::NewL( - const TInt aCommandId, - RArray& aKeyDataArray, - MVIMPSTEngine& aEngine ) - { - CVIMPSTCmdSearch* self = new (ELeave ) CVIMPSTCmdSearch( aCommandId ,aKeyDataArray, aEngine); - self->ConstructL(); //use contsurctL if necessary - return self; - } -// -------------------------------------------------------------------------- -// CVIMPSTCmdSearch::ConstructL -// -------------------------------------------------------------------------- -// -void CVIMPSTCmdSearch::ConstructL() - { - iError = KErrNone; - } - -// -------------------------------------------------------------------------- -// CVIMPSTCmdSearch::ExecuteLD -// -------------------------------------------------------------------------- -// -void CVIMPSTCmdSearch::ExecuteLD() - { - - TRACER_AUTO; - //push to the cleanupstack - CleanupStack::PushL( this ); - - //make search request using search manager in engine - MVIMPSTEngineExtentionFeatures* feature = iEngine.ExtentionFeatures(TVIMPSTEnums::ESearch); - if (feature) - { - MVIMPSTEngineSearchMgrExtention& searchMgr = - MVIMPSTEngineSearchMgrExtention::Cast - (*feature); - - iError = searchMgr.SearchContactsL( iKeyDataArray ); - } - - - - if(iObserver) - { - iObserver->CommandFinishedL(*this); - } - - CleanupStack::PopAndDestroy(); - - } - - -// -------------------------------------------------------------------------- -// CVIMPSTCmdSearch::AddObserver -// -------------------------------------------------------------------------- -// -void CVIMPSTCmdSearch::AddObserver( MVIMPSTCmdObserver& aObserver ) - { - // store the observer to notify the command completion - iObserver = &aObserver; - } - - -// -------------------------------------------------------------------------- -// CVIMPSTCmdSearch::CommandId -// -------------------------------------------------------------------------- -// -TInt CVIMPSTCmdSearch::CommandId() const - { - return iCommandId; - } - -// -------------------------------------------------------------------------- -// CVIMPSTCmdSearch::Result -// -------------------------------------------------------------------------- -// -TInt CVIMPSTCmdSearch::Result() const - { - //return valid data regd the command operation - return iError; - } - -// End of File