sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: sl@0: #include "DiscovererObserverStub.h" sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: CObserverStub* CObserverStub::NewL(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext) sl@0: { sl@0: CObserverStub* self= NewLC(aOwner, aContext); // calls c'tor and ConstructL sl@0: CleanupStack::Pop(); // removes self sl@0: return self; sl@0: } sl@0: sl@0: CObserverStub* CObserverStub::NewLC(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext) sl@0: { sl@0: CObserverStub* self=new(ELeave) CObserverStub(aOwner, aContext); // calls c'tor sl@0: CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack sl@0: self->ConstructL(); // Complete the 'construction'. sl@0: return self; sl@0: } sl@0: sl@0: CObserverStub::~CObserverStub() sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: CObserverStub::CObserverStub(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext) sl@0: : CBase(), iOwner(aOwner), iContext(aContext) sl@0: { sl@0: // Deliberately do nothing here : See ConstructL() for initialisation completion. sl@0: } sl@0: sl@0: void CObserverStub::ConstructL() sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: // Support of the CDiscovererObserver interface sl@0: void CObserverStub::DiscoveriesBegin() sl@0: { sl@0: // Log out some information sl@0: _LIT(KDiscoveriesBegin,"CObserverStub::DiscoveriesBegin called"); sl@0: iContext.DataLogger().LogInformation(KDiscoveriesBegin); sl@0: } sl@0: sl@0: void CObserverStub::RegisterDiscoveryL(const TEntry& /* aDirEntry */) sl@0: { sl@0: // Check the iteration and leave if its the first one sl@0: // after asking for a repeat sl@0: CTransition& transition = iOwner.GetCurrentTransition(); sl@0: const TTransitionInfo& info = transition.TransitionInfo(); sl@0: if(info.iIteration == KFirstTransitionIteration) sl@0: { sl@0: _LIT(KRegisterDiscoverRepeat,"CObserverStub::RegisterDiscoveryL repeat requested"); sl@0: iContext.DataLogger().LogInformation(KRegisterDiscoverRepeat); sl@0: transition.RepeatOnce(); sl@0: User::Leave(KTestBedRepeatTest); sl@0: } sl@0: else sl@0: { sl@0: _LIT(KRegisterDiscoverSuccess,"CObserverStub::RegisterDiscoveryL completed"); sl@0: iContext.DataLogger().LogInformation(KRegisterDiscoverSuccess); sl@0: } sl@0: } sl@0: sl@0: void CObserverStub::DiscoveriesComplete(TBool aSuccessful) sl@0: { sl@0: // Log out some info and cleanup the context sl@0: _LIT(KDiscoveriesComplete,"CObserverStub::DiscoveriesComplete called"); sl@0: iContext.DataLogger().LogInformation(KDiscoveriesComplete); sl@0: TInt error = KErrNone; sl@0: if(!aSuccessful) sl@0: error = KErrCancel; sl@0: if(iContext.iNotificationStatus) sl@0: { sl@0: User::RequestComplete(iContext.iNotificationStatus, error); sl@0: iContext.iNotificationStatus = NULL; sl@0: } sl@0: } sl@0: sl@0: void CObserverStub::DriveRemovedL(TDriveUnit aDrive) sl@0: { sl@0: _LIT(KDriveRemovedL,"CObserverStub::DriveRemovedL called for drive %d "); sl@0: iContext.DataLogger().LogInformationWithParameters(KDriveRemovedL,aDrive); sl@0: } sl@0: sl@0: void CObserverStub::DriveReinstatedL(TDriveUnit aDrive) sl@0: { sl@0: // Check the iteration and leave if its the first one sl@0: // after asking for a repeat sl@0: CTransition& transition = iOwner.GetCurrentTransition(); sl@0: const TTransitionInfo& info = transition.TransitionInfo(); sl@0: if(info.iIteration == KFirstTransitionIteration) sl@0: { sl@0: _LIT(KRegisterDiscoverRepeat,"CObserverStub::DriveReinstatedL for drive %d repeat requested"); sl@0: iContext.DataLogger().LogInformationWithParameters(KRegisterDiscoverRepeat, aDrive); sl@0: transition.RepeatOnce(); sl@0: User::Leave(KTestBedRepeatTest); sl@0: } sl@0: else sl@0: { sl@0: _LIT(KRegisterDiscoverSuccess,"CObserverStub::DriveReinstatedL for drive %d completed"); sl@0: iContext.DataLogger().LogInformationWithParameters(KRegisterDiscoverSuccess, aDrive); sl@0: } sl@0: } sl@0: sl@0: TBool CObserverStub::NotifiedWithErrorCode(TInt aError) sl@0: { sl@0: // Log out some info and cleanup the context sl@0: _LIT(KNotifiedWithErrorCode,"CObserverStub::NotifiedWithErrorCode called"); sl@0: iContext.DataLogger().LogInformation(KNotifiedWithErrorCode); sl@0: if(iContext.iNotificationStatus) sl@0: { sl@0: User::RequestComplete(iContext.iNotificationStatus, aError); sl@0: iContext.iNotificationStatus = NULL; sl@0: } sl@0: return EFalse; sl@0: }