CLogBase Class Reference

#include <logwrap.h>

class CLogBase : public CLogActive

Inherits from

Detailed Description

Base class for the log engine implementation.

This class defines the interface that client code uses to perform simple actions on the log database.

The class provides default implementations for the event handling functions. The Log Engine, i.e. an instance of CLogClient, is derived from this class and provides implementations for the event handling functions.

The class also deals with some aspects of resource file handling.

An instance of this class is constructed by the log wrapper, CLogWrapper, if the phone does not implement logging.

An instance of this class is never constructed by clients.

See also: CLogClient CLogWrapper

Constructor & Destructor Documentation

CLogBase ( TInt )

IMPORT_CCLogBase(TIntaPriority)

Sets the priority of this active object.

ParameterDescription
aPriorityThe priority of this active object.

~CLogBase ( )

IMPORT_C~CLogBase()

Fees all resources owned by the object prior to its destruction. In particular it closes the resource file reader.

Member Function Documentation

AddEvent ( CLogEvent &, TRequestStatus & )

IMPORT_C voidAddEvent(CLogEvent &aEvent,
TRequestStatus &aStatus
)[virtual]

Adds an event to the log database. This is an asynchronous request.

This function is overridden by log engine implementations.

capability
Note For built-in event types, the required capability level is defined in the event type's write access policy.
ParameterDescription
aEventA reference to a log event detail object. This value is not used.
aStatusThe request status. On completion of the asynchronous request, it always contains KErrNotSupported.

ChangeEvent ( const CLogEvent &, TRequestStatus & )

IMPORT_C voidChangeEvent(const CLogEvent &aEvent,
TRequestStatus &aStatus
)[virtual]

Changes the details of an existing event. This is an asynchronous request.

This function is overridden by log engine implementations.

capability
Note For built-in event types, the required capability level is defined in the event type's write access policy.
ParameterDescription
aEventA reference to a log event detail object. This value is not used.
aStatusThe request status. On completion of the asynchronous request, it always contains KErrNotSupported.

DeleteEvent ( TLogId, TRequestStatus & )

IMPORT_C voidDeleteEvent(TLogIdaId,
TRequestStatus &aStatus
)[virtual]

Deletes an event from the log. This is an asynchronous request.

This function is overridden by log engine implementations.

capability
Note For built-in event types, the required capability level is defined in the event type's write access policy.
ParameterDescription
aIdThe unique event ID of the event to be deleted. This value is not used.
aStatusThe request status. On completion of the asynchronous request, it always contains KErrNotSupported..

GetEvent ( CLogEvent &, TRequestStatus & )

IMPORT_C voidGetEvent(CLogEvent &aEvent,
TRequestStatus &aStatus
)[virtual]

Gets the details of an existing event. This is an asynchronous request.

This function is overridden by log engine implementations.

capability
Note For built-in event types, the required capability level is defined in the event type's read access policy.
ParameterDescription
aEventA reference to a log event detail object. This value is not used.
aStatusThe request status. On completion of the asynchronous request, it always contains KErrNotSupported.

GetString ( TDes &, TInt )

IMPORT_C TIntGetString(TDes &aString,
TIntaId
)const [virtual]

Gets a standard string from the logwrap.dll resource file.

This function is overridden by log engine implementations.

See also: RResourceFile

ParameterDescription
aStringA modifiable descriptor. The length of this descriptor is set to zero.
aIdThe resource ID for the string. This value is not used.

Returns: KErrNotSupported.

LoadResourcesL ( RFs & )

IMPORT_C voidLoadResourcesL(RFs &aFs)[protected]

ResourceFile ( )

const CResourceFile *ResourceFile()const [protected, inline]