1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/store/TSTOR/t_storshape.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,512 @@
1.4 +// Copyright (c) 1998-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 +#include <s32file.h>
1.20 +#include <e32test.h>
1.21 +
1.22 +const TInt KTestCleanupStack=0x20;
1.23 +
1.24 +// This is a path specification and should not be used as is
1.25 +_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_SHAPE.DAT");
1.26 +
1.27 +class CShape;
1.28 +enum TShape {ENotAShape,ESquare,ECircle};
1.29 +typedef CShape* (*TShapeCtor)();
1.30 +class CShape : public CBase
1.31 + {
1.32 +public:
1.33 + static TShapeCtor Ctor(TShape type);
1.34 +//
1.35 + virtual void ExternalizeL(RWriteStream& aStream) const=0;
1.36 + virtual void InternalizeL(RReadStream& aStream)=0;
1.37 +//
1.38 + TStreamId StoreL(CStreamStore& aStore) const;
1.39 + void RestoreL(const CStreamStore& aStore,TStreamId anId);
1.40 +//
1.41 + virtual TPtrC Name() const=0;
1.42 + virtual TSize Extent() const=0;
1.43 + virtual TPoint Centre() const=0;
1.44 + };
1.45 +class CSquare : public CShape
1.46 + {
1.47 +public:
1.48 + static CShape* New();
1.49 + CSquare() {}
1.50 + CSquare(const TPoint& aCentre,TInt aSide);
1.51 + void ExternalizeL(RWriteStream& aStream) const;
1.52 + void InternalizeL(RReadStream& aStream);
1.53 + TPtrC Name() const;
1.54 + TSize Extent() const;
1.55 + TPoint Centre() const;
1.56 +private:
1.57 + TRect iRect;
1.58 + };
1.59 +class CCircle : public CShape
1.60 + {
1.61 +public:
1.62 + static CShape* New();
1.63 + CCircle() {}
1.64 + CCircle(const TPoint& aCentre,TInt aRadius);
1.65 + void ExternalizeL(RWriteStream& aStream) const;
1.66 + void InternalizeL(RReadStream& aStream);
1.67 + TPtrC Name() const;
1.68 + TSize Extent() const;
1.69 + TPoint Centre() const;
1.70 +private:
1.71 + TPoint iCentre;
1.72 + TInt iRadius;
1.73 + };
1.74 +
1.75 +class TShapeHolder
1.76 + {
1.77 +public:
1.78 + TShapeHolder();
1.79 + TShapeHolder(TShape aType,CShape* aShape);
1.80 +//
1.81 + void ExternalizeL(RWriteStream& aStream) const;
1.82 + void InternalizeL(RReadStream& aStream);
1.83 + void StoreComponentsL(CStreamStore& aStore,CStoreMap& aMap) const;
1.84 + void RestoreComponentsL(const CStreamStore& aStore);
1.85 +//
1.86 + void ExternalizeSerialL(RWriteStream& aStream) const;
1.87 + void InternalizeSerialL(RReadStream& aStream);
1.88 +//
1.89 + TStreamId StoreL(CStreamStore& aStore) const;
1.90 + void RestoreL(const CStreamStore& aStore,TStreamId anId);
1.91 +//
1.92 + CShape* Shape() const;
1.93 +private:
1.94 + TShape iType;
1.95 + TSwizzle<CShape> iShape;
1.96 + };
1.97 +
1.98 +LOCAL_D RTest test(_L("t_storshape"));
1.99 +LOCAL_D CTrapCleanup* TheTrapCleanup;
1.100 +LOCAL_D RFs TheFs;
1.101 +//LOCAL_D CBufStore* TheStore;
1.102 +LOCAL_D CFileStore* TheStore;
1.103 +LOCAL_D RStoreWriteStream TheSink;
1.104 +LOCAL_D RStoreReadStream TheSource;
1.105 +//LOCAL_D RFileWriteStream TheSink;
1.106 +//LOCAL_D RFileReadStream TheSource;
1.107 +
1.108 +/**
1.109 +@SYMTestCaseID PDS-STORE-CT-4025
1.110 +@SYMTestCaseDesc Basic test for CStoreMap Forget() and Unbind() API
1.111 +@SYMTestPriority High
1.112 +@SYMTestActions Unbind stream from Map, forget sgtream from map
1.113 +@SYMTestExpectedResults map stream ID should be NUll
1.114 +@SYMDEF DEF135804
1.115 +*/
1.116 +LOCAL_C void testExtraStoreMapAPIsL()
1.117 + {
1.118 + test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4025"));
1.119 + CShape* shape=new(ELeave) CCircle(TPoint(70,80),40);
1.120 + CleanupStack::PushL(shape);
1.121 + CStoreMap* map=CStoreMap::NewLC(*TheStore);
1.122 + TStreamId id = shape->StoreL(*TheStore);
1.123 +
1.124 + map->BindL(shape,id);
1.125 + test(id == map->At(shape));
1.126 + //Unbind the twizzle(shape) and test to make sure it is unbinded
1.127 + map->Unbind(shape);
1.128 + test(KNullStreamId == map->At(shape));
1.129 +
1.130 + map->BindL(shape,id);
1.131 + test(shape == map->Label(id));
1.132 + //Forget the stream id and test to make sure it is forgotten
1.133 + map->Forget(id);
1.134 + test(shape != map->Label(id));
1.135 + CleanupStack::PopAndDestroy(2,shape);
1.136 + }
1.137 +/**
1.138 +@SYMTestCaseID SYSLIB-STORE-CT-1200
1.139 +@SYMTestCaseDesc Shape streaming test
1.140 +@SYMTestPriority High
1.141 +@SYMTestActions Attempt for streaming of different shapes
1.142 +@SYMTestExpectedResults Test must not fail
1.143 +@SYMREQ REQ0000
1.144 +*/
1.145 +LOCAL_C void testShapesL()
1.146 + {
1.147 + test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1200 Shape streaming "));
1.148 +
1.149 + TParsePtrC parse(KFileLocationSpec);
1.150 +//
1.151 +// TheStore=CDirectFileStore::ReplaceLC(TheFs,KTestFile,EFileRead|EFileWrite);
1.152 + TheStore=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
1.153 + TheStore->SetTypeL(TheStore->Layout());
1.154 +//
1.155 + RStoreWriteStream snk;
1.156 + TStreamId id=snk.CreateL(*TheStore);
1.157 + TShapeHolder hldr(ESquare,new(ELeave) CSquare(TPoint(20,30),40));
1.158 + hldr.ExternalizeSerialL(snk);
1.159 + delete hldr.Shape();
1.160 + hldr=TShapeHolder(ECircle,new(ELeave) CCircle(TPoint(70,80),40));
1.161 + hldr.ExternalizeSerialL(snk);
1.162 + delete hldr.Shape();
1.163 + snk.Close();
1.164 + RStoreReadStream src;
1.165 + src.OpenL(*TheStore,id);
1.166 + hldr.InternalizeSerialL(src);
1.167 + delete hldr.Shape();
1.168 + hldr.InternalizeSerialL(src);
1.169 + delete hldr.Shape();
1.170 + src.Close();
1.171 +//
1.172 + hldr=TShapeHolder(ESquare,new(ELeave) CSquare(TPoint(20,30),40));
1.173 + id=hldr.StoreL(*TheStore);
1.174 + delete hldr.Shape();
1.175 + hldr.RestoreL(*TheStore,id);
1.176 + delete hldr.Shape();
1.177 +//
1.178 + CShape* shape=new(ELeave) CCircle(TPoint(70,80),40);
1.179 + CStoreMap* map=CStoreMap::NewL(*TheStore);
1.180 + TStreamId id2 = shape->StoreL(*TheStore);
1.181 +
1.182 + testExtraStoreMapAPIsL();
1.183 +
1.184 + map->BindL(shape,id2);
1.185 + snk=RStoreWriteStream(*map);
1.186 + id=snk.CreateL(*TheStore);
1.187 + snk<<shape;
1.188 + snk.Close();
1.189 + delete shape;
1.190 + src.OpenL(*TheStore,id);
1.191 + src>>id;
1.192 + src.Close();
1.193 + shape=new(ELeave) CCircle;
1.194 + shape->RestoreL(*TheStore,id);
1.195 + delete map;
1.196 + TRAPD(r,shape->RestoreL(*TheStore,id));
1.197 + test(r==KErrNotFound);
1.198 + delete shape;
1.199 +//
1.200 + CleanupStack::PopAndDestroy();
1.201 + }
1.202 +
1.203 +//
1.204 +// Prepare the test directory.
1.205 +//
1.206 +LOCAL_C void setupTestDirectory()
1.207 + {
1.208 + TInt r=TheFs.Connect();
1.209 + test(r==KErrNone);
1.210 +//
1.211 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.212 + TParse parse;
1.213 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.214 +
1.215 + r=TheFs.MkDir(parse.DriveAndPath());
1.216 + test(r==KErrNone||r==KErrAlreadyExists);
1.217 + r=TheFs.SetSessionPath(parse.DriveAndPath());
1.218 + test(r==KErrNone);
1.219 + }
1.220 +
1.221 +//
1.222 +// Initialise the cleanup stack.
1.223 +//
1.224 +LOCAL_C void setupCleanup()
1.225 + {
1.226 + TheTrapCleanup=CTrapCleanup::New();
1.227 + test(TheTrapCleanup!=NULL);
1.228 + TRAPD(r,\
1.229 + {\
1.230 + for (TInt i=KTestCleanupStack;i>0;i--)\
1.231 + CleanupStack::PushL((TAny*)1);\
1.232 + test(r==KErrNone);\
1.233 + CleanupStack::Pop(KTestCleanupStack);\
1.234 + });
1.235 + test(r==KErrNone);
1.236 + }
1.237 +
1.238 +LOCAL_C void DeleteDataFile(const TDesC& aFullName)
1.239 + {
1.240 + RFs fsSession;
1.241 + TInt err = fsSession.Connect();
1.242 + if(err == KErrNone)
1.243 + {
1.244 + TEntry entry;
1.245 + if(fsSession.Entry(aFullName, entry) == KErrNone)
1.246 + {
1.247 + RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
1.248 + err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
1.249 + if(err != KErrNone)
1.250 + {
1.251 + RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
1.252 + }
1.253 + err = fsSession.Delete(aFullName);
1.254 + if(err != KErrNone)
1.255 + {
1.256 + RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
1.257 + }
1.258 + }
1.259 + fsSession.Close();
1.260 + }
1.261 + else
1.262 + {
1.263 + RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
1.264 + }
1.265 + }
1.266 +
1.267 +//
1.268 +// Test the streaming framework.
1.269 +//
1.270 +GLDEF_C TInt E32Main()
1.271 + {
1.272 + test.Title();
1.273 + setupTestDirectory();
1.274 + setupCleanup();
1.275 + __UHEAP_MARK;
1.276 +//
1.277 + TRAPD(r,testShapesL());
1.278 + test(r==KErrNone);
1.279 +
1.280 + //deletion of data files must be before call to .End() - DEF047652
1.281 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.282 + TParse parse;
1.283 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.284 + ::DeleteDataFile(parse.FullName());
1.285 +
1.286 + test.End();
1.287 +//
1.288 + __UHEAP_MARKEND;
1.289 +
1.290 + delete TheTrapCleanup;
1.291 + TheFs.Close();
1.292 + test.Close();
1.293 + return 0;
1.294 + }
1.295 +
1.296 +TShapeCtor CShape::Ctor(TShape type)
1.297 + {
1.298 + switch (type)
1.299 + {
1.300 + case ESquare:
1.301 + return &CSquare::New;
1.302 + case ECircle:
1.303 + return &CCircle::New;
1.304 + default:
1.305 + return NULL;
1.306 + }
1.307 + }
1.308 +
1.309 +TStreamId CShape::StoreL(CStreamStore& aStore) const
1.310 + {
1.311 + RStoreWriteStream stream;
1.312 + TStreamId id=stream.CreateLC(aStore);
1.313 + ExternalizeL(stream);
1.314 + stream.CommitL();
1.315 + CleanupStack::PopAndDestroy();
1.316 + return id;
1.317 + }
1.318 +
1.319 +void CShape::RestoreL(const CStreamStore& aStore,TStreamId anId)
1.320 + {
1.321 + RStoreReadStream stream;
1.322 + stream.OpenLC(aStore,anId);
1.323 + InternalizeL(stream);
1.324 + CleanupStack::PopAndDestroy();
1.325 + }
1.326 +
1.327 +CShape* CSquare::New()
1.328 + {
1.329 + return new CSquare;
1.330 + }
1.331 +
1.332 +CSquare::CSquare(const TPoint& aCentre,TInt aSide)
1.333 + {
1.334 + TInt offset=aSide/2;
1.335 + iRect.iTl.iX=aCentre.iX-offset;
1.336 + iRect.iTl.iY=aCentre.iY-offset;
1.337 + iRect.iBr.iX=iRect.iTl.iX+aSide;
1.338 + iRect.iBr.iY=iRect.iTl.iY+aSide;
1.339 + }
1.340 +
1.341 +void CSquare::ExternalizeL(RWriteStream& aStream) const
1.342 + {
1.343 + aStream.WriteUint32L(iRect.iTl.iX);
1.344 + aStream.WriteUint32L(iRect.iTl.iY);
1.345 + aStream.WriteUint32L(iRect.iBr.iX);
1.346 + aStream.WriteUint32L(iRect.iBr.iY);
1.347 + }
1.348 +
1.349 +void CSquare::InternalizeL(RReadStream& aStream)
1.350 + {
1.351 + iRect.iTl.iX=aStream.ReadUint32L();
1.352 + iRect.iTl.iY=aStream.ReadUint32L();
1.353 + iRect.iBr.iX=aStream.ReadUint32L();
1.354 + iRect.iBr.iY=aStream.ReadUint32L();
1.355 + }
1.356 +
1.357 +TPtrC CSquare::Name() const
1.358 + {
1.359 + return _L("Square");
1.360 + }
1.361 +
1.362 +TSize CSquare::Extent() const
1.363 + {
1.364 + return (iRect.iBr-iRect.iTl).AsSize();
1.365 + }
1.366 +
1.367 +TPoint CSquare::Centre() const
1.368 + {
1.369 + return TPoint((iRect.iBr.iX-iRect.iTl.iX)/2,(iRect.iBr.iY-iRect.iTl.iY)/2);
1.370 + }
1.371 +
1.372 +CShape* CCircle::New()
1.373 + {
1.374 + return new CCircle;
1.375 + }
1.376 +
1.377 +CCircle::CCircle(const TPoint& aCentre,TInt aRadius)
1.378 + : iCentre(aCentre),iRadius(aRadius)
1.379 + {}
1.380 +
1.381 +void CCircle::ExternalizeL(RWriteStream& aStream) const
1.382 + {
1.383 + aStream.WriteUint32L(iCentre.iX);
1.384 + aStream.WriteUint32L(iCentre.iY);
1.385 + aStream.WriteUint32L(iRadius);
1.386 + }
1.387 +
1.388 +void CCircle::InternalizeL(RReadStream& aStream)
1.389 + {
1.390 + iCentre.iX=aStream.ReadUint32L();
1.391 + iCentre.iY=aStream.ReadUint32L();
1.392 + iRadius=aStream.ReadUint32L();
1.393 + }
1.394 +
1.395 +TPtrC CCircle::Name() const
1.396 + {
1.397 + return _L("Circle");
1.398 + }
1.399 +
1.400 +TSize CCircle::Extent() const
1.401 + {
1.402 + TInt diameter=iRadius*2;
1.403 + return TSize(diameter,diameter);
1.404 + }
1.405 +
1.406 +TPoint CCircle::Centre() const
1.407 + {
1.408 + return iCentre;
1.409 + }
1.410 +
1.411 +TShapeHolder::TShapeHolder()
1.412 + : iType(ENotAShape),iShape(NULL)
1.413 + {}
1.414 +
1.415 +TShapeHolder::TShapeHolder(TShape aType,CShape* aShape)
1.416 + : iType(aType),iShape(aShape)
1.417 + {
1.418 + __ASSERT_DEBUG((iType==ENotAShape)==(aShape==NULL),User::Panic(_L("gargl"),0));
1.419 + }
1.420 +
1.421 +void TShapeHolder::ExternalizeL(RWriteStream& aStream) const
1.422 + {
1.423 + aStream.WriteUint8L(iType);
1.424 + aStream<<iShape;
1.425 + }
1.426 +
1.427 +void TShapeHolder::InternalizeL(RReadStream& aStream)
1.428 + {
1.429 + TShape type=TShape(aStream.ReadUint8L());
1.430 + if ((type==ENotAShape)!=(CShape::Ctor(type)==NULL))
1.431 + User::Leave(KErrCorrupt); // representation violation!!!
1.432 +//
1.433 + aStream>>iShape;
1.434 + iType=type;
1.435 + }
1.436 +
1.437 +void TShapeHolder::StoreComponentsL(CStreamStore& aStore,CStoreMap& aMap) const
1.438 + {
1.439 + if (iShape!=NULL)
1.440 + {
1.441 + TStreamId id=iShape->StoreL(aStore);
1.442 + aMap.BindL(iShape,id);
1.443 + }
1.444 + }
1.445 +
1.446 +void TShapeHolder::RestoreComponentsL(const CStreamStore& aStore)
1.447 + {
1.448 + TShapeCtor ctor=CShape::Ctor(iType);
1.449 + CShape* shape=NULL;
1.450 + if (ctor!=NULL)
1.451 + {
1.452 + User::LeaveIfNull(shape=(*ctor)());
1.453 + CleanupStack::PushL(shape);
1.454 + shape->RestoreL(aStore,iShape.AsId());
1.455 + CleanupStack::Pop();
1.456 + }
1.457 + iShape=shape;
1.458 + }
1.459 +
1.460 +void TShapeHolder::ExternalizeSerialL(RWriteStream& aStream) const
1.461 + {
1.462 + aStream.WriteUint8L(iType);
1.463 + if (iShape!=NULL)
1.464 + aStream<<*iShape;
1.465 + }
1.466 +
1.467 +void TShapeHolder::InternalizeSerialL(RReadStream& aStream)
1.468 + {
1.469 + TShape type=TShape(aStream.ReadUint8L());
1.470 + TShapeCtor ctor=CShape::Ctor(type);
1.471 + if ((type==ENotAShape)!=(ctor==NULL))
1.472 + User::Leave(1832); // representation violation!!!
1.473 +//
1.474 + CShape* shape=NULL;
1.475 + if (ctor!=NULL)
1.476 + {
1.477 + User::LeaveIfNull(shape=(*ctor)());
1.478 + CleanupStack::PushL(shape);
1.479 + aStream>>*shape;
1.480 + CleanupStack::Pop();
1.481 + }
1.482 + iType=type;
1.483 + iShape=shape;
1.484 + }
1.485 +
1.486 +TStreamId TShapeHolder::StoreL(CStreamStore& aStore) const
1.487 + {
1.488 + CStoreMap* map=CStoreMap::NewLC(aStore);
1.489 + StoreComponentsL(aStore,*map);
1.490 +//
1.491 + RStoreWriteStream stream(*map);
1.492 + TStreamId id=stream.CreateLC(aStore);
1.493 + ExternalizeL(stream);
1.494 + stream.CommitL();
1.495 +//
1.496 + map->Reset();
1.497 + CleanupStack::PopAndDestroy(2);
1.498 + return id;
1.499 + }
1.500 +
1.501 +void TShapeHolder::RestoreL(const CStreamStore& aStore,TStreamId anId)
1.502 + {
1.503 + RStoreReadStream stream;
1.504 + stream.OpenLC(aStore,anId);
1.505 + InternalizeL(stream);
1.506 + CleanupStack::PopAndDestroy();
1.507 +//
1.508 + RestoreComponentsL(aStore);
1.509 + }
1.510 +
1.511 +CShape* TShapeHolder::Shape() const
1.512 + {
1.513 + return iShape;
1.514 + }
1.515 +