VirtualBox

Changeset 94981 in vbox


Ignore:
Timestamp:
May 10, 2022 2:48:36 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
151394
Message:

Main/Update check Removed update agent-specific proxy settings. ​bugref:7983

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/settings.h

    r94726 r94981  
    312312    uint32_t                uCheckFreqSeconds;
    313313    com::Utf8Str            strRepoUrl;
    314     ProxyMode_T             enmProxyMode;
    315     com::Utf8Str            strProxyUrl;
    316314    com::Utf8Str            strLastCheckDate;
    317315    uint32_t                uCheckCount;
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageUpdateCheck.cpp

    r94756 r94981  
    4242
    4343
    44 /**
    45  * Returns the proxy mode as a string.
    46  *
    47  * @returns Proxy mode as string.
    48  * @param   enmMode             Proxy mode to return as string.
    49  */
    50 static const char *proxyModeToStr(ProxyMode_T enmMode)
    51 {
    52     switch (enmMode)
    53     {
    54         case ProxyMode_System:  return "System";
    55         case ProxyMode_Manual:  return "Manual";
    56         case ProxyMode_NoProxy: return "None";
    57         default:                break;
    58     }
    59 
    60     AssertFailed();
    61     return "<Invalid>";
    62 }
    63 
    6444static RTEXITCODE doUpdateList(int argc, char **argv, ComPtr<IUpdateAgent> pUpdateAgent)
    6545{
     
    167147        RTPrintf(UpdateCheck::tr("Repository:             %ls\n"), bstrVal.raw());
    168148
    169     ProxyMode_T enmProxyMode;
    170     CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(ProxyMode)(&enmProxyMode), RTEXITCODE_FAILURE);
    171     if (fMachineReadable)
    172         outputMachineReadableString("proxy-mode", proxyModeToStr(enmProxyMode));
    173     else
    174         RTPrintf(UpdateCheck::tr("Proxy mode:             %s\n"), proxyModeToStr(enmProxyMode));
    175     CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(ProxyURL)(bstrVal.asOutParam()), RTEXITCODE_FAILURE);
    176     if (fMachineReadable)
    177         outputMachineReadableString("proxy-url", &bstrVal);
    178     else
    179         RTPrintf(UpdateCheck::tr("Proxy URL:              %ls\n"), bstrVal.raw());
    180 
    181149    return RTEXITCODE_SUCCESS;
    182150}
     
    187155     * Parse options.
    188156     */
    189     enum GETOPTDEF_UPDATEMODIFY
    190     {
    191         GETOPTDEF_UPDATEMODIFY_PROXY_MODE = 2000,
    192         GETOPTDEF_UPDATEMODIFY_PROXY_URL
    193     };
    194157    static const RTGETOPTDEF s_aOptions[] =
    195158    {
     
    198161        { "--channel",       'c',                                   RTGETOPT_REQ_STRING  },
    199162        { "--frequency",     'f',                                   RTGETOPT_REQ_UINT32  },
    200         { "--proxy-mode",    GETOPTDEF_UPDATEMODIFY_PROXY_MODE,     RTGETOPT_REQ_STRING  },
    201         { "--proxy-url",     GETOPTDEF_UPDATEMODIFY_PROXY_URL,      RTGETOPT_REQ_STRING  }
    202163    };
    203164
     
    209170    UpdateChannel_T             enmChannel     = (UpdateChannel_T)-1;
    210171    uint32_t                    cFrequencyDays = 0;
    211     ProxyMode_T                 enmProxyMode   = (ProxyMode_T)-1; /* Default  if not modified, or ProxyMode_T values. */
    212     Bstr                        strProxyURL    = "unmodified";    /* Default if not modified, so that empty values also can be set (clears proxy). */
    213172
    214173    int c;
     
    244203                break;
    245204
    246             case GETOPTDEF_UPDATEMODIFY_PROXY_MODE:
    247                 if (!RTStrICmp(ValueUnion.psz, "system"))
    248                     enmProxyMode = ProxyMode_System;
    249                 else if (   !RTStrICmp(ValueUnion.psz, "none")
    250                          || !RTStrICmp(ValueUnion.psz, "disabled")
    251                          || !RTStrICmp(ValueUnion.psz, "off"))
    252                     enmProxyMode = ProxyMode_NoProxy;
    253                 else if (!RTStrICmp(ValueUnion.psz, "manual"))
    254                     enmProxyMode = ProxyMode_Manual;
    255                 else
    256                     return errorArgument(UpdateCheck::tr("Invalid proxy mode specified: '%s'"), ValueUnion.psz);
    257                 break;
    258 
    259             case GETOPTDEF_UPDATEMODIFY_PROXY_URL:
    260                 strProxyURL = ValueUnion.psz;
    261                 break;
    262 
    263205            /** @todo Add more options like repo handling etc. */
    264206
     
    270212    if (   fEnabled       == -1
    271213        && enmChannel     == (UpdateChannel_T)-1
    272         && cFrequencyDays == 0
    273         && enmProxyMode   == (ProxyMode_T)-1
    274         && strProxyURL    == "unmodified")
     214        && cFrequencyDays == 0)
    275215        return errorSyntax(UpdateCheck::tr("No change requested"));
    276216
     
    289229    {
    290230        CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(CheckFrequency)(cFrequencyDays * RT_SEC_1DAY), RTEXITCODE_FAILURE);
    291     }
    292     if (enmProxyMode != (ProxyMode_T)-1)
    293     {
    294         CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(ProxyMode)(enmProxyMode), RTEXITCODE_FAILURE);
    295     }
    296     if (strProxyURL.compare("unmodified") != 0)
    297     {
    298         CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(ProxyURL)(strProxyURL.raw()), RTEXITCODE_FAILURE);
    299231    }
    300232    return RTEXITCODE_SUCCESS;
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r94756 r94981  
    1134511345  <interface
    1134611346    name="IUpdateAgent" extends="$unknown"
    11347     uuid="4c3788aa-747f-4a3c-a159-fb6df7a00532"
     11347    uuid="c4b1b5f4-8cdf-4923-9ef6-b92476a84109"
    1134811348    wsmap="managed"
    1134911349    reservedMethods="2" reservedAttributes="4"
     
    1150611506        Only repositories with the https:// URL scheme are allowed.
    1150711507      </note>
    11508     </attribute>
    11509 
    11510     <attribute name="proxyMode" type="ProxyMode" readonly="no">
    11511       <desc>
    11512         Proxy mode to use.
    11513       </desc>
    11514     </attribute>
    11515 
    11516     <attribute name="proxyURL" type="wstring" readonly="no">
    11517       <desc>
    11518         Proxy URL to use.
    11519       </desc>
    1152011508    </attribute>
    1152111509
  • trunk/src/VBox/Main/include/UpdateAgentImpl.h

    r94807 r94981  
    9797        UpdateState_T                      m_enmState;
    9898        uint32_t                           m_uOrder;
    99         /** Whether to use the own (dedicated) proxy settings or
    100          *  use the ones of ISystemProperties. */
    101         bool                               m_fUseOwnProxy;
    10299
    103100        Data(void)
     
    174171    HRESULT getRepositoryURL(com::Utf8Str &aRepo);
    175172    HRESULT setRepositoryURL(const com::Utf8Str &aRepo);
    176     HRESULT getProxyMode(ProxyMode_T *aMode);
    177     HRESULT setProxyMode(ProxyMode_T aMode);
    178     HRESULT getProxyURL(com::Utf8Str &aAddress);
    179     HRESULT setProxyURL(const com::Utf8Str &aAddress);
    180173    HRESULT getLastCheckDate(com::Utf8Str &aData);
    181174    HRESULT getIsCheckNeeded(BOOL *aCheckNeeded);
  • trunk/src/VBox/Main/src-server/UpdateAgentImpl.cpp

    r94807 r94981  
    333333    HRESULT hr = unconst(m_EventSource).createObject();
    334334    if (SUCCEEDED(hr))
    335     {
    336335        hr = m_EventSource->init();
    337         if (SUCCEEDED(hr))
    338             mData.m_fUseOwnProxy = false;
    339     }
    340336
    341337    return hr;
     
    555551
    556552    m->strRepoUrl = aRepo;
    557 
    558     return i_commitSettings(alock);
    559 }
    560 
    561 HRESULT UpdateAgent::getProxyMode(ProxyMode_T *aMode)
    562 {
    563     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    564 
    565     return i_getProxyMode(aMode);
    566 }
    567 
    568 HRESULT UpdateAgent::setProxyMode(ProxyMode_T aMode)
    569 {
    570     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    571 
    572     m->enmProxyMode = aMode;
    573     mData.m_fUseOwnProxy = true;
    574 
    575     return i_commitSettings(alock);
    576 }
    577 
    578 HRESULT UpdateAgent::getProxyURL(com::Utf8Str &aAddress)
    579 {
    580     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    581 
    582     return i_getProxyURL(aAddress);
    583 }
    584 
    585 HRESULT UpdateAgent::setProxyURL(const com::Utf8Str &aAddress)
    586 {
    587     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    588 
    589     m->strProxyUrl = aAddress;
    590     mData.m_fUseOwnProxy = true;
    591553
    592554    return i_commitSettings(alock);
     
    694656    if (data.strRepoUrl.isNotEmpty()) /* Prevent overwriting the agent's default URL when XML settings are empty. */
    695657        m->strRepoUrl    = data.strRepoUrl;
    696     m->enmProxyMode      = data.enmProxyMode;
    697     if (data.strProxyUrl.isNotEmpty()) /* Explicitly set (and mark) an own proxy? */
    698     {
    699         m->strProxyUrl   = data.strProxyUrl;
    700         mData.m_fUseOwnProxy = true;
    701     }
    702658    m->strLastCheckDate  = data.strLastCheckDate;
    703659    m->uCheckCount       = data.uCheckCount;
     
    725681    data = *m;
    726682
    727     /* Cancel out eventually set proxy settings if those were not explicitly set.
    728      * This way the ISystemProperties proxy settings will be used then. */
    729     if (!mData.m_fUseOwnProxy)
    730     {
    731         data.strProxyUrl  = "";
    732         data.enmProxyMode = ProxyMode_System;
    733     }
    734 
    735683    return S_OK;
    736684}
     
    797745HRESULT UpdateAgent::i_getProxyMode(ProxyMode_T *aMode)
    798746{
    799     HRESULT hrc;
    800 
    801     if (!mData.m_fUseOwnProxy) /* If not explicitly set, use the ISystemProperties proxy settings. */
    802     {
    803         ComPtr<ISystemProperties> pSystemProperties;
    804         hrc = m_VirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
    805         if (SUCCEEDED(hrc))
    806             hrc = pSystemProperties->COMGETTER(ProxyMode)(aMode);
    807     }
    808     else
    809     {
    810         *aMode = m->enmProxyMode;
    811         hrc = S_OK;
    812     }
     747    ComPtr<ISystemProperties> pSystemProperties;
     748    HRESULT hrc = m_VirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
     749    if (SUCCEEDED(hrc))
     750        hrc = pSystemProperties->COMGETTER(ProxyMode)(aMode);
    813751
    814752    return hrc;
     
    823761HRESULT UpdateAgent::i_getProxyURL(com::Utf8Str &aUrl)
    824762{
    825     HRESULT hrc;
    826 
    827     if (!mData.m_fUseOwnProxy) /* If not explicitly set, use the ISystemProperties proxy settings. */
    828     {
    829         ComPtr<ISystemProperties> pSystemProperties;
    830         hrc = m_VirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
     763    ComPtr<ISystemProperties> pSystemProperties;
     764    HRESULT hrc = m_VirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
     765    if (SUCCEEDED(hrc))
     766    {
     767        com::Bstr bstrVal;
     768        hrc = pSystemProperties->COMGETTER(ProxyURL)(bstrVal.asOutParam());
    831769        if (SUCCEEDED(hrc))
    832         {
    833             com::Bstr bstrVal;
    834             hrc = pSystemProperties->COMGETTER(ProxyURL)(bstrVal.asOutParam());
    835             if (SUCCEEDED(hrc))
    836                 aUrl = bstrVal;
    837         }
    838     }
    839     else
    840     {
    841         aUrl = m->strProxyUrl;
    842         hrc = S_OK;
     770            aUrl = bstrVal;
    843771    }
    844772
  • trunk/src/VBox/Main/xml/Settings.cpp

    r94788 r94981  
    16491649   , enmChannel(UpdateChannel_Stable)
    16501650   , uCheckFreqSeconds(RT_SEC_1DAY)
    1651    , enmProxyMode(ProxyMode_NoProxy)
    16521651   , uCheckCount(0)
    16531652{
     
    23592358                                pelmLevel4Child->getAttributeValue("checkFreqSec", updateHost.uCheckFreqSeconds);
    23602359                                pelmLevel4Child->getAttributeValue("repoUrl", updateHost.strRepoUrl);
    2361                                 pelmLevel4Child->getAttributeValue("proxyMode", (uint32_t&)updateHost.enmProxyMode);
    2362                                 pelmLevel4Child->getAttributeValue("proxyUrl", updateHost.strProxyUrl);
    23632360                                pelmLevel4Child->getAttributeValue("lastCheckDate", updateHost.strLastCheckDate);
    23642361                                pelmLevel4Child->getAttributeValue("checkCount", updateHost.uCheckCount);
     
    26072604    if (updateHost.strRepoUrl.length())
    26082605        pelmUpdateHost->setAttribute("repoUrl", updateHost.strRepoUrl);
    2609     pelmUpdateHost->setAttribute("proxyMode", (int32_t)updateHost.enmProxyMode);
    2610     if (updateHost.strProxyUrl.length())
    2611         pelmUpdateHost->setAttribute("proxyUrl", updateHost.strProxyUrl);
    26122606    if (updateHost.strLastCheckDate.length())
    26132607        pelmUpdateHost->setAttribute("lastCheckDate", updateHost.strLastCheckDate);
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