Changeset 70877 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Feb 6, 2018 6:25:47 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120703
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImplMoveVM.cpp
r70825 r70877 912 912 RTPrintf("\nTarget disk %s \n", strTargetImageName.c_str()); 913 913 914 ComPtr<IProgress> moveDiskProgress;915 914 bstrLocation = strTargetImageName.c_str(); 916 rc = pMedium->SetLocation(bstrLocation.raw(), moveDiskProgress.asOutParam()); 917 918 /* Wait until the async process has finished. */ 919 machineLock.release(); 920 if (strTargetFolder != NULL && !strTargetFolder->isEmpty()) 921 { 922 rc = m_pProgress->WaitForAsyncProgressCompletion(moveDiskProgress); 915 916 MediumType_T mediumType;//immutable, shared, passthrough 917 rc = pMedium->COMGETTER(Type)(&mediumType); 918 if (FAILED(rc)) throw rc; 919 920 DeviceType_T deviceType;//floppy, hard, DVD 921 rc = pMedium->COMGETTER(DeviceType)(&deviceType); 922 if (FAILED(rc)) throw rc; 923 924 if (deviceType == DeviceType_Floppy) 925 { 926 //1. no host drive image 927 BOOL fHostDrive = false; 928 rc = pMedium->COMGETTER(HostDrive)(&fHostDrive); 929 if (FAILED(rc)) throw rc; 923 930 } 924 931 else 925 932 { 926 rc = m_pRollBackProgress->WaitForAsyncProgressCompletion(moveDiskProgress); 927 } 928 929 machineLock.acquire(); 930 if (FAILED(rc)) throw rc; 931 932 RTPrintf("\nMoving %s has finished\n", strTargetImageName.c_str()); 933 934 /* Check the result of the async process. */ 935 LONG iRc; 936 rc = moveDiskProgress->COMGETTER(ResultCode)(&iRc); 937 if (FAILED(rc)) throw rc; 938 /* If the thread of the progress object has an error, then 939 * retrieve the error info from there, or it'll be lost. */ 940 if (FAILED(iRc)) 941 throw machine->setError(ProgressErrorInfo(moveDiskProgress)); 933 ComPtr<IProgress> moveDiskProgress; 934 rc = pMedium->SetLocation(bstrLocation.raw(), moveDiskProgress.asOutParam()); 935 /* Wait until the async process has finished. */ 936 machineLock.release(); 937 if (strTargetFolder != NULL && !strTargetFolder->isEmpty()) 938 { 939 rc = m_pProgress->WaitForAsyncProgressCompletion(moveDiskProgress); 940 } 941 else 942 { 943 rc = m_pRollBackProgress->WaitForAsyncProgressCompletion(moveDiskProgress); 944 } 945 946 machineLock.acquire(); 947 if (FAILED(rc)) throw rc; 948 949 RTPrintf("\nMoving %s has finished\n", strTargetImageName.c_str()); 950 951 /* Check the result of the async process. */ 952 LONG iRc; 953 rc = moveDiskProgress->COMGETTER(ResultCode)(&iRc); 954 if (FAILED(rc)) throw rc; 955 /* If the thread of the progress object has an error, then 956 * retrieve the error info from there, or it'll be lost. */ 957 if (FAILED(iRc)) 958 throw machine->setError(ProgressErrorInfo(moveDiskProgress)); 959 } 942 960 943 961 ++itMedium; … … 1153 1171 { 1154 1172 const ComPtr<IMediumAttachment> &pAtt = sfaAttachments[a]; 1155 DeviceType_T type;1156 rc = pAtt->COMGETTER(Type)(& type);1173 DeviceType_T deviceType;//floppy, hard, DVD 1174 rc = pAtt->COMGETTER(Type)(&deviceType); 1157 1175 if (FAILED(rc)) return rc; 1158 1176 1159 /* Only harddisks and floppies are of interest. */ 1160 if ( type != DeviceType_HardDisk 1161 && type != DeviceType_Floppy) 1177 /* Valid medium attached? */ 1178 ComPtr<IMedium> pMedium; 1179 rc = pAtt->COMGETTER(Medium)(pMedium.asOutParam()); 1180 if (FAILED(rc)) return rc; 1181 1182 if (pMedium.isNull()) 1162 1183 continue; 1163 1184 1164 /* Valid medium attached? */ 1165 ComPtr<IMedium> pSrcMedium; 1166 rc = pAtt->COMGETTER(Medium)(pSrcMedium.asOutParam()); 1167 if (FAILED(rc)) return rc; 1168 1169 if (pSrcMedium.isNull()) 1170 continue; 1185 Bstr bstrLocation; 1186 rc = pMedium->COMGETTER(Location)(bstrLocation.asOutParam()); 1187 if (FAILED(rc)) throw rc; 1188 1189 /* some special checks for DVD */ 1190 if (deviceType == DeviceType_DVD) 1191 { 1192 //no host drive CD/DVD image 1193 BOOL fHostDrive = false; 1194 rc = pMedium->COMGETTER(HostDrive)(&fHostDrive); 1195 if (FAILED(rc)) throw rc; 1196 1197 if(fHostDrive) 1198 continue; 1199 1200 //only ISO image is moved 1201 Utf8Str ext = bstrLocation; 1202 ext.assignEx(RTPathSuffix(ext.c_str()));//returns extension with dot (".iso") 1203 1204 int equality = ext.compare(".iso", Utf8Str::CaseInsensitive); 1205 if (equality != false) 1206 continue; 1207 } 1171 1208 1172 1209 MEDIUMTASKCHAIN mtc; 1173 mtc.devType = type;1174 1175 while (!p SrcMedium.isNull())1210 mtc.devType = deviceType; 1211 1212 while (!pMedium.isNull()) 1176 1213 { 1177 1214 /* Refresh the state so that the file size get read. */ 1178 1215 MediumState_T e; 1179 rc = p SrcMedium->RefreshState(&e);1216 rc = pMedium->RefreshState(&e); 1180 1217 if (FAILED(rc)) return rc; 1218 1181 1219 LONG64 lSize; 1182 rc = p SrcMedium->COMGETTER(Size)(&lSize);1220 rc = pMedium->COMGETTER(Size)(&lSize); 1183 1221 if (FAILED(rc)) return rc; 1184 1222 1185 Bstr bstrLocation;1186 rc = p SrcMedium->COMGETTER(Location)(bstrLocation.asOutParam());1223 MediumType_T mediumType;//immutable, shared, passthrough 1224 rc = pMedium->COMGETTER(Type)(&mediumType); 1187 1225 if (FAILED(rc)) throw rc; 1188 1226 1189 /* Save the current medium, for later cloning. */ 1227 rc = pMedium->COMGETTER(Location)(bstrLocation.asOutParam()); 1228 if (FAILED(rc)) throw rc; 1229 1190 1230 MEDIUMTASK mt; 1191 1231 mt.strBaseName = bstrLocation; … … 1199 1239 1200 1240 mt.uIdx = UINT32_MAX; 1201 mt.pMedium = p SrcMedium;1241 mt.pMedium = pMedium; 1202 1242 mt.uWeight = (ULONG)((lSize + _1M - 1) / _1M); 1203 1243 mtc.chain.append(mt); 1204 1244 1205 1245 /* Query next parent. */ 1206 rc = p SrcMedium->COMGETTER(Parent)(pSrcMedium.asOutParam());1246 rc = pMedium->COMGETTER(Parent)(pMedium.asOutParam()); 1207 1247 if (FAILED(rc)) return rc; 1208 1248 } … … 1243 1283 sst.strSaveStateFile = bstrSrcSaveStatePath; 1244 1284 uint64_t cbSize; 1285 1245 1286 int vrc = RTFileQuerySize(sst.strSaveStateFile.c_str(), &cbSize); 1246 1287 if (RT_FAILURE(vrc))
Note:
See TracChangeset
for help on using the changeset viewer.