sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
#include "DiscovererObserverStub.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
// ______________________________________________________________________________
|
sl@0
|
20 |
//
|
sl@0
|
21 |
CObserverStub* CObserverStub::NewL(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
|
sl@0
|
22 |
{
|
sl@0
|
23 |
CObserverStub* self= NewLC(aOwner, aContext); // calls c'tor and ConstructL
|
sl@0
|
24 |
CleanupStack::Pop(); // removes self
|
sl@0
|
25 |
return self;
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
CObserverStub* CObserverStub::NewLC(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
CObserverStub* self=new(ELeave) CObserverStub(aOwner, aContext); // calls c'tor
|
sl@0
|
31 |
CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
|
sl@0
|
32 |
self->ConstructL(); // Complete the 'construction'.
|
sl@0
|
33 |
return self;
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
CObserverStub::~CObserverStub()
|
sl@0
|
37 |
{
|
sl@0
|
38 |
// Do nothing
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
CObserverStub::CObserverStub(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
|
sl@0
|
42 |
: CBase(), iOwner(aOwner), iContext(aContext)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
// Deliberately do nothing here : See ConstructL() for initialisation completion.
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
void CObserverStub::ConstructL()
|
sl@0
|
48 |
{
|
sl@0
|
49 |
// Do nothing
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
// Support of the CDiscovererObserver interface
|
sl@0
|
53 |
void CObserverStub::DiscoveriesBegin()
|
sl@0
|
54 |
{
|
sl@0
|
55 |
// Log out some information
|
sl@0
|
56 |
_LIT(KDiscoveriesBegin,"CObserverStub::DiscoveriesBegin called");
|
sl@0
|
57 |
iContext.DataLogger().LogInformation(KDiscoveriesBegin);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
void CObserverStub::RegisterDiscoveryL(const TEntry& /* aDirEntry */)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
// Check the iteration and leave if its the first one
|
sl@0
|
63 |
// after asking for a repeat
|
sl@0
|
64 |
CTransition& transition = iOwner.GetCurrentTransition();
|
sl@0
|
65 |
const TTransitionInfo& info = transition.TransitionInfo();
|
sl@0
|
66 |
if(info.iIteration == KFirstTransitionIteration)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
_LIT(KRegisterDiscoverRepeat,"CObserverStub::RegisterDiscoveryL repeat requested");
|
sl@0
|
69 |
iContext.DataLogger().LogInformation(KRegisterDiscoverRepeat);
|
sl@0
|
70 |
transition.RepeatOnce();
|
sl@0
|
71 |
User::Leave(KTestBedRepeatTest);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
else
|
sl@0
|
74 |
{
|
sl@0
|
75 |
_LIT(KRegisterDiscoverSuccess,"CObserverStub::RegisterDiscoveryL completed");
|
sl@0
|
76 |
iContext.DataLogger().LogInformation(KRegisterDiscoverSuccess);
|
sl@0
|
77 |
}
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
void CObserverStub::DiscoveriesComplete(TBool aSuccessful)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
// Log out some info and cleanup the context
|
sl@0
|
83 |
_LIT(KDiscoveriesComplete,"CObserverStub::DiscoveriesComplete called");
|
sl@0
|
84 |
iContext.DataLogger().LogInformation(KDiscoveriesComplete);
|
sl@0
|
85 |
TInt error = KErrNone;
|
sl@0
|
86 |
if(!aSuccessful)
|
sl@0
|
87 |
error = KErrCancel;
|
sl@0
|
88 |
if(iContext.iNotificationStatus)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
User::RequestComplete(iContext.iNotificationStatus, error);
|
sl@0
|
91 |
iContext.iNotificationStatus = NULL;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
void CObserverStub::DriveRemovedL(TDriveUnit aDrive)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
_LIT(KDriveRemovedL,"CObserverStub::DriveRemovedL called for drive %d ");
|
sl@0
|
98 |
iContext.DataLogger().LogInformationWithParameters(KDriveRemovedL,aDrive);
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
void CObserverStub::DriveReinstatedL(TDriveUnit aDrive)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
// Check the iteration and leave if its the first one
|
sl@0
|
104 |
// after asking for a repeat
|
sl@0
|
105 |
CTransition& transition = iOwner.GetCurrentTransition();
|
sl@0
|
106 |
const TTransitionInfo& info = transition.TransitionInfo();
|
sl@0
|
107 |
if(info.iIteration == KFirstTransitionIteration)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
_LIT(KRegisterDiscoverRepeat,"CObserverStub::DriveReinstatedL for drive %d repeat requested");
|
sl@0
|
110 |
iContext.DataLogger().LogInformationWithParameters(KRegisterDiscoverRepeat, aDrive);
|
sl@0
|
111 |
transition.RepeatOnce();
|
sl@0
|
112 |
User::Leave(KTestBedRepeatTest);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
else
|
sl@0
|
115 |
{
|
sl@0
|
116 |
_LIT(KRegisterDiscoverSuccess,"CObserverStub::DriveReinstatedL for drive %d completed");
|
sl@0
|
117 |
iContext.DataLogger().LogInformationWithParameters(KRegisterDiscoverSuccess, aDrive);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
TBool CObserverStub::NotifiedWithErrorCode(TInt aError)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
// Log out some info and cleanup the context
|
sl@0
|
124 |
_LIT(KNotifiedWithErrorCode,"CObserverStub::NotifiedWithErrorCode called");
|
sl@0
|
125 |
iContext.DataLogger().LogInformation(KNotifiedWithErrorCode);
|
sl@0
|
126 |
if(iContext.iNotificationStatus)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
User::RequestComplete(iContext.iNotificationStatus, aError);
|
sl@0
|
129 |
iContext.iNotificationStatus = NULL;
|
sl@0
|
130 |
}
|
sl@0
|
131 |
return EFalse;
|
sl@0
|
132 |
}
|