#include <logwrap.h>
Link against: logstub.lib
class CLogEvent : public CBase |
Encapsulates the details of an event.
Events can be added, updated, deleted or retrieved by using the CLogClient methods.
The added events are stored in the EventLogger database (the log). See TLogConfig class for more details regarding the log size, the "most recent events" log size and the event age.
The events in the log can be viewed using an appropriate view class - CLogViewEvent, CLogViewRecent or CLogViewDuplicate.
If the contact matching is enabled and the contact id of the added or changed event is not set, then the EventLogger server will attempt to retrieve the contact id from the MLogCntModel interface. If a matching contact is found then the event contact property will be initialized with the found contact id. See CLogContact class for more details regarding the contact matching.
If the remote party property of the added or changed event is not set, and a matching contact was found as a result of the performed contact matching, then the EventLogger server will attempt to retrieve the contact name from the MLogCntModel interface and initialize the event remote party with the contact name.
Note that where time is used, it must be specified as UTC rather than local time.
See also: CLogClient TLogConfig CLogViewEvent CLogViewRecent CLogViewDuplicate CLogContact
void | ClearFlags | ( | TLogFlags | aFlags | ) | [inline] |
Clears the specified flags for this event.
The function does not change any of the other flag bit settings.
The constant KLogFlagsMask may be used to clear all the flags in an event.
Parameters | |
---|---|
aFlags | The flags to be cleared. |
TLogContactItemId | Contact | ( | ) | const [inline] |
Gets the contact ID associated with the event.
Note that if the contact was not set at the time when the event was added or changed, the EventLogger server would perform then a contact matching (if the contact matching was enabled). If the contact matching was successful then, the EventLogger server would update the contact of the added or changed event.
See also: CLogEvent
IMPORT_C void | CopyL | ( | const CLogEvent & | aEvent | ) |
Makes a copy of the specified log event.
Parameters | |
---|---|
aEvent | The log event to be copied. |
const TDesC8 & | Data | ( | ) | const [inline] |
Gets event specific data.
const TDesC & | Description | ( | ) | const [inline] |
Gets the human readable name describing the event type.
Note that this is set automatically by the Log Engine.
const TDesC & | Direction | ( | ) | const [inline] |
Gets the direction of the call represented by this event. The direction of a call means incoming, outgoing etc.
The direction is represented by a string.
TLogDuration | Duration | ( | ) | const [inline] |
Gets the duration of the event.
TLogDurationType | DurationType | ( | ) | const [inline] |
Gets the duration type.
This applies meaning to the idea of a duration.
The duration type is implemented as a UI variant-specific enumeration. The following duration types are generic: KLogDurationNone, KLogDurationValid and KLogDurationData.
See also: KLogDurationNone KLogDurationValid KLogDurationData
TUid | EventType | ( | ) | const [inline] |
Gets the type of this log event. Event types are identified by a UID.
See also: CLogEvent::Description()
IMPORT_C void | ExternalizeL | ( | RWriteStream & | aStream | ) | const |
TLogId | Id | ( | ) | const [inline] |
Gets the unique event ID associated with this log event.
Unique event IDs are allocated by the Log Engine when an event is added to the log.
See also: CLogClient::GetEvent() CLogClient::AddEvent() CLogClient::ChangeEvent() CLogClient::DeleteEvent()
IMPORT_C void | InternalizeL | ( | RReadStream & | aStream | ) |
IMPORT_C CLogEvent * | NewL | ( | ) | [static] |
Creates a new log event detail object.
const TDesC & | Number | ( | ) | const [inline] |
Gets the phone number associated with the event.
const TDesC & | RemoteParty | ( | ) | const [inline] |
Gets the remote party associated with this event.
Note that if the remote party was not set at the time when the event was added or changed, the EventLogger server would perform then a contact matching (if the contact matching was enabled). If the contact matching was successful, the EventLogger server would update the remote party of the added or changed event.
See also: CLogEvent
void | SetContact | ( | TLogContactItemId | aContact | ) | [inline] |
Sets the contact ID associated with the event.
Parameters | |
---|---|
aContact | The contact ID. |
IMPORT_C void | SetDataL | ( | RReadStream & | aStream, |
TInt | aLen | |||
) |
Sets event specific data from the specified stream.
The data can be used for any purpose. The data is copied into a heap descriptor allocated by this function; the amount of data is only limited by the available memory.
Parameters | |
---|---|
aStream | The stream containing the event specific data. |
aLen | The length of data to be read from the stream. |
IMPORT_C void | SetDataL | ( | const TDesC8 & | aData | ) |
Sets event specific data.
The data can be used for any purpose. The data is copied into a heap descriptor allocated by this function; the amount of data is only limited by the available memory.
Parameters | |
---|---|
aData | The event specific data. |
void | SetDescription | ( | const TDesC & | aDescription | ) | [inline] |
void | SetDirection | ( | const TDesC & | aDirection | ) | [inline] |
Sets the direction of the call represented by this event. The direction of a call means incoming, outgoing etc.
The direction is represented by a string. Standard strings are available in the log wrapper resource file and can be accessed through the resource IDs: R_LOG_DIR_IN, R_LOG_DIR_OUT, R_LOG_DIR_IN_ALT, R_LOG_DIR_OUT_ALT, R_LOG_DIR_FETCHED and R_LOG_DIR_MISSED.
The string is copied into a pre-allocated heap descriptor that has a maximum length of KLogMaxDirectionLength. If the length of the specified descriptor is greater than KLogMaxDirectionLength, then the data is truncated.
See also: CLogClient::GetString()
Parameters | |
---|---|
aDirection | The readable name. |
void | SetDuration | ( | TLogDuration | aDuration | ) | [inline] |
Sets the duration of the event.
Parameters | |
---|---|
aDuration | The duration of the event, expressed as the number of seconds since the time of the event. |
void | SetDurationType | ( | TLogDurationType | aDurationType | ) | [inline] |
Sets the duration type. This applies meaning to the idea of a duration.
Parameters | |
---|---|
aDurationType | The duration type. |
void | SetEventType | ( | TUid | aId | ) | [inline] |
Sets the type of this log event. Event types are identified by a UID.
See also: CLogEvent::Description()
Parameters | |
---|---|
aId | The event type UID. |
void | SetFlags | ( | TLogFlags | aFlags | ) | [inline] |
Sets the specified flags for this event.
The function does not change any of the other flag bit settings.
Only the low order 4 bits are stored in the Log Engine Database; the constant KLogFlagsMask can be used as a mask.
Parameters | |
---|---|
aFlags | The flags to be set. |
void | SetLink | ( | TLogLink | aLink | ) | [inline] |
Sets the link value.
The link can be used to relate this event to an entity in another application. For example, it can be used to associate the event with the call ID or the message ID for emails and faxes.
Parameters | |
---|---|
aLink | The link value. |
void | SetNumber | ( | const TDesC & | aNumber | ) | [inline] |
Sets the phone number associated with this event. This is used when the number cannot be stored in any other field.
The number is specified as a string and is copied into a pre-allocated heap descriptor that has a maximum length of KLogMaxNumberLength. If the length of the specified descriptor is greater than KLogMaxNumberLength, then the number is truncated.
Parameters | |
---|---|
aNumber | The number. |
void | SetRemoteParty | ( | const TDesC & | aRemote | ) | [inline] |
Sets the remote party associated with this event. This describes the destination of an outgoing event or the source of an incoming event.
The remote party is represented by a string.
The string is copied into a pre-allocated heap descriptor that has a maximum length of KLogMaxRemotePartyLength. If the length of the specified descriptor is greater than KLogMaxRemotePartyLength, then the data is truncated.
See also: KLogMaxRemotePartyLength
Parameters | |
---|---|
aRemote | The remote party. |
void | SetStatus | ( | const TDesC & | aStatus | ) | [inline] |
Sets the delivery status of this event.
The delivery status is represented by a string. Standard strings are available in the log wrapper resource file and can be accessed through the resource IDs: R_LOG_DEL_PENDING, R_LOG_DEL_SENT, R_LOG_DEL_FAILED, R_LOG_DEL_NONE, R_LOG_DEL_DONE and R_LOG_DEL_NOT_SENT.
The string is copied into a pre-allocated heap descriptor that has a maximum length of KLogMaxStatusLength. If the length of the specified descriptor is greater than KLogMaxStatusLength, then the data is truncated.
See also: CLogClient::GetString()
Parameters | |
---|---|
aStatus | The delivery status. |
void | SetSubject | ( | const TDesC & | aSubject | ) | [inline] |
Sets the subject of this event.
The subject is represented by a string.
The string is copied into a pre-allocated heap descriptor that has a maximum length of KLogMaxSubjectLength. If the length of the specified descriptor is greater than KLogMaxSubjectLength, then the data is truncated.
Parameters | |
---|---|
aSubject | The subject. |
void | SetTime | ( | const TTime & | aTime | ) | [inline] |
Sets the UTC time that this event was created.
Note that this field is used when ordering events in a view; changing this value may change the position of the event in a view.
Parameters | |
---|---|
aTime | The UTC time of the event. |
const TDesC & | Status | ( | ) | const [inline] |
Gets the delivery status of this event.
const TDesC & | Subject | ( | ) | const [inline] |
Gets the subject of this event.
const TTime & | Time | ( | ) | const [inline] |
Gets the UTC time that this event was created.