os/persistentdata/persistentstorage/dbms/tdbms/t_dbstress.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 #ifndef T_DBSTRESS_H
    16 #define T_DBSTRESS_H
    17 
    18 #include <d32dbms.h>
    19 #include <s32file.h>
    20 #include <e32test.h>
    21 #include <e32math.h>
    22 
    23 enum TAccount {ECash=0,EJohn,ESam,EBen,EPenny};
    24 const TInt KAccountIDs=EPenny-ECash+1;
    25 
    26 GLREF_C TInt StartThread(RThread& aThread,TRequestStatus& aStat);
    27 GLREF_C TInt Random(TInt aRange);
    28 
    29 GLREF_D TPtrC KTestDatabase,KTestDir,KLogFile;
    30 GLREF_D RTest TheTest;
    31 GLREF_D TInt NewCount;
    32 GLREF_D TInt OldCount;
    33 GLREF_D TInt TransId;
    34 
    35 class Timer
    36 	{
    37 public:
    38 	void Start();
    39 	TInt64 Stop();
    40 	void Print();
    41 private:
    42 	TTime iTime;
    43 	};
    44 
    45 GLREF_D Timer RunTimer;
    46 
    47 #undef  TEST_STRING
    48 #define TEST_STRING(s) _S(s)
    49 
    50 void Check1(TInt aValue, const TText* aFile, TInt aLine);
    51 void Check2(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine);
    52 
    53 #define TEST(arg) ::Check1((arg), TEST_STRING(__FILE__), __LINE__)
    54 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, TEST_STRING(__FILE__), __LINE__)
    55 
    56 #endif// T_DBSTRESS_H