diff -r 3104fc151679 -r 9a48e301e94b uiservicetab/vimpstcmdprocess/src/cvimpstcmdsearch.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uiservicetab/vimpstcmdprocess/src/cvimpstcmdsearch.cpp Wed Sep 01 12:33:36 2010 +0100 @@ -0,0 +1,143 @@ +/* +* 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