2023-01-24 15:29:31 +01:00
|
|
|
|
/* Copyright (c) Cloud Software Group, Inc.
|
2017-09-08 15:01:39 +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;
|
|
|
|
|
using XenAdmin.Actions;
|
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Commands
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Disable changed block tracking of the selected VM.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal class DisableChangedBlockTrackingCommand : Command
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of this Command. The parameter-less constructor is required if
|
|
|
|
|
/// this Command is to be attached to a ToolStrip menu item or button. It should not be used in any other scenario.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DisableChangedBlockTrackingCommand()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DisableChangedBlockTrackingCommand(IMainWindow mainWindow, IEnumerable<SelectedItem> selection)
|
|
|
|
|
: base(mainWindow, selection)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DisableChangedBlockTrackingCommand(IMainWindow mainWindow, IXenObject xenObject)
|
|
|
|
|
: base(mainWindow, xenObject)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-31 12:31:16 +02:00
|
|
|
|
private void Run(IList<VM> vms)
|
2017-09-08 15:01:39 +02:00
|
|
|
|
{
|
|
|
|
|
var actions = new List<AsyncAction>();
|
|
|
|
|
|
|
|
|
|
foreach (var vm in vms)
|
|
|
|
|
{
|
|
|
|
|
if (vm.is_a_template)
|
|
|
|
|
continue;
|
|
|
|
|
foreach (VBD vbd in vm.Connection.ResolveAll(vm.VBDs))
|
|
|
|
|
{
|
|
|
|
|
VDI vdi = vm.Connection.Resolve(vbd.VDI);
|
|
|
|
|
if (vdi != null && vdi.cbt_enabled)
|
|
|
|
|
actions.Add(new VDIDisableCbtAction(vm, vdi));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (actions.Any())
|
|
|
|
|
{
|
|
|
|
|
if (actions.Count == 1)
|
|
|
|
|
{
|
|
|
|
|
actions[0].RunAsync();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
new ParallelAction(
|
|
|
|
|
Messages.ACTION_DISABLE_CHANGED_BLOCK_TRACKING,
|
|
|
|
|
Messages.ACTION_DISABLING_CHANGED_BLOCK_TRACKING,
|
|
|
|
|
Messages.ACTION_DISABLED_CHANGED_BLOCK_TRACKING,
|
|
|
|
|
actions).RunAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-31 12:31:16 +02:00
|
|
|
|
protected override void RunCore(SelectedItemCollection selection)
|
2017-09-08 15:01:39 +02:00
|
|
|
|
{
|
2021-08-31 12:31:16 +02:00
|
|
|
|
Run(selection.AsXenObjects<VM>());
|
2017-09-08 15:01:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-21 16:41:19 +02:00
|
|
|
|
private bool CbtLicensed(VM vm)
|
|
|
|
|
{
|
|
|
|
|
return !Helpers.FeatureForbidden(vm.Connection, Host.RestrictChangedBlockTracking);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-31 12:31:16 +02:00
|
|
|
|
private bool CanRun(VM vm)
|
2017-09-11 14:47:59 +02:00
|
|
|
|
{
|
|
|
|
|
return vm != null &&
|
|
|
|
|
!vm.is_a_template &&
|
|
|
|
|
vm.Connection.ResolveAll(vm.VBDs).Any(vbd => vm.Connection.Resolve(vbd.VDI) != null && vm.Connection.Resolve(vbd.VDI).cbt_enabled);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-31 12:31:16 +02:00
|
|
|
|
protected override bool CanRunCore(SelectedItemCollection selection)
|
2017-09-08 15:01:39 +02:00
|
|
|
|
{
|
2021-08-31 12:31:16 +02:00
|
|
|
|
// Can run criteria: A selection of VMs in the same pool which has CBT feature licensed, where at least one VM having CBT enabled
|
2017-09-21 16:41:19 +02:00
|
|
|
|
return selection.AllItemsAre<VM>(CbtLicensed) &&
|
2017-09-08 15:01:39 +02:00
|
|
|
|
selection.GetConnectionOfAllItems() != null &&
|
2021-08-31 12:31:16 +02:00
|
|
|
|
selection.AtLeastOneXenObjectCan<VM>(CanRun);
|
2017-09-08 15:01:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-16 02:50:45 +01:00
|
|
|
|
public override string MenuText => Messages.MAINWINDOW_DISABLE_CHANGED_BLOCK_TRACKING;
|
2017-09-08 15:01:39 +02:00
|
|
|
|
|
2021-03-16 02:50:45 +01:00
|
|
|
|
protected override bool ConfirmationRequired => true;
|
2017-09-08 15:01:39 +02:00
|
|
|
|
|
2021-03-16 02:50:45 +01:00
|
|
|
|
protected override string ConfirmationDialogText => GetSelection().Count == 1
|
|
|
|
|
? string.Format(Messages.CONFIRM_DISABLE_CBT_VM, BrandManager.BrandConsole)
|
|
|
|
|
: string.Format(Messages.CONFIRM_DISABLE_CBT_VMS, BrandManager.BrandConsole);
|
2017-09-08 15:01:39 +02:00
|
|
|
|
|
2021-03-16 02:50:45 +01:00
|
|
|
|
protected override string ConfirmationDialogTitle => GetSelection().Count == 1
|
|
|
|
|
? String.Format(Messages.CONFIRM_DISABLE_CBT_VM_TITLE, GetSelection().AsXenObjects<VM>()[0].Name())
|
|
|
|
|
: Messages.CONFIRM_DISABLE_CBT_VMS_TITLE;
|
2017-09-20 15:39:02 +02:00
|
|
|
|
|
2021-03-16 02:50:45 +01:00
|
|
|
|
protected override string ConfirmationDialogHelpId => "WarningVmDisableChangedBlockTracking";
|
2017-09-08 15:01:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|