2023-01-24 15:29:31 +01:00
|
|
|
|
/* Copyright (c) Cloud Software Group, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms,
|
|
|
|
|
* with or without modification, are permitted provided
|
|
|
|
|
* that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* * Redistributions of source code must retain the above
|
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
|
* following disclaimer.
|
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
|
* following disclaimer in the documentation and/or other
|
|
|
|
|
* materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2016-11-03 16:35:25 +01:00
|
|
|
|
using XenAdmin.Actions;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
using XenAdmin.Actions.VMActions;
|
|
|
|
|
using XenAdmin.Commands;
|
|
|
|
|
using XenAdmin.Controls;
|
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAdmin.Dialogs;
|
|
|
|
|
using XenAdmin.Mappings;
|
|
|
|
|
using XenAdmin.Network;
|
|
|
|
|
using XenAdmin.Wizards.GenericPages;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Wizards.CrossPoolMigrateWizard
|
|
|
|
|
{
|
2015-03-17 17:35:12 +01:00
|
|
|
|
public enum WizardMode { Migrate, Move, Copy }
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
internal partial class CrossPoolMigrateWizard : XenWizardBase
|
2021-10-27 15:34:10 +02:00
|
|
|
|
{
|
2013-06-24 13:41:48 +02:00
|
|
|
|
private CrossPoolMigrateDestinationPage m_pageDestination;
|
|
|
|
|
private CrossPoolMigrateStoragePage m_pageStorage;
|
|
|
|
|
private CrossPoolMigrateNetworkingPage m_pageNetwork;
|
|
|
|
|
private CrossPoolMigrateFinishPage m_pageFinish;
|
|
|
|
|
private CrossPoolMigrateTransferNetworkPage m_pageTransferNetwork;
|
|
|
|
|
private RBACWarningPage m_pageTargetRbac;
|
|
|
|
|
|
2015-03-31 16:13:46 +02:00
|
|
|
|
private CrossPoolMigrateCopyModePage m_pageCopyMode;
|
|
|
|
|
private IntraPoolCopyPage m_pageIntraPoolCopy;
|
|
|
|
|
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
private IXenConnection TargetConnection { get; set; }
|
|
|
|
|
|
2021-10-27 15:34:10 +02:00
|
|
|
|
private Dictionary<string, VmMapping> m_vmMappings = new Dictionary<string, VmMapping>();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
private Host hostPreSelection = null;
|
|
|
|
|
|
2015-03-17 17:35:12 +01:00
|
|
|
|
private WizardMode wizardMode;
|
|
|
|
|
|
2021-10-27 15:34:10 +02:00
|
|
|
|
private bool _resumeAfterMigrate;
|
2016-11-03 16:35:25 +01:00
|
|
|
|
|
|
|
|
|
// Note that resumeAfter is currently only implemented for Migrate mode, used for resume on server functionality
|
2021-10-27 15:34:10 +02:00
|
|
|
|
public CrossPoolMigrateWizard(IXenConnection con, SelectedItemCollection selection, Host targetHostPreSelection, WizardMode mode, bool resumeAfterMigrate = false)
|
|
|
|
|
: base(con)
|
|
|
|
|
{
|
2013-06-24 13:41:48 +02:00
|
|
|
|
InitializeComponent();
|
|
|
|
|
hostPreSelection = targetHostPreSelection;
|
2021-10-27 15:34:10 +02:00
|
|
|
|
wizardMode = mode;
|
|
|
|
|
InitialiseWizard(selection);
|
|
|
|
|
_resumeAfterMigrate = resumeAfterMigrate;
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2016-02-24 11:44:37 +01:00
|
|
|
|
private bool HasTemplatesOnly { get; set; }
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
private bool IsIntraPoolMigration()
|
|
|
|
|
{
|
|
|
|
|
return m_vmMappings.All(IsIntraPoolMigration);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool IsIntraPoolMigration(KeyValuePair<string, VmMapping> mapping)
|
|
|
|
|
{
|
|
|
|
|
VM vm = xenConnection.Resolve(new XenRef<VM>(mapping.Key));
|
|
|
|
|
if (vm.resident_on == mapping.Value.XenRef)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
Pool pool = Helpers.GetPool(vm.Connection);
|
|
|
|
|
if (mapping.Value.XenRef is XenRef<Pool>)
|
|
|
|
|
{
|
|
|
|
|
Pool targetPool = TargetConnection.Resolve(mapping.Value.XenRef as XenRef<Pool>);
|
2021-10-27 15:34:10 +02:00
|
|
|
|
if (pool == targetPool)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-31 12:31:16 +02:00
|
|
|
|
Host host = xenConnection.Resolve(vm.resident_on) ?? Helpers.GetCoordinator(xenConnection);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
if (mapping.Value.XenRef is XenRef<Host>)
|
|
|
|
|
{
|
|
|
|
|
Host targetHost = TargetConnection.Resolve(mapping.Value.XenRef as XenRef<Host>);
|
|
|
|
|
Pool targetPool = Helpers.GetPool(targetHost.Connection);
|
|
|
|
|
|
|
|
|
|
// 2 stand alone hosts
|
2021-10-27 15:34:10 +02:00
|
|
|
|
if (pool == null && targetPool == null)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2021-10-27 15:34:10 +02:00
|
|
|
|
if (targetHost == host)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-10-27 15:34:10 +02:00
|
|
|
|
|
|
|
|
|
if (pool == targetPool)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 15:34:10 +02:00
|
|
|
|
private bool IsStorageMotion(KeyValuePair<string, VmMapping> mapping)
|
|
|
|
|
{
|
|
|
|
|
if (!IsIntraPoolMigration(mapping))
|
|
|
|
|
return true;
|
2018-11-16 17:39:52 +01:00
|
|
|
|
|
2021-10-27 15:34:10 +02:00
|
|
|
|
if (mapping.Value.Storage == null)
|
|
|
|
|
return false;
|
2018-11-16 17:39:52 +01:00
|
|
|
|
|
|
|
|
|
foreach (var vdiMapping in mapping.Value.Storage)
|
2021-10-27 15:34:10 +02:00
|
|
|
|
{
|
|
|
|
|
var vdi = xenConnection.Resolve(new XenRef<VDI>(vdiMapping.Key));
|
|
|
|
|
if (vdi.SR.opaque_ref != vdiMapping.Value.opaque_ref)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2018-11-16 17:39:52 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-31 15:27:04 +02:00
|
|
|
|
private bool IsIntraPoolMove()
|
|
|
|
|
{
|
|
|
|
|
return wizardMode == WizardMode.Move && m_vmMappings.All(IsIntraPoolMove);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool IsIntraPoolMove(KeyValuePair<string, VmMapping> mapping)
|
|
|
|
|
{
|
|
|
|
|
VM vm = xenConnection.Resolve(new XenRef<VM>(mapping.Key));
|
2017-09-03 04:33:29 +02:00
|
|
|
|
return vm != null && vm.CanBeMoved() && IsIntraPoolMigration(mapping);
|
2015-03-31 15:27:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-31 18:40:05 +02:00
|
|
|
|
private bool IsCopyTemplate()
|
|
|
|
|
{
|
|
|
|
|
return wizardMode == WizardMode.Copy && m_vmMappings.Any(IsTemplate);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool IsTemplate(KeyValuePair<string, VmMapping> mapping)
|
|
|
|
|
{
|
|
|
|
|
VM vm = xenConnection.Resolve(new XenRef<VM>(mapping.Key));
|
2015-04-15 10:37:12 +02:00
|
|
|
|
return vm != null && vm.is_a_template;
|
2015-03-31 18:40:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-06-07 11:37:58 +02:00
|
|
|
|
private void InitialiseWizard(SelectedItemCollection selection)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2018-06-07 11:37:58 +02:00
|
|
|
|
var vmsFromSelection = new List<VM>();
|
2016-02-24 11:44:37 +01:00
|
|
|
|
|
2018-06-07 11:37:58 +02:00
|
|
|
|
foreach (var item in selection)
|
|
|
|
|
{
|
|
|
|
|
var vm = item.XenObject as VM;
|
|
|
|
|
if (vm == null)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
vmsFromSelection.Add(vm);
|
2022-04-05 23:24:11 +02:00
|
|
|
|
m_vmMappings.Add(item.XenObject.opaque_ref, new VmMapping(item.XenObject.opaque_ref) {VmNameLabel = item.XenObject.Name()});
|
2018-06-07 11:37:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HasTemplatesOnly = vmsFromSelection.Count > 0 && vmsFromSelection.All(vm => vm.is_a_template);
|
2016-02-24 11:44:37 +01:00
|
|
|
|
|
2015-03-31 18:40:05 +02:00
|
|
|
|
UpdateWindowTitle();
|
2018-06-07 11:37:58 +02:00
|
|
|
|
|
2021-10-27 15:34:10 +02:00
|
|
|
|
m_pageDestination = new CrossPoolMigrateDestinationPage(vmsFromSelection,
|
2018-06-07 11:37:58 +02:00
|
|
|
|
wizardMode, GetSourceConnectionsForSelection(selection))
|
|
|
|
|
{
|
|
|
|
|
VmMappings = m_vmMappings,
|
|
|
|
|
Connection = selection.GetConnectionOfFirstItem()
|
|
|
|
|
};
|
2022-07-18 16:27:58 +02:00
|
|
|
|
m_pageDestination.SelectedTarget = hostPreSelection;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2016-03-01 19:12:16 +01:00
|
|
|
|
m_pageStorage = new CrossPoolMigrateStoragePage(wizardMode);
|
2016-02-26 19:21:51 +01:00
|
|
|
|
m_pageNetwork = new CrossPoolMigrateNetworkingPage(HasTemplatesOnly, wizardMode);
|
|
|
|
|
m_pageTransferNetwork = new CrossPoolMigrateTransferNetworkPage(vmsFromSelection, HasTemplatesOnly, wizardMode);
|
2016-02-24 11:44:37 +01:00
|
|
|
|
m_pageFinish = new CrossPoolMigrateFinishPage(selection.Count(), wizardMode, HasTemplatesOnly) { SummaryRetreiver = GetVMMappingSummary };
|
2013-06-24 13:41:48 +02:00
|
|
|
|
m_pageTargetRbac = new RBACWarningPage();
|
|
|
|
|
|
2016-02-24 11:44:37 +01:00
|
|
|
|
m_pageCopyMode = new CrossPoolMigrateCopyModePage(vmsFromSelection);
|
|
|
|
|
m_pageIntraPoolCopy = new IntraPoolCopyPage(vmsFromSelection);
|
2015-03-31 16:13:46 +02:00
|
|
|
|
|
|
|
|
|
if (wizardMode == WizardMode.Copy)
|
2015-04-21 15:30:41 +02:00
|
|
|
|
AddPages(m_pageCopyMode, m_pageIntraPoolCopy);
|
2015-03-31 16:13:46 +02:00
|
|
|
|
else
|
|
|
|
|
AddPages(m_pageDestination, m_pageStorage, m_pageFinish);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-07 11:37:58 +02:00
|
|
|
|
public sealed override string Text
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
get { return base.Text; }
|
|
|
|
|
set { base.Text = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void FinishWizard()
|
|
|
|
|
{
|
2013-11-19 18:02:02 +01:00
|
|
|
|
if (!AllVMsAvailable(m_vmMappings, xenConnection))
|
|
|
|
|
{
|
|
|
|
|
base.FinishWizard();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-31 16:13:46 +02:00
|
|
|
|
if (wizardMode == WizardMode.Copy && m_pageCopyMode.IntraPoolCopySelected)
|
|
|
|
|
{
|
2016-09-29 13:40:35 +02:00
|
|
|
|
if (m_pageIntraPoolCopy.CloneVM)
|
|
|
|
|
new VMCloneAction(m_pageIntraPoolCopy.TheVM, m_pageIntraPoolCopy.NewVmName, m_pageIntraPoolCopy.NewVMmDescription).RunAsync();
|
|
|
|
|
|
|
|
|
|
else if (m_pageIntraPoolCopy.SelectedSR != null)
|
|
|
|
|
new VMCopyAction(m_pageIntraPoolCopy.TheVM, m_pageIntraPoolCopy.TheVM.GetStorageHost(false),
|
|
|
|
|
m_pageIntraPoolCopy.SelectedSR, m_pageIntraPoolCopy.NewVmName, m_pageIntraPoolCopy.NewVMmDescription).RunAsync();
|
2021-10-27 15:34:10 +02:00
|
|
|
|
|
2015-03-31 16:13:46 +02:00
|
|
|
|
base.FinishWizard();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
foreach (KeyValuePair<string, VmMapping> pair in m_vmMappings)
|
|
|
|
|
{
|
|
|
|
|
VM vm = xenConnection.Resolve(new XenRef<VM>(pair.Key));
|
2021-10-27 15:34:10 +02:00
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
Host target = TargetConnection.Resolve(m_vmMappings[pair.Key].XenRef as XenRef<Host>);
|
|
|
|
|
|
|
|
|
|
//if a pool has been selected but no specific homeserver Key is the pool opaque ref
|
2021-10-27 15:34:10 +02:00
|
|
|
|
if (target == null)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
Pool targetPool = TargetConnection.Resolve(m_vmMappings[pair.Key].XenRef as XenRef<Pool>);
|
|
|
|
|
|
|
|
|
|
if (targetPool == null)
|
|
|
|
|
{
|
|
|
|
|
ShowErrorMessageBox(Messages.CPM_WIZARD_ERROR_TARGET_DISCONNECTED);
|
|
|
|
|
base.FinishWizard();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-10-27 15:34:10 +02:00
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
target = TargetConnection.Resolve(targetPool.master);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 15:34:10 +02:00
|
|
|
|
if (target == null)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
throw new ApplicationException("Cannot resolve the target host");
|
|
|
|
|
|
2015-03-31 15:27:04 +02:00
|
|
|
|
if (wizardMode == WizardMode.Move && IsIntraPoolMove(pair))
|
2018-11-22 12:32:14 +01:00
|
|
|
|
{
|
|
|
|
|
// check if there is actually something to be moved
|
|
|
|
|
var moveStorage = false;
|
|
|
|
|
foreach (var storageMapping in pair.Value.Storage.Where(sm => sm.Value != null))
|
|
|
|
|
{
|
|
|
|
|
var vdi = vm.Connection.Resolve(new XenRef<VDI>(storageMapping.Key));
|
|
|
|
|
if (vdi != null && vdi.SR.opaque_ref != storageMapping.Value.opaque_ref)
|
|
|
|
|
{
|
|
|
|
|
moveStorage = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (moveStorage)
|
2018-07-16 23:06:58 +02:00
|
|
|
|
new VMMoveAction(vm, pair.Value.Storage, target).RunAsync();
|
2018-11-22 12:32:14 +01:00
|
|
|
|
}
|
2016-11-03 16:35:25 +01:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var isCopy = wizardMode == WizardMode.Copy;
|
2018-11-16 17:39:52 +01:00
|
|
|
|
AsyncAction migrateAction;
|
|
|
|
|
if (isCopy || IsStorageMotion(pair))
|
2023-12-30 18:57:01 +01:00
|
|
|
|
migrateAction = new VMCrossPoolMigrateAction(vm, target, SelectedTransferNetwork, pair.Value, isCopy);
|
2018-11-16 17:39:52 +01:00
|
|
|
|
else
|
|
|
|
|
migrateAction = new VMMigrateAction(vm, target);
|
2016-11-03 16:35:25 +01:00
|
|
|
|
|
|
|
|
|
if (_resumeAfterMigrate)
|
|
|
|
|
{
|
|
|
|
|
var title = VMCrossPoolMigrateAction.GetTitle(vm, target, isCopy);
|
2021-10-27 15:34:10 +02:00
|
|
|
|
var startDescription = isCopy ? Messages.ACTION_VM_COPYING : Messages.ACTION_VM_MIGRATING;
|
|
|
|
|
var endDescription = isCopy ? Messages.ACTION_VM_COPIED : Messages.ACTION_VM_MIGRATED;
|
2016-11-03 16:35:25 +01:00
|
|
|
|
|
|
|
|
|
var actions = new List<AsyncAction>()
|
|
|
|
|
{
|
2016-11-08 17:05:51 +01:00
|
|
|
|
migrateAction,
|
2016-11-03 16:35:25 +01:00
|
|
|
|
new ResumeAndStartVMsAction(vm.Connection, target, new List<VM>{vm}, new List<VM>(), null, null)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
new MultipleAction(vm.Connection, title, startDescription, endDescription,
|
2016-11-08 17:05:51 +01:00
|
|
|
|
actions, true, false, true).RunAsync();
|
2016-11-03 16:35:25 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-11-08 17:05:51 +01:00
|
|
|
|
migrateAction.RunAsync();
|
2016-11-03 16:35:25 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
2021-10-27 15:34:10 +02:00
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
base.FinishWizard();
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-19 15:30:38 +01:00
|
|
|
|
private static void ShowErrorMessageBox(string message)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2020-04-22 15:47:03 +02:00
|
|
|
|
using (var dlg = new ErrorDialog(message))
|
2016-06-20 11:49:12 +02:00
|
|
|
|
dlg.ShowDialog(Program.MainWindow);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 15:34:10 +02:00
|
|
|
|
private List<IXenConnection> GetSourceConnectionsForSelection(IEnumerable<SelectedItem> selection)
|
2015-12-01 12:29:06 +01:00
|
|
|
|
{
|
2021-10-27 15:34:10 +02:00
|
|
|
|
return
|
|
|
|
|
wizardMode == WizardMode.Copy
|
|
|
|
|
? selection.Select(item => item.Connection).Where(conn => conn != null).Distinct().ToList()
|
|
|
|
|
: new List<IXenConnection>();
|
2015-12-01 12:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-31 18:40:05 +02:00
|
|
|
|
private void UpdateWindowTitle()
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2021-10-27 15:34:10 +02:00
|
|
|
|
if (m_vmMappings != null && m_vmMappings.Count > 0 && !string.IsNullOrEmpty(m_vmMappings.First().Value.TargetName))
|
2015-03-17 17:35:12 +01:00
|
|
|
|
{
|
|
|
|
|
var messageText = wizardMode == WizardMode.Migrate
|
|
|
|
|
? Messages.CPM_WIZARD_TITLE_AND_LOCATION
|
2021-10-27 15:34:10 +02:00
|
|
|
|
: wizardMode == WizardMode.Move
|
2015-03-31 18:40:05 +02:00
|
|
|
|
? Messages.MOVE_VM_WIZARD_TITLE_AND_LOCATION
|
|
|
|
|
: IsCopyTemplate() ? Messages.COPY_TEMPLATE_WIZARD_TITLE_AND_LOCATION : Messages.COPY_VM_WIZARD_TITLE_AND_LOCATION;
|
2015-03-17 17:35:12 +01:00
|
|
|
|
Text = String.Format(messageText, m_vmMappings.First().Value.TargetName);
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
else
|
2015-03-17 17:35:12 +01:00
|
|
|
|
Text = wizardMode == WizardMode.Migrate
|
2021-10-27 15:34:10 +02:00
|
|
|
|
? Messages.CPM_WIZARD_TITLE
|
|
|
|
|
: wizardMode == WizardMode.Move
|
|
|
|
|
? Messages.MOVE_VM_WIZARD_TITLE
|
2015-03-31 18:40:05 +02:00
|
|
|
|
: IsCopyTemplate() ? Messages.COPY_TEMPLATE_WIZARD_TITLE : Messages.COPY_VM_WIZARD_TITLE;
|
2018-07-16 23:06:58 +02:00
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateWizardContent(XenTabPage page)
|
|
|
|
|
{
|
2021-10-27 15:34:10 +02:00
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
Type type = page.GetType();
|
2021-10-27 15:34:10 +02:00
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
if (type == typeof(CrossPoolMigrateDestinationPage))
|
|
|
|
|
{
|
|
|
|
|
RemovePage(m_pageNetwork);
|
2015-03-24 18:14:03 +01:00
|
|
|
|
RemovePage(m_pageTransferNetwork);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
RemovePage(m_pageTargetRbac);
|
|
|
|
|
m_vmMappings = m_pageDestination.VmMappings;
|
2022-07-18 16:27:58 +02:00
|
|
|
|
TargetConnection = m_pageDestination.SelectedTargetPool?.Connection;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
m_pageStorage.TargetConnection = TargetConnection;
|
|
|
|
|
m_pageNetwork.TargetConnection = TargetConnection;
|
2021-10-27 15:34:10 +02:00
|
|
|
|
|
2021-10-28 14:46:00 +02:00
|
|
|
|
if (Helpers.ConnectionRequiresRbac(xenConnection) || Helpers.ConnectionRequiresRbac(TargetConnection))
|
2021-10-27 15:34:10 +02:00
|
|
|
|
{
|
2021-11-17 23:11:15 +01:00
|
|
|
|
var message = wizardMode == WizardMode.Copy
|
|
|
|
|
? m_vmMappings.Any(IsTemplate)
|
|
|
|
|
? Messages.RBAC_CROSS_POOL_COPY_TEMPLATE_BLOCKED
|
|
|
|
|
: Messages.RBAC_CROSS_POOL_COPY_VM_BLOCKED
|
|
|
|
|
: m_vmMappings.Any(IsTemplate)
|
|
|
|
|
? Messages.RBAC_CROSS_POOL_MIGRATE_TEMPLATE_BLOCKED
|
|
|
|
|
: Messages.RBAC_CROSS_POOL_MIGRATE_VM_BLOCKED;
|
|
|
|
|
|
|
|
|
|
m_pageTargetRbac.SetPermissionChecks(new List<IXenConnection> {xenConnection, TargetConnection},
|
|
|
|
|
new WizardRbacCheck(message, VMCrossPoolMigrateAction.StaticRBACDependencies) {Blocking = true});
|
2021-10-27 15:34:10 +02:00
|
|
|
|
AddAfterPage(m_pageDestination, m_pageTargetRbac);
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-31 18:40:05 +02:00
|
|
|
|
UpdateWindowTitle();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2015-04-15 10:37:12 +02:00
|
|
|
|
// add Transfer network page for all cases except intra-pool move (which is performed via VMMoveAction)
|
|
|
|
|
if (!IsIntraPoolMove())
|
2015-03-24 18:14:03 +01:00
|
|
|
|
AddAfterPage(m_pageStorage, m_pageTransferNetwork);
|
|
|
|
|
m_pageTransferNetwork.Connection = TargetConnection;
|
|
|
|
|
|
2021-10-27 15:34:10 +02:00
|
|
|
|
if (!IsIntraPoolMigration())
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
AddAfterPage(m_pageStorage, m_pageNetwork);
|
|
|
|
|
}
|
|
|
|
|
//If no network mappings xapi should map the networks
|
|
|
|
|
//with the same names together - ideal for intra-pool
|
|
|
|
|
ClearAllNetworkMappings();
|
|
|
|
|
m_pageStorage.VmMappings = m_vmMappings;
|
|
|
|
|
}
|
|
|
|
|
else if (type == typeof(CrossPoolMigrateStoragePage))
|
|
|
|
|
{
|
2015-03-31 18:40:05 +02:00
|
|
|
|
UpdateWindowTitle();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
m_vmMappings = m_pageStorage.VmMappings;
|
|
|
|
|
m_pageNetwork.VmMappings = m_vmMappings;
|
|
|
|
|
}
|
|
|
|
|
else if (type == typeof(CrossPoolMigrateNetworkingPage))
|
|
|
|
|
{
|
2015-03-31 18:40:05 +02:00
|
|
|
|
UpdateWindowTitle();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
m_vmMappings = m_pageNetwork.VmMappings;
|
|
|
|
|
}
|
|
|
|
|
else if (type == typeof(CrossPoolMigrateTransferNetworkPage))
|
|
|
|
|
{
|
2015-03-31 18:40:05 +02:00
|
|
|
|
UpdateWindowTitle();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
string netRef = m_pageTransferNetwork.NetworkUuid.Key;
|
|
|
|
|
SelectedTransferNetwork = TargetConnection.Cache.Networks.FirstOrDefault(n => n.uuid == netRef);
|
|
|
|
|
}
|
2015-03-31 16:13:46 +02:00
|
|
|
|
else if (type == typeof(CrossPoolMigrateCopyModePage))
|
|
|
|
|
{
|
|
|
|
|
if (m_pageCopyMode.IntraPoolCopySelected)
|
|
|
|
|
{
|
|
|
|
|
RemovePagesFrom(1);
|
2015-04-21 15:30:41 +02:00
|
|
|
|
AddAfterPage(m_pageCopyMode, m_pageIntraPoolCopy);
|
2021-10-28 14:46:00 +02:00
|
|
|
|
if (Helpers.ConnectionRequiresRbac(xenConnection))
|
2021-10-27 15:34:10 +02:00
|
|
|
|
{
|
2021-11-17 23:11:15 +01:00
|
|
|
|
var message = m_vmMappings.Any(IsTemplate)
|
|
|
|
|
? Messages.RBAC_INTRA_POOL_COPY_TEMPLATE_BLOCKED
|
|
|
|
|
: Messages.RBAC_INTRA_POOL_COPY_VM_BLOCKED;
|
|
|
|
|
|
|
|
|
|
var rbac = new RbacMethodList();
|
|
|
|
|
rbac.AddRange(VMCopyAction.StaticRBACDependencies);
|
|
|
|
|
rbac.AddRange(VMCloneAction.StaticRBACDependencies);
|
|
|
|
|
rbac.AddRange(SrRefreshAction.StaticRBACDependencies);
|
|
|
|
|
|
|
|
|
|
m_pageTargetRbac.SetPermissionChecks(xenConnection,
|
|
|
|
|
new WizardRbacCheck(message, rbac) {Blocking = true});
|
2021-10-27 15:34:10 +02:00
|
|
|
|
AddAfterPage(m_pageCopyMode, m_pageTargetRbac);
|
|
|
|
|
}
|
2015-03-31 16:13:46 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
RemovePagesFrom(1);
|
|
|
|
|
AddAfterPage(m_pageCopyMode, m_pageDestination, m_pageStorage, m_pageFinish);
|
2021-11-22 22:35:46 +01:00
|
|
|
|
if (Helpers.ConnectionRequiresRbac(xenConnection))
|
|
|
|
|
{
|
|
|
|
|
var message = m_vmMappings.Any(IsTemplate)
|
|
|
|
|
? Messages.RBAC_CROSS_POOL_COPY_TEMPLATE_BLOCKED
|
|
|
|
|
: Messages.RBAC_CROSS_POOL_COPY_VM_BLOCKED;
|
|
|
|
|
|
|
|
|
|
m_pageTargetRbac.SetPermissionChecks(new List<IXenConnection> {xenConnection},
|
|
|
|
|
new WizardRbacCheck(message, VMCrossPoolMigrateAction.StaticRBACDependencies) {Blocking = true});
|
|
|
|
|
|
|
|
|
|
AddAfterPage(m_pageCopyMode, m_pageTargetRbac);
|
|
|
|
|
}
|
2015-03-31 16:13:46 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
if (type != typeof(CrossPoolMigrateFinishPage))
|
|
|
|
|
NotifyNextPagesOfChange(m_pageDestination, m_pageStorage, m_pageNetwork, m_pageTransferNetwork, m_pageFinish);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private XenAPI.Network SelectedTransferNetwork { get; set; }
|
|
|
|
|
|
|
|
|
|
private void ClearAllNetworkMappings()
|
|
|
|
|
{
|
|
|
|
|
foreach (KeyValuePair<string, VmMapping> pair in m_vmMappings)
|
|
|
|
|
pair.Value.Networks = new Dictionary<string, XenAPI.Network>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string WizardPaneHelpID()
|
|
|
|
|
{
|
|
|
|
|
return FormatHelpId(CurrentStepTabPage.HelpID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IEnumerable<SummaryDetails> GetVMMappingSummary()
|
|
|
|
|
{
|
|
|
|
|
//Use decorators to build a summary
|
|
|
|
|
MappingSummary summary = new VMMappingSummary();
|
|
|
|
|
foreach (KeyValuePair<string, VmMapping> pair in m_vmMappings)
|
|
|
|
|
{
|
2016-02-24 11:44:37 +01:00
|
|
|
|
if (HasTemplatesOnly)
|
|
|
|
|
summary = new TemplateTitleSummary(summary, pair.Value);
|
|
|
|
|
else
|
|
|
|
|
summary = new VmTitleSummary(summary, pair.Value);
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
summary = new DestinationPoolSummary(summary, pair.Value, TargetConnection);
|
|
|
|
|
summary = new TransferNetworkSummary(summary, m_pageTransferNetwork.NetworkUuid.Value);
|
|
|
|
|
summary = new StorageSummary(summary, pair.Value, xenConnection);
|
2021-10-27 15:34:10 +02:00
|
|
|
|
summary = new NetworkSummary(summary, pair.Value, xenConnection);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
summary = new SummarySplitter(summary);
|
|
|
|
|
}
|
|
|
|
|
return summary.Details;
|
|
|
|
|
}
|
2013-11-19 18:02:02 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks if all VMs are still available for migration and shows a warning message if the check fails
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>true if check succeded, false if failed</returns>
|
|
|
|
|
internal static bool AllVMsAvailable(List<VM> vms)
|
|
|
|
|
{
|
|
|
|
|
Func<bool> vmCheck = delegate
|
|
|
|
|
{
|
|
|
|
|
if (vms == null || vms.Count == 0 || vms[0] == null || vms[0].Connection == null)
|
|
|
|
|
return false;
|
|
|
|
|
var connection = vms[0].Connection; // the connection on which to check VM availability
|
|
|
|
|
return vms.All(vm => connection.Resolve(new XenRef<VM>(vm.opaque_ref)) != null);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return PerformCheck(vmCheck);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks if all VMs are still available for migration and shows a warning message if the check fails
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>true if check succeded, false if failed</returns>
|
|
|
|
|
internal static bool AllVMsAvailable(Dictionary<string, VmMapping> vmMappings, IXenConnection connection)
|
|
|
|
|
{
|
|
|
|
|
Func<bool> vmCheck = delegate
|
|
|
|
|
{
|
|
|
|
|
if (vmMappings == null || vmMappings.Count == 0 || connection == null)
|
|
|
|
|
return false;
|
|
|
|
|
return vmMappings.All(kvp => connection.Resolve(new XenRef<VM>(kvp.Key)) != null);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return PerformCheck(vmCheck);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Performs a certain check and shows a warning message if the check fails
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="check">The check to perform</param>
|
2020-04-22 15:47:03 +02:00
|
|
|
|
/// <returns>true if check succeeded, false if failed</returns>
|
2013-11-19 18:02:02 +01:00
|
|
|
|
private static bool PerformCheck(Func<bool> check)
|
|
|
|
|
{
|
|
|
|
|
if (check())
|
|
|
|
|
return true;
|
2021-03-16 02:50:45 +01:00
|
|
|
|
ShowErrorMessageBox(string.Format(Messages.CPM_WIZARD_VM_MISSING_ERROR, BrandManager.BrandConsole));
|
2013-11-19 18:02:02 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static void ShowWarningMessageBox(string message)
|
|
|
|
|
{
|
2021-10-27 15:34:10 +02:00
|
|
|
|
using (var dlg = new WarningDialog(message) { WindowTitle = Messages.CPM_WIZARD_TITLE })
|
2016-06-20 11:49:12 +02:00
|
|
|
|
dlg.ShowDialog(Program.MainWindow);
|
2013-11-19 18:02:02 +01:00
|
|
|
|
}
|
2021-10-27 15:34:10 +02:00
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|