VirtualBox

Ignore:
Timestamp:
Dec 7, 2010 2:51:18 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
68597
Message:

Main,VBoxManage,FE/Qt: Implemented IExtPackFile and dropped IExtPackManager::Install.

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.cpp

    r34781 r34787  
    4545
    4646#if defined (Q_WS_WIN32)
    47 #include <Htmlhelp.h>
     47# include <Htmlhelp.h>
    4848#endif
    4949
     
    21102110}
    21112111
    2112 void VBoxProblemReporter::cannotInstallExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent /* = 0 */)
     2112void VBoxProblemReporter::cannotOpenExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent /* = 0 */)
     2113{
     2114    message (pParent ? pParent : mainWindowShown(),
     2115             Error,
     2116             tr("Failed to open the Extension Pack <b>%1</b>.").arg(strFilename),
     2117             formatErrorInfo(extPackManager));
     2118}
     2119
     2120void VBoxProblemReporter::badExtPackFile(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent /* = 0 */)
     2121{
     2122    message (pParent ? pParent : mainWindowShown(),
     2123             Error,
     2124             tr("Failed to open the Extension Pack <b>%1</b>.").arg(strFilename),
     2125             extPackFile.GetWhyUnusable());
     2126}
     2127
     2128void VBoxProblemReporter::cannotInstallExtPack(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent /* = 0 */)
    21132129{
    21142130    message (pParent ? pParent : mainWindowShown(),
    21152131             Error,
    21162132             tr("Failed to install the Extension Pack <b>%1</b>.").arg(strFilename),
    2117              formatErrorInfo(extPackManager));
     2133             formatErrorInfo(extPackFile));
    21182134}
    21192135
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.h

    r34740 r34787  
    338338    void cannotUpdateGuestAdditions (const CProgress &aProgress, QWidget *aParent /* = NULL */) const;
    339339
    340     void cannotInstallExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent = 0);
     340    void cannotOpenExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent = 0);
     341    void badExtPackFile(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent = 0);
     342    void cannotInstallExtPack(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent = 0);
    341343    void cannotUninstallExtPack(const QString &strPackName, const CExtPackManager &extPackManager, QWidget *pParent = 0);
    342344    bool confirmRemovingPackage(const QString &strPackName, QWidget *pParent = 0);
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/VBoxSelectorWnd.cpp

    r34728 r34787  
    3939#include "QIFileDialog.h"
    4040#include "UIDesktopServices.h"
     41#include "UIGlobalSettingsExtension.h" /* extension pack installation */
    4142
    4243#ifdef VBOX_GUI_WITH_SYSTRAY
     
    10111012            else if (VBoxGlobal::hasAllowedExtension(strFile, VBoxDefs::VBoxExtPackFileExts))
    10121013            {
    1013                 CExtPackManager extPackManager = vboxGlobal().virtualBox().GetExtensionPackManager();
    1014                 extPackManager.Install(strFile);
    1015                 if (!extPackManager.isOk())
    1016                     vboxProblem().cannotInstallExtPack(strFile, extPackManager, this);
     1014                UIGlobalSettingsExtension::doInstallation(strFile, this, NULL);
    10171015            }
    10181016        }
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp

    r34596 r34787  
    104104}
    105105
     106/**
     107 * Attempt the actual installation.
     108 *
     109 * This code is shared by UIGlobalSettingsExtension::sltInstallPackage and
     110 * VBoxSelectorWnd::sltOpenUrls.
     111 * @todo    Is there perhaps a better home for this method?
     112 *
     113 * @returns true if successfully installed, false if not.
     114 * @param   strFilePath     The path to the tarball.
     115 * @param   pParent         The parent widget.
     116 * @param   pstrExtPackName Where to return the extension pack name. Optional.
     117 */
     118/*static*/ bool UIGlobalSettingsExtension::doInstallation(QString const &strFilePath, QWidget *pParent, QString *pstrExtPackName)
     119{
     120    bool fInstalled = false;
     121
     122    /*
     123     * Open the extpack tarball via IExtPackManager.
     124     */
     125    CExtPackManager manager = vboxGlobal().virtualBox().GetExtensionPackManager();
     126    CExtPackFile extPackFile = manager.OpenExtPackFile(strFilePath);
     127    if (manager.isOk())
     128    {
     129        if (pstrExtPackName)
     130            *pstrExtPackName = extPackFile.GetName();
     131        if (extPackFile.GetUsable())
     132        {
     133            bool fAck = true;
     134            /** @todo display big fat warning message. */
     135
     136            if (fAck)
     137            {
     138                /** @todo display licenses.  */
     139            }
     140
     141            /*
     142             * Install it if everything was ACKed by the user.
     143             */
     144            if (fAck)
     145            {
     146                extPackFile.Install();
     147                if (extPackFile.isOk())
     148                    fInstalled = true;
     149                else
     150                    vboxProblem().cannotInstallExtPack(strFilePath, extPackFile, pParent);
     151            }
     152        }
     153        else
     154            vboxProblem().badExtPackFile(strFilePath, extPackFile, pParent);
     155    }
     156    else
     157        vboxProblem().cannotOpenExtPack(strFilePath, manager, pParent);
     158
     159    return fInstalled;
     160}
     161
    106162/* Load data to cashe from corresponding external object(s),
    107163 * this task COULD be performed in other than GUI thread: */
     
    208264        extensions << QString("*.%1").arg(VBoxDefs::VBoxExtPackFileExts[i]);
    209265    QString strFilter = tr("Extension package files (%1)").arg(extensions.join(" "));
     266
    210267    /* Create open file dialog: */
    211268    QStringList fileNames = QIFileDialog::getOpenFileNames(strBaseFolder, strFilter, this, strTitle, 0, true, true);
     
    213270        strFilePath = fileNames.at(0);
    214271
    215     /* Install chosen package: */
     272    /*
     273     * Install chosen package.
     274     */
    216275    if (!strFilePath.isEmpty())
    217276    {
    218         /* Get package manager: */
    219         CExtPackManager manager = vboxGlobal().virtualBox().GetExtensionPackManager();
    220         /* Install package & get the name of newly installed package: */
    221         QString strAddedPackageName = manager.Install(strFilePath);
    222         if (manager.isOk())
     277        QString strExtPackName;
     278        if (doInstallation(strFilePath, this, &strExtPackName))
    223279        {
    224             /* Get the newly added package: */
    225             const CExtPack &package = manager.Find(strAddedPackageName);
    226             /* Add newly added package into cache: */
     280            /*
     281             * Insert the fresly installed extension pack, mark it as
     282             * current in the tree and sort by name (col 1).
     283             */
     284            CExtPackManager manager = vboxGlobal().virtualBox().GetExtensionPackManager();
     285            const CExtPack &package = manager.Find(strExtPackName);
    227286            m_cache.m_items << fetchData(package);
    228             /* Add newly added package into tree: */
    229287            UIExtensionPackageItem *pItem = new UIExtensionPackageItem(m_pPackagesTree, m_cache.m_items.last());
    230             /* Set the newly created item as current: */
    231288            m_pPackagesTree->setCurrentItem(pItem);
    232             /* Sort the tree by <name> column: */
    233289            m_pPackagesTree->sortByColumn(1, Qt::AscendingOrder);
    234290        }
    235         else vboxProblem().cannotInstallExtPack(strFilePath, manager, this);
    236291    }
    237292}
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.h

    r34543 r34787  
    5151    UIGlobalSettingsExtension();
    5252
     53    static bool doInstallation(QString const &strFilePath, QWidget *pParent, QString *pstrExtPackName);
     54
    5355protected:
    5456
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette