iaupdate/IAD/ui/src/iaupdatemainview.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 23 Jun 2010 18:20:02 +0300
changeset 52 92f864ef0288
parent 42 d17dc5398051
child 53 ae54820ef82c
permissions -rw-r--r--
Revision: 201023 Kit: 2010125

/*
* Copyright (c) 2009-2010 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:   This module contains the implementation of IAUpdateMainView
*                class member functions.
*
*/

#include <hbaction.h>
#include <QgraphicsWidget>

#include <hblistwidget.h>
#include <hblistviewitem.h>
#include <hblistwidgetitem.h>
#include <hbtoolbar.h>
#include <hbmenu.h>
#include <hbdocumentloader.h>
#include <xqconversions.h>
#include <hbmessagebox.h>
#include <hblabel.h>

#include "iaupdatemainview.h"
#include "iaupdateengine.h"
#include "iaupdateagreement.h"
#include "iaupdatedeputils.h"
#include "iaupdatedialogutil.h"
#include "iaupdateversion.h"

#include "iaupdatedebug.h"



const int KKiloByte = 1024;
const int KMegaByte = 1024 * 1024;
const int KMaxShownInKiloBytes = 10 * KMegaByte;


IAUpdateMainView::IAUpdateMainView(IAUpdateEngine *engine):
mEngine(engine)        
{
    mDialogUtil = NULL;
    mDialogState = NoDialog;
    mPrimaryAction = NULL;
    mNode = NULL;
    mSelectionUpdate = false;
    
    HbDocumentLoader loader;
    bool ok = false;
    loader.load(":/xml/iaupdate_mainview.docml", &ok);
        
    // Exit if the file format is invalid
    Q_ASSERT_X(ok, "Software update", "Invalid docml file");
    // Create the view from DocML
    
    HbView* widget = qobject_cast<HbView*>(loader.findWidget("view"));
    Q_ASSERT_X(widget != 0, "Software update", "View not found");
    QString viewTitle(widget->title());
    // Set the IAUpdateMainView view to be the widget that was loaded from the xml
    setWidget(widget);
    setTitle(viewTitle);
      
    HbToolBar *toolBar = qobject_cast< HbToolBar*>( loader.findWidget("viewToolbar") );
    setToolBar(toolBar);
    
    HbMenu *menu = qobject_cast< HbMenu*>( loader.findWidget("viewMenu") );
    setMenu(menu);
    
    //Get the Action objects from the docml file
    HbAction *action = qobject_cast<HbAction*>(loader.findObject("action"));
    HbAction *action_1 = qobject_cast<HbAction*>(loader.findObject("action_1"));
    HbAction *action_2 = qobject_cast<HbAction*>(loader.findObject("action_2"));
    
    connect(action, SIGNAL(triggered()), this, SLOT(handleStartUpdate()));
    connect(action_1, SIGNAL(triggered()), this, SLOT(handleSettings()));
    connect(action_2, SIGNAL(triggered()), this, SLOT(handleDisclaimer()));

    mListView = qobject_cast<HbListWidget*>( loader.findWidget("listWidget") );
    mListView->setSelectionMode( HbAbstractItemView::MultiSelection );
    
    connect( mListView, SIGNAL( longPressed( HbAbstractViewItem *, const QPointF & ) ),
            this, SLOT( handleDetails( HbAbstractViewItem *, const QPointF & ) ) ); 
    
    HbListViewItem *prototype = mListView->listItemPrototype();

    prototype->setGraphicsSize(HbListViewItem::LargeIcon);

}
    
IAUpdateMainView::~IAUpdateMainView()
{
}

// -----------------------------------------------------------------------------
// IAUpdateMainView::refresh
// Refreshes update list
// -----------------------------------------------------------------------------
//    
void IAUpdateMainView::refresh( const RPointerArray<MIAUpdateNode> &nodes,
                                const RPointerArray<MIAUpdateFwNode> &fwNodes,
                                int /*error*/ )
{   
    IAUPDATE_TRACE("[IAUPDATE] IAUpdateMainView::refresh begin");
       
    mAllNodes.Reset();
        
    if (fwNodes.Count() > 0)
    {
        IAUPDATE_TRACE("[IAUPDATE] IAUpdateMainView::refresh hard code importance");
        //hardcode the importance of firmware as Critical
        for (int i = 0; i < fwNodes.Count(); i++)
        {
            fwNodes[i]->Base().SetImportance(MIAUpdateBaseNode::ECritical);
        }
         
        //either NSU or FOTA available
        if (fwNodes.Count() == 1)
        {
            IAUPDATE_TRACE("[IAUPDATE] IAUpdateMainView::refresh either NSU or FOTA available");
            MIAUpdateAnyNode *node = fwNodes[0];
            mAllNodes.Append(node);
        }
        
        //both NSU and FOTA available, show only FOTA node
        if (fwNodes.Count() == 2)
        {
            IAUPDATE_TRACE("[IAUPDATE] IAUpdateMainView::refresh both NSU and FOTA available");
            MIAUpdateAnyNode *node1 = fwNodes[0];
            MIAUpdateFwNode *fwnode = static_cast<MIAUpdateFwNode*>(node1);
            if (fwnode->FwType() == MIAUpdateFwNode::EFotaDp2)
            {
                mAllNodes.Append(node1);
            }
            else
            {
                MIAUpdateAnyNode* node2 = fwNodes[1];
                mAllNodes.Append(node2);
            }
        }
    }
    
   
    for(int i = 0; i < nodes.Count(); ++i) 
    {
        MIAUpdateAnyNode *node = nodes[i];
        mAllNodes.Append(node);
    }
        
    mListView->clear();
    QItemSelectionModel *selectionModel = mListView->selectionModel();  
    selectionModel->clear();
    HbIcon icon(QString(":/icons/qgn_menu_swupdate"));
    
    for(int j = 0; j < mAllNodes.Count(); ++j) 
    {
        MIAUpdateAnyNode *node = mAllNodes[j];
           
        QString importanceDescription;
        MIAUpdateNode::TUIUpdateState uiState = MIAUpdateNode::ENormal;
        if (node->NodeType() == MIAUpdateAnyNode::ENodeTypeNormal)
        {
            MIAUpdateNode *updateNode = static_cast<MIAUpdateNode*>(node);
            uiState = updateNode->UiState();
        }
        if (uiState == MIAUpdateNode::ENormal)
        {
            setImportance(node, importanceDescription);
        }
        else
        {
            if(uiState == MIAUpdateNode::EUpdated)
            {
                importanceDescription = "Updated";
            }
            else if(uiState == MIAUpdateNode::EFailed)
            {
                importanceDescription = "Failed";
            }
            else if(uiState == MIAUpdateNode::EDownloaded)
            {
                importanceDescription = "Downloaded";
            }
        }
        
        
             
        HbListWidgetItem *item = new HbListWidgetItem();    
        QString name;
        if (node->NodeType() == MIAUpdateAnyNode::ENodeTypeNormal)
        {  
            MIAUpdateNode *updateNode = static_cast<MIAUpdateNode*>(node);
            if (updateNode->UiState() == MIAUpdateNode::EDownloading)
            {
                name = QString("Downloading ");
            }
            else if (updateNode->UiState() == MIAUpdateNode::EInstalling)
            {
                name = QString("Installing ");
            }
        }
        name.append(XQConversions::s60DescToQString(node->Base().Name()));
        if (node->NodeType() == MIAUpdateAnyNode::ENodeTypeFw) 
        {
            name.append(" DEVICE SOFTWARE");
        }
        item->setText(name);
        item->setSecondaryText(importanceDescription);
        item->setIcon(icon);
        mListView->addItem(item); 
 
        if (node->Base().IsSelected())
        {
            int count = mListView->count();
            QModelIndex modelIndex = mListView->model()->index(count-1,0);
            selectionModel->select(modelIndex, QItemSelectionModel::Select);
        }

    }
    connect(selectionModel, SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
                    this, SLOT(handleSelectionChanged(QItemSelection,QItemSelection)));     
    
    IAUPDATE_TRACE("[IAUPDATE] IAUpdateMainView::refresh end");
}




void IAUpdateMainView::handleStartUpdate()
{
    IAUPDATE_TRACE("[IAUPDATE] IAUpdateMainView::handleStartUpdate() begin");
    bool firmwareUpdate = false; 
    RPointerArray<MIAUpdateAnyNode> selectedNodes;
    getSelectedNodes(selectedNodes);
    if (selectedNodes.Count() > 0)
        {
        if ( selectedNodes[0]->NodeType() == MIAUpdateAnyNode::ENodeTypeFw )
            {
            //the marking logic will make sure firmware won't be marked with normal sis updates
            //at the same time.
            firmwareUpdate = true;
            }
        }
    selectedNodes.Close();
    mEngine->StartUpdate(firmwareUpdate);
    IAUPDATE_TRACE("[IAUPDATE] IAUpdateMainView::handleStartUpdate() end");
}


void IAUpdateMainView::handleSettings()
{
    emit toSettingView();
}

void IAUpdateMainView::handleDisclaimer()
{
    if (!mDialogUtil)
    {
        mDialogUtil = new IAUpdateDialogUtil(this);
    }
    if (mDialogUtil)
    {
        HbAction *primaryAction = new HbAction("OK");
        mDialogUtil->showAgreement(primaryAction);
    }
}

void IAUpdateMainView::handleDetails( HbAbstractViewItem * item, const QPointF & )
{
 
    
    int ind = item->modelIndex().row();
    if (getNode(ind) != NULL)
    {    
        showDetails(*getNode(ind));
    }
}


void IAUpdateMainView::handleSelectionChanged(const QItemSelection &selected, const QItemSelection &deselected)
{
    if (!mSelectionUpdate)
    {
        bool changedItemFound = false; 
        QModelIndexList indexList = selected.indexes();
        for (int i = 0; !changedItemFound && i < indexList.count(); ++i)
        {    
            changedItemFound = true;
            markListItem(true, indexList.at(i).row());
        }
        if (!changedItemFound)
        {
            indexList = deselected.indexes();
            for (int i = 0; !changedItemFound && i < indexList.count(); ++i)
            {    
                changedItemFound = true;
                markListItem(false, indexList.at(i).row());
            }
        }
    }
}


void IAUpdateMainView::dialogFinished(HbAction *action)
{
    DialogState dialogState = mDialogState;
    mDialogState = NoDialog;
    
    switch ( dialogState )
    {
        case Dependencies:
            if (action == mPrimaryAction)
            {
                updateSelectionsToNodeArray(*mNode,mMark);
            }
            updateSelectionsToList();
            break;
        case CannotOmit:    
            break;
        case Details:
            break; 
        default: 
            break;
    }
}


void IAUpdateMainView::getSelectedNodes(RPointerArray<MIAUpdateAnyNode> &selectedNodes) const
{
    for (int i = 0; i < mAllNodes.Count(); ++i)
    {
        if (mAllNodes[i]->Base().IsSelected())
        {
            selectedNodes.Append(mAllNodes[i]);
        }
    }
}

void IAUpdateMainView::markListItem(bool mark, int index)
{
    if (mark)
    {
        //It's Mark Command
        RPointerArray<MIAUpdateAnyNode> selectedNodes;
        getSelectedNodes(selectedNodes); 
        
        //There are selected items already and type are different with the current one
        if (selectedNodes.Count() > 0 && (mAllNodes[index]->NodeType() != selectedNodes[0]->NodeType()))
        {       
            // firmware item and normal sis items can't be selected at the same time
            // unmark the selected nodes.
            for (int i = 0; i < selectedNodes.Count(); i++)
            {                
                int index = mAllNodes.Find(selectedNodes[i]);
                mAllNodes[index]->Base().SetSelected(false);
            }
        }
        selectedNodes.Close();
    }
    
    //there is no selected items or the type is the same with the current one
    
    if (mAllNodes[index]->NodeType() == MIAUpdateAnyNode::ENodeTypeFw )
    {
        mAllNodes[index]->Base().SetSelected(mark);   
        updateSelectionsToList();
        return;
    }
    
    if (mAllNodes[index]->NodeType() == MIAUpdateAnyNode::ENodeTypeNormal )
    {
        bool accepted = false;
        
        if(index > -1)
        {
            accepted = true;
            
            MIAUpdateNode* node = static_cast<MIAUpdateNode*>(mAllNodes[index]);
            RPointerArray<MIAUpdateAnyNode> mands;
            RPointerArray<MIAUpdateNode> deps;
           
            if (mark)
            {
                TRAPD(err,IAUpdateDepUtils::GetDependenciesL(*node, mAllNodes, deps));
                if (err != KErrNone)
                {
                    deps.Close();
                    updateSelectionsToList();
                    return;
                }
                if (!getMandatoryNodes(mands))
                {
                    // error when creating mandatory node list
                    mands.Close();
                    updateSelectionsToList();
                    return;
                }
            }
            else
            {
                //mandatory item is not allowed to be unmarked
                if (mAllNodes[index]->Base().Importance() == MIAUpdateBaseNode::EMandatory)
                {
                    //show dialog  
                    showUpdateCannotOmitDialog();
                    updateSelectionsToList();
                    return;
                }
                
                //CleanupClosePushL( deps );
                TRAPD(err,IAUpdateDepUtils::GetDependantsL(*node, mAllNodes, deps));  
                if (err != KErrNone)
                {
                    deps.Close();
                    updateSelectionsToList();
                    return;
                }
                // item is not allowed to be unmarked if its dependant is mandatory
                bool mandatoryDependantFound = false;
                for(int i = 0; i < deps.Count() && !mandatoryDependantFound; i++)
                {
                    if (deps[i]->Base().Importance() == MIAUpdateBaseNode::EMandatory)
                    {
                        mandatoryDependantFound = true;
                    }
                }
                if (mandatoryDependantFound)
                {
                    showUpdateCannotOmitDialog();
                    deps.Close();
                    updateSelectionsToList();
                    return;
                }
            }
             
            int depCount = deps.Count();
           
            if (depCount > 0)
            {
                QString text;
                QString names;
                MIAUpdateNode* depNode = NULL;
                QString separator(",");
                       
                for(int i = 0; i < depCount; i++)  
                {
                    depNode = deps[i];
                    if (i > 0)
                    {
                        names.append(separator);
                        names.append(QString(" "));
                    }
                    names.append(XQConversions::s60DescToQString(depNode->Base().Name()));
                }
                

                if (mark)
                {
                    if (depCount > 1) 
                    {
                        text.append("This update needs also updates "); 
                        text.append(names);
                        text.append(" for working");
                        //resourceId = R_IAUPDATE_DEPENDENCY_MARK_MANY;
                    } 
                    else
                    {
                        text.append("This update needs also \""); 
                        text.append(names);
                        text.append("\" for working");
                        //resourceId = R_IAUPDATE_DEPENDENCY_MARK_ONE;    
                    }
                }
                else
                {
                    if (depCount > 1) 
                    {
                        text.append("Updates "); 
                        text.append(names);
                        text.append(" need this update for working");
                        //resourceId = R_IAUPDATE_DEPENDENCY_UNMARK_MANY;
                    } 
                    else
                    {
                        text.append("Update \""); 
                        text.append(names);
                        text.append("\" needs this update for working");
                        //resourceId = R_IAUPDATE_DEPENDENCY_UNMARK_ONE;  
                    }   
                }
                
                if (mark && mAllNodes[index]->Base().Importance() == MIAUpdateBaseNode::EMandatory)
                {
                    // depencencies of mandatory update are also selected without showing dialog
                    accepted = true;
                }
                else
                {
                    mNode = node;
                    mMark = mark;
                    showDependenciesFoundDialog(text);
                    return;
                }
            }
            if (accepted)
            {    
                updateSelectionsToNodeArray(*node, mark);   
            }
        }
        
    }
    updateSelectionsToList();
}       
    
void IAUpdateMainView::updateSelectionsToNodeArray(MIAUpdateNode &node, bool mark)   
{    
    RPointerArray<MIAUpdateNode> deps;  
    TInt err = KErrNone;
    if (mark)
    {
        TRAP(err,IAUpdateDepUtils::GetDependenciesL(node, mAllNodes, deps));
    }
    else
    {
        TRAP(err,IAUpdateDepUtils::GetDependantsL(node, mAllNodes, deps)); 
    }
    if (err  == KErrNone )
    {    
        int depCount = deps.Count(); 
        for(int i = 0; i < depCount; i++)
        {
            int depNodeInd = mAllNodes.Find(deps[i]);
            mAllNodes[depNodeInd]->Base().SetSelected(mark);
        }
        deps.Close();
        int nodeInd = mAllNodes.Find(&node);
        mAllNodes[nodeInd]->Base().SetSelected(mark);
    }                
    
    //mark all of the mandatory items
    if ( mark )
    {    
        RPointerArray<MIAUpdateAnyNode> mands;    
        if (getMandatoryNodes(mands))
        {
            int mandCount = mands.Count();
            if (mandCount > 0)
            {
                for(int i = 0; i < mandCount; i++)
                {
                    int mandNodeInd = mAllNodes.Find(mands[i]);
                    mAllNodes[mandNodeInd]->Base().SetSelected(mark);
                    if (mAllNodes[mandNodeInd]->NodeType() == MIAUpdateAnyNode::ENodeTypeNormal)
                    {
                        // mark also all dependencies of a mandatory item
                        MIAUpdateNode* dependencyNode = static_cast<MIAUpdateNode*>(mAllNodes[mandNodeInd]);
                        RPointerArray<MIAUpdateNode> dependencies;
                        TRAPD(err,IAUpdateDepUtils::GetDependenciesL(*dependencyNode, mAllNodes, dependencies));
                        if (err)
                        {
                            dependencies.Close(); 
                            mands.Close();
                            return;
                        }
                        for(int j = 0; j < dependencies.Count(); j++)
                        {
                            int depNodeInd = mAllNodes.Find(dependencies[j]);
                            mAllNodes[depNodeInd]->Base().SetSelected(true);
                        }
                        dependencies.Close();
                    }
                }
            }
        }
        mands.Close();
    }  
}


bool IAUpdateMainView::getMandatoryNodes(RPointerArray<MIAUpdateAnyNode> &mandNodes) const
{
    bool ret = true;
    for(int i = 0; i < mAllNodes.Count(); ++i)
    {
        if (mAllNodes[i]->Base().Importance() == MIAUpdateBaseNode::EMandatory)
        {
            if (mandNodes.Append(mAllNodes[i]) != KErrNone)
            {
                ret = false; 
            }
        }
    }
    return ret;
}

void IAUpdateMainView::showUpdateCannotOmitDialog()
{
    HbMessageBox *messageBox = new HbMessageBox(HbMessageBox::MessageTypeInformation);
    messageBox->setText(QString("This required update cannot be omitted"));
    int actionCount = messageBox->actions().count();
    for (int i=actionCount-1; i >= 0; i--)
    { 
        messageBox->removeAction(messageBox->actions().at(i));
    }
    HbAction *okAction = NULL;
    okAction = new HbAction("Ok");
    messageBox->addAction(okAction);
    messageBox->setTimeout(HbPopup::StandardTimeout);
    messageBox->setAttribute(Qt::WA_DeleteOnClose);
    mDialogState = CannotOmit;
    messageBox->open(this, SLOT(dialogFinished(HbAction*)));
}

void IAUpdateMainView::showDependenciesFoundDialog(QString &text)
{
    HbMessageBox *messageBox = new HbMessageBox(HbMessageBox::MessageTypeQuestion);
    HbLabel *label = new HbLabel(messageBox);
    label->setHtml(QString("Depencencies"));
    messageBox->setHeadingWidget(label);
    //messageBox->setIconVisible(false);
        
    messageBox->setText(text);
    int actionCount = messageBox->actions().count();
    for (int i=actionCount-1; i >= 0; i--)
    { 
        messageBox->removeAction(messageBox->actions().at(i));
    }
    mPrimaryAction = NULL;
    mPrimaryAction = new HbAction("Continue");
    HbAction *secondaryAction = NULL;
    secondaryAction = new HbAction("Cancel");
    messageBox->addAction(mPrimaryAction);
    messageBox->addAction(secondaryAction);
    messageBox->setTimeout(HbPopup::NoTimeout);
    messageBox->setAttribute(Qt::WA_DeleteOnClose);
    mDialogState = Dependencies;
    messageBox->open(this, SLOT(dialogFinished(HbAction*)));
}

void IAUpdateMainView::updateSelectionsToList()
{
    mSelectionUpdate = true;
    for(int i = 0; i < mAllNodes.Count(); ++i)
    {
        if ( mAllNodes[i]->Base().IsSelected() != mListView->selectionModel()->isSelected(mListView->model()->index(i,0)))
        {    
            QItemSelectionModel::SelectionFlag selectionFlag;
            if ( mAllNodes[i]->Base().IsSelected())
            {
                selectionFlag = QItemSelectionModel::Select;
            }
            else
            {
                selectionFlag = QItemSelectionModel::Deselect;
            }
            mListView->selectionModel()->select(mListView->model()->index(i,0),selectionFlag);   
        }
    }
    mSelectionUpdate = false;
}


MIAUpdateAnyNode* IAUpdateMainView::getNode(int index) const
{
    MIAUpdateAnyNode *currentNode = NULL;
     
    if (index >= 0 && index < mAllNodes.Count())
    {
        currentNode = mAllNodes[index];
    }
    return currentNode;
}
                
void IAUpdateMainView::showDetails(MIAUpdateAnyNode& node)
{  
    HbMessageBox *messageBox = new HbMessageBox(HbMessageBox::MessageTypeInformation);
    HbLabel *label = new HbLabel(messageBox);
    label->setHtml(QString("Details"));
    messageBox->setHeadingWidget(label);
       
    messageBox->setIconVisible(false);
            
    QString text;
    constructDetailsText(node,text); 
    messageBox->setText(text);
    messageBox->setTimeout(HbPopup::NoTimeout);
    messageBox->setAttribute(Qt::WA_DeleteOnClose);
    mDialogState = Details;
    messageBox->open(this, SLOT(dialogFinished(HbAction*)));                
}                
        

void IAUpdateMainView::constructDetailsText(MIAUpdateAnyNode &node, QString &text)
{
    
    text.append(QString("Name:"));
    text.append(QString("<br />"));
    QString name = XQConversions::s60DescToQString(node.Base().Name());
    text.append(name);
    if (node.NodeType() == MIAUpdateAnyNode::ENodeTypeFw)
    {    
        name.append(QString(" Device software"));
    }
        
    text.append(QString("<br />"));
    text.append(QString("<br />"));
    
    text.append(QString("Description:"));
    text.append(QString("<br />"));
    QString description;
    if (node.NodeType() == MIAUpdateAnyNode::ENodeTypeFw)
    {
        description = QString("This update improves your device performance and brings you latest features.");
    }
    else
    {    
        description = XQConversions::s60DescToQString(node.Base().Description());
    }    
    text.append(description);
    text.append(QString("<br />"));
    text.append(QString("<br />"));
    
    
    if (node.NodeType() == MIAUpdateAnyNode::ENodeTypeNormal)
    {
        MIAUpdateNode *iaupdateNode = static_cast<MIAUpdateNode*> (&node);
        if (iaupdateNode->Type()!= MIAUpdateNode::EPackageTypeServicePack)
        {
            text.append(QString("Version:"));
            text.append(QString("<br />"));
            QString textVersion;
            versionText(node.Base().Version(), textVersion);
            text.append(textVersion);
            text.append(QString("<br />"));
            text.append(QString("<br />"));
        }
    }
    if (node.NodeType() == MIAUpdateAnyNode::ENodeTypeFw)
    {    
        MIAUpdateFwNode *fwNode = static_cast<MIAUpdateFwNode*> (&node);
        text.append(QString("Version:"));
        text.append(QString("<br />"));
        QString textVersion = XQConversions::s60DescToQString(fwNode->FwVersion1());
        text.append(textVersion);
        text.append(QString("<br />"));
        text.append(QString("<br />"));
    }
    
    int contentSize = node.Base().ContentSizeL();
    if (contentSize > 0)
    {
        text.append(QString("Size:"));
        text.append(QString("<br />"));
        QString textFileSize;
        fileSizeText(contentSize, textFileSize);
        text.append(textFileSize);
    }
}

void IAUpdateMainView::versionText(const TIAUpdateVersion &version, QString &versionText)
{
    QString stringMajor;
    stringMajor.setNum(version.iMajor);
    versionText.append(stringMajor);
    versionText.append(QString("."));
    QString stringMinor;
    stringMinor.setNum(version.iMinor);
    versionText.append(stringMinor);
    versionText.append(QString("("));
    QString stringBuild;
    stringBuild.setNum(version.iBuild);
    versionText.append(stringBuild);
    versionText.append(QString(")"));
}

void IAUpdateMainView::fileSizeText(int fileSize, QString &text)
{
    int size = 0;
    QString stringUnit;
    
    if (fileSize >= KMaxShownInKiloBytes )
        {
        stringUnit.append(" MB");
        size = fileSize / KMegaByte;
        if ( fileSize % KMegaByte != 0 )
            {
            size++;
            }
        }
    else
        {
        stringUnit.append(" kB");
        size = fileSize / KKiloByte;
        if ( fileSize % KKiloByte != 0 )
            {
            size++;
            }   
        }
    text.setNum(size);
    text.append(stringUnit); 
}

void IAUpdateMainView::setImportance(MIAUpdateAnyNode *node, QString &importanceDescription)
{
    int sizeInBytes = node->Base().ContentSizeL();
    int size = 0;
    bool shownInMegabytes = false;        
    if (sizeInBytes >= KMaxShownInKiloBytes)
    {
        shownInMegabytes = true;
        size = sizeInBytes / KMegaByte;
        if (sizeInBytes % KMegaByte != 0)
        {
           size++;
        }
    }
    else 
    {
        size = sizeInBytes / KKiloByte;
        if (sizeInBytes % KKiloByte != 0)
        {
            size++;
        }  
    }
    QString sizeString;
    sizeString.setNum(size);     
    switch(node->Base().Importance())
    {        
        case MIAUpdateBaseNode::EMandatory:
        {
            importanceDescription = "Required ";
            importanceDescription.append(sizeString);
            if (shownInMegabytes)
            {
                importanceDescription.append(" MB" );
            }
            else 
            {
                importanceDescription.append(" kB" );
            }  
            break;
        }
                
        case MIAUpdateBaseNode::ECritical:
        {
            bool isNSU = false;
            if(node->NodeType() == MIAUpdateAnyNode::ENodeTypeFw)
            {
                MIAUpdateFwNode *fwnode = static_cast<MIAUpdateFwNode*>(node);          
                if (fwnode->FwType() == MIAUpdateFwNode::EFotiNsu)
                {
                   isNSU = true;
                }
            }
            importanceDescription = "Important ";
            if (!size || isNSU)
            {
                //for firmware when size info is not provided by server
            }
            else
            {
                importanceDescription.append(sizeString);
                if (shownInMegabytes)
                {
                    importanceDescription.append(" MB" );
                }
                else 
                {
                    importanceDescription.append(" kB" );
                } 
            }
            break;
        }
            
        case MIAUpdateBaseNode::ERecommended:
        {
            importanceDescription = "Recommended ";
            importanceDescription.append(sizeString);
            if (shownInMegabytes)
            {
                importanceDescription.append(" MB" );
            }
            else 
            {
                importanceDescription.append(" kB" );
            }  
            break;
        }
            
        case MIAUpdateBaseNode::ENormal:
        {
            importanceDescription = "Optional ";
            importanceDescription.append(sizeString);
            if (shownInMegabytes)
            {
                importanceDescription.append(" MB" );
            }
            else 
            {
                importanceDescription.append(" kB" );
            }  
            break;
        }

        default:
        {
            break;
        }
    }
}