messagingappbase/mce/src/mceiaupdateutils.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 00:08:43 +0200
changeset 5 4697dfb2d7ad
parent 0 72b543305e3a
child 17 caea42e26caa
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "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:  
*     Application class for Mce.
*
*/

// system include files go here:

#include <iaupdate.h>
#include <iaupdateparameters.h>
#include <iaupdateresult.h>
#include <featmgr.h>

// user include files go here:
#include "mceui.h"
#include "mceiaupdateutils.h"
#include "MceLogText.h"

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

// ---------------------------------------------------------------------------
// C++ default constructor.
// ---------------------------------------------------------------------------
//
CMceIAUpdateUtils::CMceIAUpdateUtils(CMceUi& aMceUi)
: iUpdate( NULL ), iParameters( NULL ),iMceUi( aMceUi ),CActive(EPriorityStandard)
    {
    CActiveScheduler::Add(this);
    }


// ---------------------------------------------------------------------------
// Symbian 2nd phase constructor.
// ---------------------------------------------------------------------------
//
void CMceIAUpdateUtils::ConstructL()
    {
    if( FeatureManager::FeatureSupported( KFeatureIdIAUpdate ) )
        {
        iUpdate = CIAUpdate::NewL( *this );
        if( iUpdate )
            {
            iParameters = CIAUpdateParameters::NewL();
            }
        }
    }


// ---------------------------------------------------------------------------
// Two-phased constructor.
// ---------------------------------------------------------------------------
//
CMceIAUpdateUtils* CMceIAUpdateUtils::NewL(CMceUi& aMceUi)
    {
    CMceIAUpdateUtils* self = new( ELeave ) CMceIAUpdateUtils(aMceUi);
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop( self );
    return self;
    }

// ---------------------------------------------------------------------------
// Destructor
// ---------------------------------------------------------------------------
//
CMceIAUpdateUtils::~CMceIAUpdateUtils()
    {
    Delete();
    Cancel();
    }

// ---------------------------------------------------------------------------
// Start IA update process.
// ---------------------------------------------------------------------------
//
void CMceIAUpdateUtils::DoStartL( const TUid aAppUid )
    {
    if( iUpdate && iParameters )
        {
        iParameters->SetUid( aAppUid );

        // Don't want any wait dialog.
        iParameters->SetShowProgress( EFalse );

        // Check the updates
        MCELOGGER_WRITE("StartL --- check updates");
        iUpdate->CheckUpdates( *iParameters );
        }
    }

// ---------------------------------------------------------------------------
// Cleanup function.
// ---------------------------------------------------------------------------
//
void CMceIAUpdateUtils::Delete()
    {
    if( iUpdate )
        {
        delete iUpdate;
        iUpdate = NULL;
        }
    if( iParameters )
        {
        delete iParameters;
        iParameters = NULL;
        }
    }

// -----------------------------------------------------------------------------
// From class MIAUpdateObserver.
// This callback function is called when the update checking operation has
// completed.
// -----------------------------------------------------------------------------
//
void CMceIAUpdateUtils::CheckUpdatesComplete( TInt aErrorCode,
        TInt aAvailableUpdates )
    {
    if ( aErrorCode == KErrNone )
        {
        if ( aAvailableUpdates > 0 )
            {
                if((iMceUi.IsForeground())&&(iMceUi.MceViewActive(EMceMainViewActive)))
                    {
                    // There were some updates available.
                    MCELOGGER_WRITE("CheckUpdatesComplete --- updates available");
                    iUpdate->UpdateQuery();
                    }
                else
                    {
                    MCELOGGER_WRITE("CheckUpdatesComplete --- But MessageView or Delivery Reports View is active");
                    }
            }
        else
            {
            // No updates available.
            MCELOGGER_WRITE("CheckUpdatesComplete --- no updates available");
            }
        }
    }

// -----------------------------------------------------------------------------
// From class MIAUpdateObserver.
// This callback function is called when an update operation has completed.
// -----------------------------------------------------------------------------
//
void CMceIAUpdateUtils::UpdateComplete( TInt aErrorCode, CIAUpdateResult* aResult )
    {
    if ( aErrorCode == KErrNone )
        {
        // The update process that the user started from IAUpdate UI is now
        // completed.
        // If the client application itself was updated in the update process,
        // this callback is never called, since the client is not running anymore.
        MCELOGGER_WRITE("UpdateComplete ---");
        TInt successCount = aResult->SuccessCount();
        }

    if( aResult )
        {
        // Ownership was transferred, so this must be deleted by the client.
        delete aResult;
        }

    // We do not need the client-server session anymore.
    Delete();
    }

// -----------------------------------------------------------------------------
// From class MIAUpdateObserver.
// This callback function is called when an update query operation has completed.
// -----------------------------------------------------------------------------
//
void CMceIAUpdateUtils::UpdateQueryComplete( TInt aErrorCode, TBool aUpdateNow )
    {
    if ( aErrorCode == KErrNone )
        {
        if ( aUpdateNow )
            {
            // User choosed to update now, so let's launch the IAUpdate UI.
            MCELOGGER_WRITE("UpdateQueryComplete --- now");
            iUpdate->ShowUpdates( *iParameters );
            }
        else
            {
            // The answer was 'Later'.
            MCELOGGER_WRITE("UpdateQueryComplete --- later");
            }
        }
    }
// -----------------------------------------------------------------------------
// From class MIAUpdateObserver.
// This callback function is called when an update query operation has completed.
// -----------------------------------------------------------------------------
//
void CMceIAUpdateUtils::StartL(const TUid aAppUid)
    {
    if (IsActive())
        {
            return;
         }
    iAppUid = aAppUid;
    CompleteSelf();
    }
// -----------------------------------------------------------------------------
// 
// For Setting the Active Object Active
// -----------------------------------------------------------------------------
//
void CMceIAUpdateUtils::CompleteSelf()
    {
    iStatus = KRequestPending;
    TRequestStatus* pStatus = &iStatus;
    SetActive();
    User::RequestComplete( pStatus, KErrNone );
    }
// -----------------------------------------------------------------------------
// From class CActive.
// For Starting the update in a seperate Thread
// -----------------------------------------------------------------------------
//
void CMceIAUpdateUtils::RunL()
    {
    DoStartL( iAppUid );
    }
// -----------------------------------------------------------------------------
// From class CActive.
// Nothing to do here
// -----------------------------------------------------------------------------
//
void CMceIAUpdateUtils::DoCancel()
    {
    
    }

// EOF