- Timestamp:
- Dec 19, 2018 6:17:50 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127586
- Location:
- trunk/src/VBox/Main
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r76240 r76298 23725 23725 The given medium was registered or unregistered 23726 23726 within this VirtualBox installation. 23727 <note>This event is not yet implemented.</note>23728 23727 </desc> 23729 23728 … … 23752 23751 The configuration of the given medium was changed (location, properties, 23753 23752 child/parent or anything else). 23754 <note>This event is not yet implemented.</note>23755 23753 </desc> 23756 23754 … … 24144 24142 <link to="IMachine::mediumAttachments">medium attachment</link> 24145 24143 changes. 24146 <note>This event is not yet implemented.</note>24147 24144 </desc> 24148 24145 <attribute name="mediumAttachment" type="IMediumAttachment" readonly="yes"> -
trunk/src/VBox/Main/include/MediumImpl.h
r76240 r76298 169 169 MediumLockList *pMediumLockList, 170 170 ComObjPtr<Progress> *aProgress, 171 bool aWait); 171 bool aWait, 172 bool aNotify); 172 173 Utf8Str i_getPreferredDiffFormat(); 173 174 MediumVariant_T i_getPreferredDiffVariant(); … … 176 177 HRESULT i_unlockRead(MediumState_T *aState); 177 178 HRESULT i_unlockWrite(MediumState_T *aState); 178 HRESULT i_deleteStorage(ComObjPtr<Progress> *aProgress, bool aWait );179 HRESULT i_deleteStorage(ComObjPtr<Progress> *aProgress, bool aWait, bool aNotify); 179 180 HRESULT i_markForDeletion(); 180 181 HRESULT i_unmarkForDeletion(); … … 199 200 MediumLockList *aMediumLockList, 200 201 ComObjPtr<Progress> *aProgress, 201 bool aWait); 202 bool aWait, 203 bool aNotify); 202 204 void i_cancelMergeTo(MediumLockList *aChildrenToReparent, 203 205 MediumLockList *aMediumLockList); … … 206 208 MediumLockList *aMediumLockList, 207 209 ComObjPtr<Progress> *aProgress, 208 bool aWait); 210 bool aWait, 211 bool aNotify); 209 212 210 213 HRESULT i_fixParentUuidOfChildren(MediumLockList *pChildrenToReparent); … … 220 223 const ComObjPtr<Progress> &aProgress); 221 224 HRESULT i_importFile(const char *aFilename, 222 const ComObjPtr<MediumFormat> &aFormat, 223 MediumVariant_T aVariant, 224 RTVFSIOSTREAM hVfsIosSrc, 225 const ComObjPtr<Medium> &aParent, 226 const ComObjPtr<Progress> &aProgress); 225 const ComObjPtr<MediumFormat> &aFormat, 226 MediumVariant_T aVariant, 227 RTVFSIOSTREAM hVfsIosSrc, 228 const ComObjPtr<Medium> &aParent, 229 const ComObjPtr<Progress> &aProgress, 230 bool aNotify); 227 231 228 232 HRESULT i_cloneToEx(const ComObjPtr<Medium> &aTarget, MediumVariant_T aVariant, 229 233 const ComObjPtr<Medium> &aParent, IProgress **aProgress, 230 uint32_t idxSrcImageSame, uint32_t idxDstImageSame );234 uint32_t idxSrcImageSame, uint32_t idxDstImageSame, bool aNotify); 231 235 232 236 const Utf8Str& i_getKeyId(); -
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r76240 r76298 150 150 int i_unloadVDPlugin(const char *pszPluginLibrary); 151 151 152 void i_onMediumRegistered(const Guid &aMediumId, const DeviceType_T aDevType, const BOOL aRegistered); 153 void i_onMediumConfigChanged(IMedium *aMedium); 154 void i_onMediumChanged(IMediumAttachment* aMediumAttachment); 155 void i_onStorageDeviceChanged(IMediumAttachment* aStorageDevice, const BOOL fRemoved, const BOOL fSilent); 152 156 void i_onMachineStateChange(const Guid &aId, MachineState_T aState); 153 157 void i_onMachineDataChange(const Guid &aId, BOOL aTemporary = FALSE); -
trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp
r76240 r76298 2641 2641 hVfsIosReadAhead, 2642 2642 nullParent, 2643 pProgressImportTmp); 2643 pProgressImportTmp, 2644 true /* aNotify */); 2644 2645 RTVfsIoStrmRelease(hVfsIosReadAhead); 2645 2646 hVfsIosSrc = NIL_RTVFSIOSTREAM; -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r76240 r76298 4037 4037 pMediumLockList, 4038 4038 NULL /* aProgress */, 4039 true /* aWait */); 4039 true /* aWait */, 4040 false /* aNotify */); 4040 4041 4041 4042 alock.acquire(); … … 4145 4146 mParent->i_saveModifiedRegistries(); 4146 4147 4148 if (aM) 4149 mParent->i_onMediumConfigChanged(aM); 4147 4150 return rc; 4148 4151 } … … 10819 10822 pMediumLockList, 10820 10823 NULL /* aProgress */, 10821 true /* aWait */); 10824 true /* aWait */, 10825 false /* aNotify */); 10822 10826 alock.acquire(); 10823 10827 if (FAILED(rc)) throw rc; … … 11055 11059 Assert(pMedium); 11056 11060 11057 rc = pMedium->i_deleteStorage(NULL /*aProgress*/, true /*aWait*/ );11061 rc = pMedium->i_deleteStorage(NULL /*aProgress*/, true /*aWait*/, false /*aNotify*/); 11058 11062 // continue on delete failure, just collect error messages 11059 11063 AssertMsg(SUCCEEDED(rc), ("rc=%Rhrc it=%s hd=%s\n", rc, pAtt->i_getLogName(), … … 11223 11227 11224 11228 HRESULT rc = oldmedium->i_deleteStorage(NULL /*aProgress*/, 11225 true /*aWait*/); 11229 true /*aWait*/, 11230 false /*aNotify*/); 11226 11231 11227 11232 writeLock.acquire(); … … 14023 14028 } 14024 14029 14030 mParent->i_onMediumChanged(aAttachment); 14031 14025 14032 /* ignore notifications sent after #OnSessionEnd() is called */ 14026 14033 if (!directControl) … … 14259 14266 directControl = mData->mSession.mDirectControl; 14260 14267 } 14268 14269 mParent->i_onStorageDeviceChanged(aAttachment, aRemove, aSilent); 14261 14270 14262 14271 /* ignore notifications sent after #OnSessionEnd() is called */ -
trunk/src/VBox/Main/src-server/MachineImplCloneVM.cpp
r76240 r76298 16 16 */ 17 17 18 #include <set> 19 #include <map> 18 20 #include "MachineImplCloneVM.h" 19 21 … … 730 732 pMediumLockList, 731 733 NULL /* aProgress */, 732 true /* aWait */); 734 true /* aWait */, 735 false /* aNotify */); 733 736 delete pMediumLockList; 734 737 if (FAILED(rc)) throw rc; … … 1016 1019 RTCList<ComObjPtr<Medium> > newMedia; /* All created images */ 1017 1020 RTCList<Utf8Str> newFiles; /* All extra created files (save states, ...) */ 1021 std::set<ComObjPtr<Medium> > pMediumsForNotify; 1022 std::map<Guid, DeviceType_T> uIdsForNotify; 1018 1023 try 1019 1024 { … … 1153 1158 /* diff image has to be used... */ 1154 1159 pNewParent = pDiff; 1160 pMediumsForNotify.insert(pDiff->i_getParent()); 1161 uIdsForNotify[pDiff->i_getId()] = pDiff->i_getDeviceType(); 1155 1162 } 1156 1163 else … … 1284 1291 progress2.asOutParam(), 1285 1292 uSrcParentIdx, 1286 uTrgParentIdx); 1293 uTrgParentIdx, 1294 false /* aNotify */); 1287 1295 srcLock.acquire(); 1288 1296 if (FAILED(rc)) throw rc; … … 1318 1326 * chain. */ 1319 1327 pNewParent = pTarget; 1328 uIdsForNotify[pTarget->i_getId()] = pTarget->i_getDeviceType(); 1320 1329 } 1321 1330 } … … 1356 1365 /* diff image has to be used... */ 1357 1366 pNewParent = pDiff; 1367 pMediumsForNotify.insert(pDiff->i_getParent()); 1368 uIdsForNotify[pDiff->i_getId()] = pDiff->i_getDeviceType(); 1358 1369 } 1359 1370 else … … 1534 1545 const ComObjPtr<Medium> &pMedium = newMedia.at(i - 1); 1535 1546 mrc = pMedium->i_deleteStorage(NULL /* aProgress */, 1536 true /* aWait */); 1547 true /* aWait */, 1548 false /* aNotify */); 1537 1549 pMedium->Close(); 1538 1550 } … … 1546 1558 p->mParent->i_saveModifiedRegistries(); 1547 1559 } 1560 else 1561 { 1562 for (std::map<Guid, DeviceType_T>::const_iterator it = uIdsForNotify.begin(); 1563 it != uIdsForNotify.end(); 1564 ++it) 1565 { 1566 p->mParent->i_onMediumRegistered(it->first, it->second, TRUE); 1567 } 1568 for (std::set<ComObjPtr<Medium> >::const_iterator it = pMediumsForNotify.begin(); 1569 it != pMediumsForNotify.end(); 1570 ++it) 1571 { 1572 if (it->isNotNull()) 1573 p->mParent->i_onMediumConfigChanged(*it); 1574 } 1575 } 1548 1576 1549 1577 return mrc; -
trunk/src/VBox/Main/src-server/MediumImpl.cpp
r76240 r76298 46 46 #include <algorithm> 47 47 #include <list> 48 #include <set> 49 #include <map> 48 50 49 51 … … 222 224 { 223 225 public: 224 Task(Medium *aMedium, Progress *aProgress )226 Task(Medium *aMedium, Progress *aProgress, bool fNotifyAboutChanges = true) 225 227 : ThreadTask("Medium::Task"), 226 228 mVDOperationIfaces(NULL), … … 228 230 mMediumCaller(aMedium), 229 231 mProgress(aProgress), 230 mVirtualBoxCaller(NULL) 232 mVirtualBoxCaller(NULL), 233 mNotifyAboutChanges(fNotifyAboutChanges) 231 234 { 232 235 AssertReturnVoidStmt(aMedium, mRC = E_FAIL); … … 271 274 HRESULT rc() const { return mRC; } 272 275 bool isOk() const { return SUCCEEDED(rc()); } 276 bool NotifyAboutChanges() const { return mNotifyAboutChanges; } 273 277 274 278 const ComPtr<Progress>& GetProgressObject() const {return mProgress;} … … 331 335 ComObjPtr<VirtualBox> mVirtualBox; 332 336 AutoCaller mVirtualBoxCaller; 337 bool mNotifyAboutChanges; 333 338 }; 334 339 … … 344 349 Progress *aProgress, 345 350 uint64_t aSize, 346 MediumVariant_T aVariant) 347 : Medium::Task(aMedium, aProgress), 351 MediumVariant_T aVariant, 352 bool fNotifyAboutChanges = true) 353 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 348 354 mSize(aSize), 349 355 mVariant(aVariant) … … 367 373 MediumVariant_T aVariant, 368 374 MediumLockList *aMediumLockList, 369 bool fKeepMediumLockList = false) 370 : Medium::Task(aMedium, aProgress), 375 bool fKeepMediumLockList = false, 376 bool fNotifyAboutChanges = true) 377 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 371 378 mpMediumLockList(aMediumLockList), 372 379 mTarget(aTarget), … … 412 419 MediumLockList *aTargetMediumLockList, 413 420 bool fKeepSourceMediumLockList = false, 414 bool fKeepTargetMediumLockList = false) 415 : Medium::Task(aMedium, aProgress), 421 bool fKeepTargetMediumLockList = false, 422 bool fNotifyAboutChanges = true) 423 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 416 424 mTarget(aTarget), 417 425 mParent(aParent), … … 470 478 MediumVariant_T aVariant, 471 479 MediumLockList *aMediumLockList, 472 bool fKeepMediumLockList = false) 473 : Medium::Task(aMedium, aProgress), 480 bool fKeepMediumLockList = false, 481 bool fNotifyAboutChanges = true) 482 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 474 483 mpMediumLockList(aMediumLockList), 475 484 mVariant(aVariant), … … 500 509 Progress *aProgress, 501 510 MediumLockList *aMediumLockList, 502 bool fKeepMediumLockList = false) 503 : Medium::Task(aMedium, aProgress), 511 bool fKeepMediumLockList = false, 512 bool fNotifyAboutChanges = true) 513 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 504 514 mpMediumLockList(aMediumLockList), 505 515 mfKeepMediumLockList(fKeepMediumLockList) … … 529 539 Progress *aProgress, 530 540 MediumLockList *aMediumLockList, 531 bool fKeepMediumLockList = false) 532 : Medium::Task(aMedium, aProgress), 541 bool fKeepMediumLockList = false, 542 bool fNotifyAboutChanges = true) 543 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 533 544 mSize(aSize), 534 545 mpMediumLockList(aMediumLockList), … … 559 570 Progress *aProgress, 560 571 MediumLockList *aMediumLockList, 561 bool fKeepMediumLockList = false) 562 : Medium::Task(aMedium, aProgress), 572 bool fKeepMediumLockList = false, 573 bool fNotifyAboutChanges = true) 574 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 563 575 mpMediumLockList(aMediumLockList), 564 576 mfKeepMediumLockList(fKeepMediumLockList) … … 586 598 Progress *aProgress, 587 599 MediumLockList *aMediumLockList, 588 bool fKeepMediumLockList = false) 589 : Medium::Task(aMedium, aProgress), 600 bool fKeepMediumLockList = false, 601 bool fNotifyAboutChanges = true) 602 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 590 603 mpMediumLockList(aMediumLockList), 591 604 mfKeepMediumLockList(fKeepMediumLockList) … … 617 630 Progress *aProgress, 618 631 MediumLockList *aMediumLockList, 619 bool fKeepMediumLockList = false) 620 : Medium::Task(aMedium, aProgress), 632 bool fKeepMediumLockList = false, 633 bool fNotifyAboutChanges = true) 634 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 621 635 mTarget(aTarget), 622 636 mfMergeForward(fMergeForward), … … 666 680 Medium *aParent, 667 681 MediumLockList *aTargetMediumLockList, 668 bool fKeepTargetMediumLockList = false) 669 : Medium::Task(aMedium, aProgress), 682 bool fKeepTargetMediumLockList = false, 683 bool fNotifyAboutChanges = true) 684 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges), 670 685 mFilename(aFilename), 671 686 mFormat(aFormat), … … 730 745 Progress *aProgress, 731 746 MediumLockList *aMediumLockList) 732 : Medium::Task(aMedium, aProgress ),747 : Medium::Task(aMedium, aProgress, false), 733 748 mstrNewPassword(strNewPassword), 734 749 mstrCurrentPassword(strCurrentPassword), … … 1644 1659 i_markRegistriesModified(); 1645 1660 m->pVirtualBox->i_saveModifiedRegistries(); 1661 m->pVirtualBox->i_onMediumConfigChanged(this); 1646 1662 } 1647 1663 catch (HRESULT aRC) { rc = aRC; } … … 1879 1895 i_markRegistriesModified(); 1880 1896 m->pVirtualBox->i_saveModifiedRegistries(); 1897 m->pVirtualBox->i_onMediumConfigChanged(this); 1881 1898 1882 1899 return S_OK; … … 1990 2007 i_markRegistriesModified(); 1991 2008 m->pVirtualBox->i_saveModifiedRegistries(); 2009 m->pVirtualBox->i_onMediumConfigChanged(this); 1992 2010 } 1993 2011 … … 2056 2074 } 2057 2075 2076 const Guid uPrevImage = m->uuidImage; 2058 2077 unconst(m->uuidImage) = imageId; 2078 ComObjPtr<Medium> pPrevParent = i_getParent(); 2059 2079 unconst(m->uuidParentImage) = parentId; 2060 2080 … … 2065 2085 !!aSetParentId /* fSetParentId */, 2066 2086 autoCaller); 2087 2088 AutoReadLock arlock(this COMMA_LOCKVAL_SRC_POS); 2089 const Guid uCurrImage = m->uuidImage; 2090 ComObjPtr<Medium> pCurrParent = i_getParent(); 2091 arlock.release(); 2092 2093 if (SUCCEEDED(rc)) 2094 { 2095 if (uCurrImage != uPrevImage) 2096 m->pVirtualBox->i_onMediumConfigChanged(this); 2097 if (pPrevParent != pCurrParent) 2098 { 2099 if (pPrevParent) 2100 m->pVirtualBox->i_onMediumConfigChanged(pPrevParent); 2101 if (pCurrParent) 2102 m->pVirtualBox->i_onMediumConfigChanged(pCurrParent); 2103 } 2104 } 2067 2105 2068 2106 return rc; … … 2358 2396 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox); 2359 2397 2398 Guid uId = i_getId(); 2399 DeviceType_T devType = i_getDeviceType(); 2400 bool wasCreated = m->state != MediumState_NotCreated; 2360 2401 MultiResult mrc = i_close(aAutoCaller); 2361 2402 2362 2403 pVirtualBox->i_saveModifiedRegistries(); 2404 2405 if (SUCCEEDED(mrc) && wasCreated) 2406 pVirtualBox->i_onMediumRegistered(uId, devType, FALSE); 2363 2407 2364 2408 return mrc; … … 2430 2474 i_markRegistriesModified(); 2431 2475 m->pVirtualBox->i_saveModifiedRegistries(); 2476 m->pVirtualBox->i_onMediumConfigChanged(this); 2432 2477 2433 2478 return S_OK; … … 2509 2554 i_markRegistriesModified(); 2510 2555 m->pVirtualBox->i_saveModifiedRegistries(); 2556 m->pVirtualBox->i_onMediumConfigChanged(this); 2511 2557 2512 2558 return S_OK; 2513 2559 } 2560 2514 2561 HRESULT Medium::createBaseStorage(LONG64 aLogicalSize, 2515 2562 const std::vector<MediumVariant_T> &aVariant, … … 2597 2644 2598 2645 MultiResult mrc = i_deleteStorage(&pProgress, 2599 false /* aWait */); 2646 false /* aWait */, 2647 true /* aNotify */); 2600 2648 /* Must save the registries in any case, since an entry was removed. */ 2601 2649 m->pVirtualBox->i_saveModifiedRegistries(); … … 2716 2764 2717 2765 rc = i_createDiffStorage(diff, (MediumVariant_T)mediumVariantFlags, pMediumLockList, 2718 &pProgress, false /* aWait */ );2766 &pProgress, false /* aWait */, true /* aNotify */); 2719 2767 if (FAILED(rc)) 2720 2768 delete pMediumLockList; … … 2748 2796 2749 2797 rc = i_mergeTo(pTarget, fMergeForward, pParentForTarget, pChildrenToReparent, 2750 pMediumLockList, &pProgress, false /* aWait */ );2798 pMediumLockList, &pProgress, false /* aWait */, true /* aNotify */); 2751 2799 if (FAILED(rc)) 2752 2800 i_cancelMergeTo(pChildrenToReparent, pMediumLockList); … … 3299 3347 MediumState_T mediumState; 3300 3348 refreshState(autoCaller, &mediumState); 3349 m->pVirtualBox->i_onMediumConfigChanged(this); 3301 3350 } 3302 3351 catch (HRESULT aRC) { rc = aRC; } … … 3426 3475 3427 3476 if (SUCCEEDED(rc)) 3428 rc = i_resize(aLogicalSize, pMediumLockList, &pProgress, false /* aWait */ );3477 rc = i_resize(aLogicalSize, pMediumLockList, &pProgress, false /* aWait */, true /* aNotify */); 3429 3478 3430 3479 if (SUCCEEDED(rc)) … … 4479 4528 unconst(m->strLocationFull) = newPath; 4480 4529 4530 m->pVirtualBox->i_onMediumConfigChanged(this); 4531 4481 4532 LogFlowThisFunc(("locationFull.after='%s'\n", m->strLocationFull.c_str())); 4482 4533 // we changed something … … 4625 4676 4626 4677 /** 4627 * Internal method to return the medium's size. Must have caller + locking!4678 * Internal method to update the medium's id. Must have caller + locking! 4628 4679 * @return 4629 4680 */ … … 4871 4922 * @param aWait @c true if this method should block instead of 4872 4923 * creating an asynchronous thread. 4924 * @param aNotify Notify about mediums which metadatа are changed 4925 * during execution of the function. 4873 4926 * 4874 4927 * @note Locks this object and @a aTarget for writing. … … 4878 4931 MediumLockList *aMediumLockList, 4879 4932 ComObjPtr<Progress> *aProgress, 4880 bool aWait) 4933 bool aWait, 4934 bool aNotify) 4881 4935 { 4882 4936 AssertReturn(!aTarget.isNull(), E_FAIL); … … 4953 5007 pTask = new Medium::CreateDiffTask(this, pProgress, aTarget, aVariant, 4954 5008 aMediumLockList, 4955 aWait /* fKeepMediumLockList */); 5009 aWait /* fKeepMediumLockList */, 5010 aNotify); 4956 5011 rc = pTask->rc(); 4957 5012 AssertComRC(rc); … … 5133 5188 * @param aWait @c true if this method should block instead of creating 5134 5189 * an asynchronous thread. 5190 * @param aNotify Notify about mediums which metadatа are changed 5191 * during execution of the function. 5135 5192 * 5136 5193 * @note Locks mVirtualBox and this object for writing. Locks medium tree for … … 5138 5195 */ 5139 5196 HRESULT Medium::i_deleteStorage(ComObjPtr<Progress> *aProgress, 5140 bool aWait )5197 bool aWait, bool aNotify) 5141 5198 { 5142 5199 AssertReturn(aProgress != NULL || aWait == true, E_FAIL); … … 5309 5366 5310 5367 /* setup task object to carry out the operation sync/async */ 5311 pTask = new Medium::DeleteTask(this, pProgress, pMediumLockList );5368 pTask = new Medium::DeleteTask(this, pProgress, pMediumLockList, false, aNotify); 5312 5369 rc = pTask->rc(); 5313 5370 AssertComRC(rc); … … 5954 6011 * @param aWait @c true if this method should block instead of creating 5955 6012 * an asynchronous thread. 6013 * @param aNotify Notify about mediums which metadatа are changed 6014 * during execution of the function. 5956 6015 * 5957 6016 * @note Locks the tree lock for writing. Locks the media from the chain … … 5964 6023 MediumLockList *aMediumLockList, 5965 6024 ComObjPtr<Progress> *aProgress, 5966 bool aWait )6025 bool aWait, bool aNotify) 5967 6026 { 5968 6027 AssertReturn(pTarget != NULL, E_FAIL); … … 6019 6078 pParentForTarget, aChildrenToReparent, 6020 6079 pProgress, aMediumLockList, 6021 aWait /* fKeepMediumLockList */); 6080 aWait /* fKeepMediumLockList */, 6081 aNotify); 6022 6082 rc = pTask->rc(); 6023 6083 AssertComRC(rc); … … 6134 6194 * @param aWait @c true if this method should block instead of creating 6135 6195 * an asynchronous thread. 6196 * @param aNotify Notify about mediums which metadatа are changed 6197 * during execution of the function. 6136 6198 * 6137 6199 * @note Locks the media from the chain for writing. … … 6141 6203 MediumLockList *aMediumLockList, 6142 6204 ComObjPtr<Progress> *aProgress, 6143 bool aWait) 6205 bool aWait, 6206 bool aNotify) 6144 6207 { 6145 6208 AssertReturn(aMediumLockList != NULL, E_FAIL); … … 6180 6243 pProgress, 6181 6244 aMediumLockList, 6182 aWait /* fKeepMediumLockList */); 6245 aWait /* fKeepMediumLockList */, 6246 aNotify); 6183 6247 rc = pTask->rc(); 6184 6248 AssertComRC(rc); … … 6483 6547 * @param aParent Parent medium. May be NULL. 6484 6548 * @param aProgress Progress object to use. 6549 * @param aNotify Notify about mediums which metadatа are changed 6550 * during execution of the function. 6485 6551 * @return 6486 6552 * @note The destination format is defined by the Medium instance. … … 6496 6562 RTVFSIOSTREAM aVfsIosSrc, 6497 6563 const ComObjPtr<Medium> &aParent, 6498 const ComObjPtr<Progress> &aProgress) 6564 const ComObjPtr<Progress> &aProgress, 6565 bool aNotify) 6499 6566 { 6500 6567 /** @todo r=klaus The code below needs to be double checked with regard … … 6557 6624 /* setup task object to carry out the operation asynchronously */ 6558 6625 pTask = new Medium::ImportTask(this, aProgress, aFilename, aFormat, aVariant, 6559 aVfsIosSrc, aParent, pTargetMediumLockList );6626 aVfsIosSrc, aParent, pTargetMediumLockList, false, aNotify); 6560 6627 rc = pTask->rc(); 6561 6628 AssertComRC(rc); … … 6591 6658 * same content as the given image in the source chain. 6592 6659 * Use UINT32_MAX to disable this optimization. 6660 * @param aNotify Notify about mediums which metadatа are changed 6661 * during execution of the function. 6593 6662 * @return 6594 6663 */ 6595 6664 HRESULT Medium::i_cloneToEx(const ComObjPtr<Medium> &aTarget, MediumVariant_T aVariant, 6596 6665 const ComObjPtr<Medium> &aParent, IProgress **aProgress, 6597 uint32_t idxSrcImageSame, uint32_t idxDstImageSame )6666 uint32_t idxSrcImageSame, uint32_t idxDstImageSame, bool aNotify) 6598 6667 { 6599 6668 /** @todo r=klaus The code below needs to be double checked with regard … … 6700 6769 aParent, idxSrcImageSame, 6701 6770 idxDstImageSame, pSourceMediumLockList, 6702 pTargetMediumLockList );6771 pTargetMediumLockList, false, false, aNotify); 6703 6772 rc = pTask->rc(); 6704 6773 AssertComRC(rc); … … 7300 7369 pToken.setNull(); 7301 7370 7302 if (FAILED(rc)) return rc; 7371 if (FAILED(rc)) 7372 return rc; 7303 7373 7304 7374 /* If this is a base image which incorrectly has a parent UUID set, … … 7308 7378 * with a diff image before the base is registered this would destroy 7309 7379 * the diff. Not acceptable. */ 7310 if (fRepairImageZeroParentUuid) 7311 { 7312 rc = LockWrite(pToken.asOutParam()); 7313 if (FAILED(rc)) return rc; 7314 7315 alock.release(); 7316 7317 try 7318 { 7319 PVDISK hdd; 7320 vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd); 7321 ComAssertRCThrow(vrc, E_FAIL); 7380 do 7381 { 7382 if (fRepairImageZeroParentUuid) 7383 { 7384 rc = LockWrite(pToken.asOutParam()); 7385 if (FAILED(rc)) 7386 break; 7387 7388 alock.release(); 7322 7389 7323 7390 try 7324 7391 { 7325 vrc = VDOpen(hdd, 7326 format.c_str(), 7327 location.c_str(), 7328 (uOpenFlags & ~VD_OPEN_FLAGS_READONLY) | m->uOpenFlagsDef, 7329 m->vdImageIfaces); 7330 if (RT_FAILURE(vrc)) 7331 throw S_OK; 7332 7333 RTUUID zeroParentUuid; 7334 RTUuidClear(&zeroParentUuid); 7335 vrc = VDSetParentUuid(hdd, 0, &zeroParentUuid); 7392 PVDISK hdd; 7393 vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd); 7336 7394 ComAssertRCThrow(vrc, E_FAIL); 7395 7396 try 7397 { 7398 vrc = VDOpen(hdd, 7399 format.c_str(), 7400 location.c_str(), 7401 (uOpenFlags & ~VD_OPEN_FLAGS_READONLY) | m->uOpenFlagsDef, 7402 m->vdImageIfaces); 7403 if (RT_FAILURE(vrc)) 7404 throw S_OK; 7405 7406 RTUUID zeroParentUuid; 7407 RTUuidClear(&zeroParentUuid); 7408 vrc = VDSetParentUuid(hdd, 0, &zeroParentUuid); 7409 ComAssertRCThrow(vrc, E_FAIL); 7410 } 7411 catch (HRESULT aRC) 7412 { 7413 rc = aRC; 7414 } 7415 7416 VDDestroy(hdd); 7337 7417 } 7338 7418 catch (HRESULT aRC) … … 7341 7421 } 7342 7422 7343 VDDestroy(hdd); 7344 } 7345 catch (HRESULT aRC) 7346 { 7347 rc = aRC; 7348 } 7349 7350 pToken->Abandon(); 7351 pToken.setNull(); 7352 if (FAILED(rc)) return rc; 7353 } 7423 pToken->Abandon(); 7424 pToken.setNull(); 7425 if (FAILED(rc)) 7426 break; 7427 } 7428 } while(0); 7354 7429 7355 7430 return rc; … … 8493 8568 m->pVirtualBox->i_saveModifiedRegistries(); 8494 8569 } 8570 if (task.NotifyAboutChanges()) 8571 m->pVirtualBox->i_onMediumRegistered(m->id, m->devType, TRUE); 8495 8572 } 8496 8573 else … … 8728 8805 * unlock the medium. */ 8729 8806 8807 if (task.NotifyAboutChanges() && SUCCEEDED(mrc)) 8808 { 8809 m->pVirtualBox->i_onMediumRegistered(pTarget->i_getId(), pTarget->i_getDeviceType(), TRUE); 8810 m->pVirtualBox->i_onMediumConfigChanged(this); 8811 } 8812 8730 8813 return mrc; 8731 8814 } … … 8820 8903 8821 8904 ComObjPtr<Progress> pProgress(task.GetProgressObject()); 8822 rc = pTarget->i_resize(sourceSize, pMediumLockListForResize, &pProgress, true );8905 rc = pTarget->i_resize(sourceSize, pMediumLockListForResize, &pProgress, true, false); 8823 8906 if (FAILED(rc)) 8824 8907 { … … 8986 9069 HRESULT rc2; 8987 9070 9071 std::set<ComObjPtr<Medium> > pMediumsForNotify; 9072 std::map<Guid, DeviceType_T> uIdsForNotify; 9073 8988 9074 if (SUCCEEDED(mrc)) 8989 9075 { … … 9005 9091 pTarget->i_setParent(task.mParentForTarget); 9006 9092 if (task.mParentForTarget) 9093 { 9007 9094 i_deparent(); 9095 if (task.NotifyAboutChanges()) 9096 pMediumsForNotify.insert(task.mParentForTarget); 9097 } 9008 9098 9009 9099 /* then, register again */ … … 9040 9130 // no depth check, reduces depth 9041 9131 pMedium->i_setParent(pTarget); 9132 9133 if (task.NotifyAboutChanges()) 9134 pMediumsForNotify.insert(pMedium); 9042 9135 } 9043 9136 } 9137 pMediumsForNotify.insert(pTarget); 9044 9138 } 9045 9139 … … 9066 9160 } 9067 9161 9162 uIdsForNotify[pMedium->i_getId()] = pMedium->i_getDeviceType(); 9068 9163 rc2 = pMedium->m->pVirtualBox->i_unregisterMedium(pMedium); 9069 9164 AssertComRC(rc2); … … 9126 9221 if (task.isAsync()) 9127 9222 i_cancelMergeTo(task.mpChildrenToReparent, task.mpMediumLockList); 9223 } 9224 else if (task.NotifyAboutChanges()) 9225 { 9226 for (std::set<ComObjPtr<Medium> >::const_iterator it = pMediumsForNotify.begin(); 9227 it != pMediumsForNotify.end(); 9228 ++it) 9229 { 9230 if (it->isNotNull()) 9231 m->pVirtualBox->i_onMediumConfigChanged(*it); 9232 } 9233 for (std::map<Guid, DeviceType_T>::const_iterator it = uIdsForNotify.begin(); 9234 it != uIdsForNotify.end(); 9235 ++it) 9236 { 9237 m->pVirtualBox->i_onMediumRegistered(it->first, it->second, FALSE); 9238 } 9128 9239 } 9129 9240 … … 9446 9557 m->pVirtualBox->i_saveModifiedRegistries(); 9447 9558 eik.fetch(); 9559 9560 if (task.NotifyAboutChanges()) 9561 { 9562 if (!fCreatingTarget) 9563 { 9564 if (!aFilterPropNames.empty()) 9565 m->pVirtualBox->i_onMediumConfigChanged(pTargetBase); 9566 if (pParent) 9567 m->pVirtualBox->i_onMediumConfigChanged(pParent); 9568 } 9569 else 9570 { 9571 m->pVirtualBox->i_onMediumRegistered(pTarget->i_getId(), pTarget->i_getDeviceType(), TRUE); 9572 } 9573 } 9448 9574 } 9449 9575 } … … 9621 9747 task.mpMediumLockList->Clear(); 9622 9748 9749 if (task.NotifyAboutChanges() && SUCCEEDED(mrc)) 9750 m->pVirtualBox->i_onMediumConfigChanged(this); 9623 9751 return mrc; 9624 9752 } … … 9688 9816 /* Reset UUID to prevent Create* from reusing it again */ 9689 9817 unconst(m->id).clear(); 9818 9819 if (task.NotifyAboutChanges() && SUCCEEDED(rc) && m->pParent.isNotNull()) 9820 m->pVirtualBox->i_onMediumConfigChanged(m->pParent); 9690 9821 9691 9822 return rc; … … 9831 9962 m->logicalSize = logicalSize; 9832 9963 m->variant = variant; 9964 9965 if (task.NotifyAboutChanges() && SUCCEEDED(rc)) 9966 m->pVirtualBox->i_onMediumConfigChanged(this); 9833 9967 9834 9968 /* Everything is explicitly unlocked when the task exits, … … 9928 10062 } 9929 10063 catch (HRESULT aRC) { rc = aRC; } 10064 10065 if (task.NotifyAboutChanges() && SUCCEEDED(rc)) 10066 m->pVirtualBox->i_onMediumConfigChanged(this); 9930 10067 9931 10068 /* Everything is explicitly unlocked when the task exits, … … 10044 10181 m->size = size; 10045 10182 m->logicalSize = logicalSize; 10183 10184 if (task.NotifyAboutChanges()) 10185 m->pVirtualBox->i_onMediumConfigChanged(this); 10046 10186 } 10047 10187 … … 10312 10452 task.mpTargetMediumLockList->Clear(); 10313 10453 10454 if (task.NotifyAboutChanges() && SUCCEEDED(mrc)) 10455 { 10456 if (pParent) 10457 m->pVirtualBox->i_onMediumConfigChanged(pParent); 10458 if (fCreatingTarget) 10459 m->pVirtualBox->i_onMediumConfigChanged(this); 10460 else 10461 m->pVirtualBox->i_onMediumRegistered(m->id, m->devType, TRUE); 10462 } 10463 10314 10464 return mrc; 10315 10465 } -
trunk/src/VBox/Main/src-server/SnapshotImpl.cpp
r76240 r76298 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 18 #include <set> 19 #include <map> 17 20 18 21 #include "Logging.h" … … 1637 1640 BOOL fSuspendedBySave = FALSE; 1638 1641 1642 std::set<ComObjPtr<Medium> > pMediumsForNotify; 1643 std::map<Guid, DeviceType_T> uIdsForNotify; 1644 1639 1645 try 1640 1646 { … … 1773 1779 if (FAILED(rc)) 1774 1780 throw rc; 1781 } 1782 1783 // store parent of newly created diffs before commit for notify 1784 { 1785 MediumAttachmentList &oldAtts = *mMediumAttachments.backedUpData(); 1786 for (MediumAttachmentList::const_iterator 1787 it = mMediumAttachments->begin(); 1788 it != mMediumAttachments->end(); 1789 ++it) 1790 { 1791 MediumAttachment *pAttach = *it; 1792 Medium *pMedium = pAttach->i_getMedium(); 1793 if (!pMedium) 1794 continue; 1795 1796 bool fFound = false; 1797 /* was this medium attached before? */ 1798 for (MediumAttachmentList::iterator 1799 oldIt = oldAtts.begin(); 1800 oldIt != oldAtts.end(); 1801 ++oldIt) 1802 { 1803 MediumAttachment *pOldAttach = *oldIt; 1804 if (pOldAttach->i_getMedium() == pMedium) 1805 { 1806 fFound = true; 1807 break; 1808 } 1809 } 1810 if (!fFound) 1811 { 1812 pMediumsForNotify.insert(pMedium->i_getParent()); 1813 uIdsForNotify[pMedium->i_getId()] = pMedium->i_getDeviceType(); 1814 } 1815 } 1775 1816 } 1776 1817 … … 1876 1917 if (SUCCEEDED(rc)) 1877 1918 mParent->i_onSnapshotTaken(mData->mUuid, task.m_uuidSnapshot); 1919 1920 if (SUCCEEDED(rc)) 1921 { 1922 for (std::map<Guid, DeviceType_T>::const_iterator it = uIdsForNotify.begin(); 1923 it != uIdsForNotify.end(); 1924 ++it) 1925 { 1926 mParent->i_onMediumRegistered(it->first, it->second, TRUE); 1927 } 1928 1929 for (std::set<ComObjPtr<Medium> >::const_iterator it = pMediumsForNotify.begin(); 1930 it != pMediumsForNotify.end(); 1931 ++it) 1932 { 1933 if (it->isNotNull()) 1934 mParent->i_onMediumConfigChanged(*it); 1935 } 1936 } 1878 1937 LogFlowThisFuncLeave(); 1879 1938 } … … 2120 2179 HRESULT rc = S_OK; 2121 2180 Guid snapshotId; 2181 std::set<ComObjPtr<Medium> > pMediumsForNotify; 2182 std::map<Guid, DeviceType_T> uIdsForNotify; 2122 2183 2123 2184 try … … 2214 2275 /* make the snapshot we restored from the current snapshot */ 2215 2276 mData->mCurrentSnapshot = task.m_pSnapshot; 2277 } 2278 2279 // store parent of newly created diffs for notify 2280 { 2281 MediumAttachmentList &oldAtts = *mMediumAttachments.backedUpData(); 2282 for (MediumAttachmentList::const_iterator 2283 it = mMediumAttachments->begin(); 2284 it != mMediumAttachments->end(); 2285 ++it) 2286 { 2287 MediumAttachment *pAttach = *it; 2288 Medium *pMedium = pAttach->i_getMedium(); 2289 if (!pMedium) 2290 continue; 2291 2292 bool fFound = false; 2293 /* was this medium attached before? */ 2294 for (MediumAttachmentList::iterator 2295 oldIt = oldAtts.begin(); 2296 oldIt != oldAtts.end(); 2297 ++oldIt) 2298 { 2299 MediumAttachment *pOldAttach = *oldIt; 2300 if (pOldAttach->i_getMedium() == pMedium) 2301 { 2302 fFound = true; 2303 break; 2304 } 2305 } 2306 if (!fFound) 2307 { 2308 pMediumsForNotify.insert(pMedium->i_getParent()); 2309 uIdsForNotify[pMedium->i_getId()] = pMedium->i_getDeviceType(); 2310 } 2311 } 2216 2312 } 2217 2313 … … 2314 2410 LogFlowThisFunc(("Deleting old current state in differencing image '%s'\n", pMedium->i_getName().c_str())); 2315 2411 2412 ComObjPtr<Medium> pParent = pMedium->i_getParent(); 2316 2413 HRESULT rc2 = pMedium->i_deleteStorage(NULL /* aProgress */, 2317 true /* aWait */); 2414 true /* aWait */, 2415 false /* aNotify */); 2318 2416 // ignore errors here because we cannot roll back after i_saveSettings() above 2319 2417 if (SUCCEEDED(rc2)) 2418 { 2419 pMediumsForNotify.insert(pParent); 2320 2420 pMedium->uninit(); 2421 } 2321 2422 } 2322 2423 } … … 2345 2446 2346 2447 if (SUCCEEDED(rc)) 2448 { 2347 2449 mParent->i_onSnapshotRestored(mData->mUuid, snapshotId); 2450 for (std::map<Guid, DeviceType_T>::const_iterator it = uIdsForNotify.begin(); 2451 it != uIdsForNotify.end(); 2452 ++it) 2453 { 2454 mParent->i_onMediumRegistered(it->first, it->second, TRUE); 2455 } 2456 for (std::set<ComObjPtr<Medium> >::const_iterator it = pMediumsForNotify.begin(); 2457 it != pMediumsForNotify.end(); 2458 ++it) 2459 { 2460 if (it->isNotNull()) 2461 mParent->i_onMediumConfigChanged(*it); 2462 } 2463 } 2348 2464 2349 2465 LogFlowThisFunc(("Done restoring snapshot (rc=%08X)\n", rc)); … … 2696 2812 MediumDeleteRecList toDelete; 2697 2813 Guid snapshotId; 2814 std::set<ComObjPtr<Medium> > pMediumsForNotify; 2815 std::map<Guid,DeviceType_T> uIdsForNotify; 2698 2816 2699 2817 try … … 3070 3188 /* No need to hold the lock any longer. */ 3071 3189 mLock.release(); 3190 ComObjPtr<Medium> pParent = pMedium->i_getParent(); 3191 Guid uMedium = pMedium->i_getId(); 3192 DeviceType_T uMediumType = pMedium->i_getDeviceType(); 3072 3193 rc = pMedium->i_deleteStorage(&task.m_pProgress, 3073 true /* aWait */); 3194 true /* aWait */, 3195 false /* aNotify */); 3074 3196 if (FAILED(rc)) 3075 3197 throw rc; 3198 3199 pMediumsForNotify.insert(pParent); 3200 uIdsForNotify[uMedium] = uMediumType; 3076 3201 3077 3202 // need to uninit the deleted medium … … 3081 3206 else 3082 3207 { 3208 { 3209 //store ids before merging for notify 3210 pMediumsForNotify.insert(it->mpTarget); 3211 if (it->mfMergeForward) 3212 pMediumsForNotify.insert(it->mpSource->i_getParent()); 3213 else 3214 { 3215 //children which will be reparented to target 3216 for (MediaList::const_iterator iit = it->mpSource->i_getChildren().begin(); 3217 iit != it->mpSource->i_getChildren().end(); 3218 ++iit) 3219 { 3220 pMediumsForNotify.insert(*iit); 3221 } 3222 } 3223 if (it->mfMergeForward) 3224 { 3225 for (ComObjPtr<Medium> pTmpMedium = it->mpTarget->i_getParent(); 3226 pTmpMedium && pTmpMedium != it->mpSource; 3227 pTmpMedium = pTmpMedium->i_getParent()) 3228 { 3229 uIdsForNotify[pTmpMedium->i_getId()] = pTmpMedium->i_getDeviceType(); 3230 } 3231 uIdsForNotify[it->mpSource->i_getId()] = it->mpSource->i_getDeviceType(); 3232 } 3233 else 3234 { 3235 for (ComObjPtr<Medium> pTmpMedium = it->mpSource->i_getParent(); 3236 pTmpMedium && pTmpMedium != it->mpTarget; 3237 pTmpMedium = pTmpMedium->i_getParent()) 3238 { 3239 uIdsForNotify[pTmpMedium->i_getId()] = pTmpMedium->i_getDeviceType(); 3240 } 3241 } 3242 } 3243 3083 3244 bool fNeedsSave = false; 3084 3245 if (it->mfNeedsOnlineMerge) … … 3111 3272 it->mpMediumLockList, 3112 3273 &task.m_pProgress, 3113 true /* aWait */); 3274 true /* aWait */, 3275 false /* aNotify */); 3114 3276 } 3115 3277 … … 3278 3440 3279 3441 if (SUCCEEDED(mrc)) 3442 { 3280 3443 mParent->i_onSnapshotDeleted(mData->mUuid, snapshotId); 3444 for (std::map<Guid, DeviceType_T>::const_iterator it = uIdsForNotify.begin(); 3445 it != uIdsForNotify.end(); 3446 ++it) 3447 { 3448 mParent->i_onMediumRegistered(it->first, it->second, FALSE); 3449 } 3450 for (std::set<ComObjPtr<Medium> >::const_iterator it = pMediumsForNotify.begin(); 3451 it != pMediumsForNotify.end(); 3452 ++it) 3453 { 3454 if (it->isNotNull()) 3455 mParent->i_onMediumConfigChanged(*it); 3456 } 3457 } 3281 3458 3282 3459 LogFlowThisFunc(("Done deleting snapshot (rc=%08X)\n", (HRESULT)mrc)); … … 3972 4149 return S_OK; 3973 4150 } 3974 -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r76240 r76298 1963 1963 1964 1964 if (SUCCEEDED(rc)) 1965 { 1965 1966 medium.queryInterfaceTo(aMedium.asOutParam()); 1967 i_onMediumRegistered(medium->i_getId(), medium->i_getDeviceType(), TRUE); 1968 } 1966 1969 1967 1970 return rc; … … 2014 2017 } 2015 2018 2019 bool fMediumRegistered = false; 2016 2020 if (pMedium.isNull()) 2017 2021 { … … 2040 2044 rc = VBOX_E_OBJECT_NOT_FOUND; 2041 2045 } 2046 else 2047 { 2048 fMediumRegistered = true; 2049 } 2042 2050 } 2043 2051 else … … 2049 2057 2050 2058 if (SUCCEEDED(rc)) 2059 { 2051 2060 pMedium.queryInterfaceTo(aMedium.asOutParam()); 2061 if (fMediumRegistered) 2062 i_onMediumRegistered(pMedium->i_getId(), pMedium->i_getDeviceType() ,TRUE); 2063 } 2052 2064 2053 2065 return rc; … … 2252 2264 if (RT_FAILURE(vrc)) 2253 2265 fFailure = true; 2266 } 2267 if (!fFailure) 2268 { 2269 for (MediaList::const_iterator mt = m->allHardDisks.begin(); 2270 mt != m->allHardDisks.end(); 2271 ++mt) 2272 { 2273 i_onMediumConfigChanged(*mt); 2274 } 2254 2275 } 2255 2276 return fFailure ? VERR_INVALID_PARAMETER : VINF_SUCCESS; … … 2917 2938 } 2918 2939 2940 2941 /** Event for onMediumRegistered() */ 2942 struct MediumRegisteredEventStruct : public VirtualBox::CallbackEvent 2943 { 2944 MediumRegisteredEventStruct(VirtualBox *aVB, const Guid &aMediumId, 2945 const DeviceType_T aDevType, const BOOL aRegistered) 2946 : CallbackEvent(aVB, VBoxEventType_OnMediumRegistered) 2947 , mMediumId(aMediumId.toUtf16()), mDevType(aDevType), mRegistered(aRegistered) 2948 {} 2949 2950 virtual HRESULT prepareEventDesc(IEventSource *aSource, VBoxEventDesc &aEvDesc) 2951 { 2952 return aEvDesc.init(aSource, VBoxEventType_OnMediumRegistered, mMediumId.raw(), mDevType, mRegistered); 2953 } 2954 2955 Bstr mMediumId; 2956 DeviceType_T mDevType; 2957 BOOL mRegistered; 2958 }; 2959 2960 /** 2961 * @note Doesn't lock any object. 2962 */ 2963 void VirtualBox::i_onMediumRegistered(const Guid &aMediumId, const DeviceType_T aDevType, const BOOL aRegistered) 2964 { 2965 i_postEvent(new MediumRegisteredEventStruct(this, aMediumId, aDevType, aRegistered)); 2966 } 2967 2968 /** Event for onMediumConfigChanged() */ 2969 struct MediumConfigChangedEventStruct : public VirtualBox::CallbackEvent 2970 { 2971 MediumConfigChangedEventStruct(VirtualBox *aVB, IMedium *aMedium) 2972 : CallbackEvent(aVB, VBoxEventType_OnMediumConfigChanged) 2973 , mMedium(aMedium) 2974 {} 2975 2976 virtual HRESULT prepareEventDesc(IEventSource *aSource, VBoxEventDesc &aEvDesc) 2977 { 2978 return aEvDesc.init(aSource, VBoxEventType_OnMediumConfigChanged, mMedium); 2979 } 2980 2981 IMedium* mMedium; 2982 }; 2983 2984 void VirtualBox::i_onMediumConfigChanged(IMedium *aMedium) 2985 { 2986 i_postEvent(new MediumConfigChangedEventStruct(this, aMedium)); 2987 } 2988 2989 /** Event for onMediumChanged() */ 2990 struct MediumChangedEventStruct : public VirtualBox::CallbackEvent 2991 { 2992 MediumChangedEventStruct(VirtualBox *aVB, IMediumAttachment *aMediumAttachment) 2993 : CallbackEvent(aVB, VBoxEventType_OnMediumChanged) 2994 , mMediumAttachment(aMediumAttachment) 2995 {} 2996 2997 virtual HRESULT prepareEventDesc(IEventSource *aSource, VBoxEventDesc &aEvDesc) 2998 { 2999 return aEvDesc.init(aSource, VBoxEventType_OnMediumChanged, mMediumAttachment); 3000 } 3001 3002 IMediumAttachment* mMediumAttachment; 3003 }; 3004 3005 void VirtualBox::i_onMediumChanged(IMediumAttachment *aMediumAttachment) 3006 { 3007 i_postEvent(new MediumChangedEventStruct(this, aMediumAttachment)); 3008 } 3009 3010 /** Event for onStorageDeviceChanged() */ 3011 struct StorageDeviceChangedEventStruct : public VirtualBox::CallbackEvent 3012 { 3013 StorageDeviceChangedEventStruct(VirtualBox *aVB, IMediumAttachment *aStorageDevice, BOOL fRemoved, BOOL fSilent) 3014 : CallbackEvent(aVB, VBoxEventType_OnStorageDeviceChanged) 3015 , mStorageDevice(aStorageDevice) 3016 , mRemoved(fRemoved) 3017 , mSilent(fSilent) 3018 {} 3019 3020 virtual HRESULT prepareEventDesc(IEventSource *aSource, VBoxEventDesc &aEvDesc) 3021 { 3022 return aEvDesc.init(aSource, VBoxEventType_OnStorageDeviceChanged, mStorageDevice, mRemoved, mSilent); 3023 } 3024 3025 IMediumAttachment* mStorageDevice; 3026 BOOL mRemoved; 3027 BOOL mSilent; 3028 }; 3029 3030 void VirtualBox::i_onStorageDeviceChanged(IMediumAttachment *aStorageDevice, const BOOL fRemoved, const BOOL fSilent) 3031 { 3032 i_postEvent(new StorageDeviceChangedEventStruct(this, aStorageDevice, fRemoved, fSilent)); 3033 } 2919 3034 2920 3035 /**
Note:
See TracChangeset
for help on using the changeset viewer.