xenadmin/XenAdmin/SettingsPanels/ClusteringEditPage.cs
serenc 9f9754c8b0 CP-25563: Added Clustering page
Signed-off-by: serenc <seren.corbett@citrix.com>
2017-12-01 14:47:50 +00:00

166 lines
5.4 KiB
C#

/* Copyright (c) Citrix Systems, Inc.
* 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.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
using XenAdmin.Actions;
using XenAdmin.Controls;
using XenAdmin.Core;
using XenAPI;
namespace XenAdmin.SettingsPanels
{
public partial class ClusteringEditPage : UserControl, IEditPage
{
private Pool pool;
private bool clusteringEnabled;
public ClusteringEditPage()
{
InitializeComponent();
Text = Messages.CLUSTERING;
}
public string SubText
{
get { return CheckBoxEnableClustering.Checked ? Messages.ENABLED : Messages.DISABLED; }
}
public Image Image
{
get { return Properties.Resources._000_Storage_h32bit_16; }
}
public AsyncAction SaveSettings()
{
if (CheckBoxEnableClustering.Checked)
{
var network = ((NetworkComboBoxItem)comboBoxNetwork.SelectedItem).Network;
if (network != null)
{
return new EnableClusteringAction(pool, network);
}
}
else
{
return new DisableClusteringAction(pool);
}
return null;
}
public void SetXenObjects(IXenObject orig, IXenObject clone)
{
pool = Helpers.GetPoolOfOne(clone.Connection);
var master = Helpers.GetMaster(clone.Connection);
flowLayoutInfo.Visible = false;
clusteringEnabled = pool.Connection.Cache.Cluster_hosts.Any(cluster => cluster.host.opaque_ref == master.opaque_ref && cluster.enabled);
var existingCluster = pool.Connection.Cache.Clusters.FirstOrDefault();
CheckBoxEnableClustering.Checked = clusteringEnabled;
LoadNetworks(existingCluster);
if (clusteringEnabled)
{
comboBoxNetwork.Enabled = labelNetwork.Enabled = false;
}
var gfs2Attached = clone.Connection.Cache.SRs.Any(sr => sr.type.ToLower() == "gfs2" && !sr.IsDetached());
if (clusteringEnabled && gfs2Attached)
{
DisableControls(Messages.GFS2_SR_ATTACHED);
}
if (!clusteringEnabled && pool.ha_enabled)
{
DisableControls(Messages.GFS2_HA_ENABLED);
}
}
public bool ValidToSave { get { return true; }}
public void ShowLocalValidationMessages()
{
}
public void Cleanup()
{
}
public bool HasChanged
{
get
{
return clusteringEnabled != CheckBoxEnableClustering.Checked;
}
}
#region PrivateMethods
private void LoadNetworks(Cluster cluster)
{
comboBoxNetwork.IncludeOnlyEnabledNetworksInComboBox = false;
comboBoxNetwork.IncludeOnlyNetworksWithIPAddresses = true;
comboBoxNetwork.PopulateComboBox(pool.Connection);
if (comboBoxNetwork.Items.Count == 0)
{
DisableControls(Messages.GFS2_NO_NETWORK);
}
if (cluster != null)
{
foreach (NetworkComboBoxItem item in comboBoxNetwork.Items.Cast<NetworkComboBoxItem>())
{
if (item.Network.opaque_ref == cluster.network.opaque_ref)
{
comboBoxNetwork.SelectedItem = item;
break;
}
}
}
}
private void DisableControls(string message)
{
comboBoxNetwork.Enabled = labelNetwork.Enabled = CheckBoxEnableClustering.Enabled = false;
flowLayoutInfo.Visible = true;
labelWarning.Text = message;
}
#endregion
}
}