VirtualBox

Changeset 75663 in vbox


Ignore:
Timestamp:
Nov 22, 2018 2:00:59 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126855
Message:

Main/ExtPackManager+CloudProviderManager+VirtualBox: Handle runtime install and uninstall of extension packs containing cloud providers. This is a safeguard against uninstalling active cloud providers (which would cause crashes), and makes the install more convcenient. At the same time it eliminated the need to have a special "detect all cloud providers" logic when VBoxSVC is started. It achieves perfect singleton property of the per-extpack CloudProviderManager and the related CloudProvider objects. Nothing is ever created twice (which would cause trouble with coordinating e.g. the profile file updates).

Location:
trunk/src/VBox/Main
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r75648 r75663  
    2552025520  <interface
    2552125521    name="ICloudProvider" extends="$unknown"
    25522     uuid="8154fa84-35d7-4a9b-86b4-cb2635b0d9f5"
     25522    uuid="caaf8bc1-aab0-4ea0-b825-be53a1453bdd"
    2552325523    wsmap="managed" reservedMethods="4" reservedAttributes="4"
    2552425524    >
     
    2560425604      <param name="profileName" type="wstring" dir="in"/>
    2560525605      <param name="profile" type="ICloudProfile" dir="return"/>
     25606    </method>
     25607
     25608    <method name="prepareUninstall" wrap-hint-server="passcaller">
     25609      <desc>
     25610        The caller requests the cloud provider to cease operation. Should
     25611        return an error if this is currently not possible (due to ongoing
     25612        cloud activity, possibly by a different API client). However, this
     25613        must not wait for the completion for a larger amount of time (ideally
     25614        stays below a second of execution time). If this succeeds it should
     25615        leave the cloud provider in a state which does not allow starting new
     25616        operations.
     25617      </desc>
    2560625618    </method>
    2560725619
  • trunk/src/VBox/Main/include/CloudProviderManagerImpl.h

    r74926 r75663  
    2121
    2222#include "CloudProviderManagerWrap.h"
    23 #ifdef VBOX_WITH_EXTPACK
    24 class ExtPackManager;
    25 #endif
    2623
    2724
     
    3532    void FinalRelease();
    3633
    37     HRESULT init(VirtualBox *aParent);
     34    HRESULT init();
    3835    void uninit();
    3936
    4037#ifdef VBOX_WITH_EXTPACK
    4138    // Safe helpers, take care of caller and lock themselves.
    42     void i_refreshProviders();
     39    bool i_canRemoveExtPack(IExtPack *aExtPack);
     40    void i_addExtPack(IExtPack *aExtPack);
    4341#endif
    4442
     
    5553private:
    5654#ifdef VBOX_WITH_EXTPACK
    57     ComObjPtr<ExtPackManager> mpExtPackMgr;
    58     uint64_t mcExtPackMgrUpdate;
    59     std::map<com::Utf8Str, ComPtr<ICloudProviderManager> > m_mapCloudProviderManagers;
     55    typedef std::map<com::Utf8Str, ComPtr<ICloudProviderManager> > ExtPackNameCloudProviderManagerMap;
     56    ExtPackNameCloudProviderManagerMap m_mapCloudProviderManagers;
     57    typedef std::vector<com::Utf8Str> ExtPackNameVec;
     58    ExtPackNameVec m_astrExtPackNames;
    6059#endif
    6160
    62     std::vector<ComPtr<ICloudProvider> > m_apCloudProviders;
     61    typedef std::vector<ComPtr<ICloudProvider> > CloudProviderVec;
     62    CloudProviderVec m_apCloudProviders;
    6363};
    6464
  • trunk/src/VBox/Main/include/ExtPackManagerImpl.h

    r74804 r75663  
    131131    bool        i_wantsToBeDefaultVrde(void) const;
    132132    HRESULT     i_refresh(bool *pfCanDelete);
     133#ifndef VBOX_COM_INPROC
     134    bool        i_areThereCloudProviderUninstallVetos();
     135    void        i_notifyCloudProviderManager();
     136#endif
    133137    /** @}  */
    134138
  • trunk/src/VBox/Main/include/VirtualBoxImpl.h

    r75380 r75663  
    4040class DHCPServer;
    4141class PerformanceCollector;
     42class CloudProviderManager;
    4243#ifdef VBOX_WITH_EXTPACK
    4344class ExtPackManager;
     
    216217    const Guid &i_getGlobalRegistryId() const;
    217218
    218     const ComObjPtr<Host>& i_host() const;
    219     SystemProperties* i_getSystemProperties() const;
     219    const ComObjPtr<Host> &i_host() const;
     220    SystemProperties *i_getSystemProperties() const;
     221    CloudProviderManager *i_getCloudProviderManager() const;
    220222#ifdef VBOX_WITH_EXTPACK
    221     ExtPackManager* i_getExtPackManager() const;
     223    ExtPackManager *i_getExtPackManager() const;
    222224#endif
    223225#ifdef VBOX_WITH_RESOURCE_USAGE_API
    224     const ComObjPtr<PerformanceCollector>& i_performanceCollector() const;
     226    const ComObjPtr<PerformanceCollector> &i_performanceCollector() const;
    225227#endif /* VBOX_WITH_RESOURCE_USAGE_API */
    226228
     
    229231
    230232    /** Returns the VirtualBox home directory */
    231     const Utf8Str& i_homeDir() const;
     233    const Utf8Str &i_homeDir() const;
    232234    int i_calculateFullPath(const Utf8Str &strPath, Utf8Str &aResult);
    233235    void i_copyPathRelativeToConfig(const Utf8Str &strSource, Utf8Str &strTarget);
  • trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp

    r74814 r75663  
    2121*********************************************************************************************************************************/
    2222#include "ExtPackManagerImpl.h"
     23#include "CloudProviderManagerImpl.h"
    2324#include "ExtPackUtil.h"
    2425#include "ThreadTask.h"
     
    928929            a_pLock->release();
    929930            m->pReg->pfnVirtualBoxReady(m->pReg, a_pVirtualBox);
     931            i_notifyCloudProviderManager();
    930932            a_pLock->acquire();
    931933            return true;
     
    10851087    return false;
    10861088}
    1087 #endif /* !VBOX_COM_INPROC */
     1089#endif /* VBOX_COM_INPROC */
    10881090
    10891091/**
     
    12481250    return S_OK;
    12491251}
     1252
     1253#ifndef VBOX_COM_INPROC
     1254/**
     1255 * Checks if there are cloud providers vetoing extension pack uninstall.
     1256 *
     1257 * This needs going through the cloud provider singleton in VirtualBox,
     1258 * the job cannot be done purely by using the code in the extension pack).
     1259 * It cannot be integrated into i_callUninstallHookAndClose, because it
     1260 * can only do its job when the extpack lock is not held, whereas the
     1261 * actual uninstall must be done with the lock held all the time for
     1262 * consistency reasons.
     1263 *
     1264 * This is called when uninstalling or replacing an extension pack.
     1265 *
     1266 * @returns true / false
     1267 */
     1268bool ExtPack::i_areThereCloudProviderUninstallVetos()
     1269{
     1270    Assert(m->pVirtualBox != NULL); /* Only called from VBoxSVC. */
     1271
     1272    ComObjPtr<CloudProviderManager> cpm(m->pVirtualBox->i_getCloudProviderManager());
     1273    AssertReturn(!cpm.isNull(), false);
     1274
     1275    return !cpm->i_canRemoveExtPack(static_cast<IExtPack *>(this));
     1276}
     1277
     1278/**
     1279 * Notifies the Cloud Provider Manager that there is a new extension pack.
     1280 *
     1281 * This is called when installing an extension pack.
     1282 *
     1283 * @param   a_pExtPack          The extension pack to be added.
     1284 */
     1285void ExtPack::i_notifyCloudProviderManager()
     1286{
     1287    Assert(m->pVirtualBox != NULL); /* Only called from VBoxSVC. */
     1288
     1289    ComObjPtr<CloudProviderManager> cpm(m->pVirtualBox->i_getCloudProviderManager());
     1290    AssertReturnVoid(!cpm.isNull());
     1291
     1292    cpm->i_addExtPack(static_cast<IExtPack *>(this));
     1293}
     1294
     1295#endif /* !VBOX_COM_INPROC */
    12501296
    12511297/**
     
    28492895                autoLock.release();
    28502896                bool fRunningVMs = i_areThereAnyRunningVMs();
     2897                bool fVetoingCP = pExtPack->i_areThereCloudProviderUninstallVetos();
    28512898                autoLock.acquire();
    28522899                hrc = i_refreshExtPack(pStrName->c_str(), false /*a_fUnusableIsError*/, &pExtPack);
    28532900                if (fRunningVMs)
    28542901                {
    2855                     LogRel(("Install extension pack '%s' failed because at least one VM is still running.", pStrName->c_str()));
    2856                     hrc = setError(E_FAIL, tr("Install extension pack '%s' failed because at least one VM is still running"),
     2902                    LogRel(("Upgrading extension pack '%s' failed because at least one VM is still running.", pStrName->c_str()));
     2903                    hrc = setError(E_FAIL, tr("Upgrading extension pack '%s' failed because at least one VM is still running"),
     2904                                   pStrName->c_str());
     2905                }
     2906                else if (fVetoingCP)
     2907                {
     2908                    LogRel(("Upgrading extension pack '%s' failed because at least one Cloud Provider is still busy.", pStrName->c_str()));
     2909                    hrc = setError(E_FAIL, tr("Upgrading extension pack '%s' failed because at least one Cloud Provider is still busy"),
    28572910                                   pStrName->c_str());
    28582911                }
     
    29563009    if (SUCCEEDED(hrc))
    29573010    {
    2958         if (a_fForcedRemoval || !i_areThereAnyRunningVMs())
    2959         {
    2960             AutoWriteLock autoLock(this COMMA_LOCKVAL_SRC_POS);
    2961 
    2962             /*
    2963              * Refresh the data we have on the extension pack as it may be made
    2964              * stale by direct meddling or some other user.
    2965              */
    2966             ExtPack *pExtPack;
    2967             hrc = i_refreshExtPack(a_pstrName->c_str(), false /*a_fUnusableIsError*/, &pExtPack);
    2968             if (SUCCEEDED(hrc))
     3011        AutoWriteLock autoLock(this COMMA_LOCKVAL_SRC_POS);
     3012
     3013        /*
     3014         * Refresh the data we have on the extension pack as it
     3015         * may be made stale by direct meddling or some other user.
     3016         */
     3017        ExtPack *pExtPack;
     3018        hrc = i_refreshExtPack(a_pstrName->c_str(), false /*a_fUnusableIsError*/, &pExtPack);
     3019        if (SUCCEEDED(hrc) && pExtPack)
     3020        {
     3021            /* We must leave the lock when calling i_areThereAnyRunningVMs,
     3022               which means we have to redo the refresh call afterwards. */
     3023            autoLock.release();
     3024            bool fRunningVMs = i_areThereAnyRunningVMs();
     3025            bool fVetoingCP = pExtPack->i_areThereCloudProviderUninstallVetos();
     3026            autoLock.acquire();
     3027            if (a_fForcedRemoval || (!fRunningVMs && !fVetoingCP))
    29693028            {
    2970                 if (!pExtPack)
     3029                hrc = i_refreshExtPack(a_pstrName->c_str(), false /*a_fUnusableIsError*/, &pExtPack);
     3030                if (SUCCEEDED(hrc))
    29713031                {
    2972                     LogRel(("ExtPackManager: Extension pack '%s' is not installed, so nothing to uninstall.\n", a_pstrName->c_str()));
    2973                     hrc = S_OK;             /* nothing to uninstall */
    2974                 }
    2975                 else
    2976                 {
    2977                     /*
    2978                      * Call the uninstall hook and unload the main dll.
    2979                      */
    2980                     hrc = pExtPack->i_callUninstallHookAndClose(m->pVirtualBox, a_fForcedRemoval);
    2981                     if (SUCCEEDED(hrc))
     3032                    if (!pExtPack)
     3033                    {
     3034                        LogRel(("ExtPackManager: Extension pack '%s' is not installed, so nothing to uninstall.\n", a_pstrName->c_str()));
     3035                        hrc = S_OK;             /* nothing to uninstall */
     3036                    }
     3037                    else
    29823038                    {
    29833039                        /*
    2984                          * Run the set-uid-to-root binary that performs the
    2985                          * uninstallation.  Then refresh the object.
    2986                          *
    2987                          * This refresh is theorically subject to races, but it's of
    2988                          * the don't-do-that variety.
     3040                         * Call the uninstall hook and unload the main dll.
    29893041                         */
    2990                         const char *pszForcedOpt = a_fForcedRemoval ? "--forced" : NULL;
    2991                         hrc = i_runSetUidToRootHelper(a_pstrDisplayInfo,
    2992                                                       "uninstall",
    2993                                                       "--base-dir", m->strBaseDir.c_str(),
    2994                                                       "--name",     a_pstrName->c_str(),
    2995                                                       pszForcedOpt, /* Last as it may be NULL. */
    2996                                                       (const char *)NULL);
     3042                        hrc = pExtPack->i_callUninstallHookAndClose(m->pVirtualBox, a_fForcedRemoval);
    29973043                        if (SUCCEEDED(hrc))
    29983044                        {
    2999                             hrc = i_refreshExtPack(a_pstrName->c_str(), false /*a_fUnusableIsError*/, &pExtPack);
     3045                            /*
     3046                             * Run the set-uid-to-root binary that performs the
     3047                             * uninstallation.  Then refresh the object.
     3048                             *
     3049                             * This refresh is theorically subject to races, but it's of
     3050                             * the don't-do-that variety.
     3051                             */
     3052                            const char *pszForcedOpt = a_fForcedRemoval ? "--forced" : NULL;
     3053                            hrc = i_runSetUidToRootHelper(a_pstrDisplayInfo,
     3054                                                          "uninstall",
     3055                                                          "--base-dir", m->strBaseDir.c_str(),
     3056                                                          "--name",     a_pstrName->c_str(),
     3057                                                          pszForcedOpt, /* Last as it may be NULL. */
     3058                                                          (const char *)NULL);
    30003059                            if (SUCCEEDED(hrc))
    30013060                            {
    3002                                 if (!pExtPack)
    3003                                     LogRel(("ExtPackManager: Successfully uninstalled extension pack '%s'.\n", a_pstrName->c_str()));
    3004                                 else
    3005                                     hrc = setError(E_FAIL,
    3006                                                    tr("Uninstall extension pack '%s' failed under mysterious circumstances"),
    3007                                                    a_pstrName->c_str());
     3061                                hrc = i_refreshExtPack(a_pstrName->c_str(), false /*a_fUnusableIsError*/, &pExtPack);
     3062                                if (SUCCEEDED(hrc))
     3063                                {
     3064                                    if (!pExtPack)
     3065                                        LogRel(("ExtPackManager: Successfully uninstalled extension pack '%s'.\n", a_pstrName->c_str()));
     3066                                    else
     3067                                        hrc = setError(E_FAIL,
     3068                                                       tr("Uninstall extension pack '%s' failed under mysterious circumstances"),
     3069                                                       a_pstrName->c_str());
     3070                                }
    30083071                            }
    3009                         }
    3010                         else
    3011                         {
    3012                             ErrorInfoKeeper Eik;
    3013                             i_refreshExtPack(a_pstrName->c_str(), false /*a_fUnusableIsError*/, NULL);
     3072                            else
     3073                            {
     3074                                ErrorInfoKeeper Eik;
     3075                                i_refreshExtPack(a_pstrName->c_str(), false /*a_fUnusableIsError*/, NULL);
     3076                            }
    30143077                        }
    30153078                    }
    30163079                }
    30173080            }
    3018         }
    3019         else
    3020         {
    3021             LogRel(("Uninstall extension pack '%s' failed because at least one VM is still running.", a_pstrName->c_str()));
    3022             hrc = setError(E_FAIL, tr("Uninstall extension pack '%s' failed because at least one VM is still running"),
    3023                            a_pstrName->c_str());
     3081            else
     3082            {
     3083                if (fRunningVMs)
     3084                {
     3085                    LogRel(("Uninstall extension pack '%s' failed because at least one VM is still running.", a_pstrName->c_str()));
     3086                    hrc = setError(E_FAIL, tr("Uninstall extension pack '%s' failed because at least one VM is still running"),
     3087                                   a_pstrName->c_str());
     3088                }
     3089                else if (fVetoingCP)
     3090                {
     3091                    LogRel(("Uninstall extension pack '%s' failed because at least one Cloud Provider is still busy.", a_pstrName->c_str()));
     3092                    hrc = setError(E_FAIL, tr("Uninstall extension pack '%s' failed because at least one Cloud Provider is still busy"),
     3093                                   a_pstrName->c_str());
     3094                }
     3095                else
     3096                {
     3097                    LogRel(("Uninstall extension pack '%s' failed for an unknown reason.", a_pstrName->c_str()));
     3098                    hrc = setError(E_FAIL, tr("Uninstall extension pack '%s' failed for an unknown reason"),
     3099                                   a_pstrName->c_str());
     3100
     3101                }
     3102            }
    30243103        }
    30253104
     
    30293108         */
    30303109        if (m->enmContext == VBOXEXTPACKCTX_PER_USER_DAEMON)
     3110        {
     3111            autoLock.release();
    30313112            i_callAllVirtualBoxReadyHooks();
     3113        }
    30323114    }
    30333115
  • trunk/src/VBox/Main/src-server/CloudProviderManagerImpl.cpp

    r74926 r75663  
    2525#include "Logging.h"
    2626
    27 using namespace std;
    2827
    2928////////////////////////////////////////////////////////////////////////////////
     
    5352}
    5453
    55 HRESULT CloudProviderManager::init(VirtualBox *aParent)
     54HRESULT CloudProviderManager::init()
    5655{
    5756    // Enclose the state transition NotReady->InInit->Ready.
     
    6160    m_apCloudProviders.clear();
    6261
    63 #ifdef VBOX_WITH_EXTPACK
    64     // Engage the extension pack manager and get all the implementations of
    65     // this class and all implemented cloud providers.
    66     ExtPackManager *pExtPackMgr = aParent->i_getExtPackManager();
    67     mpExtPackMgr = pExtPackMgr;
    68     if (pExtPackMgr)
    69     {
    70         mcExtPackMgrUpdate = pExtPackMgr->i_getUpdateCounter();
    71         // Make sure that the current value doesn't match, forcing a refresh.
    72         mcExtPackMgrUpdate--;
    73         i_refreshProviders();
    74     }
    75 #else
    76     RT_NOREF(aParent);
    77 #endif
    78 
    7962    autoInitSpan.setSucceeded();
    8063    return S_OK;
     
    9073
    9174#ifdef VBOX_WITH_EXTPACK
    92 void CloudProviderManager::i_refreshProviders()
    93 {
    94     uint64_t cExtPackMgrUpdate;
    95     {
    96         AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    97         if (mpExtPackMgr.isNull())
    98             return;
    99         cExtPackMgrUpdate = mpExtPackMgr->i_getUpdateCounter();
    100         if (cExtPackMgrUpdate == mcExtPackMgrUpdate)
    101             return;
    102     }
     75bool CloudProviderManager::i_canRemoveExtPack(IExtPack *aExtPack)
     76{
     77    AssertReturn(aExtPack, false);
    10378
    10479    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    105     // Reread the current value to figure out if some other thead did the work
    106     // already before this thread got hold of the write lock.
    107     cExtPackMgrUpdate = mpExtPackMgr->i_getUpdateCounter();
    108     if (cExtPackMgrUpdate == mcExtPackMgrUpdate)
    109         return;
    110     mcExtPackMgrUpdate = cExtPackMgrUpdate;
    111 
    112     if (!m_mapCloudProviderManagers.empty())
    113     {
    114         /// @todo The code below will need to be extended to handle extpack
    115         // install and uninstall safely (and the latter needs non-trivial
    116         // checks if any extpack related cloud activity is pending.
    117         return;
    118     }
    119 
    120     std::vector<ComPtr<IUnknown> > apObjects;
     80
     81    // If any cloud provider in this extension pack fails to prepare the
     82    // uninstall it and the cloud provider will be kept, so that the user
     83    // can retry safely later. All other cloud providers in this extpack
     84    // will be done as usual. No attempt is made to bring back the other
     85    // cloud providers into working shape.
     86
     87    bool fRes = true;
     88    Bstr bstrName;
     89    aExtPack->GetName(bstrName.asOutParam());
     90    Utf8Str strName(bstrName);
     91    ExtPackNameCloudProviderManagerMap::iterator it = m_mapCloudProviderManagers.find(strName);
     92    if (it != m_mapCloudProviderManagers.end())
     93    {
     94        ComPtr<ICloudProviderManager> pTmp(it->second);
     95
     96        Assert(m_astrExtPackNames.size() == m_apCloudProviders.size());
     97        for (size_t i = 0; i < m_astrExtPackNames.size(); )
     98        {
     99            if (m_astrExtPackNames[i] != strName)
     100            {
     101                i++;
     102                continue;
     103            }
     104
     105            // pTmpProvider will point to an object with refcount > 0 until
     106            // the ComPtr is removed from m_apCloudProviders.
     107            HRESULT hrc = S_OK;
     108            ULONG uRefCnt = 1;
     109            ICloudProvider *pTmpProvider(m_apCloudProviders[i]);
     110            if (pTmpProvider)
     111            {
     112                hrc = pTmpProvider->PrepareUninstall();
     113                // Sanity check the refcount, it should be 1 at this point.
     114                pTmpProvider->AddRef();
     115                uRefCnt = pTmpProvider->Release();
     116                Assert(uRefCnt == 1);
     117            }
     118            if (SUCCEEDED(hrc) && uRefCnt == 1)
     119            {
     120                m_astrExtPackNames.erase(m_astrExtPackNames.begin() + i);
     121                m_apCloudProviders.erase(m_apCloudProviders.begin() + i);
     122            }
     123            else
     124            {
     125                LogRel(("CloudProviderManager: provider '%s' blocks extpack uninstall, result=%Rhrc, refcount=%u\n", strName.c_str(), hrc, uRefCnt));
     126                fRes = false;
     127                i++;
     128            }
     129        }
     130
     131        if (fRes)
     132            m_mapCloudProviderManagers.erase(it);
     133    }
     134
     135    return fRes;
     136}
     137
     138void CloudProviderManager::i_addExtPack(IExtPack *aExtPack)
     139{
     140    AssertReturnVoid(aExtPack);
     141
     142    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     143
     144    Bstr bstrName;
     145    aExtPack->GetName(bstrName.asOutParam());
     146    Utf8Str strName(bstrName);
     147    ComPtr<IUnknown> pObj;
    121148    std::vector<com::Utf8Str> astrExtPackNames;
    122149    com::Guid idObj(COM_IIDOF(ICloudProviderManager));
    123     mpExtPackMgr->i_queryObjects(idObj.toString(), apObjects, &astrExtPackNames);
    124     for (unsigned i = 0; i < apObjects.size(); i++)
    125     {
    126         ComPtr<ICloudProviderManager> pTmp;
    127         HRESULT hrc = apObjects[i].queryInterfaceTo(pTmp.asOutParam());
    128         if (SUCCEEDED(hrc))
    129             m_mapCloudProviderManagers[astrExtPackNames[i]] = pTmp;
    130         SafeIfaceArray<ICloudProvider> apProvidersFromCurrExtPack;
    131         hrc = pTmp->COMGETTER(Providers)(ComSafeArrayAsOutParam(apProvidersFromCurrExtPack));
    132         if (SUCCEEDED(hrc))
    133         {
    134             for (unsigned j = 0; j < apProvidersFromCurrExtPack.size(); j++)
    135                 m_apCloudProviders.push_back(apProvidersFromCurrExtPack[i]);
    136         }
     150    HRESULT hrc = aExtPack->QueryObject(Bstr(idObj.toString()).raw(), pObj.asOutParam());
     151    if (FAILED(hrc))
     152        return;
     153
     154    ComPtr<ICloudProviderManager> pTmp(pObj);
     155    if (pTmp.isNull())
     156        return;
     157
     158    SafeIfaceArray<ICloudProvider> apProvidersFromCurrExtPack;
     159    hrc = pTmp->COMGETTER(Providers)(ComSafeArrayAsOutParam(apProvidersFromCurrExtPack));
     160    if (FAILED(hrc))
     161        return;
     162
     163    m_mapCloudProviderManagers[strName] = pTmp;
     164    for (unsigned i = 0; i < apProvidersFromCurrExtPack.size(); i++)
     165    {
     166        Assert(m_astrExtPackNames.size() == m_apCloudProviders.size());
     167        m_astrExtPackNames.push_back(strName);
     168        m_apCloudProviders.push_back(apProvidersFromCurrExtPack[i]);
    137169    }
    138170}
  • trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp

    r75380 r75663  
    555555        rc = unconst(m->pCloudProviderManager).createObject();
    556556        if (SUCCEEDED(rc))
    557             rc = m->pCloudProviderManager->init(this);
     557            rc = m->pCloudProviderManager->init();
    558558        ComAssertComRCThrowRC(rc);
    559559        if (FAILED(rc)) throw rc;
     
    37683768}
    37693769
     3770CloudProviderManager *VirtualBox::i_getCloudProviderManager() const
     3771{
     3772    return m->pCloudProviderManager;
     3773}
     3774
    37703775#ifdef VBOX_WITH_EXTPACK
    37713776/**
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