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 // The implementation of the accessor class upon the RStringPool
18 // ______________________________________________________________________________
20 _LIT(KTStringPool_DumpName,"C:\\System\\Data\\Logs\\TStringPool_StateDump.bin");
22 inline TInt TStringPool_StateAccessor::InvariantTest(TAny* aTestObject)
30 inline TInt TStringPool_StateAccessor::Internalize(TAny* aTestObject)
32 TInt error = KErrNone;
33 if(aTestObject != NULL)
35 RStringPool* StringPool = REINTERPRET_CAST(RStringPool*, aTestObject);
36 TRAP(error,InternalizeL(StringPool));
41 inline TInt TStringPool_StateAccessor::Externalize(TAny* aTestObject)
43 TInt error = KErrNone;
44 if(aTestObject != NULL)
46 RStringPool* StringPool = REINTERPRET_CAST(RStringPool*, aTestObject);
47 TRAP(error,ExternalizeL(StringPool));
52 inline void TStringPool_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, RStringPool* /* aLoadManager */)
56 inline void TStringPool_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, RStringPool* /* aLoadManager */)
61 inline void TStringPool_StateAccessor::InternalizeL(RStringPool* aStringPool)
63 // Read in the dumped data
65 User::LeaveIfError(fs.Connect());
66 CleanupClosePushL(fs);
67 // Read the object dump
69 filename.Set(KTStringPool_DumpName(),NULL,NULL);
70 RFileReadStream stream;
71 User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
72 CleanupClosePushL(stream);
73 InternalizeL(stream, aStringPool);
74 CleanupStack::PopAndDestroy(); // stream
75 CleanupStack::PopAndDestroy(); // fs
78 inline void TStringPool_StateAccessor::ExternalizeL(RStringPool* aStringPool)
81 User::LeaveIfError(fs.Connect());
82 CleanupClosePushL(fs);
83 // Write out the object dump
85 filename.Set(KTStringPool_DumpName(),NULL,NULL);
86 RFileWriteStream stream;
87 User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
88 CleanupClosePushL(stream);
89 ExternalizeL(stream, aStringPool);
90 CleanupStack::PopAndDestroy(); // stream
91 CleanupStack::PopAndDestroy(); // fs