videocollection/hgmyvideos/src/vcxhgmyvideosvideolistitem.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 27 Apr 2010 16:40:33 +0300
branchRCL_3
changeset 12 7f2b2a65da29
parent 0 96612d01cf9f
child 15 8f0df5c82986
permissions -rw-r--r--
Revision: 201015 Kit: 201017

/*
* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:   CVcxHgMyVideosVideoListItem class implementation*
*/




// INCLUDE FILES
#include <mpxmedia.h>
#include <collate.h>
#include <mpxmediageneraldefs.h>
#include <mpxmediageneralextdefs.h>
#include "vcxhgmyvideosvideolistitem.h"

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::NewL()
// -----------------------------------------------------------------------------
//
CVcxHgMyVideosVideoListItem* CVcxHgMyVideosVideoListItem::NewL( CMPXMedia* aMPXMedia )
    {
    CVcxHgMyVideosVideoListItem* self = 
        CVcxHgMyVideosVideoListItem::NewLC( aMPXMedia );
    CleanupStack::Pop( self );
    return self;
    }

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::NewLC()
// -----------------------------------------------------------------------------
//
CVcxHgMyVideosVideoListItem* CVcxHgMyVideosVideoListItem::NewLC( CMPXMedia* aMPXMedia )
    {
    CVcxHgMyVideosVideoListItem* self = 
        new (ELeave) CVcxHgMyVideosVideoListItem( aMPXMedia );
    CleanupStack::PushL( self );
    self->ConstructL();
    return self;
    }

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::CVcxHgMyVideosVideoListItem()
// -----------------------------------------------------------------------------
//
CVcxHgMyVideosVideoListItem::CVcxHgMyVideosVideoListItem( CMPXMedia* aMPXMedia ) : 
    iMedia( aMPXMedia )
    {
    }

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::ConstructL()
// -----------------------------------------------------------------------------
//
void CVcxHgMyVideosVideoListItem::ConstructL()
    {
    // No implementation required.
    }

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::~CVcxHgMyVideosVideoListItem()
// -----------------------------------------------------------------------------
//
CVcxHgMyVideosVideoListItem::~CVcxHgMyVideosVideoListItem()
    {
    delete iMedia;
    }

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::CompareBySize()
// -----------------------------------------------------------------------------
//
TInt CVcxHgMyVideosVideoListItem::CompareBySize( 
    const CVcxHgMyVideosVideoListItem& aNewVideo,
    const CVcxHgMyVideosVideoListItem& aVideoInArray )
    {
    TInt result( 0 );
     
    TInt64 newItemsSize = aNewVideo.iMedia->ValueTObjectL<TInt64>( KMPXMediaGeneralExtSizeInt64 );
    TInt64 arrayItemsSize = aVideoInArray.iMedia->ValueTObjectL<TInt64>( KMPXMediaGeneralExtSizeInt64 );

    if ( arrayItemsSize > newItemsSize )
        {
        result = -1;
        }
    else if ( arrayItemsSize < newItemsSize )
        {
        result = 1;    
        }
    return result;
    }

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::CompareByName()
// -----------------------------------------------------------------------------
//
TInt CVcxHgMyVideosVideoListItem::CompareByName( 
    const CVcxHgMyVideosVideoListItem& aNewVideo,
    const CVcxHgMyVideosVideoListItem& aVideoInArray )
    {        
    TPtrC newVideoName( aNewVideo.iMedia->ValueText( KMPXMediaGeneralTitle ) );
    TPtrC videoInArrayName( aVideoInArray.iMedia->ValueText( KMPXMediaGeneralTitle ));
    
    TCollationMethod collationMethod = *Mem::CollationMethodByIndex( 0 ); // get the standard method
    collationMethod.iFlags |= TCollationMethod::EFoldCase;
    
    return newVideoName.CompareC( videoInArrayName, 3, &collationMethod );
    }

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::CompareByDate()
// -----------------------------------------------------------------------------
//
TInt CVcxHgMyVideosVideoListItem::CompareByDate( 
    const CVcxHgMyVideosVideoListItem& aNewVideo,
    const CVcxHgMyVideosVideoListItem& aVideoInArray )
    {
    TInt result( 0 );
    
    TInt64 newItemsDate = aNewVideo.iMedia->ValueTObjectL<TInt64>( KMPXMediaGeneralDate );
    TInt64 arrayItemsDate = aVideoInArray.iMedia->ValueTObjectL<TInt64>( KMPXMediaGeneralDate );
    
    if ( arrayItemsDate > newItemsDate )
        {
        result = 1;
        }
    else if ( arrayItemsDate < newItemsDate )
        {
        result = -1; 
        }
    return result;
    }

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::Media()
// -----------------------------------------------------------------------------
//
CMPXMedia* CVcxHgMyVideosVideoListItem::Media()
    {
    return iMedia;
    }

// -----------------------------------------------------------------------------
// CVcxHgMyVideosVideoListItem::DownloadState()
// -----------------------------------------------------------------------------
//
TVcxMyVideosDownloadState CVcxHgMyVideosVideoListItem::DownloadState()
    {
    TVcxMyVideosDownloadState state( EVcxMyVideosDlStateNone );

    if ( iMedia && iMedia->IsSupported( KVcxMediaMyVideosDownloadId ) )
        {
        // Download ID is non-zero if download status exists.
        if ( *( iMedia->Value<TUint32>( KVcxMediaMyVideosDownloadId ) ) != 0 )
            {
            if ( iMedia->IsSupported( KVcxMediaMyVideosDownloadState ) )
                {
                state = static_cast<TVcxMyVideosDownloadState>(
                            *( iMedia->Value<TUint8>( KVcxMediaMyVideosDownloadState ) ) );

                if ( state == EVcxMyVideosDlStateDownloaded )
                    {
                    state = EVcxMyVideosDlStateNone;
                    }
                }
            }
        }
    return state;
    }