xenadmin/XenAdmin/Wizards/NewNetworkWizard_Pages/NetWChinDetails.cs
Konstantina Chremmou ee648135f6 Since it is easy to forget calling the base class method at the beginning of the
PageLoaded override in derived classes, enforce it by wrapping the page specific
code in a new virtual method, which the derived classes can override and PageLoaded
can call after its own logic.

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
2018-03-09 11:22:26 +00:00

141 lines
5.3 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;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using XenAdmin.Controls;
using XenAdmin.Core;
using XenAdmin.Network;
using XenAPI;
namespace XenAdmin.Wizards.NewNetworkWizard_Pages
{
public partial class NetWChinDetails : XenTabPage
{
public NetWChinDetails()
{
InitializeComponent();
// Currently setting MTU on CHINS is not supported. Remove this line to re-enable.
numericUpDownMTU.Maximum = XenAPI.Network.MTU_MAX;
numericUpDownMTU.Minimum = XenAPI.Network.MTU_MIN;
numericUpDownMTU.Visible = labelMTU.Visible = tableLayoutPanelMTUWarning.Visible = false;
}
public override string Text { get { return Messages.NETW_DETAILS_TEXT; } }
public override string PageTitle { get { return Messages.NETW_CHIN_DETAILS_TITLE; } }
public override bool EnableNext()
{
return SelectedInterface != null;
}
protected override void PageLoadedCore(PageLoadedDirection direction)
{
HelpersGUI.FocusFirstControl(Controls);
}
public override void PopulatePage()
{
PopulateInterfaces(Pool, Host, Connection);
}
public Host Host { private get; set; }
public Pool Pool { private get; set; }
public XenAPI.Network SelectedInterface
{
get { return (XenAPI.Network)comboInterfaces.SelectedItem; }
}
public bool isAutomaticAddNicToVM
{
get { return cbxAutomatic.Checked; }
}
public long MTU
{
get { return (long)numericUpDownMTU.Value; }
}
private void PopulateInterfaces(Pool pool, Host host, IXenConnection connection)
{
Dictionary<XenAPI.Network, bool> networksAdded = new Dictionary<XenAPI.Network, bool>();
comboInterfaces.Items.Clear();
foreach (PIF pif in connection.Cache.PIFs)
{
// If the current selection is for a host, rather than a pool, only show
// management interfaces with PIFs on that host.
if (pool == null && host != null && pif.host.opaque_ref != host.opaque_ref)
continue;
if (pif.IsManagementInterface(XenAdmin.Properties.Settings.Default.ShowHiddenVMs))
{
XenAPI.Network network = connection.Resolve(pif.network);
if (network != null && // this should have been checked already by pif.IsManagementInterface, but...
!networksAdded.ContainsKey(network))
{
comboInterfaces.Items.Add(network);
networksAdded[network] = true;
}
}
}
comboInterfaces.SelectedIndexChanged += new EventHandler(comboInterfaces_SelectedIndexChanged);
if (comboInterfaces.Items.Count > 0)
comboInterfaces.SelectedIndex = 0;
}
private void comboInterfaces_SelectedIndexChanged(object sender, EventArgs e)
{
// just in case people have been fiddling around on the CLI
numericUpDownMTU.Maximum = Math.Max(SelectedInterface.MTU, XenAPI.Network.MTU_MAX);
numericUpDownMTU.Minimum = Math.Min(SelectedInterface.MTU, XenAPI.Network.MTU_MIN);
numericUpDownMTU.Value = SelectedInterface.MTU;
OnPageUpdated();
}
private void numericUpDownMTU_ValueChanged(object sender, EventArgs e)
{
if (SelectedInterface != null)
tableLayoutPanelMTUWarning.Visible = numericUpDownMTU.Value != SelectedInterface.MTU;
}
}
}