VirtualBox

source: vbox/trunk/src/VBox/Main/include/MachineImplMoveVM.h@ 71998

Last change on this file since 71998 was 71998, checked in by vboxsync, 7 years ago

bugref:8345. Fixed the case when user omits or forgets to point the type of move.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1/* $Id: MachineImplMoveVM.h 71998 2018-04-24 08:12:20Z vboxsync $ */
2/** @file
3 * Definition of MachineMoveVM
4 */
5
6/*
7 * Copyright (C) 2011-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ____H_MACHINEIMPLMOVEVM
19#define ____H_MACHINEIMPLMOVEVM
20
21#include "MachineImpl.h"
22#include "ProgressImpl.h"
23#include "ThreadTask.h"
24
25/////////////////////////////////////////////////////////////////////////////
26
27enum VBoxFolder_t
28{
29 VBox_UnknownFolderType = 0,
30 VBox_OutsideVMfolder,
31 VBox_SettingFolder,
32 VBox_LogFolder,
33 VBox_StateFolder,
34 VBox_SnapshotFolder
35};
36
37typedef struct
38{
39 bool fSnapshot;
40 Utf8Str strBaseName;
41 ComPtr<IMedium> pMedium;
42 uint32_t uIdx;
43 ULONG uWeight;
44} MEDIUMTASKMOVE;
45
46typedef struct
47{
48 RTCList<MEDIUMTASKMOVE> chain;
49 DeviceType_T devType;
50 bool fCreateDiffs;
51 bool fAttachLinked;
52} MEDIUMTASKCHAINMOVE;
53
54typedef struct
55{
56 Guid snapshotUuid;
57 Utf8Str strSaveStateFile;
58 ULONG uWeight;
59} SAVESTATETASKMOVE;
60
61struct fileList_t;
62
63class MachineMoveVM : public ThreadTask
64{
65 struct ErrorInfoItem
66 {
67 ErrorInfoItem(HRESULT aCode, const char* aDescription):
68 m_code(aCode),
69 m_description(aDescription == NULL ? "There is no description" : aDescription)
70 {
71 }
72
73 void printItem(bool fLog) const;
74
75 HRESULT m_code;
76 Utf8Str m_description;
77 };
78
79 RTCList<MEDIUMTASKCHAINMOVE> llMedias;
80 RTCList<SAVESTATETASKMOVE> llSaveStateFiles;
81 std::map<Utf8Str, MEDIUMTASKMOVE> finalMediumsMap;
82 std::map<Utf8Str, SAVESTATETASKMOVE> finalSaveStateFilesMap;
83 std::map<VBoxFolder_t, Utf8Str> vmFolders;
84 std::list<ErrorInfoItem> errorsList;
85
86 ComObjPtr<Machine> m_pMachine;
87 ComObjPtr<Progress> m_pProgress;
88 ComObjPtr<Progress> m_pRollBackProgress;
89 ComPtr<ISession> m_pSession;
90 ComPtr<IMachine> m_pSessionMachine;
91 Utf8Str m_targetPath;
92 Utf8Str m_type;
93 HRESULT result;
94
95public:
96 MachineMoveVM(ComObjPtr<Machine> aMachine,
97 const com::Utf8Str &aTargetPath,
98 const com::Utf8Str &aType,
99 ComObjPtr<Progress> &aProgress)
100 : ThreadTask("TaskMoveVM"),
101 m_pMachine(aMachine),
102 m_pProgress(aProgress),
103 m_targetPath(aTargetPath),
104 m_type (aType.isEmpty() == true ? "basic" : aType),
105 result(S_OK)
106 {
107 }
108
109 virtual ~MachineMoveVM()
110 {
111 }
112
113 HRESULT init();
114 static DECLCALLBACK(int) updateProgress(unsigned uPercent, void *pvUser);
115 static DECLCALLBACK(int) copyFileProgress(unsigned uPercentage, void *pvUser);
116 static void i_MoveVMThreadTask(MachineMoveVM* task);
117
118 void handler()
119 {
120 i_MoveVMThreadTask(this);
121 }
122
123 /* MachineCloneVM::start helper: */
124 HRESULT createMachineList(const ComPtr<ISnapshot> &pSnapshot, std::vector< ComObjPtr<Machine> > &aMachineList) const;
125 inline HRESULT queryBaseName(const ComPtr<IMedium> &pMedium, Utf8Str &strBaseName) const;
126 HRESULT queryMediasForAllStates(const std::vector<ComObjPtr<Machine> > &aMachineList);
127 void updateProgressStats(MEDIUMTASKCHAINMOVE &mtc, ULONG &uCount, ULONG &uTotalWeight) const;
128 HRESULT addSaveState(const ComObjPtr<Machine> &machine);
129 void printStateFile(settings::SnapshotsList &snl);
130 HRESULT getFilesList(const Utf8Str& strRootFolder, fileList_t &filesList);
131 HRESULT getFolderSize(const Utf8Str& strRootFolder, uint64_t& size);
132 HRESULT deleteFiles(const RTCList<Utf8Str>& listOfFiles);
133 HRESULT updatePathsToStateFiles(const std::map<Utf8Str, SAVESTATETASKMOVE>& listOfFiles,
134 const Utf8Str& sourcePath, const Utf8Str& targetPath);
135 HRESULT moveAllDisks(const std::map<Utf8Str, MEDIUMTASKMOVE>& listOfDisks, const Utf8Str* strTargetFolder = NULL);
136 HRESULT restoreAllDisks(const std::map<Utf8Str, MEDIUMTASKMOVE>& listOfDisks);
137 bool isMediumTypeSupportedForMoving(const ComPtr<IMedium> &pMedium);
138};
139
140#endif // ____H_MACHINEIMPLMOVEVM
141/* vi: set tabstop=4 shiftwidth=4 expandtab: */
142
Note: See TracBrowser for help on using the repository browser.

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