os/persistentdata/persistentstorage/dbms/tdbms/t_dbstress.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/dbms/tdbms/t_dbstress.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,56 @@
     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 +#ifndef T_DBSTRESS_H
    1.19 +#define T_DBSTRESS_H
    1.20 +
    1.21 +#include <d32dbms.h>
    1.22 +#include <s32file.h>
    1.23 +#include <e32test.h>
    1.24 +#include <e32math.h>
    1.25 +
    1.26 +enum TAccount {ECash=0,EJohn,ESam,EBen,EPenny};
    1.27 +const TInt KAccountIDs=EPenny-ECash+1;
    1.28 +
    1.29 +GLREF_C TInt StartThread(RThread& aThread,TRequestStatus& aStat);
    1.30 +GLREF_C TInt Random(TInt aRange);
    1.31 +
    1.32 +GLREF_D TPtrC KTestDatabase,KTestDir,KLogFile;
    1.33 +GLREF_D RTest TheTest;
    1.34 +GLREF_D TInt NewCount;
    1.35 +GLREF_D TInt OldCount;
    1.36 +GLREF_D TInt TransId;
    1.37 +
    1.38 +class Timer
    1.39 +	{
    1.40 +public:
    1.41 +	void Start();
    1.42 +	TInt64 Stop();
    1.43 +	void Print();
    1.44 +private:
    1.45 +	TTime iTime;
    1.46 +	};
    1.47 +
    1.48 +GLREF_D Timer RunTimer;
    1.49 +
    1.50 +#undef  TEST_STRING
    1.51 +#define TEST_STRING(s) _S(s)
    1.52 +
    1.53 +void Check1(TInt aValue, const TText* aFile, TInt aLine);
    1.54 +void Check2(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine);
    1.55 +
    1.56 +#define TEST(arg) ::Check1((arg), TEST_STRING(__FILE__), __LINE__)
    1.57 +#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, TEST_STRING(__FILE__), __LINE__)
    1.58 +
    1.59 +#endif// T_DBSTRESS_H