VirtualBox

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


Ignore:
Timestamp:
Jan 22, 2018 8:52:05 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
120427
Message:

bugref:8345. The part for moving the log files was added.

File:
1 edited

Legend:

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

    r70674 r70691  
    110110{
    111111    HRESULT rc = S_OK;
    112 //  ComObjPtr<Machine> &machine = m_pMachine;
    113112    Utf8Str strTargetFolder = m_targetPath;
    114113
     
    169168        rc = getFilesList(strSettingsFilePath, fullFileList);
    170169        if (FAILED(rc)) throw rc;
    171 
    172 //      {
    173 //          cit_t it = fullFileList.m_list.begin();
    174 //          while(it != fullFileList.m_list.end())
    175 //          {
    176 //              Utf8Str strFile = Utf8StrFmt("folder: %s, file %s", it->first.c_str(), it->second.c_str());
    177 //              RTPrintf("%s\n", strFile.c_str());
    178 //              ++it;
    179 //          }
    180 //      }
    181170
    182171        /*
     
    266255        ULONG uTotalWeight = 2; /* The init task and the machine creation is worth one. */
    267256
    268         /* here we fill the lists llMedias and llSaveStateFiles */
    269257        queryMediasForAllStates(machineList, uCount, uTotalWeight);
    270258
     
    304292        }
    305293
     294        /* Prepare data for moving ".sav" files */
    306295        {
    307296            uint64_t totalStateSize = 0;
     
    326315                    if (ret.second == true)
    327316                    {
     317                        uCount       += 1;
     318                        uTotalWeight += 1;//just for now (should be correctly evaluated according its size)
    328319                        RTPrintf("State file %s was added into the moved list\n", name.c_str());
    329320                    }
     
    333324        }
    334325
    335         /*
    336          * Move log folder
    337          */
     326        /* Prepare data for moving the log files */
    338327        {
    339328            Utf8Str strFolder = vmFolders[VBox_LogFolder];
     
    344333                if (SUCCEEDED(rc))
    345334                {
    346 //                  RTPrintf("total files size in the log folder is %llu\n", totalLogSize);
    347 
    348335                    neededFreeSpace += totalLogSize;
    349336                    if (totalFreeSpace - neededFreeSpace <= 1024*1024)
     
    362349                        actualFileList.add(strFile);
    363350
     351                        uCount       += 1;
     352                        uTotalWeight += 1;//just for now (should be correctly evaluated according its size)
     353
    364354                        RTPrintf("The log file %s added into the moved list\n", strFile.c_str());
    365355                        ++it;
     
    377367        /* Init both Progress instances */
    378368        {
    379             /** weak VirtualBox parent */
    380             VirtualBox* const pVirtualBox = NULL;
    381             unconst(pVirtualBox) = m_pMachine->i_getVirtualBox();
    382             rc = m_pProgress->init(pVirtualBox,
     369            rc = m_pProgress->init(m_pMachine->i_getVirtualBox(),
    383370                                 static_cast<IMachine*>(m_pMachine) /* aInitiator */,
    384371                                 Bstr(m_pMachine->tr("Moving Machine")).raw(),
     
    397384
    398385            m_pRollBackProgress.createObject();
    399             rc = m_pRollBackProgress->init(pVirtualBox,
     386            rc = m_pRollBackProgress->init(m_pMachine->i_getVirtualBox(),
    400387                                 static_cast<IMachine*>(m_pMachine) /* aInitiator */,
    401388                                 Bstr(m_pMachine->tr("Moving back Machine")).raw(),
     
    454441        {
    455442            settings::Snapshot snap = (settings::Snapshot)(*it);
    456 //          RTPrintf("\nSnapshot %s address %#lx\n", snap.strName.c_str(), &(settings::Snapshot)(*it));
    457443            RTPrintf("it->uuid = %s , id = %s\n", snap.uuid.toStringCurly().c_str(), id.toStringCurly().c_str());
    458444            RTPrintf("it->strStateFile = %s , strFile = %s\n", snap.strStateFile.c_str(), strFile.c_str());
     
    477463        {
    478464            settings::Snapshot snap = (settings::Snapshot)(*it);
    479 //          RTPrintf("Snapshot %s address %#lx\n", snap.strName.c_str(), &(settings::Snapshot)(*it));
    480465            RTPrintf("snap.uuid = %s\n", snap.uuid.toStringCurly().c_str());
    481466            RTPrintf("snap.strStateFile = %s\n", snap.strStateFile.c_str());
     
    544529    RTCList<Utf8Str> originalFiles;  /* All original files except images */
    545530    typedef std::map<Utf8Str, ComObjPtr<Medium> > MediumMap;
    546 //  typedef std::pair<Utf8Str, ComObjPtr<Medium> > MediumPair;
    547531    MediumMap mapOriginalMedium;
    548532
     
    583567        {
    584568            RTPrintf("0 Print all state files\n");
    585 //          Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();
    586 //          settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;
    587569            taskMoveVM->printStateFile(taskMoveVM->m_pMachine->mData->pMachineConfigFile->llFirstSnapshot);
    588570        }
     
    650632        {
    651633            RTPrintf("\n1 Print all state files\n");
    652 //          Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();
    653 //          settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;
    654634            taskMoveVM->printStateFile(taskMoveVM->m_pMachine->mData->pMachineConfigFile->llFirstSnapshot);
    655635        }
     
    691671            RTPrintf("\n2 Print all state files\n");
    692672            Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();
    693 //          settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;
    694673            RTPrintf("\nmachineData->m_strConfigFileFull = %s\n", machineData->m_strConfigFileFull.c_str());
    695674            RTPrintf("\nmachineData->m_strConfigFile = %s\n", machineData->m_strConfigFile.c_str());
     
    697676        }
    698677
     678        /* Moving Machine log files */
     679        {
     680            RTPrintf("\nMoving Machine log files \n");
     681            Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();
     682            settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;
     683
     684            Utf8Str strTargetLogFolderPath = strTargetFolder;
     685
     686            if (taskMoveVM->vmFolders[VBox_LogFolder].isNotEmpty())
     687            {
     688                Bstr bstrMachineName;
     689                taskMoveVM->m_pMachine->COMGETTER(Name)(bstrMachineName.asOutParam());
     690                strTargetLogFolderPath.append(RTPATH_DELIMITER).append("Logs");
     691
     692                /* Check a log folder existing and create one if it's not */
     693                if (!RTDirExists(strTargetLogFolderPath.c_str()))
     694                {
     695                    int vrc = RTDirCreateFullPath(strTargetLogFolderPath.c_str(), 0700);
     696                    if (RT_FAILURE(vrc))
     697                        throw machine->setError(VBOX_E_IPRT_ERROR,
     698                                          machine->tr("Could not create log folder '%s' (%Rrc)"),
     699                                                strTargetLogFolderPath.c_str(), vrc);
     700                }
     701
     702                fileList_t filesList;
     703                taskMoveVM->getFilesList(taskMoveVM->vmFolders[VBox_LogFolder], filesList);
     704                cit_t it = filesList.m_list.begin();
     705                while(it != filesList.m_list.end())
     706                {
     707                    Utf8Str strFullSourceFilePath = it->first.c_str();
     708                    strFullSourceFilePath.append(RTPATH_DELIMITER).append(it->second.c_str());
     709
     710                    Utf8Str strFullTargetFilePath = strTargetLogFolderPath;
     711                    strFullTargetFilePath.append(RTPATH_DELIMITER).append(it->second.c_str());
     712
     713                    /* Move to next sub-operation. */
     714                    rc = taskMoveVM->m_pProgress->SetNextOperation(BstrFmt(machine->tr("Moving Machine log file '%s' ..."),
     715                                                            RTPathFilename(strFullSourceFilePath.c_str())).raw(), 1);
     716                    if (FAILED(rc)) throw rc;
     717
     718                    int vrc = RTFileCopyEx(strFullSourceFilePath.c_str(), strFullTargetFilePath.c_str(), 0,
     719                                   MachineMoveVM::copyFileProgress, &taskMoveVM->m_pProgress);
     720                    if (RT_FAILURE(vrc))
     721                        throw machine->setError(VBOX_E_IPRT_ERROR,
     722                                        machine->tr("Could not move log file '%s' to '%s' (%Rrc)"),
     723                                        strFullSourceFilePath.c_str(), strFullTargetFilePath.c_str(), vrc);
     724
     725                    RTPrintf("The log file %s moved into the folder %s\n", strFullSourceFilePath.c_str(),
     726                             strFullTargetFilePath.c_str());
     727
     728                    /* save new file in case of restoring */
     729                    newFiles.append(strFullTargetFilePath);
     730                    /* save original file for deletion in the end */
     731                    originalFiles.append(strFullSourceFilePath);
     732
     733                    ++it;
     734                }
     735            }
     736        }
     737
    699738        /* save all VM data */
    700739        {
     
    706745            RTPrintf("\n3 Print all state files\n");
    707746            Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();
    708 //          settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;
    709747
    710748            Utf8Str strTargetSettingsFilePath = strTargetFolder;
     
    733771        {
    734772            RTPrintf("\n4 Print all state files\n");
    735 //          Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();
    736 //          settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;
    737773            taskMoveVM->printStateFile(taskMoveVM->m_pMachine->mData->pMachineConfigFile->llFirstSnapshot);
    738774        }
     
    766802            RTPrintf("\nFailed: Print all state files\n");
    767803            Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();
    768 //          settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;
    769804            RTPrintf("\nmachineData->m_strConfigFileFull = %s\n", machineData->m_strConfigFileFull.c_str());
    770805            RTPrintf("\nmachineData->m_strConfigFile = %s\n", machineData->m_strConfigFile.c_str());
     
    776811        if (FAILED(rc))
    777812            RTPrintf("Can't delete all new files.");
     813
     814        RTDirRemove(strTargetFolder.c_str());
    778815
    779816        /* Restoring the original mediums */
     
    809846            RTPrintf("\nFailed: Print all state files\n");
    810847            Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();
    811 //          settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;
    812848
    813849            Utf8Str strOriginalSettingsFilePath = taskMoveVM->vmFolders[VBox_SettingFolder];
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