Changeset 36275 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Mar 14, 2011 6:01:34 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70549
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r36219 r36275 7468 7468 if (FAILED(rc)) return rc; 7469 7469 7470 // Bandwidth control (must come before network adapters) 7471 rc = mBandwidthControl->loadSettings(data.ioSettings); 7472 if (FAILED(rc)) return rc; 7473 7470 7474 /* USB Controller */ 7471 7475 rc = mUSBController->loadSettings(data.usbController); … … 7481 7485 /* slot unicity is guaranteed by XML Schema */ 7482 7486 AssertBreak(nic.ulSlot < RT_ELEMENTS(mNetworkAdapters)); 7483 rc = mNetworkAdapters[nic.ulSlot]->loadSettings( nic);7487 rc = mNetworkAdapters[nic.ulSlot]->loadSettings(mBandwidthControl, nic); 7484 7488 if (FAILED(rc)) return rc; 7485 7489 } … … 7533 7537 mHWData->mIoCacheEnabled = data.ioSettings.fIoCacheEnabled; 7534 7538 mHWData->mIoCacheSize = data.ioSettings.ulIoCacheSize; 7535 7536 // Bandwidth control7537 rc = mBandwidthControl->loadSettings(data.ioSettings);7538 if (FAILED(rc)) return rc;7539 7539 7540 7540 // Host PCI devices -
trunk/src/VBox/Main/src-server/NetworkAdapterImpl.cpp
r36105 r36275 85 85 /* initialize data */ 86 86 mData->mSlot = aSlot; 87 88 /* Default limit is not capped/unlimited. */89 mData->mBandwidthLimit = 0;90 87 91 88 /* default to Am79C973 */ … … 340 337 } 341 338 342 STDMETHODIMP NetworkAdapter::COMSETTER(MACAddress)(IN_BSTR aMACAddress) 343 { 344 AutoCaller autoCaller(this); 345 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 346 347 /* the machine needs to be mutable */ 348 AutoMutableStateDependency adep(mParent); 349 if (FAILED(adep.rc())) return adep.rc(); 350 339 HRESULT NetworkAdapter::updateMacAddress(Utf8Str aMACAddress) 340 { 351 341 HRESULT rc = S_OK; 352 bool emitChangeEvent = false;353 342 354 343 /* 355 344 * Are we supposed to generate a MAC? 356 345 */ 357 if (!aMACAddress || !*aMACAddress) 358 { 359 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 360 mData.backup(); 361 346 if (aMACAddress.isEmpty()) 362 347 generateMACAddress(); 363 emitChangeEvent = true;364 365 m_fModified = true;366 // leave the lock before informing callbacks367 alock.release();368 369 AutoWriteLock mlock(mParent COMMA_LOCKVAL_SRC_POS); // mParent is const, no need to lock370 mParent->setModified(Machine::IsModified_NetworkAdapters);371 mlock.release();372 }373 348 else 374 349 { 375 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);376 350 if (mData->mMACAddress != aMACAddress) 377 351 { … … 379 353 * Verify given MAC address 380 354 */ 381 Utf8Str macAddressUtf = aMACAddress; 382 char *macAddressStr = macAddressUtf.mutableRaw(); 355 char *macAddressStr = aMACAddress.mutableRaw(); 383 356 int i = 0; 384 357 while ((i < 13) && macAddressStr && *macAddressStr && (rc == S_OK)) … … 408 381 409 382 if (SUCCEEDED(rc)) 410 { 411 mData.backup(); 412 413 mData->mMACAddress = macAddressUtf; 414 415 emitChangeEvent = true; 416 417 m_fModified = true; 418 // leave the lock before informing callbacks 419 alock.release(); 420 421 AutoWriteLock mlock(mParent COMMA_LOCKVAL_SRC_POS); // mParent is const, no need to lock 422 mParent->setModified(Machine::IsModified_NetworkAdapters); 423 mlock.release(); 424 } 383 mData->mMACAddress = aMACAddress; 425 384 } 426 385 } 427 386 428 // we have left the lock in any case at this point 429 430 if (emitChangeEvent) 431 { 387 return rc; 388 } 389 390 STDMETHODIMP NetworkAdapter::COMSETTER(MACAddress)(IN_BSTR aMACAddress) 391 { 392 AutoCaller autoCaller(this); 393 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 394 395 /* the machine needs to be mutable */ 396 AutoMutableStateDependency adep(mParent); 397 if (FAILED(adep.rc())) return adep.rc(); 398 399 400 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 401 mData.backup(); 402 403 HRESULT rc = updateMacAddress(aMACAddress); 404 if (SUCCEEDED(rc)) 405 { 406 m_fModified = true; 407 // leave the lock before informing callbacks 408 alock.release(); 409 410 AutoWriteLock mlock(mParent COMMA_LOCKVAL_SRC_POS); // mParent is const, no need to lock 411 mParent->setModified(Machine::IsModified_NetworkAdapters); 412 mlock.release(); 413 432 414 /* Changing the MAC via the Main API during runtime is not allowed, 433 415 * therefore no immediate change in CFGM logic => changeAdapter=FALSE. */ … … 799 781 800 782 return hrc; 801 }802 803 STDMETHODIMP NetworkAdapter::COMGETTER(BandwidthLimit) (ULONG *aLimit)804 {805 CheckComArgOutPointerValid(aLimit);806 807 AutoCaller autoCaller(this);808 if (FAILED(autoCaller.rc())) return autoCaller.rc();809 810 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);811 812 *aLimit = mData->mBandwidthLimit;813 return S_OK;814 }815 816 STDMETHODIMP NetworkAdapter::COMSETTER(BandwidthLimit) (ULONG aLimit)817 {818 AutoCaller autoCaller(this);819 if (FAILED(autoCaller.rc())) return autoCaller.rc();820 821 /* the machine doesn't need to be mutable */822 823 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);824 825 if (aLimit != mData->mBandwidthLimit)826 {827 mData.backup();828 mData->mBandwidthLimit = aLimit;829 830 m_fModified = true;831 // leave the lock before informing callbacks832 alock.release();833 834 AutoWriteLock mlock(mParent COMMA_LOCKVAL_SRC_POS); // mParent is const, no need to lock835 mParent->setModified(Machine::IsModified_NetworkAdapters);836 mlock.release();837 838 /* No change in CFGM logic => changeAdapter=FALSE. */839 mParent->onNetworkAdapterChange(this, FALSE);840 }841 return S_OK;842 783 } 843 784 … … 1279 1220 * @note Locks this object for writing. 1280 1221 */ 1281 HRESULT NetworkAdapter::loadSettings(const settings::NetworkAdapter &data) 1222 HRESULT NetworkAdapter::loadSettings(BandwidthControl *bwctl, 1223 const settings::NetworkAdapter &data) 1282 1224 { 1283 1225 AutoCaller autoCaller(this); 1284 1226 AssertComRCReturnRC(autoCaller.rc()); 1227 1228 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 1285 1229 1286 1230 /* Note: we assume that the default values for attributes of optional … … 1300 1244 mData->mEnabled = data.fEnabled; 1301 1245 /* MAC address (can be null) */ 1302 rc = COMSETTER(MACAddress)(Bstr(data.strMACAddress).raw());1246 rc = updateMacAddress(data.strMACAddress); 1303 1247 if (FAILED(rc)) return rc; 1304 1248 /* cable (required) */ … … 1312 1256 /* boot priority (defaults to 0, i.e. lowest) */ 1313 1257 mData->mBootPriority = data.ulBootPriority; 1314 /* Bandwidth limit in Mbps. */ 1315 mData->mBandwidthLimit = data.ulBandwidthLimit; 1258 /* bandwidth group */ 1259 if (data.strBandwidthGroup.isEmpty()) 1260 updateBandwidthGroup(NULL); 1261 else 1262 { 1263 ComObjPtr<BandwidthGroup> group; 1264 rc = bwctl->getBandwidthGroupByName(data.strBandwidthGroup, group, true); // TODO: set error? 1265 if (FAILED(rc)) return rc; 1266 } 1267 1268 // leave the lock before attaching 1269 alock.release(); 1316 1270 1317 1271 switch (data.mode) … … 1398 1352 data.ulBootPriority = mData->mBootPriority; 1399 1353 1400 data.ulBandwidthLimit = mData->mBandwidthLimit; 1354 if (mData->mBandwidthGroup.isNull()) 1355 data.strBandwidthGroup = ""; 1356 else 1357 data.strBandwidthGroup = mData->mBandwidthGroup->getName(); 1401 1358 1402 1359 data.type = mData->mAdapterType; … … 1629 1586 mData->mMACAddress = strMAC; 1630 1587 } 1588 1589 STDMETHODIMP NetworkAdapter::COMGETTER(BandwidthGroup) (IBandwidthGroup **aBwGroup) 1590 { 1591 LogFlowThisFuncEnter(); 1592 CheckComArgOutPointerValid(aBwGroup); 1593 1594 AutoCaller autoCaller(this); 1595 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 1596 1597 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 1598 1599 mData->mBandwidthGroup.queryInterfaceTo(aBwGroup); 1600 1601 LogFlowThisFuncLeave(); 1602 return S_OK; 1603 } 1604 1605 STDMETHODIMP NetworkAdapter::COMSETTER(BandwidthGroup) (IBandwidthGroup *aBwGroup) 1606 { 1607 LogFlowThisFuncEnter(); 1608 CheckComArgOutPointerValid(aBwGroup); 1609 1610 AutoCaller autoCaller(this); 1611 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 1612 1613 /* the machine needs to be mutable */ 1614 AutoMutableStateDependency adep(mParent); 1615 if (FAILED(adep.rc())) return adep.rc(); 1616 1617 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 1618 1619 //HRESULT hrc = S_OK; 1620 1621 if (mData->mBandwidthGroup != aBwGroup) 1622 { 1623 mData.backup(); 1624 1625 updateBandwidthGroup(static_cast<BandwidthGroup*>(aBwGroup)); 1626 1627 m_fModified = true; 1628 // leave the lock before informing callbacks 1629 alock.release(); 1630 1631 AutoWriteLock mlock(mParent COMMA_LOCKVAL_SRC_POS); 1632 mParent->setModified(Machine::IsModified_NetworkAdapters); 1633 mlock.release(); 1634 1635 /* TODO: changeAdapter=???. */ 1636 mParent->onNetworkAdapterChange(this, FALSE); 1637 } 1638 1639 LogFlowThisFuncLeave(); 1640 return S_OK; 1641 } 1642 1643 void NetworkAdapter::updateBandwidthGroup(BandwidthGroup *aBwGroup) 1644 { 1645 LogFlowThisFuncEnter(); 1646 Assert(isWriteLockOnCurrentThread()); 1647 1648 mData.backup(); 1649 if (!mData->mBandwidthGroup.isNull()) 1650 { 1651 mData->mBandwidthGroup->release(); 1652 mData->mBandwidthGroup.setNull(); 1653 } 1654 1655 if (aBwGroup) 1656 { 1657 mData->mBandwidthGroup = aBwGroup; 1658 mData->mBandwidthGroup->reference(); 1659 } 1660 1661 LogFlowThisFuncLeave(); 1662 } 1631 1663 /* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note:
See TracChangeset
for help on using the changeset viewer.