Update contrib.
1 // Copyright (c) 1998-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.
19 const TInt KTestCleanupStack=0x20;
21 // This is a path specification and should not be used as is
22 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_SHAPE.DAT");
25 enum TShape {ENotAShape,ESquare,ECircle};
26 typedef CShape* (*TShapeCtor)();
27 class CShape : public CBase
30 static TShapeCtor Ctor(TShape type);
32 virtual void ExternalizeL(RWriteStream& aStream) const=0;
33 virtual void InternalizeL(RReadStream& aStream)=0;
35 TStreamId StoreL(CStreamStore& aStore) const;
36 void RestoreL(const CStreamStore& aStore,TStreamId anId);
38 virtual TPtrC Name() const=0;
39 virtual TSize Extent() const=0;
40 virtual TPoint Centre() const=0;
42 class CSquare : public CShape
47 CSquare(const TPoint& aCentre,TInt aSide);
48 void ExternalizeL(RWriteStream& aStream) const;
49 void InternalizeL(RReadStream& aStream);
52 TPoint Centre() const;
56 class CCircle : public CShape
61 CCircle(const TPoint& aCentre,TInt aRadius);
62 void ExternalizeL(RWriteStream& aStream) const;
63 void InternalizeL(RReadStream& aStream);
66 TPoint Centre() const;
76 TShapeHolder(TShape aType,CShape* aShape);
78 void ExternalizeL(RWriteStream& aStream) const;
79 void InternalizeL(RReadStream& aStream);
80 void StoreComponentsL(CStreamStore& aStore,CStoreMap& aMap) const;
81 void RestoreComponentsL(const CStreamStore& aStore);
83 void ExternalizeSerialL(RWriteStream& aStream) const;
84 void InternalizeSerialL(RReadStream& aStream);
86 TStreamId StoreL(CStreamStore& aStore) const;
87 void RestoreL(const CStreamStore& aStore,TStreamId anId);
89 CShape* Shape() const;
92 TSwizzle<CShape> iShape;
95 LOCAL_D RTest test(_L("t_storshape"));
96 LOCAL_D CTrapCleanup* TheTrapCleanup;
98 //LOCAL_D CBufStore* TheStore;
99 LOCAL_D CFileStore* TheStore;
100 LOCAL_D RStoreWriteStream TheSink;
101 LOCAL_D RStoreReadStream TheSource;
102 //LOCAL_D RFileWriteStream TheSink;
103 //LOCAL_D RFileReadStream TheSource;
106 @SYMTestCaseID PDS-STORE-CT-4025
107 @SYMTestCaseDesc Basic test for CStoreMap Forget() and Unbind() API
108 @SYMTestPriority High
109 @SYMTestActions Unbind stream from Map, forget sgtream from map
110 @SYMTestExpectedResults map stream ID should be NUll
113 LOCAL_C void testExtraStoreMapAPIsL()
115 test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4025"));
116 CShape* shape=new(ELeave) CCircle(TPoint(70,80),40);
117 CleanupStack::PushL(shape);
118 CStoreMap* map=CStoreMap::NewLC(*TheStore);
119 TStreamId id = shape->StoreL(*TheStore);
121 map->BindL(shape,id);
122 test(id == map->At(shape));
123 //Unbind the twizzle(shape) and test to make sure it is unbinded
125 test(KNullStreamId == map->At(shape));
127 map->BindL(shape,id);
128 test(shape == map->Label(id));
129 //Forget the stream id and test to make sure it is forgotten
131 test(shape != map->Label(id));
132 CleanupStack::PopAndDestroy(2,shape);
135 @SYMTestCaseID SYSLIB-STORE-CT-1200
136 @SYMTestCaseDesc Shape streaming test
137 @SYMTestPriority High
138 @SYMTestActions Attempt for streaming of different shapes
139 @SYMTestExpectedResults Test must not fail
142 LOCAL_C void testShapesL()
144 test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1200 Shape streaming "));
146 TParsePtrC parse(KFileLocationSpec);
148 // TheStore=CDirectFileStore::ReplaceLC(TheFs,KTestFile,EFileRead|EFileWrite);
149 TheStore=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
150 TheStore->SetTypeL(TheStore->Layout());
152 RStoreWriteStream snk;
153 TStreamId id=snk.CreateL(*TheStore);
154 TShapeHolder hldr(ESquare,new(ELeave) CSquare(TPoint(20,30),40));
155 hldr.ExternalizeSerialL(snk);
157 hldr=TShapeHolder(ECircle,new(ELeave) CCircle(TPoint(70,80),40));
158 hldr.ExternalizeSerialL(snk);
161 RStoreReadStream src;
162 src.OpenL(*TheStore,id);
163 hldr.InternalizeSerialL(src);
165 hldr.InternalizeSerialL(src);
169 hldr=TShapeHolder(ESquare,new(ELeave) CSquare(TPoint(20,30),40));
170 id=hldr.StoreL(*TheStore);
172 hldr.RestoreL(*TheStore,id);
175 CShape* shape=new(ELeave) CCircle(TPoint(70,80),40);
176 CStoreMap* map=CStoreMap::NewL(*TheStore);
177 TStreamId id2 = shape->StoreL(*TheStore);
179 testExtraStoreMapAPIsL();
181 map->BindL(shape,id2);
182 snk=RStoreWriteStream(*map);
183 id=snk.CreateL(*TheStore);
187 src.OpenL(*TheStore,id);
190 shape=new(ELeave) CCircle;
191 shape->RestoreL(*TheStore,id);
193 TRAPD(r,shape->RestoreL(*TheStore,id));
194 test(r==KErrNotFound);
197 CleanupStack::PopAndDestroy();
201 // Prepare the test directory.
203 LOCAL_C void setupTestDirectory()
205 TInt r=TheFs.Connect();
208 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
210 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
212 r=TheFs.MkDir(parse.DriveAndPath());
213 test(r==KErrNone||r==KErrAlreadyExists);
214 r=TheFs.SetSessionPath(parse.DriveAndPath());
219 // Initialise the cleanup stack.
221 LOCAL_C void setupCleanup()
223 TheTrapCleanup=CTrapCleanup::New();
224 test(TheTrapCleanup!=NULL);
227 for (TInt i=KTestCleanupStack;i>0;i--)\
228 CleanupStack::PushL((TAny*)1);\
230 CleanupStack::Pop(KTestCleanupStack);\
235 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
238 TInt err = fsSession.Connect();
242 if(fsSession.Entry(aFullName, entry) == KErrNone)
244 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
245 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
248 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
250 err = fsSession.Delete(aFullName);
253 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
260 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
265 // Test the streaming framework.
267 GLDEF_C TInt E32Main()
270 setupTestDirectory();
274 TRAPD(r,testShapesL());
277 //deletion of data files must be before call to .End() - DEF047652
278 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
280 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
281 ::DeleteDataFile(parse.FullName());
287 delete TheTrapCleanup;
293 TShapeCtor CShape::Ctor(TShape type)
298 return &CSquare::New;
300 return &CCircle::New;
306 TStreamId CShape::StoreL(CStreamStore& aStore) const
308 RStoreWriteStream stream;
309 TStreamId id=stream.CreateLC(aStore);
310 ExternalizeL(stream);
312 CleanupStack::PopAndDestroy();
316 void CShape::RestoreL(const CStreamStore& aStore,TStreamId anId)
318 RStoreReadStream stream;
319 stream.OpenLC(aStore,anId);
320 InternalizeL(stream);
321 CleanupStack::PopAndDestroy();
324 CShape* CSquare::New()
329 CSquare::CSquare(const TPoint& aCentre,TInt aSide)
332 iRect.iTl.iX=aCentre.iX-offset;
333 iRect.iTl.iY=aCentre.iY-offset;
334 iRect.iBr.iX=iRect.iTl.iX+aSide;
335 iRect.iBr.iY=iRect.iTl.iY+aSide;
338 void CSquare::ExternalizeL(RWriteStream& aStream) const
340 aStream.WriteUint32L(iRect.iTl.iX);
341 aStream.WriteUint32L(iRect.iTl.iY);
342 aStream.WriteUint32L(iRect.iBr.iX);
343 aStream.WriteUint32L(iRect.iBr.iY);
346 void CSquare::InternalizeL(RReadStream& aStream)
348 iRect.iTl.iX=aStream.ReadUint32L();
349 iRect.iTl.iY=aStream.ReadUint32L();
350 iRect.iBr.iX=aStream.ReadUint32L();
351 iRect.iBr.iY=aStream.ReadUint32L();
354 TPtrC CSquare::Name() const
359 TSize CSquare::Extent() const
361 return (iRect.iBr-iRect.iTl).AsSize();
364 TPoint CSquare::Centre() const
366 return TPoint((iRect.iBr.iX-iRect.iTl.iX)/2,(iRect.iBr.iY-iRect.iTl.iY)/2);
369 CShape* CCircle::New()
374 CCircle::CCircle(const TPoint& aCentre,TInt aRadius)
375 : iCentre(aCentre),iRadius(aRadius)
378 void CCircle::ExternalizeL(RWriteStream& aStream) const
380 aStream.WriteUint32L(iCentre.iX);
381 aStream.WriteUint32L(iCentre.iY);
382 aStream.WriteUint32L(iRadius);
385 void CCircle::InternalizeL(RReadStream& aStream)
387 iCentre.iX=aStream.ReadUint32L();
388 iCentre.iY=aStream.ReadUint32L();
389 iRadius=aStream.ReadUint32L();
392 TPtrC CCircle::Name() const
397 TSize CCircle::Extent() const
399 TInt diameter=iRadius*2;
400 return TSize(diameter,diameter);
403 TPoint CCircle::Centre() const
408 TShapeHolder::TShapeHolder()
409 : iType(ENotAShape),iShape(NULL)
412 TShapeHolder::TShapeHolder(TShape aType,CShape* aShape)
413 : iType(aType),iShape(aShape)
415 __ASSERT_DEBUG((iType==ENotAShape)==(aShape==NULL),User::Panic(_L("gargl"),0));
418 void TShapeHolder::ExternalizeL(RWriteStream& aStream) const
420 aStream.WriteUint8L(iType);
424 void TShapeHolder::InternalizeL(RReadStream& aStream)
426 TShape type=TShape(aStream.ReadUint8L());
427 if ((type==ENotAShape)!=(CShape::Ctor(type)==NULL))
428 User::Leave(KErrCorrupt); // representation violation!!!
434 void TShapeHolder::StoreComponentsL(CStreamStore& aStore,CStoreMap& aMap) const
438 TStreamId id=iShape->StoreL(aStore);
439 aMap.BindL(iShape,id);
443 void TShapeHolder::RestoreComponentsL(const CStreamStore& aStore)
445 TShapeCtor ctor=CShape::Ctor(iType);
449 User::LeaveIfNull(shape=(*ctor)());
450 CleanupStack::PushL(shape);
451 shape->RestoreL(aStore,iShape.AsId());
457 void TShapeHolder::ExternalizeSerialL(RWriteStream& aStream) const
459 aStream.WriteUint8L(iType);
464 void TShapeHolder::InternalizeSerialL(RReadStream& aStream)
466 TShape type=TShape(aStream.ReadUint8L());
467 TShapeCtor ctor=CShape::Ctor(type);
468 if ((type==ENotAShape)!=(ctor==NULL))
469 User::Leave(1832); // representation violation!!!
474 User::LeaveIfNull(shape=(*ctor)());
475 CleanupStack::PushL(shape);
483 TStreamId TShapeHolder::StoreL(CStreamStore& aStore) const
485 CStoreMap* map=CStoreMap::NewLC(aStore);
486 StoreComponentsL(aStore,*map);
488 RStoreWriteStream stream(*map);
489 TStreamId id=stream.CreateLC(aStore);
490 ExternalizeL(stream);
494 CleanupStack::PopAndDestroy(2);
498 void TShapeHolder::RestoreL(const CStreamStore& aStore,TStreamId anId)
500 RStoreReadStream stream;
501 stream.OpenLC(aStore,anId);
502 InternalizeL(stream);
503 CleanupStack::PopAndDestroy();
505 RestoreComponentsL(aStore);
508 CShape* TShapeHolder::Shape() const