CImRemoveMessagePart Class Reference

class CImRemoveMessagePart : public CMsvOperation

Inherits from

Public Member Functions
~CImRemoveMessagePart()
CImRemoveMessagePart *DeleteAttachedMessageL(TRequestStatus &, CMsvEntry &, TMsvId, TMsvId)
CImRemoveMessagePart *DeleteAttachmentL(TRequestStatus &, CMsvEntry &, TMsvId, TMsvId)
voidDoCancel()
const TDesC8 &FinalProgress()
const TDesC8 &ProgressL()
TMsvId RemovedAttachmentId()
voidRunL()
Private Member Functions
CImRemoveMessagePart(TRequestStatus &, CMsvEntry &, TMsvId)
voidChangeStateL()
voidCheckAttachmentParentTypeL()
voidCompleteRemoveMessagePartL()
voidConstructL(TMsvId)
voidDeleteAttachmentEntryL()
voidDeleteFolderEntryL()
voidErrorRecovery(TInt)
voidMoveOtherEntryToParentOfFolderL()
voidRecover()
voidRequestComplete(TInt)
voidSelectAndChangeToNextStateL()
voidSelectNextStateL()
Inherited Functions
CActive::CActive(TInt)
CActive::Cancel()
CActive::Deque()
CActive::IsActive()const
CActive::IsAdded()const
CActive::Priority()const
CActive::RunError(TInt)
CActive::SetActive()
CActive::SetPriority(TInt)
CActive::~CActive()
CBase::CBase()
CBase::Delete(CBase *)
CBase::operator new(TUint)
CBase::operator new(TUint,TAny *)
CBase::operator new(TUint,TLeave)
CBase::operator new(TUint,TLeave,TUint)
CBase::operator new(TUint,TUint)
CBase::~CBase()
CMsvOperation::CMsvOperation(CMsvSession &,TInt,TRequestStatus &)
CMsvOperation::Extension_(TUint,TAny *&,TAny *)
CMsvOperation::Id()const
CMsvOperation::Mtm()const
CMsvOperation::Service()const
CMsvOperation::SystemProgress(TMsvSystemProgress &)
CMsvOperation::~CMsvOperation()
Private Member Enumerations
enumTImRemoveMessagePartState {
ECheckAttachmentParentType, EMoveOtherEntryToParentOfFolder, EDeleteAttachmentEntry, EDeleteFolderEntry, ECompleteRemoveMessagePart, EFinished
}
Inherited Enumerations
CActive:TPriority
Private Attributes
TMsvId iAttachmentId
TInt iAttachmentSize
TPckgBuf< TMsvId >iDataMember
CImEmailMessage *iEmailMessage
TMsvId iEntryToMoveId
TMsvId iFolderToDeleteId
CMsvEntrySelection *iMessageEntrySelection
TMsvId iMessageId
CMsvEntry &iMsvEntry
CMsvOperation *iMsvOperation
TInt iState
Inherited Attributes
CActive::iStatus
CMsvOperation::iMsvSession
CMsvOperation::iMtm
CMsvOperation::iObserverRequestStatus
CMsvOperation::iService

Constructor & Destructor Documentation

CImRemoveMessagePart(TRequestStatus &, CMsvEntry &, TMsvId)

CImRemoveMessagePart(TRequestStatus &aStatus,
CMsvEntry &aMsvEntry,
TMsvIdaMessageId
)[private]

Parameters

TRequestStatus & aStatus
CMsvEntry & aMsvEntry
TMsvId aMessageId

~CImRemoveMessagePart()

~CImRemoveMessagePart()

Member Functions Documentation

ChangeStateL()

voidChangeStateL()[private]

CheckAttachmentParentTypeL()

voidCheckAttachmentParentTypeL()[private]

CompleteRemoveMessagePartL()

voidCompleteRemoveMessagePartL()[private]

ConstructL(TMsvId)

voidConstructL(TMsvIdaAttachmentId)[private]

Parameters

TMsvId aAttachmentId

DeleteAttachedMessageL(TRequestStatus &, CMsvEntry &, TMsvId, TMsvId)

CImRemoveMessagePart *DeleteAttachedMessageL(TRequestStatus &aStatus,
CMsvEntry &aMsvEntry,
TMsvIdaMessageId,
TMsvIdaAttachedMessageId
)[static]

Parameters

TRequestStatus & aStatus
CMsvEntry & aMsvEntry
TMsvId aMessageId
TMsvId aAttachedMessageId

DeleteAttachmentEntryL()

voidDeleteAttachmentEntryL()[private]

DeleteAttachmentL(TRequestStatus &, CMsvEntry &, TMsvId, TMsvId)

CImRemoveMessagePart *DeleteAttachmentL(TRequestStatus &aStatus,
CMsvEntry &aMsvEntry,
TMsvIdaMessageId,
TMsvIdaAttachmentId
)[static]

Parameters

TRequestStatus & aStatus
CMsvEntry & aMsvEntry
TMsvId aMessageId
TMsvId aAttachmentId

DeleteFolderEntryL()

voidDeleteFolderEntryL()[private]

DoCancel()

voidDoCancel()[virtual]

Implements cancellation of an outstanding request.

This function is called as part of the active object's Cancel().

It must call the appropriate cancel function offered by the active object's asynchronous service provider. The asynchronous service provider's cancel is expected to act immediately.

DoCancel() must not wait for event completion; this is handled by Cancel().

CActive::Cancel

ErrorRecovery(TInt)

voidErrorRecovery(TIntaError)[private]

Parameters

TInt aError

FinalProgress()

const TDesC8 &FinalProgress()[virtual]

MoveOtherEntryToParentOfFolderL()

voidMoveOtherEntryToParentOfFolderL()[private]

ProgressL()

const TDesC8 &ProgressL()[virtual]

Gets information on the progress of the operation.

All operations on local entries share the same progress information format, which defined by TMsvLocalOperationProgress.

For MTM-specific operations, progress information can be extracted by calling CBaseUiMtm::GetProgress() or displayed by CBaseUiMtm::DisplayProgressSummary() on the appropriate User Interface MTM.

Requirements:

Derived classes should implement this function so that the client can check on the progress of the operation. The function should share an understanding of the format of the buffer with the implementations of CBaseUiMtm::GetProgress() and CBaseUiMtm::DisplayProgressSummary() in the User Interface MTM. The arguments of CBaseUiMtm::GetProgress() show some information that should be included where appropriate.

leave
KErrNotReady The operation has not yet been started: it has been queued for execution in the Message Server

Recover()

voidRecover()[private]

RemovedAttachmentId()

TMsvId RemovedAttachmentId()

RequestComplete(TInt)

voidRequestComplete(TIntaError)[private]

Parameters

TInt aError

RunL()

voidRunL()[virtual]

Handles an active object's request completion event.

A derived class must provide an implementation to handle the completed request. If appropriate, it may issue another request.

The function is called by the active scheduler when a request completion event occurs, i.e. after the active scheduler's WaitForAnyRequest() function completes.

Before calling this active object's RunL() function, the active scheduler has:

1. decided that this is the highest priority active object with a completed request

2. marked this active object's request as complete (i.e. the request is no longer outstanding)

RunL() runs under a trap harness in the active scheduler. If it leaves, then the active scheduler calls RunError() to handle the leave.

Note that once the active scheduler's Start() function has been called, all user code is run under one of the program's active object's RunL() or RunError() functions.

CActiveScheduler::Start CActiveScheduler::Error CActiveScheduler::WaitForAnyRequest TRAPD

SelectAndChangeToNextStateL()

voidSelectAndChangeToNextStateL()[private]

SelectNextStateL()

voidSelectNextStateL()[private]

Member Enumerations Documentation

Enum TImRemoveMessagePartState

Enumerators

ECheckAttachmentParentType
EMoveOtherEntryToParentOfFolder
EDeleteAttachmentEntry
EDeleteFolderEntry
ECompleteRemoveMessagePart
EFinished

Member Data Documentation

TMsvId iAttachmentId

TMsvId iAttachmentId[private]

TInt iAttachmentSize

TInt iAttachmentSize[private]

TPckgBuf< TMsvId > iDataMember

TPckgBuf< TMsvId >iDataMember[private]

CImEmailMessage * iEmailMessage

CImEmailMessage *iEmailMessage[private]

TMsvId iEntryToMoveId

TMsvId iEntryToMoveId[private]

TMsvId iFolderToDeleteId

TMsvId iFolderToDeleteId[private]

CMsvEntrySelection * iMessageEntrySelection

CMsvEntrySelection *iMessageEntrySelection[private]

TMsvId iMessageId

TMsvId iMessageId[private]

CMsvEntry & iMsvEntry

CMsvEntry &iMsvEntry[private]

CMsvOperation * iMsvOperation

CMsvOperation *iMsvOperation[private]

TInt iState

TInt iState[private]