os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererObserverStub.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererObserverStub.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,132 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +
    1.20 +#include "DiscovererObserverStub.h"
    1.21 +
    1.22 +// ______________________________________________________________________________
    1.23 +//
    1.24 +CObserverStub* CObserverStub::NewL(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
    1.25 +	{
    1.26 +	CObserverStub* self= NewLC(aOwner, aContext);  // calls c'tor and ConstructL
    1.27 +	CleanupStack::Pop();				// removes self
    1.28 +	return self;
    1.29 +	}
    1.30 +
    1.31 +CObserverStub* CObserverStub::NewLC(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
    1.32 +	{
    1.33 +	CObserverStub* self=new(ELeave) CObserverStub(aOwner, aContext);  // calls c'tor
    1.34 +	CleanupStack::PushL(self);	// Make the construction safe by using the cleanup stack
    1.35 +	self->ConstructL();	// Complete the 'construction'.
    1.36 +	return self;
    1.37 +	}
    1.38 +
    1.39 +CObserverStub::~CObserverStub()
    1.40 +	{
    1.41 +	// Do nothing
    1.42 +	}
    1.43 +
    1.44 +CObserverStub::CObserverStub(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
    1.45 +: CBase(), iOwner(aOwner), iContext(aContext)
    1.46 +	{
    1.47 +	// Deliberately do nothing here : See ConstructL() for initialisation completion.
    1.48 +	}
    1.49 +
    1.50 +void CObserverStub::ConstructL()
    1.51 +	{
    1.52 +	// Do nothing
    1.53 +	}
    1.54 +
    1.55 +// Support of the CDiscovererObserver interface
    1.56 +void CObserverStub::DiscoveriesBegin()
    1.57 +	{
    1.58 +	// Log out some information
    1.59 +	_LIT(KDiscoveriesBegin,"CObserverStub::DiscoveriesBegin called");
    1.60 +	iContext.DataLogger().LogInformation(KDiscoveriesBegin);
    1.61 +	}
    1.62 +
    1.63 +void CObserverStub::RegisterDiscoveryL(const TEntry& /* aDirEntry */)
    1.64 +	{
    1.65 +	// Check the iteration and leave if its the first one
    1.66 +	// after asking for a repeat
    1.67 +	CTransition& transition = iOwner.GetCurrentTransition();
    1.68 +	const TTransitionInfo& info = transition.TransitionInfo();
    1.69 +	if(info.iIteration == KFirstTransitionIteration)
    1.70 +		{
    1.71 +		_LIT(KRegisterDiscoverRepeat,"CObserverStub::RegisterDiscoveryL repeat requested");
    1.72 +		iContext.DataLogger().LogInformation(KRegisterDiscoverRepeat);
    1.73 +		transition.RepeatOnce();
    1.74 +		User::Leave(KTestBedRepeatTest);
    1.75 +		}
    1.76 +	else
    1.77 +		{
    1.78 +		_LIT(KRegisterDiscoverSuccess,"CObserverStub::RegisterDiscoveryL completed");
    1.79 +		iContext.DataLogger().LogInformation(KRegisterDiscoverSuccess);
    1.80 +		}
    1.81 +	}
    1.82 +
    1.83 +void CObserverStub::DiscoveriesComplete(TBool aSuccessful)
    1.84 +	{
    1.85 +	// Log out some info and cleanup the context
    1.86 +	_LIT(KDiscoveriesComplete,"CObserverStub::DiscoveriesComplete called");
    1.87 +	iContext.DataLogger().LogInformation(KDiscoveriesComplete);
    1.88 +	TInt error = KErrNone;
    1.89 +	if(!aSuccessful)
    1.90 +		error = KErrCancel;
    1.91 +	if(iContext.iNotificationStatus)
    1.92 +		{
    1.93 +		User::RequestComplete(iContext.iNotificationStatus, error);
    1.94 +		iContext.iNotificationStatus = NULL;
    1.95 +		}
    1.96 +	}
    1.97 +
    1.98 +void CObserverStub::DriveRemovedL(TDriveUnit aDrive)
    1.99 +	{
   1.100 +	_LIT(KDriveRemovedL,"CObserverStub::DriveRemovedL called for drive %d ");
   1.101 +	iContext.DataLogger().LogInformationWithParameters(KDriveRemovedL,aDrive);
   1.102 +	}
   1.103 +
   1.104 +void CObserverStub::DriveReinstatedL(TDriveUnit aDrive)
   1.105 +	{
   1.106 +	// Check the iteration and leave if its the first one
   1.107 +	// after asking for a repeat
   1.108 +	CTransition& transition = iOwner.GetCurrentTransition();
   1.109 +	const TTransitionInfo& info = transition.TransitionInfo();
   1.110 +	if(info.iIteration == KFirstTransitionIteration)
   1.111 +		{
   1.112 +		_LIT(KRegisterDiscoverRepeat,"CObserverStub::DriveReinstatedL for drive %d repeat requested");
   1.113 +		iContext.DataLogger().LogInformationWithParameters(KRegisterDiscoverRepeat, aDrive);
   1.114 +		transition.RepeatOnce();
   1.115 +		User::Leave(KTestBedRepeatTest);
   1.116 +		}
   1.117 +	else
   1.118 +		{
   1.119 +		_LIT(KRegisterDiscoverSuccess,"CObserverStub::DriveReinstatedL for drive %d completed");
   1.120 +		iContext.DataLogger().LogInformationWithParameters(KRegisterDiscoverSuccess, aDrive);
   1.121 +		}
   1.122 +	}
   1.123 +
   1.124 +TBool CObserverStub::NotifiedWithErrorCode(TInt aError)
   1.125 +	{
   1.126 +	// Log out some info and cleanup the context
   1.127 +	_LIT(KNotifiedWithErrorCode,"CObserverStub::NotifiedWithErrorCode called");
   1.128 +	iContext.DataLogger().LogInformation(KNotifiedWithErrorCode);
   1.129 +	if(iContext.iNotificationStatus)
   1.130 +		{
   1.131 +		User::RequestComplete(iContext.iNotificationStatus, aError);
   1.132 +		iContext.iNotificationStatus = NULL;
   1.133 +		}
   1.134 +	return EFalse;
   1.135 +	}