os/persistentdata/loggingservices/eventlogger/Shared/LogChangeDefinition.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2002-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
#ifndef __LOGCHANGEDEFINITION_H__
sl@0
    17
#define __LOGCHANGEDEFINITION_H__
sl@0
    18
sl@0
    19
// System includes
sl@0
    20
#include <e32base.h>
sl@0
    21
#include <s32strm.h>
sl@0
    22
#include <logwrap.h>
sl@0
    23
#include <logwraplimits.h>
sl@0
    24
sl@0
    25
/**
sl@0
    26
Constants
sl@0
    27
@internalComponent
sl@0
    28
*/
sl@0
    29
const TInt KLogChangeDefinitionDefaultGranularity = 10;
sl@0
    30
sl@0
    31
/**
sl@0
    32
Enumerations
sl@0
    33
@internalComponent
sl@0
    34
*/
sl@0
    35
enum TLogDatabaseChangeType
sl@0
    36
	{
sl@0
    37
	ELogChangeTypeUndefined = -1,
sl@0
    38
	ELogChangeTypeEventAdded = 0,
sl@0
    39
	ELogChangeTypeEventChanged,
sl@0
    40
	ELogChangeTypeEventChangedHidden,
sl@0
    41
	ELogChangeTypeEventDeleted,
sl@0
    42
	ELogChangeTypeLogCleared
sl@0
    43
	};
sl@0
    44
sl@0
    45
sl@0
    46
/////////////////////////////////////////////////////////////////////////////////////////
sl@0
    47
// -----> CLogChangeDefinition (header)
sl@0
    48
/////////////////////////////////////////////////////////////////////////////////////////
sl@0
    49
class CLogChangeDefinition : public CBase
sl@0
    50
/**
sl@0
    51
@internalComponent
sl@0
    52
*/
sl@0
    53
	{
sl@0
    54
public: // CONSTRUCT / DESTRUCT
sl@0
    55
	IMPORT_C static CLogChangeDefinition* NewL(TInt aGranularity = KLogChangeDefinitionDefaultGranularity);
sl@0
    56
	IMPORT_C static CLogChangeDefinition* NewL(RReadStream& aStream);
sl@0
    57
	IMPORT_C static CLogChangeDefinition* NewL(const CLogChangeDefinition& aCopy);
sl@0
    58
	IMPORT_C ~CLogChangeDefinition();
sl@0
    59
sl@0
    60
private: // INTERNAL CONSTRUCT
sl@0
    61
	CLogChangeDefinition(TInt aGranularity);
sl@0
    62
	void ConstructL(const CLogChangeDefinition& aCopy);
sl@0
    63
sl@0
    64
public: // API
sl@0
    65
sl@0
    66
	/**
sl@0
    67
	 * Return the number of events in the change definition
sl@0
    68
	 */
sl@0
    69
	IMPORT_C TInt Count() const;
sl@0
    70
sl@0
    71
	/**
sl@0
    72
	 * Get a change description
sl@0
    73
	 */
sl@0
    74
	IMPORT_C TLogDatabaseChangeType At(TInt aIndex) const;
sl@0
    75
	IMPORT_C TLogDatabaseChangeType At(TInt aIndex, TLogId& aId) const;
sl@0
    76
	IMPORT_C TLogDatabaseChangeType At(TInt aIndex, TLogId& aId, TInt& aViewIndex) const;
sl@0
    77
sl@0
    78
	/**
sl@0
    79
	 * Find the position of a specific event
sl@0
    80
	 */
sl@0
    81
	IMPORT_C TInt Find(TLogId aId) const;
sl@0
    82
	IMPORT_C TInt Find(TLogId aId, TLogDatabaseChangeType aType) const;
sl@0
    83
	IMPORT_C TInt FindByViewIndex(TInt aViewIndex) const;
sl@0
    84
sl@0
    85
	/**
sl@0
    86
	 * Add a change definition
sl@0
    87
	 */
sl@0
    88
	IMPORT_C void AddL(TLogId aId, TLogDatabaseChangeType aType, TInt aViewIndex);
sl@0
    89
sl@0
    90
	/**
sl@0
    91
	 * Reset change contents
sl@0
    92
	 */
sl@0
    93
	IMPORT_C void Reset();
sl@0
    94
sl@0
    95
public: // INTERNALIZE / EXTERNALIZE
sl@0
    96
	IMPORT_C void InternalizeL(RReadStream& aStream);
sl@0
    97
	IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
sl@0
    98
sl@0
    99
private: // INTERNAL CLASSES
sl@0
   100
	class TLogShdChangeDetails
sl@0
   101
		{
sl@0
   102
	public:
sl@0
   103
		inline TLogShdChangeDetails() : iId(KLogNullId), iType(ELogChangeTypeUndefined), iViewIndex(KErrNotFound) { }
sl@0
   104
		inline TLogShdChangeDetails(TLogId aId, TLogDatabaseChangeType aType = ELogChangeTypeUndefined, TInt aViewIndex = KErrNotFound) : iId(aId), iType(aType), iViewIndex(aViewIndex) { }
sl@0
   105
sl@0
   106
	public:
sl@0
   107
		TLogId iId;
sl@0
   108
		TLogDatabaseChangeType iType;
sl@0
   109
		TInt iViewIndex;
sl@0
   110
		};
sl@0
   111
sl@0
   112
private: // INTERNAL METHODS
sl@0
   113
	static TBool CompareEntryIds(const TLogShdChangeDetails& aLeft, const TLogShdChangeDetails& aRight);
sl@0
   114
	static TBool CompareViewIndicies(const TLogShdChangeDetails& aLeft, const TLogShdChangeDetails& aRight);
sl@0
   115
	void AddToContainerL(TLogId aId, TLogDatabaseChangeType aType, TInt aViewIndex);
sl@0
   116
sl@0
   117
private: // MEMBER DATA
sl@0
   118
sl@0
   119
	/**
sl@0
   120
	 * List of changes
sl@0
   121
	 */
sl@0
   122
	RArray<TLogShdChangeDetails> iChanges;
sl@0
   123
	};
sl@0
   124
sl@0
   125
sl@0
   126
sl@0
   127
sl@0
   128
#endif