os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererStateAccessor.inl
First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Access to the internal state of the CDiscoverer class
18 // ______________________________________________________________________________
20 _LIT(KTDiscoverer_DumpName,"C:\\System\\Data\\Logs\\TDiscoverer_StateDump.bin");
22 inline TInt TDiscoverer_StateAccessor::InvariantTest(TAny* aTestObject)
24 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
26 // The only invariants over all cases
27 if( discoverer == NULL ||
28 discoverer->iDirNotifier == NULL ||
29 discoverer->iScanningTimer == NULL)
30 return KTestBedFailedInvariant;
35 inline TInt TDiscoverer_StateAccessor::Internalize(TAny* aTestObject)
37 TInt error = KErrNone;
38 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
41 TRAP(error,InternalizeL(discoverer));
46 inline TInt TDiscoverer_StateAccessor::Externalize(TAny* aTestObject)
48 TInt error = KErrNone;
49 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
52 TRAP(error,ExternalizeL(discoverer));
58 inline void TDiscoverer_StateAccessor::InternalizeL(CDiscoverer* aDiscoverer)
61 User::LeaveIfError(fs.Connect());
62 CleanupClosePushL(fs);
63 // Read the object dump
65 filename.Set(KTDiscoverer_DumpName(),NULL,NULL);
66 RFileReadStream stream;
67 User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
68 CleanupClosePushL(stream);
69 aDiscoverer->iDrivesDiscovered.Reset();
70 TInt count = stream.ReadInt32L();
71 for(TInt i = 0; i < count; ++i)
73 // Construct the drives discovered array
74 TDriveUnit drive = stream.ReadInt32L();
75 aDiscoverer->iDrivesDiscovered.Append(drive);
77 CleanupStack::PopAndDestroy(); // stream
78 CleanupStack::PopAndDestroy(); // fs
82 inline void TDiscoverer_StateAccessor::ExternalizeL(CDiscoverer* aDiscoverer)
84 // Dump the internal state of the CDiscoverer
86 User::LeaveIfError(fs.Connect());
87 CleanupClosePushL(fs);
88 // Write out the object dump
90 filename.Set(KTDiscoverer_DumpName(),NULL,NULL);
91 RFileWriteStream stream;
92 User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
93 CleanupClosePushL(stream);
94 const TInt count = aDiscoverer->iDrivesDiscovered.Count();
95 stream.WriteInt32L(count);
96 for(TInt i = 0; i < count; ++i)
98 // Dump the drives discovered array
99 stream.WriteInt32L((aDiscoverer->iDrivesDiscovered)[i]);
101 CleanupStack::PopAndDestroy(&stream);
102 CleanupStack::PopAndDestroy(&fs);