2017-01-16 20:59:50 +01:00
|
|
|
|
/* Copyright (c) Citrix Systems, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* 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.Text;
|
|
|
|
|
using XenAdmin.Network;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAdmin.Dialogs;
|
|
|
|
|
using XenAdmin.Wizards;
|
|
|
|
|
using System.Collections.ObjectModel;
|
2019-07-18 01:35:11 +02:00
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Commands
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Launches the HA wizard.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal class HACommand : Command
|
|
|
|
|
{
|
2019-07-18 01:35:11 +02:00
|
|
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
/// <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 HACommand()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public HACommand(IMainWindow mainWindow, IEnumerable<SelectedItem> selection)
|
|
|
|
|
: base(mainWindow, selection)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public HACommand(IMainWindow mainWindow, IXenConnection connection)
|
|
|
|
|
: base(mainWindow, Helpers.GetPoolOfOne(connection))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public HACommand(IMainWindow mainWindow, Pool pool)
|
|
|
|
|
: base(mainWindow, pool)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Execute(IXenConnection connection)
|
|
|
|
|
{
|
|
|
|
|
if (connection == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Pool pool = Helpers.GetPool(connection);
|
|
|
|
|
if (pool == null)
|
|
|
|
|
return;
|
|
|
|
|
|
2015-10-26 17:01:55 +01:00
|
|
|
|
if (Helpers.FeatureForbidden(pool, Host.RestrictHA))
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
// Show upsell dialog
|
2017-11-17 13:24:43 +01:00
|
|
|
|
using (var dlg = new UpsellDialog(HiddenFeatures.LinkLabelHidden ? Messages.UPSELL_BLURB_HA : Messages.UPSELL_BLURB_HA + Messages.UPSELL_BLURB_TRIAL,
|
|
|
|
|
InvisibleMessages.UPSELL_LEARNMOREURL_TRIAL))
|
2016-06-20 14:26:52 +02:00
|
|
|
|
dlg.ShowDialog(Parent);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
else if (pool.ha_enabled)
|
|
|
|
|
{
|
2019-07-18 01:35:11 +02:00
|
|
|
|
if (pool.ha_statefiles.Any(sf => pool.Connection.Resolve(new XenRef<VDI>(sf)) != null))
|
|
|
|
|
{
|
|
|
|
|
// Show VM restart priority editor
|
|
|
|
|
MainWindowCommandInterface.ShowPerConnectionWizard(connection, new EditVmHaPrioritiesDialog(pool));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
log.ErrorFormat("Cannot resolve HA statefile VDI (pool {0} has {1} statefiles).",
|
|
|
|
|
pool.Name(), pool.ha_statefiles.Length);
|
|
|
|
|
|
|
|
|
|
using (var dlg = new ThreeButtonDialog(
|
|
|
|
|
new ThreeButtonDialog.Details(
|
|
|
|
|
SystemIcons.Error,
|
|
|
|
|
string.Format(Messages.HA_CONFIGURE_NO_STATEFILE, Helpers.GetName(pool).Ellipsise(30)),
|
|
|
|
|
Messages.CONFIGURE_HA),
|
|
|
|
|
"HADisable",
|
|
|
|
|
ThreeButtonDialog.ButtonOK))
|
|
|
|
|
{
|
|
|
|
|
dlg.ShowDialog(Program.MainWindow);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Show wizard to enable HA
|
|
|
|
|
MainWindowCommandInterface.ShowPerConnectionWizard(connection, new HAWizard(pool));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void ExecuteCore(SelectedItemCollection selection)
|
|
|
|
|
{
|
|
|
|
|
Execute(selection[0].Connection);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool CanExecuteCore(SelectedItemCollection selection)
|
|
|
|
|
{
|
2019-07-18 01:35:11 +02:00
|
|
|
|
if (selection.Count != 1)
|
|
|
|
|
return false;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2019-07-18 01:35:11 +02:00
|
|
|
|
Pool poolAncestor = selection[0].PoolAncestor;
|
|
|
|
|
if (poolAncestor == null || poolAncestor.Locked)
|
|
|
|
|
return false;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2019-07-18 01:35:11 +02:00
|
|
|
|
if (poolAncestor.Connection == null || !poolAncestor.Connection.IsConnected)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (HelpersGUI.FindActiveHaAction(poolAncestor.Connection) != null)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
Host master = Helpers.GetMaster(poolAncestor.Connection);
|
|
|
|
|
if (master == null)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-01 00:31:48 +01:00
|
|
|
|
protected override string GetCantExecuteReasonCore(IXenObject item)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2019-03-01 00:31:48 +01:00
|
|
|
|
Pool poolAncestor = item == null ? null : Helpers.GetPool(item.Connection);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
bool inPool = poolAncestor != null;
|
|
|
|
|
|
2019-03-01 00:31:48 +01:00
|
|
|
|
if (inPool)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
Host master = Helpers.GetMaster(poolAncestor.Connection);
|
|
|
|
|
|
2015-10-26 17:01:55 +01:00
|
|
|
|
if (master == null)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
return Messages.FIELD_DISABLED;
|
|
|
|
|
}
|
|
|
|
|
else if (HelpersGUI.FindActiveHaAction(poolAncestor.Connection) != null || poolAncestor.Locked)
|
|
|
|
|
{
|
|
|
|
|
return Messages.POOL_EDIT_IN_PROGRESS;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return base.GetCantExecuteReasonCore(item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string MenuText
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Messages.MAINWINDOW_HIGH_AVAILABILITY;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|