First public contribution.
1 // Copyright (c) 2002-2010 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.
22 #include <logengdurations.h>
23 #include <logengevents.h>
24 #include <logwraplimits.h>
25 #include <logfilterandeventconstants.hrh>
28 #include <logviewchangeobserver.h>
29 #include <logclientchangeobserver.h>
30 #include "LogChangeDefinition.h"
31 #include "LogServShared.h"
32 #include "LogCliServShared.h"
34 #include "t_logservsession.h"
35 #include "logcntdef.h"
36 #include "t_logutil.h"
38 #ifdef LOGGING_ENABLED
45 _LIT(KLogFileName, "LogEng.txt");
46 _LIT(KLogFolder, "LogEng");
47 _LIT(KTimeFormat, "%02d.%02d:%02d:%06d ");
48 _LIT(KTextFormat, "%S");
49 const TInt KLogEngLogBufferSize = 256;
51 class Log : public RFileLogger
55 static void Write(const TDesC& aText);
56 static void WriteFormat(TRefByValue<const TDesC> aFmt, ...);
58 static void PruneLogFile();
61 #define LOGNEW Log::New()
62 #define LOGTEXT(AAA) { _LIT(KString, AAA); Log::Write(KString); }
63 #define LOGTEXT2(AAA, BBB) { _LIT(KString, AAA); Log::WriteFormat(TRefByValue<const TDesC>(KString()), BBB); }
64 #define LOGTEXT3(AAA, BBB, CCC) { _LIT(KString, AAA); Log::WriteFormat(TRefByValue<const TDesC>(KString()), BBB, CCC); }
65 #define LOGTEXT4(AAA, BBB, CCC, DDD) { _LIT(KString, AAA); Log::WriteFormat(TRefByValue<const TDesC>(KString()), BBB, CCC, DDD); }
67 #else//LOGGING_ENABLED
71 #define LOGTEXT2(AAA, BBB)
72 #define LOGTEXT3(AAA, BBB, CCC)
73 #define LOGTEXT4(AAA, BBB, CCC, DDD)
75 #endif//LOGGING_ENABLED
78 GLREF_D CTrapCleanup* theCleanup;
79 GLREF_D CActiveScheduler *testScheduler;
81 GLREF_D TFileName theLogName;
83 GLREF_D RLogTestSession theLogServ;
85 #define __FILE_FAILNEXT(err, iteration) theFs.SetErrorCondition(err, iteration)
86 #define __FILE_RESET theFs.SetErrorCondition(KErrNone, 0)
89 _LIT(KLogDatabaseName,"c:\\private\\101f401d\\Logdbu.dat");
91 _LIT(KLogDatabaseName,"c:\\private\\101f401d\\Logdb.dat");
95 //**********************************
97 //**********************************
99 class CTestActive : public CActive
102 CTestActive(TInt aPriority = EPriorityIdle-100);
110 TBool iDelayCompletion;
111 TRequestStatus iStoredStatus;
118 //**********************************
120 //**********************************
122 class CTestTimer : public CTimer
125 static CTestTimer* NewL();
131 //**********************************
133 //**********************************
138 static void Initialize(const TDesC& aName);
139 static void DeleteDatabaseL(TBool aCloseBeforeDelete = ETrue);
140 static HBufC* CreateBufLC(TInt aLength);
141 static HBufC8* CreateBuf8LC(TInt aLength);
142 static TBool FiltersEqual(const CLogFilter& aFilter1, const CLogFilter& aFilter2);
143 static TBool EventsEqual(const CLogEvent& aEvent1, const CLogEvent& aEvent2);
144 static TBool TypesEqual(const CLogEventType& aType1, const CLogEventType& aType2);
145 static TBool WaitForKeyL(TTimeIntervalMicroSeconds32 aDelay, TKeyCode& aKeyCode);
146 static TBool FileExists(const TDesC& aFile);
147 static void SetLogServHeapFailureL(RHeap::TAllocFail aType, TInt aRate);
148 static TBool IsDatabaseOpenL();
149 static TInt DatabaseSizeL();
150 static TInt AddEventL();
151 static void AddViewTestEventsL();
152 static void AddEventTypeL();
153 static void CopyCorruptDbL();
154 static void CopyCorruptDamagedDbL();
155 static void CopyOldDbL();
156 static void TestInvalidSchemaL();
157 static TBool MatchingEnabledL();
160 // starts t_HiCapHelper.exe which has sufficient capability
161 static TInt ExecuteRemoteL(const TDesC& aCommandLineArg);
164 #define __LOGSERV_UHEAP_FAILNEXT(X) TestUtils::SetLogServHeapFailureL(RHeap::EFailNext, X)
165 #define __LOGSERV_UHEAP_RESET TestUtils::SetLogServHeapFailureL(RHeap::ENone, 0)
167 //**********************************
168 // CLogViewChangeObserver
169 //**********************************
171 class CLogViewChangeObserver : public CActive, public MLogViewChangeObserver
183 static CLogViewChangeObserver* NewLC();
184 ~CLogViewChangeObserver();
187 CLogViewChangeObserver();
190 inline void StartCollectingChanges()
193 iType = EDontStopScheduler;
195 CLogChangeDefinition* WaitForChangesLC(TStopType aType = EStopOnChanges, TInt aCount = 0);
196 CLogChangeDefinition* WaitForChangesLC(TCallBack aCallBack, TStopType aType, TInt aCount = 0);
197 inline TBool HaveChanges() const
199 return iChanges != NULL;
201 inline const CLogChangeDefinition& Changes() const
203 __ASSERT_ALWAYS(iChanges, User::Invariant());
206 inline void SetActive()
208 CActive::SetActive();
209 iStatus = KRequestPending;
211 inline void ResetChanges()
213 __ASSERT_ALWAYS(iChanges, User::Invariant());
218 void HandleLogViewChangeEventAddedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount);
219 void HandleLogViewChangeEventChangedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount);
220 void HandleLogViewChangeEventDeletedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount);
230 void CheckForSchedulerStop();
231 void AddChangeL(TLogDatabaseChangeType aType, TLogId aId, TInt aViewIndex);
234 TInt iExpectedChangeCount;
235 TBool iHaveFinishedOperation;
236 TBool iHaveObtainedChanges;
237 TBool iSchedulerStarted;
239 CLogChangeDefinition* iChanges;
244 //**********************************
245 // CLogViewChangeObserverErrorTest
246 //**********************************
248 class CLogViewChangeObserverErrorTest : public CLogViewChangeObserver
251 static CLogViewChangeObserverErrorTest* NewLC();
254 CLogViewChangeObserverErrorTest();
257 void HandleLogViewChangeEventAddedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount);
261 //**********************************
262 // CLogSchedulerTimer
263 //**********************************
265 class CLogSchedulerTimer : public CTimer
268 static CLogSchedulerTimer* NewLC();
269 ~CLogSchedulerTimer();
272 CLogSchedulerTimer();
276 void Wait(TTimeIntervalMicroSeconds32 aTime);
282 //**********************************
283 // CLogChangeNotifier
284 //**********************************
286 class CLogChangeNotifier : public CActive
289 static CLogChangeNotifier* NewL();
290 ~CLogChangeNotifier();
293 CLogChangeNotifier();
304 //**********************************
306 //**********************************
308 void SetupSchedulerL();
309 void CloseScheduler();
312 void DeleteDataFile(const TDesC& aFullName);