os/persistentdata/loggingservices/eventlogger/test/src/t_loghicaphelper.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) 2005-2010 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
// Platform security prohibits the existing logeng tests from doing
sl@0
    15
// direct operations on data-caged files.  Giving the tests a higher
sl@0
    16
// capability might mask other errors.  Therefore any file manipulation
sl@0
    17
// may be sub-contracted to this process as needed.
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
#include <s32file.h>
sl@0
    21
#include <babackup.h>
sl@0
    22
#include "t_logutil2.h"
sl@0
    23
#include "t_logutil3.h"
sl@0
    24
sl@0
    25
const TUid KTestEventUid = {0x10005393};
sl@0
    26
_LIT(KTestEventDesc1, "Event Type Description");
sl@0
    27
_LIT(KTestDirection1, "Direction");
sl@0
    28
_LIT(KTestStatus1, "Status");
sl@0
    29
_LIT(KTestStatus2, "Changed Status");
sl@0
    30
_LIT(KTestNumber1, "Number");
sl@0
    31
const TLogContactItemId KTestContact1 = 0x1234;
sl@0
    32
const TLogContactItemId KTestContact2 = 0x1234567;
sl@0
    33
_LIT(KTestRemote1, "Remote Test 1");
sl@0
    34
_LIT(KTestRemote2, "Remote Test 2");
sl@0
    35
_LIT(KTestRemote3, "Remote Test 3");
sl@0
    36
_LIT(KTestStatusT3, "Status Test 3");
sl@0
    37
_LIT(KTestEventDesc, "Test Event");
sl@0
    38
sl@0
    39
_LIT(KLogEngPrivatePath, "c:\\private\\101f401d\\");
sl@0
    40
sl@0
    41
_LIT(KLogHiCapHelperPanic, "TLHCHlpr");
sl@0
    42
sl@0
    43
RTest TheTest(_L("t_loghicaphelper")); //used in t_logutil.cpp only
sl@0
    44
sl@0
    45
RFs theFs;
sl@0
    46
CActiveScheduler *TheTestScheduler = NULL;
sl@0
    47
sl@0
    48
//===========================================================================================
sl@0
    49
sl@0
    50
//Supported remote operaions
sl@0
    51
enum THelperOp
sl@0
    52
	{
sl@0
    53
	EOpNotDefined,
sl@0
    54
    EDeleteDatabase1,
sl@0
    55
    EDeleteDatabase2,
sl@0
    56
	EIsDatabaseOpen,
sl@0
    57
	EDatabaseSize,
sl@0
    58
	ECopyCorruptDbFile,
sl@0
    59
	ECopyCorruptDamagedDbFile,
sl@0
    60
	ECopyOldDbFile,
sl@0
    61
	EAddEvent,
sl@0
    62
	EAddTestEvents,
sl@0
    63
	EAddEventType,
sl@0
    64
	EInvalidSchema,
sl@0
    65
	EIsMatchingEnabled
sl@0
    66
	} ;
sl@0
    67
sl@0
    68
_LIT(KOldCorruptDatabase,"z:\\test\\corruptLogdbu.dat");
sl@0
    69
_LIT(KOldCorruptDamagedDatabase,"z:\\test\\corruptDamagedLogdbu.dat");
sl@0
    70
_LIT(KOldFormatDatabase,"z:\\test\\oldLogdbu.dat");
sl@0
    71
sl@0
    72
sl@0
    73
CTestActive::CTestActive(TInt aPriority)
sl@0
    74
:	CActive(aPriority)
sl@0
    75
	{
sl@0
    76
	CActiveScheduler::Add(this);
sl@0
    77
	iDelayTime=0;
sl@0
    78
	}
sl@0
    79
sl@0
    80
CTestActive::~CTestActive()
sl@0
    81
	{
sl@0
    82
	Cancel();
sl@0
    83
	}
sl@0
    84
sl@0
    85
void CTestActive::DoCancel()
sl@0
    86
	{
sl@0
    87
	TRequestStatus* s=&iStatus;
sl@0
    88
	User::RequestComplete(s, KErrNone);
sl@0
    89
	}
sl@0
    90
sl@0
    91
void CTestActive::StartL()
sl@0
    92
	{
sl@0
    93
	iDelayCompletion=EFalse;
sl@0
    94
	iDelayTime=0;
sl@0
    95
	iStatus = KRequestPending;
sl@0
    96
	SetActive();
sl@0
    97
	}
sl@0
    98
sl@0
    99
void CTestActive::StartL(TInt aDelay)
sl@0
   100
	{
sl@0
   101
	iDelayCompletion=ETrue;
sl@0
   102
	iDelayTime=aDelay;
sl@0
   103
	iStatus = KRequestPending;
sl@0
   104
	SetActive();
sl@0
   105
	}
sl@0
   106
sl@0
   107
void CTestActive::RunL() 
sl@0
   108
	{
sl@0
   109
	if(iDelayCompletion && iDelayTime)
sl@0
   110
		{
sl@0
   111
		// Wait for events in other threads to have a go....
sl@0
   112
		User::After(iDelayTime);
sl@0
   113
		iDelayTime=0;
sl@0
   114
		iStoredStatus=iStatus;
sl@0
   115
		SetActive();
sl@0
   116
		TRequestStatus* s=&iStatus;
sl@0
   117
		User::RequestComplete(s, KErrNone);
sl@0
   118
		}
sl@0
   119
	else
sl@0
   120
		{
sl@0
   121
		if(iDelayCompletion)
sl@0
   122
			iStatus=iStoredStatus;
sl@0
   123
sl@0
   124
		LOGTEXT("CTestActive::RunL() - Stopping the scheduler");
sl@0
   125
		CActiveScheduler::Stop();
sl@0
   126
		}
sl@0
   127
	}
sl@0
   128
sl@0
   129
//.................................................................................................
sl@0
   130
sl@0
   131
//See TestUtils::TestInvalidSchemaL(). Re-creates the LogEng database and checkes whether a new 
sl@0
   132
//LogEng connection can be established (by creating a CLogClient object).
sl@0
   133
static void TestInvalidSchemaL()
sl@0
   134
	{
sl@0
   135
	TheTestScheduler = new (ELeave) CActiveScheduler;
sl@0
   136
	CleanupStack::PushL( TheTestScheduler );
sl@0
   137
	CActiveScheduler::Install( TheTestScheduler );
sl@0
   138
sl@0
   139
   	//Reseting of log engine databse is done via its backup server.  This seems a 
sl@0
   140
   	//bit odd.  Perhaps write a CLogClient API that does it?
sl@0
   141
   	//Create backup session wrapper
sl@0
   142
   	CBaBackupSessionWrapper* backup = CBaBackupSessionWrapper::NewL();
sl@0
   143
   	CleanupStack::PushL(backup);
sl@0
   144
   
sl@0
   145
   	//This eventually calls CLogBackup::ChangeFileLockL(..) which closes the database 
sl@0
   146
   	//file and notifies all handles to that file that it has closed.
sl@0
   147
   	backup->CloseFileL(KLogDatabaseName, MBackupObserver::EReleaseLockNoAccess);
sl@0
   148
 	User::After(1000000);
sl@0
   149
   	
sl@0
   150
   	//Since the log engine database file is closed we can replace it.   
sl@0
   151
   	//Once this file is deleted, the backup server notices this and attempts to reopen 
sl@0
   152
   	//the database.  Since the file is deleted a default database is created instead.
sl@0
   153
    RDbNamedDatabase database;
sl@0
   154
	TInt err = database.Replace(theFs, KLogDatabaseName);
sl@0
   155
	database.Close();
sl@0
   156
	LEAVE_IF_ERROR(err);
sl@0
   157
sl@0
   158
	// The following will leave if there is a problem
sl@0
   159
	CLogClient* client = CLogClient::NewL(theFs);
sl@0
   160
	delete client;
sl@0
   161
	
sl@0
   162
	CleanupStack::PopAndDestroy(2); // scheduler + backup
sl@0
   163
	TheTestScheduler = NULL;
sl@0
   164
	}
sl@0
   165
sl@0
   166
//.................................................................................................
sl@0
   167
sl@0
   168
//See TestUtils::AddEventTypeL(). Adds an event type to the LogEng database.
sl@0
   169
static void AddEventTypeL()
sl@0
   170
	{
sl@0
   171
	TheTestScheduler = new (ELeave) CActiveScheduler;
sl@0
   172
	CleanupStack::PushL(TheTestScheduler);
sl@0
   173
	CActiveScheduler::Install(TheTestScheduler);
sl@0
   174
sl@0
   175
	CLogClient* client = CLogClient::NewL(theFs);
sl@0
   176
	CleanupStack::PushL(client);
sl@0
   177
sl@0
   178
	CTestActive* active = new(ELeave)CTestActive();
sl@0
   179
	CleanupStack::PushL(active);
sl@0
   180
sl@0
   181
	CLogEventType* type = CLogEventType::NewL();
sl@0
   182
	CleanupStack::PushL(type);
sl@0
   183
sl@0
   184
	type->SetUid(KTestEventUid);
sl@0
   185
	type->SetDescription(KTestEventDesc1);
sl@0
   186
	type->SetLoggingEnabled(ETrue);
sl@0
   187
sl@0
   188
	client->AddEventType(*type, active->iStatus);
sl@0
   189
	
sl@0
   190
	active->StartL();
sl@0
   191
	CActiveScheduler::Start();
sl@0
   192
	LEAVE_IF_ERROR(active->iStatus.Int());
sl@0
   193
	
sl@0
   194
	CleanupStack::PopAndDestroy(4); // scheduler, client, active, type
sl@0
   195
	TheTestScheduler = NULL;
sl@0
   196
	}
sl@0
   197
	
sl@0
   198
//.................................................................................................
sl@0
   199
sl@0
   200
//See TestUtils::AddViewTestEventsL(). Adds events to the LogEng database.
sl@0
   201
static void AddTestEventsL()
sl@0
   202
	{
sl@0
   203
	TheTestScheduler = new (ELeave) CActiveScheduler;
sl@0
   204
	CleanupStack::PushL(TheTestScheduler);
sl@0
   205
	CActiveScheduler::Install(TheTestScheduler);
sl@0
   206
	
sl@0
   207
	CTestActive* active = new(ELeave)CTestActive;
sl@0
   208
	CleanupStack::PushL(active);
sl@0
   209
sl@0
   210
 	CLogClient* client = CLogClient::NewL(theFs);
sl@0
   211
	CleanupStack::PushL(client);
sl@0
   212
	
sl@0
   213
	TLogString direction;
sl@0
   214
	client->GetString(direction, R_LOG_DIR_IN);
sl@0
   215
sl@0
   216
	// Create a test event type
sl@0
   217
	CLogEventType* type = CLogEventType::NewL();
sl@0
   218
	CleanupStack::PushL(type);
sl@0
   219
	type->SetUid(KTestEventUid);
sl@0
   220
	type->SetDescription(KTestEventDesc);
sl@0
   221
	type->SetLoggingEnabled(ETrue);
sl@0
   222
sl@0
   223
	// Register the event type
sl@0
   224
	active->StartL();
sl@0
   225
	client->AddEventType(*type, active->iStatus);
sl@0
   226
	CActiveScheduler::Start();
sl@0
   227
	LEAVE_IF_ERROR(active->iStatus.Int());
sl@0
   228
	
sl@0
   229
	// Now add some events...
sl@0
   230
	//
sl@0
   231
	CLogEvent* event = CLogEvent::NewL();
sl@0
   232
	CleanupStack::PushL(event);
sl@0
   233
	//
sl@0
   234
	event->SetEventType(KLogCallEventTypeUid);
sl@0
   235
	event->SetContact(KTestContact1);
sl@0
   236
	event->SetDirection(direction);
sl@0
   237
	event->SetDurationType(KLogDurationValid);
sl@0
   238
	event->SetNumber(KTestNumber1);
sl@0
   239
	event->SetRemoteParty(KTestRemote1);
sl@0
   240
	event->SetStatus(KTestStatus1);
sl@0
   241
sl@0
   242
	// Add event
sl@0
   243
	active->StartL();
sl@0
   244
	client->AddEvent(*event, active->iStatus);
sl@0
   245
	CActiveScheduler::Start();
sl@0
   246
	LEAVE_IF_ERROR(active->iStatus.Int());
sl@0
   247
	//
sl@0
   248
	
sl@0
   249
	event->SetEventType(KTestEventUid);	// low cap visible
sl@0
   250
	event->SetContact(KTestContact1);
sl@0
   251
	event->SetDirection(direction);
sl@0
   252
	event->SetDurationType(KLogDurationNone);
sl@0
   253
	event->SetNumber(KTestNumber1);
sl@0
   254
	event->SetRemoteParty(KTestRemote1);
sl@0
   255
	event->SetStatus(KTestStatus1);
sl@0
   256
sl@0
   257
	// Add event
sl@0
   258
	active->StartL();
sl@0
   259
	client->AddEvent(*event, active->iStatus);
sl@0
   260
	CActiveScheduler::Start();
sl@0
   261
	LEAVE_IF_ERROR(active->iStatus.Int());
sl@0
   262
	//
sl@0
   263
		
sl@0
   264
	event->SetEventType(KLogCallEventTypeUid);
sl@0
   265
	event->SetContact(KTestContact2);
sl@0
   266
	event->SetDirection(direction);
sl@0
   267
	event->SetDurationType(KLogDurationValid);
sl@0
   268
	event->SetNumber(KTestNumber1);
sl@0
   269
	event->SetRemoteParty(KTestRemote2);
sl@0
   270
	event->SetStatus(KTestStatus2);
sl@0
   271
sl@0
   272
	// Add event and 4 duplicates
sl@0
   273
	for(TInt i=0; i<5; i++)
sl@0
   274
		{
sl@0
   275
		active->StartL();
sl@0
   276
		client->AddEvent(*event, active->iStatus);
sl@0
   277
		CActiveScheduler::Start();
sl@0
   278
		LEAVE_IF_ERROR(active->iStatus.Int());
sl@0
   279
		}
sl@0
   280
	
sl@0
   281
	event->SetEventType(KTestEventUid);	// low cap visible
sl@0
   282
	event->SetContact(KTestContact2);
sl@0
   283
	event->SetDirection(KTestDirection1);
sl@0
   284
	event->SetDurationType(KLogDurationData);
sl@0
   285
	event->SetNumber(KTestNumber1);
sl@0
   286
	event->SetRemoteParty(KTestRemote3);
sl@0
   287
	event->SetStatus(KTestStatusT3);
sl@0
   288
sl@0
   289
	// Add event
sl@0
   290
	active->StartL();
sl@0
   291
	client->AddEvent(*event, active->iStatus);
sl@0
   292
	CActiveScheduler::Start();
sl@0
   293
	LEAVE_IF_ERROR(active->iStatus.Int());
sl@0
   294
	
sl@0
   295
	CleanupStack::PopAndDestroy(5);	// event, client, type, active, scheduler
sl@0
   296
	TheTestScheduler = NULL;
sl@0
   297
	}
sl@0
   298
	
sl@0
   299
//.................................................................................................
sl@0
   300
sl@0
   301
//See TestUtils::AddEventL(). Adds an event to the LogEng database.
sl@0
   302
//The event type is set to be: KLogCallEventTypeUid.
sl@0
   303
//Return: the Id of the added event
sl@0
   304
static TInt AddEventL()
sl@0
   305
	{
sl@0
   306
	TheTestScheduler = new (ELeave) CActiveScheduler;
sl@0
   307
	CleanupStack::PushL(TheTestScheduler);
sl@0
   308
	CActiveScheduler::Install(TheTestScheduler);
sl@0
   309
sl@0
   310
	CLogClient* client = CLogClient::NewL(theFs);
sl@0
   311
	CleanupStack::PushL(client);
sl@0
   312
sl@0
   313
	CTestActive* active = new(ELeave)CTestActive();
sl@0
   314
	CleanupStack::PushL(active);
sl@0
   315
sl@0
   316
	CLogEvent* event = CLogEvent::NewL();
sl@0
   317
	CleanupStack::PushL(event);
sl@0
   318
	
sl@0
   319
	event->SetEventType(KLogCallEventTypeUid);
sl@0
   320
sl@0
   321
	active->StartL();
sl@0
   322
	client->AddEvent(*event, active->iStatus);
sl@0
   323
	CActiveScheduler::Start();
sl@0
   324
	LEAVE_IF_ERROR(active->iStatus.Int());
sl@0
   325
    TLogId eventId = event->Id();
sl@0
   326
	
sl@0
   327
	CleanupStack::PopAndDestroy(4); // scheduler, client, active, event
sl@0
   328
	TheTestScheduler = NULL;
sl@0
   329
	return eventId;
sl@0
   330
	}
sl@0
   331
sl@0
   332
//.................................................................................................
sl@0
   333
sl@0
   334
#ifdef _DEBUG
sl@0
   335
static void StopLogServerL()
sl@0
   336
	{
sl@0
   337
	static RLogTestSession logServSession;
sl@0
   338
	//this function doesn't have any effect on UREL builds as LogEng server doesn't 
sl@0
   339
	//support the transient mode in UREL builds	
sl@0
   340
	//Used for LogEng server side heap failure testing.
sl@0
   341
	TInt error = KErrNone;
sl@0
   342
	  
sl@0
   343
	if(!logServSession.Handle())
sl@0
   344
		{
sl@0
   345
		error = logServSession.Connect();
sl@0
   346
		}
sl@0
   347
	  
sl@0
   348
	// Is the server running?
sl@0
   349
	if(error == KErrNotFound)
sl@0
   350
		{
sl@0
   351
		return;
sl@0
   352
		}
sl@0
   353
	LEAVE_IF_ERROR(error);
sl@0
   354
	  
sl@0
   355
	// Make the server transient
sl@0
   356
	TInt p0 = 1;
sl@0
   357
	TIpcArgs  ipcArgs(p0);
sl@0
   358
	LEAVE_IF_ERROR(logServSession.Send(ELogMakeTransient, ipcArgs));
sl@0
   359
	  
sl@0
   360
	logServSession.Close();
sl@0
   361
	  
sl@0
   362
	User::After(6 * 1000000); // Enough time for the server to exit
sl@0
   363
	}
sl@0
   364
#else//_DEBUG
sl@0
   365
static void StopLogServerL()
sl@0
   366
	{
sl@0
   367
	RDebug::Print(_L("StopLogServerL(): the LogEng server cannot be stopped in release mode. ELogMakeTransient is a debug message.\n"));
sl@0
   368
	}
sl@0
   369
#endif//_DEBUG
sl@0
   370
sl@0
   371
//.................................................................................................
sl@0
   372
sl@0
   373
static void DoDeleteDatabaseL(const TDesC& aDbPath, TBool aCloseBeforeDelete)
sl@0
   374
    {
sl@0
   375
    CBaBackupSessionWrapper* backup = NULL;
sl@0
   376
    if(aCloseBeforeDelete)
sl@0
   377
        {
sl@0
   378
        //Reseting of log engine databse is done via its backup server.
sl@0
   379
        //Create backup session wrapper
sl@0
   380
        backup = CBaBackupSessionWrapper::NewL();
sl@0
   381
        CleanupStack::PushL(backup);
sl@0
   382
sl@0
   383
        //This eventually calls CLogBackup::ChangeFileLockL(..) which closes the database 
sl@0
   384
        //file and notifies all handles to that file that it has closed.
sl@0
   385
        backup->CloseFileL(aDbPath, MBackupObserver::EReleaseLockNoAccess);
sl@0
   386
        User::After(1000000);
sl@0
   387
        }
sl@0
   388
sl@0
   389
    //Since the log engine database file is closed we can delete it.   
sl@0
   390
    //Once this file is deleted, the backup server notices this and attempts to reopen 
sl@0
   391
    //the database.  Since the file is deleted a default database is created instead.
sl@0
   392
    
sl@0
   393
    TInt error = theFs.Delete(aDbPath);
sl@0
   394
sl@0
   395
    if(!(error == KErrNone || error == KErrNotFound || error == KErrPathNotFound) )
sl@0
   396
        {
sl@0
   397
        RDebug::Print(_L("DoDeleteDatabaseL(), Error %d deleting database \"%S\"\n"),error, &aDbPath);
sl@0
   398
        }
sl@0
   399
    else
sl@0
   400
        {
sl@0
   401
        RDebug::Print(_L("DoDeleteDatabaseL(), Database \"%S\" deleted ok\n"), &aDbPath);
sl@0
   402
        }
sl@0
   403
sl@0
   404
    if(aCloseBeforeDelete)
sl@0
   405
        {
sl@0
   406
        //The next line restarts the logeng server and re-creates logdbu.dat file.
sl@0
   407
        CleanupStack::PopAndDestroy(backup);
sl@0
   408
            
sl@0
   409
        TInt count = 10;
sl@0
   410
        while(count--)
sl@0
   411
            {
sl@0
   412
            User::After(100000);
sl@0
   413
            TEntry entry;
sl@0
   414
            if(theFs.Entry(aDbPath, entry) == KErrNone)
sl@0
   415
                {
sl@0
   416
                break;
sl@0
   417
                }
sl@0
   418
            }
sl@0
   419
        }
sl@0
   420
    }
sl@0
   421
sl@0
   422
//See TestUtils::DeleteDatabaseL().
sl@0
   423
//If "aCloseBeforeDelete" is true then re-create the LogEng database.
sl@0
   424
static void DeleteDatabaseL(TBool aCloseBeforeDelete)
sl@0
   425
    {
sl@0
   426
    RDebug::Print(_L("DeleteDatabaseL(), Deleting database \"%S\"\r\n"), &KLogDatabaseName);
sl@0
   427
sl@0
   428
    TRAPD(err, DoDeleteDatabaseL(KLogDatabaseName, aCloseBeforeDelete));
sl@0
   429
    if(err == KErrNotFound || err == KErrPathNotFound)
sl@0
   430
        {
sl@0
   431
        err = KErrNone;
sl@0
   432
        }
sl@0
   433
    LEAVE_IF_ERROR(err);
sl@0
   434
    }
sl@0
   435
sl@0
   436
//.................................................................................................
sl@0
   437
sl@0
   438
//See TestUtils::CopyCorruptDbL().
sl@0
   439
//See TestUtils::CopyOldDbL(). 
sl@0
   440
//See TestUtils::CopyCorruptDamagedDbL()
sl@0
   441
//
sl@0
   442
//The LogEng database will be replaced with a the database which name is passed as a parameter (for testing purposes).
sl@0
   443
//The LogEng server will be stopped.
sl@0
   444
//This call works only in debug mode.
sl@0
   445
static void CopyDatabaseL(const TDesC& aNewDatabase)
sl@0
   446
	{
sl@0
   447
	StopLogServerL();
sl@0
   448
	
sl@0
   449
	CFileMan* fileMan=CFileMan::NewL(theFs);
sl@0
   450
	CleanupStack::PushL(fileMan);
sl@0
   451
	
sl@0
   452
	DeleteDatabaseL(ETrue); // it won't be replaced as the server has stopped
sl@0
   453
sl@0
   454
  	TInt err = fileMan->Copy(aNewDatabase, KLogDatabaseName);
sl@0
   455
	if(err != KErrNone)
sl@0
   456
		{
sl@0
   457
		// Note this only works on textshell ROMs, techview ROMs fail here with KErrInUse (-14)
sl@0
   458
		RDebug::Print(_L("CopyDatabaseL(), File copy \"%S\" to \"%S\", err=%d\n"), &aNewDatabase, &KLogDatabaseName, err);
sl@0
   459
		LEAVE(err);
sl@0
   460
		}
sl@0
   461
	// files copied are sometimes read-only, so make read-write	
sl@0
   462
	err = theFs.SetAtt(KLogDatabaseName, 0, KEntryAttReadOnly);
sl@0
   463
	if(err != KErrNone)
sl@0
   464
		{
sl@0
   465
		RDebug::Print(_L("CopyDatabaseL(), Set \"%S\" file attributes err=%d\n"), &KLogDatabaseName, err);
sl@0
   466
		LEAVE(err);
sl@0
   467
		}
sl@0
   468
sl@0
   469
	CleanupStack::PopAndDestroy(); // fileMan
sl@0
   470
	}
sl@0
   471
sl@0
   472
//.................................................................................................
sl@0
   473
sl@0
   474
//See TestUtils::DatabaseSizeL().
sl@0
   475
//Returns the LogEng database size.
sl@0
   476
static TInt DatabaseSizeL()
sl@0
   477
	{
sl@0
   478
	TEntry file;
sl@0
   479
	LEAVE_IF_ERROR(theFs.Entry(KLogDatabaseName, file));
sl@0
   480
	return file.iSize;
sl@0
   481
	}
sl@0
   482
sl@0
   483
//.................................................................................................
sl@0
   484
sl@0
   485
static void Initialize(const TDesC& aName)
sl@0
   486
	{
sl@0
   487
    User::RenameThread(aName);
sl@0
   488
	}
sl@0
   489
sl@0
   490
//.................................................................................................
sl@0
   491
sl@0
   492
//See TestUtils::IsDatabaseOpenL().
sl@0
   493
//Returns whether the LogEng database is open or not.
sl@0
   494
static TBool DatabaseIsOpenL()
sl@0
   495
	{
sl@0
   496
	TBool answer;
sl@0
   497
	LEAVE_IF_ERROR(theFs.IsFileOpen(KLogDatabaseName, answer));
sl@0
   498
	return answer;
sl@0
   499
	}
sl@0
   500
sl@0
   501
//.................................................................................................
sl@0
   502
sl@0
   503
//See TestUtils::MatchingEnabledL().
sl@0
   504
//The function opens the LogEng repository (KUidLogengRepository) and gets the value of 
sl@0
   505
//KContactMatchCountRepKey resource.
sl@0
   506
//If the value is 0 - "contacts matching" part of the test will be skipped.
sl@0
   507
static TBool MatchingEnabledL()
sl@0
   508
	{
sl@0
   509
	TInt contactMatchCount = 0;
sl@0
   510
	TLogContactNameFormat contactNameFormat = ELogWesternFormat; 
sl@0
   511
	LogGetContactmatchCountAndNameFormatL(contactMatchCount, contactNameFormat);
sl@0
   512
    RDebug::Print(_L("** contact match count = %d, contact name format = %d\r\n"), contactMatchCount, (TInt)contactNameFormat);
sl@0
   513
	return contactMatchCount > 0;
sl@0
   514
	}
sl@0
   515
sl@0
   516
//.................................................................................................
sl@0
   517
sl@0
   518
static TInt DoTaskL(THelperOp aOperation)
sl@0
   519
    {
sl@0
   520
    TInt rc = KErrNone;
sl@0
   521
	switch(aOperation)
sl@0
   522
	    {
sl@0
   523
        case EDeleteDatabase1:
sl@0
   524
            DeleteDatabaseL(ETrue);
sl@0
   525
            break;
sl@0
   526
        case EDeleteDatabase2:
sl@0
   527
            DeleteDatabaseL(EFalse);
sl@0
   528
            break;
sl@0
   529
        case EIsDatabaseOpen:
sl@0
   530
            rc = DatabaseIsOpenL();
sl@0
   531
            break;
sl@0
   532
        case EDatabaseSize:
sl@0
   533
            rc = DatabaseSizeL();
sl@0
   534
            break;
sl@0
   535
        case ECopyCorruptDbFile:
sl@0
   536
            CopyDatabaseL(KOldCorruptDatabase);
sl@0
   537
            break;
sl@0
   538
        case ECopyCorruptDamagedDbFile:
sl@0
   539
            CopyDatabaseL(KOldCorruptDamagedDatabase);
sl@0
   540
            break;
sl@0
   541
        case ECopyOldDbFile:
sl@0
   542
            CopyDatabaseL(KOldFormatDatabase);
sl@0
   543
            break;
sl@0
   544
        case EAddEvent:
sl@0
   545
            rc = AddEventL();
sl@0
   546
            break;
sl@0
   547
        case EAddTestEvents:
sl@0
   548
            AddTestEventsL();
sl@0
   549
            break;
sl@0
   550
        case EAddEventType:
sl@0
   551
            AddEventTypeL();
sl@0
   552
            break;
sl@0
   553
        case EInvalidSchema:
sl@0
   554
            TestInvalidSchemaL();
sl@0
   555
            break;
sl@0
   556
        case EIsMatchingEnabled:
sl@0
   557
            rc = MatchingEnabledL();
sl@0
   558
            break;
sl@0
   559
        default:
sl@0
   560
            rc = KErrNone;	// go away quietly
sl@0
   561
            break;
sl@0
   562
	    }
sl@0
   563
	LEAVE_IF_ERROR(rc);
sl@0
   564
	return rc;
sl@0
   565
    }
sl@0
   566
sl@0
   567
//.................................................................................................
sl@0
   568
sl@0
   569
static THelperOp TaskType(const TDesC& aCmdLine)
sl@0
   570
    {
sl@0
   571
    THelperOp task = EOpNotDefined;
sl@0
   572
    
sl@0
   573
    if(aCmdLine.CompareF(_L("-delete_db1")) == 0)
sl@0
   574
        {
sl@0
   575
        task = EDeleteDatabase1;
sl@0
   576
        }
sl@0
   577
    else if(aCmdLine.CompareF(_L("-delete_db2")) == 0)
sl@0
   578
        {
sl@0
   579
        task = EDeleteDatabase2;
sl@0
   580
        }
sl@0
   581
    else if(aCmdLine.CompareF(_L("-db_is_open")) == 0)
sl@0
   582
        {
sl@0
   583
        task = EIsDatabaseOpen;
sl@0
   584
        }
sl@0
   585
    else if(aCmdLine.CompareF(_L("-db_size")) == 0)
sl@0
   586
        {
sl@0
   587
        task = EDatabaseSize;
sl@0
   588
        }
sl@0
   589
    else if(aCmdLine.CompareF(_L("-copy_corrupt")) == 0)
sl@0
   590
        {
sl@0
   591
        task = ECopyCorruptDbFile;
sl@0
   592
        }
sl@0
   593
    else if(aCmdLine.CompareF(_L("-copy_corrupt_damaged")) == 0)
sl@0
   594
        {
sl@0
   595
        task = ECopyCorruptDamagedDbFile;
sl@0
   596
        }
sl@0
   597
    else if(aCmdLine.CompareF(_L("-copy_old")) == 0)
sl@0
   598
        {
sl@0
   599
        task = ECopyOldDbFile;
sl@0
   600
        }
sl@0
   601
    else if(aCmdLine.CompareF(_L("-add_event")) == 0)
sl@0
   602
        {
sl@0
   603
        task = EAddEvent;
sl@0
   604
        }
sl@0
   605
    else if(aCmdLine.CompareF(_L("-add_view_test_events")) == 0)
sl@0
   606
        {
sl@0
   607
        task = EAddTestEvents;
sl@0
   608
        }
sl@0
   609
    else if(aCmdLine.CompareF(_L("-add_event_type")) == 0)   
sl@0
   610
        {
sl@0
   611
        task = EAddEventType;
sl@0
   612
        }
sl@0
   613
    else if(aCmdLine.CompareF(_L("-invalid_schema")) == 0)
sl@0
   614
        {
sl@0
   615
        task = EInvalidSchema;
sl@0
   616
        }
sl@0
   617
    else if(aCmdLine.CompareF(_L("-is_matching_enabled")) == 0)
sl@0
   618
        {
sl@0
   619
        task = EIsMatchingEnabled;
sl@0
   620
        }
sl@0
   621
    else
sl@0
   622
        {
sl@0
   623
        RDebug::Print(_L("** t_logHiCapHelper, ** Bad command line argument: %S\r\n"), &aCmdLine);
sl@0
   624
        User::Panic(KLogHiCapHelperPanic, KErrArgument);
sl@0
   625
        }
sl@0
   626
    return task;
sl@0
   627
    }
sl@0
   628
sl@0
   629
static TInt EnvCreate()
sl@0
   630
    {
sl@0
   631
    TInt err = theFs.Connect();
sl@0
   632
    if(err == KErrNone)
sl@0
   633
        {
sl@0
   634
        err = theFs.MkDirAll(KLogEngPrivatePath);
sl@0
   635
        if(err == KErrAlreadyExists)
sl@0
   636
            {
sl@0
   637
            err = KErrNone; 
sl@0
   638
            }
sl@0
   639
        }
sl@0
   640
    if(err != KErrNone)
sl@0
   641
        {
sl@0
   642
        RDebug::Print(_L("** t_logHiCapHelper, error %d creating test environment\r\n"), err);
sl@0
   643
        }
sl@0
   644
    return err;
sl@0
   645
    }
sl@0
   646
sl@0
   647
TInt E32Main()
sl@0
   648
	{	
sl@0
   649
	__UHEAP_MARK;
sl@0
   650
	
sl@0
   651
	Initialize(_L("t_loghicaphelper"));
sl@0
   652
sl@0
   653
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   654
	if(!tc)
sl@0
   655
	   {
sl@0
   656
        User::Panic(KLogHiCapHelperPanic, KErrNoMemory);
sl@0
   657
	   }
sl@0
   658
	
sl@0
   659
	TBuf<64> cmdLine;
sl@0
   660
	User::CommandLine(cmdLine);
sl@0
   661
	THelperOp task = TaskType(cmdLine);
sl@0
   662
sl@0
   663
    TInt rc = 0;
sl@0
   664
	TInt err = EnvCreate();
sl@0
   665
	if(err == KErrNone)
sl@0
   666
	    {
sl@0
   667
	    TRAP(err, rc = DoTaskL(task));    
sl@0
   668
	    if(err < 0)
sl@0
   669
	        {
sl@0
   670
	        rc = err;
sl@0
   671
	        RDebug::Print(_L("** t_logHiCapHelper, DoTaskL(), Task %d, Error %d\n"), task, rc);
sl@0
   672
	        }
sl@0
   673
	    }
sl@0
   674
sl@0
   675
    theFs.Close();
sl@0
   676
	delete tc;
sl@0
   677
	
sl@0
   678
	__UHEAP_MARKEND;
sl@0
   679
sl@0
   680
	return rc;
sl@0
   681
	}
sl@0
   682