Changeset 70691 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Jan 22, 2018 8:52:05 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120427
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImplMoveVM.cpp
r70674 r70691 110 110 { 111 111 HRESULT rc = S_OK; 112 // ComObjPtr<Machine> &machine = m_pMachine;113 112 Utf8Str strTargetFolder = m_targetPath; 114 113 … … 169 168 rc = getFilesList(strSettingsFilePath, fullFileList); 170 169 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 // }181 170 182 171 /* … … 266 255 ULONG uTotalWeight = 2; /* The init task and the machine creation is worth one. */ 267 256 268 /* here we fill the lists llMedias and llSaveStateFiles */269 257 queryMediasForAllStates(machineList, uCount, uTotalWeight); 270 258 … … 304 292 } 305 293 294 /* Prepare data for moving ".sav" files */ 306 295 { 307 296 uint64_t totalStateSize = 0; … … 326 315 if (ret.second == true) 327 316 { 317 uCount += 1; 318 uTotalWeight += 1;//just for now (should be correctly evaluated according its size) 328 319 RTPrintf("State file %s was added into the moved list\n", name.c_str()); 329 320 } … … 333 324 } 334 325 335 /* 336 * Move log folder 337 */ 326 /* Prepare data for moving the log files */ 338 327 { 339 328 Utf8Str strFolder = vmFolders[VBox_LogFolder]; … … 344 333 if (SUCCEEDED(rc)) 345 334 { 346 // RTPrintf("total files size in the log folder is %llu\n", totalLogSize);347 348 335 neededFreeSpace += totalLogSize; 349 336 if (totalFreeSpace - neededFreeSpace <= 1024*1024) … … 362 349 actualFileList.add(strFile); 363 350 351 uCount += 1; 352 uTotalWeight += 1;//just for now (should be correctly evaluated according its size) 353 364 354 RTPrintf("The log file %s added into the moved list\n", strFile.c_str()); 365 355 ++it; … … 377 367 /* Init both Progress instances */ 378 368 { 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(), 383 370 static_cast<IMachine*>(m_pMachine) /* aInitiator */, 384 371 Bstr(m_pMachine->tr("Moving Machine")).raw(), … … 397 384 398 385 m_pRollBackProgress.createObject(); 399 rc = m_pRollBackProgress->init( pVirtualBox,386 rc = m_pRollBackProgress->init(m_pMachine->i_getVirtualBox(), 400 387 static_cast<IMachine*>(m_pMachine) /* aInitiator */, 401 388 Bstr(m_pMachine->tr("Moving back Machine")).raw(), … … 454 441 { 455 442 settings::Snapshot snap = (settings::Snapshot)(*it); 456 // RTPrintf("\nSnapshot %s address %#lx\n", snap.strName.c_str(), &(settings::Snapshot)(*it));457 443 RTPrintf("it->uuid = %s , id = %s\n", snap.uuid.toStringCurly().c_str(), id.toStringCurly().c_str()); 458 444 RTPrintf("it->strStateFile = %s , strFile = %s\n", snap.strStateFile.c_str(), strFile.c_str()); … … 477 463 { 478 464 settings::Snapshot snap = (settings::Snapshot)(*it); 479 // RTPrintf("Snapshot %s address %#lx\n", snap.strName.c_str(), &(settings::Snapshot)(*it));480 465 RTPrintf("snap.uuid = %s\n", snap.uuid.toStringCurly().c_str()); 481 466 RTPrintf("snap.strStateFile = %s\n", snap.strStateFile.c_str()); … … 544 529 RTCList<Utf8Str> originalFiles; /* All original files except images */ 545 530 typedef std::map<Utf8Str, ComObjPtr<Medium> > MediumMap; 546 // typedef std::pair<Utf8Str, ComObjPtr<Medium> > MediumPair;547 531 MediumMap mapOriginalMedium; 548 532 … … 583 567 { 584 568 RTPrintf("0 Print all state files\n"); 585 // Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();586 // settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;587 569 taskMoveVM->printStateFile(taskMoveVM->m_pMachine->mData->pMachineConfigFile->llFirstSnapshot); 588 570 } … … 650 632 { 651 633 RTPrintf("\n1 Print all state files\n"); 652 // Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();653 // settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;654 634 taskMoveVM->printStateFile(taskMoveVM->m_pMachine->mData->pMachineConfigFile->llFirstSnapshot); 655 635 } … … 691 671 RTPrintf("\n2 Print all state files\n"); 692 672 Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data(); 693 // settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;694 673 RTPrintf("\nmachineData->m_strConfigFileFull = %s\n", machineData->m_strConfigFileFull.c_str()); 695 674 RTPrintf("\nmachineData->m_strConfigFile = %s\n", machineData->m_strConfigFile.c_str()); … … 697 676 } 698 677 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 699 738 /* save all VM data */ 700 739 { … … 706 745 RTPrintf("\n3 Print all state files\n"); 707 746 Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data(); 708 // settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;709 747 710 748 Utf8Str strTargetSettingsFilePath = strTargetFolder; … … 733 771 { 734 772 RTPrintf("\n4 Print all state files\n"); 735 // Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data();736 // settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;737 773 taskMoveVM->printStateFile(taskMoveVM->m_pMachine->mData->pMachineConfigFile->llFirstSnapshot); 738 774 } … … 766 802 RTPrintf("\nFailed: Print all state files\n"); 767 803 Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data(); 768 // settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;769 804 RTPrintf("\nmachineData->m_strConfigFileFull = %s\n", machineData->m_strConfigFileFull.c_str()); 770 805 RTPrintf("\nmachineData->m_strConfigFile = %s\n", machineData->m_strConfigFile.c_str()); … … 776 811 if (FAILED(rc)) 777 812 RTPrintf("Can't delete all new files."); 813 814 RTDirRemove(strTargetFolder.c_str()); 778 815 779 816 /* Restoring the original mediums */ … … 809 846 RTPrintf("\nFailed: Print all state files\n"); 810 847 Machine::Data *machineData = taskMoveVM->m_pMachine->mData.data(); 811 // settings::MachineConfigFile *machineConfFile = machineData->pMachineConfigFile;812 848 813 849 Utf8Str strOriginalSettingsFilePath = taskMoveVM->vmFolders[VBox_SettingFolder];
Note:
See TracChangeset
for help on using the changeset viewer.