os/persistentdata/persistentstorage/store/TSTOR/t_storstrm.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-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
#include <s32mem.h>
sl@0
    17
#include <s32file.h>
sl@0
    18
#include <e32test.h>
sl@0
    19
sl@0
    20
const TInt KTestCleanupStack=0x20;
sl@0
    21
const TInt KTestExpandSize=0x20;
sl@0
    22
const TInt KTestGranularity=0x02;
sl@0
    23
sl@0
    24
// This is a path specification and should not be used as is
sl@0
    25
_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_STRM.DAT");
sl@0
    26
sl@0
    27
LOCAL_D RTest test(_L("t_storstrm"));
sl@0
    28
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    29
LOCAL_D RFs TheFs;
sl@0
    30
LOCAL_D CFileStore* TheStore;
sl@0
    31
LOCAL_D CBufStore* TheBufStore;
sl@0
    32
LOCAL_D RStoreWriteStream TheSink;
sl@0
    33
LOCAL_D RStoreReadStream TheSource;
sl@0
    34
sl@0
    35
class THexEncodeFilter : public TStreamFilter
sl@0
    36
	{
sl@0
    37
public:
sl@0
    38
	void Set(MStreamBuf* aBuf,TInt aMode);
sl@0
    39
private:
sl@0
    40
	TInt Capacity(TInt aMaxLength);
sl@0
    41
	TInt FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd);
sl@0
    42
	void DoSynchL();
sl@0
    43
//
sl@0
    44
	static TText8 HexDigit(TUint aNibble);
sl@0
    45
	static TText8 HexMSN(TUint aByte);
sl@0
    46
	static TText8 HexLSN(TUint aByte);
sl@0
    47
private:
sl@0
    48
	TChar iSpare;
sl@0
    49
	};
sl@0
    50
sl@0
    51
class RHexDumpStream : public RWriteStream
sl@0
    52
	{
sl@0
    53
public:
sl@0
    54
	RHexDumpStream() {}
sl@0
    55
	RHexDumpStream(RWriteStream& aStream);
sl@0
    56
	void Open(RWriteStream& aStream);
sl@0
    57
private:
sl@0
    58
	THexEncodeFilter iFilter;
sl@0
    59
	};
sl@0
    60
class RHexLoadStream : public RReadStream
sl@0
    61
	{
sl@0
    62
public:
sl@0
    63
	RHexLoadStream() {}
sl@0
    64
	RHexLoadStream(RReadStream& aStream);
sl@0
    65
	void Open(RReadStream& aStream);
sl@0
    66
private:
sl@0
    67
	THexEncodeFilter iFilter;
sl@0
    68
	};
sl@0
    69
sl@0
    70
/**
sl@0
    71
@SYMTestCaseID          SYSLIB-STORE-CT-1205
sl@0
    72
@SYMTestCaseDesc	    Streaming in and out tests
sl@0
    73
@SYMTestPriority 	    High
sl@0
    74
@SYMTestActions  	    Tests for copying and filtering
sl@0
    75
@SYMTestExpectedResults Test must not fail
sl@0
    76
@SYMREQ                 REQ0000
sl@0
    77
*/
sl@0
    78
LOCAL_C void testFixL(CArrayFix< TBuf<16> >& aFix)
sl@0
    79
	{
sl@0
    80
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1205 Test streaming in and out "));
sl@0
    81
	TBuf<16> aa(_L("aa"));
sl@0
    82
	aFix.AppendL(aa);
sl@0
    83
	TBuf<16> bb(_L("bbbb"));
sl@0
    84
	aFix.AppendL(bb);
sl@0
    85
	TStreamId id=TheSink.CreateL(*TheStore);
sl@0
    86
	TheSink<<aFix;
sl@0
    87
	TBuf<16> cc(_L("cccccc"));
sl@0
    88
	aFix.AppendL(cc);
sl@0
    89
	TheSink.Close();
sl@0
    90
	id=TheSink.CreateL(*TheStore);
sl@0
    91
	TheSink<<aFix;
sl@0
    92
	TheSink.Close();
sl@0
    93
	TheStore->SetRootL(id);
sl@0
    94
	TheStore->CommitL();
sl@0
    95
	aFix.Reset();
sl@0
    96
	TheSource.OpenL(*TheStore,TheStore->Root());
sl@0
    97
	TheSource>>aFix;
sl@0
    98
	TheSource.Close();
sl@0
    99
	test(aFix[0]==aa&&aFix[1]==bb&&aFix[2]==cc);
sl@0
   100
	test.Printf(_L("%S %S %S\n"),&aa,&bb,&cc);
sl@0
   101
	test.Printf(_L("%S %S %S\n"),&aFix[0],&aFix[1],&aFix[2]);
sl@0
   102
//
sl@0
   103
// Test copying and filtering.
sl@0
   104
//
sl@0
   105
	CBufSeg* bufp=CBufSeg::NewL(KTestExpandSize);
sl@0
   106
	CleanupStack::PushL(bufp);
sl@0
   107
//
sl@0
   108
	TheSource.OpenL(*TheStore,id);
sl@0
   109
	id=TheSink.CreateL(*TheStore);
sl@0
   110
//
sl@0
   111
	RBufWriteStream bout(*bufp);
sl@0
   112
	RHexDumpStream hout(bout);
sl@0
   113
	hout.WriteL(TheSource,10);
sl@0
   114
	RHexLoadStream hin(TheSource);
sl@0
   115
	hin.ReadL(bout,10);
sl@0
   116
	bout.CommitL();
sl@0
   117
//
sl@0
   118
	RBufReadStream bin(*bufp);
sl@0
   119
	bin.ReadL(TheSink);
sl@0
   120
//
sl@0
   121
	TheSink.Close();
sl@0
   122
	TheSource.Close();
sl@0
   123
//
sl@0
   124
	CleanupStack::PopAndDestroy();
sl@0
   125
	
sl@0
   126
	}
sl@0
   127
sl@0
   128
/**
sl@0
   129
@SYMTestCaseID          PDS-STORE-CT-4018
sl@0
   130
@SYMTestCaseDesc	    Testing RStoreWriteStream::Append API
sl@0
   131
@SYMTestPriority 	    High
sl@0
   132
@SYMTestActions  	    Open file for append, add data to Store
sl@0
   133
@SYMTestExpectedResults Data is succesfully added to store
sl@0
   134
@SYMDEF                 DEF135804
sl@0
   135
*/
sl@0
   136
LOCAL_C void testAppendL()
sl@0
   137
	{
sl@0
   138
	test.Next(_L("PDS-STORE-CT-4018: Testing Append API"));
sl@0
   139
	TheBufStore=CBufStore::NewLC(KTestExpandSize);
sl@0
   140
	
sl@0
   141
	//TStreamId id=TheSink.CreateL(*TheBufStore);
sl@0
   142
	TStreamId id = TheBufStore->ExtendL();
sl@0
   143
	TRAPD(r, TheSink.AppendL(*TheBufStore, id));
sl@0
   144
	test(r == KErrNone);
sl@0
   145
	TBuf<16> inbuf(_L("appendL"));
sl@0
   146
	TheSink<<inbuf;
sl@0
   147
	TheSink.CommitL();
sl@0
   148
	TheSink.Close();
sl@0
   149
	
sl@0
   150
	
sl@0
   151
	TBuf<16> outbuf;
sl@0
   152
	TheSource.OpenL(*TheBufStore,id);
sl@0
   153
	TheSource>>outbuf;
sl@0
   154
	TheSource.Close();
sl@0
   155
	test(inbuf==outbuf);
sl@0
   156
	
sl@0
   157
	test.Printf(_L("Write Buf: %S\n"),&inbuf);
sl@0
   158
	test.Printf(_L("Read Buf: %S\n"),&outbuf);
sl@0
   159
	
sl@0
   160
	CleanupStack::PopAndDestroy(TheBufStore);
sl@0
   161
	
sl@0
   162
	}
sl@0
   163
sl@0
   164
RHexDumpStream::RHexDumpStream(RWriteStream& aStream)
sl@0
   165
	{
sl@0
   166
	Open(aStream);
sl@0
   167
	}
sl@0
   168
sl@0
   169
void RHexDumpStream::Open(RWriteStream& aStream)
sl@0
   170
	{
sl@0
   171
	iFilter.Set(aStream.Sink(),THexEncodeFilter::EWrite);
sl@0
   172
	RWriteStream::Attach(&iFilter);
sl@0
   173
	}
sl@0
   174
sl@0
   175
RHexLoadStream::RHexLoadStream(RReadStream& aStream)
sl@0
   176
	{
sl@0
   177
	Open(aStream);
sl@0
   178
	}
sl@0
   179
sl@0
   180
void RHexLoadStream::Open(RReadStream& aStream)
sl@0
   181
	{
sl@0
   182
	iFilter.Set(aStream.Source(),THexEncodeFilter::ERead);
sl@0
   183
	RReadStream::Attach(&iFilter);
sl@0
   184
	}
sl@0
   185
sl@0
   186
void THexEncodeFilter::Set(MStreamBuf* aBuf,TInt aMode)
sl@0
   187
	{
sl@0
   188
	TStreamFilter::Set(aBuf,aMode);
sl@0
   189
	iSpare=TChar(0);
sl@0
   190
	}
sl@0
   191
sl@0
   192
TInt THexEncodeFilter::Capacity(TInt aMaxLength)
sl@0
   193
	{
sl@0
   194
	__ASSERT_DEBUG(aMaxLength>0,User::Panic(_L("aargh!"),0));
sl@0
   195
	return (iSpare.Eos()?aMaxLength+1:aMaxLength)>>1;
sl@0
   196
	}
sl@0
   197
sl@0
   198
TInt THexEncodeFilter::FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd)
sl@0
   199
	{
sl@0
   200
	__ASSERT_DEBUG(aMaxLength>0,User::Panic(_L("aargh!"),0));
sl@0
   201
	TPtr8 hex((TText8*)aPtr,aMaxLength);
sl@0
   202
	const TUint8* bin=aFrom;
sl@0
   203
	if (!iSpare.Eos())
sl@0
   204
		{
sl@0
   205
		hex.Append(iSpare);
sl@0
   206
		aMaxLength--;
sl@0
   207
		}
sl@0
   208
	TInt n=Min(aMaxLength>>1,anEnd-bin);
sl@0
   209
	for (const TUint8* end=bin+n;bin<end;bin++)
sl@0
   210
		{
sl@0
   211
		TUint8 byte=*bin;
sl@0
   212
		hex.Append(HexMSN(byte));
sl@0
   213
		hex.Append(HexLSN(byte));
sl@0
   214
		}
sl@0
   215
	if (aMaxLength>(n<<1)&&bin<anEnd)
sl@0
   216
		{
sl@0
   217
		TUint8 byte=*bin++;
sl@0
   218
		hex.Append(HexMSN(byte));
sl@0
   219
		iSpare=HexLSN(byte);
sl@0
   220
		}
sl@0
   221
	else
sl@0
   222
		iSpare=TChar(0);
sl@0
   223
	__ASSERT_DEBUG(hex.Length()==hex.MaxLength()||bin==anEnd,User::Panic(_L("aargh!"),0));
sl@0
   224
	aFrom=bin;
sl@0
   225
	return hex.Length();
sl@0
   226
	}
sl@0
   227
sl@0
   228
void THexEncodeFilter::DoSynchL()
sl@0
   229
	{
sl@0
   230
	if (IsCommitted())
sl@0
   231
		return;
sl@0
   232
//
sl@0
   233
	if (!iSpare.Eos())
sl@0
   234
		{
sl@0
   235
		TText8 c=TText8(iSpare);
sl@0
   236
		iSpare=TChar(0);
sl@0
   237
		EmitL(&c,1);
sl@0
   238
		}
sl@0
   239
	TStreamFilter::DoSynchL();
sl@0
   240
	}
sl@0
   241
sl@0
   242
TText8 THexEncodeFilter::HexDigit(TUint aNibble)
sl@0
   243
	{
sl@0
   244
	return TText8(aNibble+(aNibble<10?'0':('a'-10)));
sl@0
   245
	}
sl@0
   246
sl@0
   247
TText8 THexEncodeFilter::HexMSN(TUint aByte)
sl@0
   248
	{
sl@0
   249
	return HexDigit(aByte>>4);
sl@0
   250
	}
sl@0
   251
sl@0
   252
TText8 THexEncodeFilter::HexLSN(TUint aByte)
sl@0
   253
	{
sl@0
   254
	return HexDigit(aByte&0x0f);
sl@0
   255
	}
sl@0
   256
sl@0
   257
LOCAL_C void doMainL()
sl@0
   258
	{
sl@0
   259
	test.Start(_L("Creating Store"));
sl@0
   260
	TParsePtrC parse(KFileLocationSpec);
sl@0
   261
	
sl@0
   262
//	TheStore=CBufStore::NewLC(KTestExpandSize);
sl@0
   263
	TheStore=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
sl@0
   264
	TheStore->SetTypeL(TUidType(KDirectFileStoreLayoutUid,TUid::Uid('H'|('E'<<8)|('X'<<16))));
sl@0
   265
sl@0
   266
	test.Next(_L("Creating CArrayFixFlat"));
sl@0
   267
	CArrayFixFlat< TBuf<16> >* pFixFlat=new(ELeave) CArrayFixFlat< TBuf<16> >(KTestGranularity);
sl@0
   268
	CleanupStack::PushL(pFixFlat);
sl@0
   269
	testFixL(*pFixFlat);
sl@0
   270
	
sl@0
   271
	testAppendL();
sl@0
   272
	
sl@0
   273
	CleanupStack::PopAndDestroy(2,TheStore);
sl@0
   274
	}
sl@0
   275
sl@0
   276
//
sl@0
   277
// Prepare the test directory.
sl@0
   278
//
sl@0
   279
LOCAL_C void setupTestDirectory()
sl@0
   280
    {
sl@0
   281
	TInt r=TheFs.Connect();
sl@0
   282
	test(r==KErrNone);
sl@0
   283
//
sl@0
   284
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   285
	TParse parse;
sl@0
   286
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   287
	
sl@0
   288
	r=TheFs.MkDir(parse.DriveAndPath());
sl@0
   289
	test(r==KErrNone||r==KErrAlreadyExists);
sl@0
   290
	r=TheFs.SetSessionPath(parse.DriveAndPath());
sl@0
   291
	test(r==KErrNone);
sl@0
   292
	}
sl@0
   293
sl@0
   294
//
sl@0
   295
// Initialise the cleanup stack.
sl@0
   296
//
sl@0
   297
LOCAL_C void setupCleanup()
sl@0
   298
    {
sl@0
   299
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   300
	test(TheTrapCleanup!=NULL);
sl@0
   301
	TRAPD(r,\
sl@0
   302
		{\
sl@0
   303
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
   304
			CleanupStack::PushL((TAny*)1);\
sl@0
   305
		test(r==KErrNone);\
sl@0
   306
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
   307
		});
sl@0
   308
	test(r==KErrNone);
sl@0
   309
	}
sl@0
   310
sl@0
   311
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
sl@0
   312
	{
sl@0
   313
	RFs fsSession;
sl@0
   314
	TInt err = fsSession.Connect();
sl@0
   315
	if(err == KErrNone)
sl@0
   316
		{
sl@0
   317
		TEntry entry;
sl@0
   318
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   319
			{
sl@0
   320
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   321
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   322
			if(err != KErrNone)
sl@0
   323
				{
sl@0
   324
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   325
				}
sl@0
   326
			err = fsSession.Delete(aFullName);
sl@0
   327
			if(err != KErrNone)
sl@0
   328
				{
sl@0
   329
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   330
				}
sl@0
   331
			}
sl@0
   332
		fsSession.Close();
sl@0
   333
		}
sl@0
   334
	else
sl@0
   335
		{
sl@0
   336
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   337
		}
sl@0
   338
	}
sl@0
   339
sl@0
   340
//
sl@0
   341
// Test the streaming framework.
sl@0
   342
//
sl@0
   343
GLDEF_C TInt E32Main()
sl@0
   344
    {
sl@0
   345
	test.Title();
sl@0
   346
	setupTestDirectory();
sl@0
   347
	setupCleanup();
sl@0
   348
	__UHEAP_MARK;
sl@0
   349
//
sl@0
   350
	TRAPD(r,doMainL());
sl@0
   351
	test(r==KErrNone);
sl@0
   352
sl@0
   353
	//deletion of data files must be before call to .End() - DEF047652
sl@0
   354
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   355
	TParse parse;
sl@0
   356
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   357
	::DeleteDataFile(parse.FullName());
sl@0
   358
sl@0
   359
	test.End();
sl@0
   360
//
sl@0
   361
	__UHEAP_MARKEND;
sl@0
   362
sl@0
   363
	delete TheTrapCleanup;
sl@0
   364
	TheFs.Close();
sl@0
   365
	test.Close();
sl@0
   366
	return 0;
sl@0
   367
    }
sl@0
   368