VirtualBox

Changeset 70877 in vbox for trunk/src/VBox/Main/src-server


Ignore:
Timestamp:
Feb 6, 2018 6:25:47 AM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
120703
Message:

bugref:8345. Added the checks for floppy images and for DVD disks. Other small improvements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/MachineImplMoveVM.cpp

    r70825 r70877  
    912912            RTPrintf("\nTarget disk %s \n", strTargetImageName.c_str());
    913913
    914             ComPtr<IProgress> moveDiskProgress;
    915914            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;
    923930            }
    924931            else
    925932            {
    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            }
    942960
    943961            ++itMedium;
     
    11531171        {
    11541172            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);
    11571175            if (FAILED(rc)) return rc;
    11581176
    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())
    11621183                continue;
    11631184
    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            }
    11711208
    11721209            MEDIUMTASKCHAIN mtc;
    1173             mtc.devType       = type;
    1174 
    1175             while (!pSrcMedium.isNull())
     1210            mtc.devType = deviceType;
     1211
     1212            while (!pMedium.isNull())
    11761213            {
    11771214                /* Refresh the state so that the file size get read. */
    11781215                MediumState_T e;
    1179                 rc = pSrcMedium->RefreshState(&e);
     1216                rc = pMedium->RefreshState(&e);
    11801217                if (FAILED(rc)) return rc;
     1218
    11811219                LONG64 lSize;
    1182                 rc = pSrcMedium->COMGETTER(Size)(&lSize);
     1220                rc = pMedium->COMGETTER(Size)(&lSize);
    11831221                if (FAILED(rc)) return rc;
    11841222
    1185                 Bstr bstrLocation;
    1186                 rc = pSrcMedium->COMGETTER(Location)(bstrLocation.asOutParam());
     1223                MediumType_T mediumType;//immutable, shared, passthrough
     1224                rc = pMedium->COMGETTER(Type)(&mediumType);
    11871225                if (FAILED(rc)) throw rc;
    11881226
    1189                 /* Save the current medium, for later cloning. */
     1227                rc = pMedium->COMGETTER(Location)(bstrLocation.asOutParam());
     1228                if (FAILED(rc)) throw rc;
     1229
    11901230                MEDIUMTASK mt;
    11911231                mt.strBaseName = bstrLocation;
     
    11991239
    12001240                mt.uIdx    = UINT32_MAX;
    1201                 mt.pMedium = pSrcMedium;
     1241                mt.pMedium = pMedium;
    12021242                mt.uWeight = (ULONG)((lSize + _1M - 1) / _1M);
    12031243                mtc.chain.append(mt);
    12041244
    12051245                /* Query next parent. */
    1206                 rc = pSrcMedium->COMGETTER(Parent)(pSrcMedium.asOutParam());
     1246                rc = pMedium->COMGETTER(Parent)(pMedium.asOutParam());
    12071247                if (FAILED(rc)) return rc;
    12081248            }
     
    12431283        sst.strSaveStateFile = bstrSrcSaveStatePath;
    12441284        uint64_t cbSize;
     1285
    12451286        int vrc = RTFileQuerySize(sst.strSaveStateFile.c_str(), &cbSize);
    12461287        if (RT_FAILURE(vrc))
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette