Changeset 86506 in vbox
- Timestamp:
- Oct 9, 2020 3:54:19 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140821
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r85309 r86506 735 735 bool fDiscard, 736 736 bool fNonRotational, 737 IMedium *pMedium,737 ComPtr<IMedium> ptrMedium, 738 738 MachineState_T aMachineState, 739 739 HRESULT *phrc); -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r86284 r86506 4515 4515 mapMediumAttachments[devicePath] = pMediumAtt; 4516 4516 4517 ComPtr<IMedium> p Medium;4518 hrc = pMediumAtt->COMGETTER(Medium)(p Medium.asOutParam());H();4517 ComPtr<IMedium> ptrMedium; 4518 hrc = pMediumAtt->COMGETTER(Medium)(ptrMedium.asOutParam()); H(); 4519 4519 4520 4520 /* … … 4527 4527 || aMachineState == MachineState_Restoring)) 4528 4528 { 4529 rc = i_checkMediumLocation(p Medium, &fUseHostIOCache);4529 rc = i_checkMediumLocation(ptrMedium, &fUseHostIOCache); 4530 4530 if (RT_FAILURE(rc)) 4531 4531 return rc; … … 4533 4533 4534 4534 BOOL fPassthrough = FALSE; 4535 if (p Medium)4535 if (ptrMedium.isNotNull()) 4536 4536 { 4537 4537 BOOL fHostDrive; 4538 hrc = p Medium->COMGETTER(HostDrive)(&fHostDrive);H();4538 hrc = ptrMedium->COMGETTER(HostDrive)(&fHostDrive); H(); 4539 4539 if ( ( lType == DeviceType_DVD 4540 4540 || lType == DeviceType_Floppy) … … 4545 4545 */ 4546 4546 Bstr strFile; 4547 hrc = p Medium->COMGETTER(Location)(strFile.asOutParam());H();4547 hrc = ptrMedium->COMGETTER(Location)(strFile.asOutParam()); H(); 4548 4548 Utf8Str utfFile = Utf8Str(strFile); 4549 4549 RTFSTYPE enmFsTypeFile = RTFSTYPE_UNKNOWN; … … 4593 4593 !!fDiscard, 4594 4594 !!fNonRotational, 4595 p Medium,4595 ptrMedium, 4596 4596 aMachineState, 4597 4597 phrc); … … 4679 4679 bool fDiscard, 4680 4680 bool fNonRotational, 4681 IMedium *pMedium,4681 ComPtr<IMedium> ptrMedium, 4682 4682 MachineState_T aMachineState, 4683 4683 HRESULT *phrc) … … 4695 4695 4696 4696 BOOL fHostDrive = FALSE; 4697 MediumType_T mediumType 4698 if (p Medium)4699 { 4700 hrc = p Medium->COMGETTER(HostDrive)(&fHostDrive);H();4701 hrc = p Medium->COMGETTER(Type)(&mediumType);H();4697 MediumType_T mediumType = MediumType_Normal; 4698 if (ptrMedium.isNotNull()) 4699 { 4700 hrc = ptrMedium->COMGETTER(HostDrive)(&fHostDrive); H(); 4701 hrc = ptrMedium->COMGETTER(Type)(&mediumType); H(); 4702 4702 } 4703 4703 4704 4704 if (fHostDrive) 4705 4705 { 4706 Assert(p Medium);4706 Assert(ptrMedium.isNotNull()); 4707 4707 if (enmType == DeviceType_DVD) 4708 4708 { … … 4710 4710 InsertConfigNode(pLunL0, "Config", &pCfg); 4711 4711 4712 hrc = p Medium->COMGETTER(Location)(bstr.asOutParam());H();4712 hrc = ptrMedium->COMGETTER(Location)(bstr.asOutParam()); H(); 4713 4713 InsertConfigString(pCfg, "Path", bstr); 4714 4714 … … 4720 4720 InsertConfigNode(pLunL0, "Config", &pCfg); 4721 4721 4722 hrc = p Medium->COMGETTER(Location)(bstr.asOutParam());H();4722 hrc = ptrMedium->COMGETTER(Location)(bstr.asOutParam()); H(); 4723 4723 InsertConfigString(pCfg, "Path", bstr); 4724 4724 } … … 4755 4755 } 4756 4756 4757 if ( p Medium4757 if ( ptrMedium.isNotNull() 4758 4758 && ( enmType == DeviceType_DVD 4759 4759 || enmType == DeviceType_Floppy) … … 4767 4767 // would be to discard the VM state... 4768 4768 MediumState_T mediumState; 4769 hrc = p Medium->RefreshState(&mediumState);H();4769 hrc = ptrMedium->RefreshState(&mediumState); H(); 4770 4770 if (mediumState == MediumState_Inaccessible) 4771 4771 { 4772 4772 Bstr loc; 4773 hrc = p Medium->COMGETTER(Location)(loc.asOutParam());H();4773 hrc = ptrMedium->COMGETTER(Location)(loc.asOutParam()); H(); 4774 4774 i_atVMRuntimeErrorCallbackF(0, "DvdOrFloppyImageInaccessible", 4775 4775 "The image file '%ls' is inaccessible and is being ignored. " … … 4777 4777 loc.raw(), 4778 4778 enmType == DeviceType_DVD ? "DVD" : "floppy"); 4779 p Medium = NULL;4780 } 4781 } 4782 4783 if (p Medium)4779 ptrMedium.setNull(); 4780 } 4781 } 4782 4783 if (ptrMedium.isNotNull()) 4784 4784 { 4785 4785 /* Start with length of parent chain, as the list is reversed */ 4786 4786 unsigned uImage = 0; 4787 IMedium *pTmp = pMedium;4788 while (p Tmp)4787 ComPtr<IMedium> ptrTmp = ptrMedium; 4788 while (ptrTmp.isNotNull()) 4789 4789 { 4790 4790 uImage++; 4791 hrc = pTmp->COMGETTER(Parent)(&pTmp); H(); 4791 ComPtr<IMedium> ptrParent; 4792 hrc = ptrTmp->COMGETTER(Parent)(ptrParent.asOutParam()); H(); 4793 ptrTmp = ptrParent; 4792 4794 } 4793 4795 /* Index of last image */ … … 4813 4815 # endif 4814 4816 4815 hrc = p Medium->COMGETTER(Location)(bstr.asOutParam());H();4817 hrc = ptrMedium->COMGETTER(Location)(bstr.asOutParam()); H(); 4816 4818 InsertConfigString(pCfg, "Path", bstr); 4817 4819 4818 hrc = p Medium->COMGETTER(Format)(bstr.asOutParam());H();4820 hrc = ptrMedium->COMGETTER(Format)(bstr.asOutParam()); H(); 4819 4821 InsertConfigString(pCfg, "Format", bstr); 4820 4822 … … 4877 4879 bool fHostIP = true; 4878 4880 bool fEncrypted = false; 4879 hrc = i_configMediumProperties(pCfg, p Medium, &fHostIP, &fEncrypted); H();4881 hrc = i_configMediumProperties(pCfg, ptrMedium, &fHostIP, &fEncrypted); H(); 4880 4882 4881 4883 /* Create an inverted list of parents. */ 4882 4884 uImage--; 4883 IMedium *pParentMedium = pMedium;4885 ComPtr<IMedium> ptrParentMedium = ptrMedium; 4884 4886 for (PCFGMNODE pParent = pCfg;; uImage--) 4885 4887 { 4886 hrc = pParentMedium->COMGETTER(Parent)(&pMedium); H(); 4887 if (!pMedium) 4888 ComPtr<IMedium> ptrCurMedium; 4889 hrc = ptrParentMedium->COMGETTER(Parent)(ptrCurMedium.asOutParam()); H(); 4890 if (ptrCurMedium.isNull()) 4888 4891 break; 4889 4892 4890 4893 PCFGMNODE pCur; 4891 4894 InsertConfigNode(pParent, "Parent", &pCur); 4892 hrc = p Medium->COMGETTER(Location)(bstr.asOutParam());H();4895 hrc = ptrCurMedium->COMGETTER(Location)(bstr.asOutParam()); H(); 4893 4896 InsertConfigString(pCur, "Path", bstr); 4894 4897 4895 hrc = p Medium->COMGETTER(Format)(bstr.asOutParam());H();4898 hrc = ptrCurMedium->COMGETTER(Format)(bstr.asOutParam()); H(); 4896 4899 InsertConfigString(pCur, "Format", bstr); 4897 4900 … … 4905 4908 4906 4909 /* Configure medium properties. */ 4907 hrc = i_configMediumProperties(pCur, p Medium, &fHostIP, &fEncrypted); H();4910 hrc = i_configMediumProperties(pCur, ptrCurMedium, &fHostIP, &fEncrypted); H(); 4908 4911 4909 4912 /* next */ 4910 4913 pParent = pCur; 4911 p ParentMedium = pMedium;4914 ptrParentMedium = ptrCurMedium; 4912 4915 } 4913 4916
Note:
See TracChangeset
for help on using the changeset viewer.