Changeset 94981 in vbox
- Timestamp:
- May 10, 2022 2:48:36 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151394
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/settings.h
r94726 r94981 312 312 uint32_t uCheckFreqSeconds; 313 313 com::Utf8Str strRepoUrl; 314 ProxyMode_T enmProxyMode;315 com::Utf8Str strProxyUrl;316 314 com::Utf8Str strLastCheckDate; 317 315 uint32_t uCheckCount; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageUpdateCheck.cpp
r94756 r94981 42 42 43 43 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 64 44 static RTEXITCODE doUpdateList(int argc, char **argv, ComPtr<IUpdateAgent> pUpdateAgent) 65 45 { … … 167 147 RTPrintf(UpdateCheck::tr("Repository: %ls\n"), bstrVal.raw()); 168 148 169 ProxyMode_T enmProxyMode;170 CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(ProxyMode)(&enmProxyMode), RTEXITCODE_FAILURE);171 if (fMachineReadable)172 outputMachineReadableString("proxy-mode", proxyModeToStr(enmProxyMode));173 else174 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 else179 RTPrintf(UpdateCheck::tr("Proxy URL: %ls\n"), bstrVal.raw());180 181 149 return RTEXITCODE_SUCCESS; 182 150 } … … 187 155 * Parse options. 188 156 */ 189 enum GETOPTDEF_UPDATEMODIFY190 {191 GETOPTDEF_UPDATEMODIFY_PROXY_MODE = 2000,192 GETOPTDEF_UPDATEMODIFY_PROXY_URL193 };194 157 static const RTGETOPTDEF s_aOptions[] = 195 158 { … … 198 161 { "--channel", 'c', RTGETOPT_REQ_STRING }, 199 162 { "--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 }202 163 }; 203 164 … … 209 170 UpdateChannel_T enmChannel = (UpdateChannel_T)-1; 210 171 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). */213 172 214 173 int c; … … 244 203 break; 245 204 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 else256 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 263 205 /** @todo Add more options like repo handling etc. */ 264 206 … … 270 212 if ( fEnabled == -1 271 213 && enmChannel == (UpdateChannel_T)-1 272 && cFrequencyDays == 0 273 && enmProxyMode == (ProxyMode_T)-1 274 && strProxyURL == "unmodified") 214 && cFrequencyDays == 0) 275 215 return errorSyntax(UpdateCheck::tr("No change requested")); 276 216 … … 289 229 { 290 230 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);299 231 } 300 232 return RTEXITCODE_SUCCESS; -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r94756 r94981 11345 11345 <interface 11346 11346 name="IUpdateAgent" extends="$unknown" 11347 uuid=" 4c3788aa-747f-4a3c-a159-fb6df7a00532"11347 uuid="c4b1b5f4-8cdf-4923-9ef6-b92476a84109" 11348 11348 wsmap="managed" 11349 11349 reservedMethods="2" reservedAttributes="4" … … 11506 11506 Only repositories with the https:// URL scheme are allowed. 11507 11507 </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>11520 11508 </attribute> 11521 11509 -
trunk/src/VBox/Main/include/UpdateAgentImpl.h
r94807 r94981 97 97 UpdateState_T m_enmState; 98 98 uint32_t m_uOrder; 99 /** Whether to use the own (dedicated) proxy settings or100 * use the ones of ISystemProperties. */101 bool m_fUseOwnProxy;102 99 103 100 Data(void) … … 174 171 HRESULT getRepositoryURL(com::Utf8Str &aRepo); 175 172 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);180 173 HRESULT getLastCheckDate(com::Utf8Str &aData); 181 174 HRESULT getIsCheckNeeded(BOOL *aCheckNeeded); -
trunk/src/VBox/Main/src-server/UpdateAgentImpl.cpp
r94807 r94981 333 333 HRESULT hr = unconst(m_EventSource).createObject(); 334 334 if (SUCCEEDED(hr)) 335 {336 335 hr = m_EventSource->init(); 337 if (SUCCEEDED(hr))338 mData.m_fUseOwnProxy = false;339 }340 336 341 337 return hr; … … 555 551 556 552 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;591 553 592 554 return i_commitSettings(alock); … … 694 656 if (data.strRepoUrl.isNotEmpty()) /* Prevent overwriting the agent's default URL when XML settings are empty. */ 695 657 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 }702 658 m->strLastCheckDate = data.strLastCheckDate; 703 659 m->uCheckCount = data.uCheckCount; … … 725 681 data = *m; 726 682 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 735 683 return S_OK; 736 684 } … … 797 745 HRESULT UpdateAgent::i_getProxyMode(ProxyMode_T *aMode) 798 746 { 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); 813 751 814 752 return hrc; … … 823 761 HRESULT UpdateAgent::i_getProxyURL(com::Utf8Str &aUrl) 824 762 { 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()); 831 769 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; 843 771 } 844 772 -
trunk/src/VBox/Main/xml/Settings.cpp
r94788 r94981 1649 1649 , enmChannel(UpdateChannel_Stable) 1650 1650 , uCheckFreqSeconds(RT_SEC_1DAY) 1651 , enmProxyMode(ProxyMode_NoProxy)1652 1651 , uCheckCount(0) 1653 1652 { … … 2359 2358 pelmLevel4Child->getAttributeValue("checkFreqSec", updateHost.uCheckFreqSeconds); 2360 2359 pelmLevel4Child->getAttributeValue("repoUrl", updateHost.strRepoUrl); 2361 pelmLevel4Child->getAttributeValue("proxyMode", (uint32_t&)updateHost.enmProxyMode);2362 pelmLevel4Child->getAttributeValue("proxyUrl", updateHost.strProxyUrl);2363 2360 pelmLevel4Child->getAttributeValue("lastCheckDate", updateHost.strLastCheckDate); 2364 2361 pelmLevel4Child->getAttributeValue("checkCount", updateHost.uCheckCount); … … 2607 2604 if (updateHost.strRepoUrl.length()) 2608 2605 pelmUpdateHost->setAttribute("repoUrl", updateHost.strRepoUrl); 2609 pelmUpdateHost->setAttribute("proxyMode", (int32_t)updateHost.enmProxyMode);2610 if (updateHost.strProxyUrl.length())2611 pelmUpdateHost->setAttribute("proxyUrl", updateHost.strProxyUrl);2612 2606 if (updateHost.strLastCheckDate.length()) 2613 2607 pelmUpdateHost->setAttribute("lastCheckDate", updateHost.strLastCheckDate);
Note:
See TracChangeset
for help on using the changeset viewer.