diff -r cf5481c2bc0b -r 69946d1824c4 videocollection/mpxmyvideoscollection/src/vcxmyvideoscollectionplugin.cpp --- a/videocollection/mpxmyvideoscollection/src/vcxmyvideoscollectionplugin.cpp Fri Apr 16 14:59:52 2010 +0300 +++ b/videocollection/mpxmyvideoscollection/src/vcxmyvideoscollectionplugin.cpp Mon May 03 12:32:50 2010 +0300 @@ -251,7 +251,7 @@ void CVcxMyVideosCollectionPlugin::CommandL( CMPXCommand& aCmd) { - MPX_FUNC("CVcxMyVideosCollectionPlugin::CommandL 2"); + MPX_DEBUG1("CVcxMyVideosCollectionPlugin::CommandL() start"); if ( !aCmd.IsSupported( KMPXCommandGeneralId ) ) { @@ -349,7 +349,7 @@ } } } - + MPX_DEBUG1("CVcxMyVideosCollectionPlugin::CommandL() exit"); } // ---------------------------------------------------------------------------- @@ -391,33 +391,6 @@ // void CVcxMyVideosCollectionPlugin::SendMessages( CMPXMessage& aMessages ) { -#if _DEBUG - TRAP_IGNORE( - - if ( aMessages.IsSupported( KMPXMessageArrayContents ) ) - { - const CMPXMessageArray* messageArray = - aMessages.Value(KMPXMessageArrayContents); - - for( TInt i = 0; i < messageArray->Count(); i++ ) - { - MPX_DEBUG2("CVcxMyVideosCollectionPlugin:: sending message ID: %d in array", ++iTotalMessagesSent); - messageArray->AtL( i )->SetTObjectValueL( KVcxMediaMyVideosMessageId, iTotalMessagesSent ); - iMessagesInArraySent++; - } - - MPX_DEBUG3("CVcxMyVideosCollectionPlugin:: total messages sent (MSG ID): %d, messages in array sent: %d", - iTotalMessagesSent, iMessagesInArraySent); - } - else - { - MPX_DEBUG1("CVcxMyVideosCollectionPlugin:: NO ARRAY IN MESSAGE!!!"); - return; - } - - ); -#endif - iObs->HandleMessage( aMessages ); } @@ -429,7 +402,6 @@ TMPXChangeEventType aEvent, RArray& aId ) { - //MPX_FUNC("CVcxMyVideosCollectionPlugin::HandleMyVideosDbEvent"); TRAPD( err, DoHandleMyVideosDbEventL( aEvent, aId )); if ( err != KErrNone ) { @@ -688,13 +660,13 @@ if ( !iCache->iVideoList ) { MPX_DEBUG1("CVcxMyVideosCollectionPlugin:: iVideoListCache = NULL -> creating new empty iCache->iVideoList"); - iCache->iVideoListIsPartial = ETrue; + iCache->SetComplete( EFalse ); iCache->iVideoList = TVcxMyVideosCollectionUtil::CreateEmptyMediaListL(); } TBool videoListFetchingWasCancelled = EFalse; - if ( iCache->iVideoListIsPartial ) + if ( !iCache->IsComplete() ) { // Load items to cache MPX_DEBUG1("CVcxMyVideosCollectionPlugin:: loading requested items to iCache->iVideoList"); @@ -1120,55 +1092,3 @@ iMessageList->SendL(); } -#if 0 -// ---------------------------------------------------------------------------- -// CVcxMyVideosCollectionPlugin::SetDownloadIdToZeroL -// ---------------------------------------------------------------------------- -// -void CVcxMyVideosCollectionPlugin::SetDownloadIdToZeroL( TUint aDownloadId ) - { - CMPXMedia* video = iCache->FindVideoByDownloadIdL( aDownloadId ); - if ( video ) - { - video->SetTObjectValueL( KVcxMediaMyVideosDownloadId, 0 ); - video->SetTObjectValueL( KVcxMediaMyVideosDownloadState, - static_cast( EVcxMyVideosDlStateNone ) ); - iMyVideosMdsDb->UpdateVideoL( *video ); - iMessageList->AddEventL( TVcxMyVideosCollectionUtil::IdL( - *video ), EMPXItemModified ); - iMessageList->SendL(); - } - } - -#ifdef _DEBUG -// ---------------------------------------------------------------------------- -// CVcxMyVideosCollectionPlugin::DownloadState -// ---------------------------------------------------------------------------- -// -const TDesC& CVcxMyVideosCollectionPlugin::DownloadState( TUint8 aDlState ) - { - _LIT(KDlStateNoneDes, "None"); - _LIT(KDlStateDownloadingDes, "Downloading"); - _LIT(KDlStateFailedDes, "Failed"); - _LIT(KDlStatePausedDes, "Paused"); - _LIT(KDlStateDownloadedDes, "Downloaded"); - - switch ( aDlState ) - { - case EVcxMyVideosDlStateNone: - return KDlStateNoneDes; - case EVcxMyVideosDlStateDownloading: - return KDlStateDownloadingDes; - case EVcxMyVideosDlStateFailed: - return KDlStateFailedDes; - case EVcxMyVideosDlStatePaused: - return KDlStatePausedDes; - case EVcxMyVideosDlStateDownloaded: - return KDlStateDownloadedDes; - default: - return KNullDesC; - } - } -#endif - -#endif