/* 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.Drawing; using System.Windows.Forms; using XenAdmin.Actions; using XenAdmin.Core; using XenAPI; using XenAdmin.Dialogs; namespace XenAdmin.SettingsPanels { public partial class CPUMemoryEditPage : UserControl, IEditPage { private VM vm; bool ShowMemory = false; // If this VM has DMC, we don't show the memory controls on this page. bool MROrGreater = true; // If Midnight Ride or greater, we only show the VCPU controls when the VM is halted. private bool _ValidToSave = true; private decimal _OrigMemory; private decimal _OrigVCPUs; private decimal _OrigVCPUWeight; private decimal _CurrentVCPUWeight; private ChangeMemorySettingsAction memoryAction; public bool ValidToSave { get { if (!_ValidToSave) return false; // Also confirm whether the user wants to save memory changes. // If not, don't close the properties dialog. if (MROrGreater && HasMemoryChanged) { long mem = Convert.ToInt64(this.nudMemory.Value * Util.BINARY_MEGA); memoryAction = BallooningDialogBase.ConfirmAndReturnAction(Program.MainWindow, vm, mem, mem, mem, (long)vm.memory_static_max, false); if (memoryAction == null) return false; } return true; } } public CPUMemoryEditPage() { InitializeComponent(); Text = Messages.CPU_AND_MEMORY; transparentTrackBar1.Scroll += new EventHandler(tbPriority_Scroll); this.nudMemory.TextChanged += new EventHandler(nudMemory_TextChanged); this.nudMemory.LostFocus += new EventHandler(nudMemory_LostFocus); } public Image Image { get { return Properties.Resources._000_CPU_h32bit_16; } } void nudMemory_LostFocus(object sender, EventArgs e) { ValidateNud(nudMemory, (decimal)vm.memory_static_max / Util.BINARY_MEGA); } private void ValidateNud(NumericUpDown nud, Decimal defaultValue) { if (!String.IsNullOrEmpty(nud.Text.Trim())) return; nud.Value = defaultValue >= nud.Minimum && defaultValue <= nud.Maximum ? defaultValue : nud.Maximum; nud.Text = nud.Value.ToString(); } void nudMemory_TextChanged(object sender, EventArgs e) { decimal val; if (decimal.TryParse(nudMemory.Text, out val)) { if (val >= nudMemory.Minimum && val <= nudMemory.Maximum) nudMemory_ValueChanged(null, null); else if (val > nudMemory.Maximum) ShowMemError(true, false); else ShowMemError(false, false); } if (this.nudMemory.Text == "") { _ValidToSave = false; } else { _ValidToSave = true; } } private void tbPriority_Scroll(object sender, EventArgs e) { _CurrentVCPUWeight = Convert.ToDecimal(Math.Pow(4.0d, Convert.ToDouble(transparentTrackBar1.Value))); if (transparentTrackBar1.Value == transparentTrackBar1.Max) _CurrentVCPUWeight--; } /// /// Must be a VM. /// public void SetXenObjects(IXenObject orig, IXenObject clone) { vm = (VM)clone; ShowMemory = Helpers.FeatureForbidden(vm, Host.RestrictDMC); Repopulate(); } public void Repopulate() { VM vm = this.vm; Text = ShowMemory ? Messages.CPU_AND_MEMORY : Messages.CPU; if (!ShowMemory) lblMemory.Visible = panel2.Visible = MemWarningLabel.Visible = false; else if (MROrGreater && vm.power_state != vm_power_state.Halted && vm.power_state != vm_power_state.Running) { panel2.Enabled = false; MemWarningLabel.Text = Messages.MEM_NOT_WHEN_SUSPENDED; MemWarningLabel.ForeColor = SystemColors.ControlText; MemWarningLabel.Visible = true; } if (MROrGreater && vm.power_state != vm_power_state.Halted) { comboBoxVCPUs.Enabled = false; comboBoxTopology.Enabled = false; VCPUWarningLabel.Text = Messages.VCPU_ONLY_WHEN_HALTED; VCPUWarningLabel.ForeColor = SystemColors.ControlText; VCPUWarningLabel.Visible = true; } // Since updates come in dribs and drabs, avoid error if new max and min arrive // out of sync and maximum < minimum. if (vm.memory_dynamic_max >= vm.memory_dynamic_min && vm.memory_static_max >= vm.memory_static_min) { decimal min = Convert.ToDecimal(vm.memory_static_min / Util.BINARY_MEGA); decimal max = Convert.ToDecimal(vm.MaxMemAllowed / Util.BINARY_MEGA); decimal value = Convert.ToDecimal(vm.memory_static_max / Util.BINARY_MEGA); // Avoid setting the range to exclude the current value: CA-40041 if (value > max) max = value; if (value < min) min = value; this.nudMemory.Minimum = min; this.nudMemory.Maximum = max; this.nudMemory.Text = (this.nudMemory.Value = value).ToString(); } _CurrentVCPUWeight = Convert.ToDecimal(vm.VCPUWeight); this.transparentTrackBar1.Value = Convert.ToInt32(Math.Log(Convert.ToDouble(vm.VCPUWeight)) / Math.Log(4.0d)); Host currentHost = Helpers.GetMaster(this.vm.Connection); if (currentHost != null) { // Show the performance warning about vCPUs > pCPUs. // Don't show if the VM isn't running, since we don't know which server it will // run on (and so can't count the number of pCPUs). if ( vm.power_state == vm_power_state.Running && vm.VCPUs_at_startup > currentHost.host_CPUs.Count && !vm.IgnoreExcessiveVcpus) { lblVcpuWarning.Visible = true; this.tableLayoutPanel1.RowStyles[1].SizeType = SizeType.Absolute; this.tableLayoutPanel1.RowStyles[1].Height = 30; } else { lblVcpuWarning.Visible = false; } } else { lblVcpuWarning.Visible = false; } _OrigMemory = nudMemory.Value; _OrigVCPUs = vm.VCPUs_at_startup > 0 ? vm.VCPUs_at_startup : 1; _OrigVCPUWeight = _CurrentVCPUWeight; comboBoxTopology.Populate(vm.VCPUs_at_startup, vm.VCPUs_max, vm.CoresPerSocket, vm.MaxCoresPerSocket); // CA-12941 // We set a sensible maximum based on the template, but if the user sets something higher // from the CLI then use that as the maximum. long maxVCPUs = vm.MaxVCPUsAllowed < vm.VCPUs_at_startup ? vm.VCPUs_at_startup : vm.MaxVCPUsAllowed; PopulateVCPUs(maxVCPUs, (long)_OrigVCPUs); _ValidToSave = true; } private void PopulateVCPUs(long maxVCPUs, long currentVCPUs) { comboBoxVCPUs.BeginUpdate(); comboBoxVCPUs.Items.Clear(); for (long i = 1; i <= maxVCPUs; ++i) { if (i == currentVCPUs || comboBoxTopology.IsValidVCPU(i)) comboBoxVCPUs.Items.Add(i); } if (currentVCPUs > maxVCPUs) comboBoxVCPUs.Items.Add(currentVCPUs); comboBoxVCPUs.SelectedItem = currentVCPUs; comboBoxVCPUs.EndUpdate(); } public bool HasChanged { get { return HasVCPUChanged || HasMemoryChanged || HasTopologyChanged; } } private bool HasMemoryChanged { get { return _OrigMemory != nudMemory.Value; } } private bool HasVCPUChanged { get { return _OrigVCPUs != (long)comboBoxVCPUs.SelectedItem || _OrigVCPUWeight != _CurrentVCPUWeight; } } private bool HasTopologyChanged { get { return vm.CoresPerSocket != comboBoxTopology.CoresPerSocket; } } public AsyncAction SaveSettings() { List actions = new List(); if (HasVCPUChanged) { vm.VCPUWeight = Convert.ToInt32(_CurrentVCPUWeight); if (_OrigVCPUs != (long)comboBoxVCPUs.SelectedItem) actions.Add(new ChangeVCPUSettingsAction(vm, (long)comboBoxVCPUs.SelectedItem)); } if (HasTopologyChanged) { vm.CoresPerSocket = comboBoxTopology.CoresPerSocket; } if (HasMemoryChanged) { if (MROrGreater) actions.Add(memoryAction); // Calculated in ValidToSave else vm.Memory = Convert.ToInt64(this.nudMemory.Value * Util.BINARY_MEGA); } if (!Program.RunInAutomatedTestMode && vm.power_state != vm_power_state.Halted) { if (!HasMemoryChanged) using (var dlg = new ThreeButtonDialog(new ThreeButtonDialog.Details(SystemIcons.Information, Messages.VM_VCPU_CHANGES_NOT_SUPPORTED_MESSAGE, Messages.VM_LIVE_CHANGES_NOT_SUPPORTED_TITLE))) { dlg.ShowDialog(); } else if (!MROrGreater) using (var dlg = new ThreeButtonDialog(new ThreeButtonDialog.Details(SystemIcons.Information, Messages.VM_VCPU_CHANGES_NOT_SUPPORTED_MESSAGE, Messages.VM_LIVE_CHANGES_NOT_SUPPORTED_TITLE))) { dlg.ShowDialog(); } // If it is >= Midnight Ride, and memory has changed (which can only happen in the free version), // we have already given a message in ValidToSave that the VM will be forcibly rebooted, so no // further message is needed here. } if (actions.Count == 0) return null; else if (actions.Count == 1) return actions[0]; else { MultipleAction multipleAction = new MultipleAction(vm.Connection, "", "", "", actions, true); return multipleAction; } } /** Show local validation balloon tooltips */ public void ShowLocalValidationMessages() { } /** Unregister listeners, dispose balloon tooltips, etc. */ public void Cleanup() { } /// /// Shows the warning dialog about vCPUs > pCPUs. /// private void lblVcpuWarning_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { if (vm == null) { System.Diagnostics.Trace.Assert(false, "Selected object should be a vm"); } else { new Dialogs.VcpuWarningDialog(vm).ShowDialog(); this.Refresh(); } } private void nudMemory_ValueChanged(object sender, EventArgs e) { ShowMemError(false, true); } private void ShowMemError(bool showAlways, bool testValue) { if (vm == null || !ShowMemory) return; Host selectedAffinity = vm.Connection.Resolve(vm.power_state == vm_power_state.Running ? vm.resident_on : vm.affinity); if (selectedAffinity != null) { Host_metrics host_metrics = vm.Connection.Resolve(selectedAffinity.metrics); if ((showAlways || (testValue && (host_metrics != null && (double)host_metrics.memory_total < (double)nudMemory.Value * (double)Util.BINARY_MEGA)))) { MemWarningLabel.Visible = true; } else { MemWarningLabel.Visible = false; } } } private void comboBoxVCPUs_SelectedIndexChanged(object sender, EventArgs e) { ShowVcpuError(false, true); comboBoxTopology.Update((long)comboBoxVCPUs.SelectedItem); ValidateVCPUSettings(); } private void ShowVcpuError(bool showAlways, bool testValue) { if (vm == null || !comboBoxVCPUs.Enabled) return; Host selectedAffinity = vm.Home(); if (selectedAffinity == null && vm.Connection.Cache.Hosts.Length == 1) selectedAffinity = vm.Connection.Cache.Hosts[0]; if (showAlways || (testValue && (selectedAffinity != null && selectedAffinity.host_CPUs.Count < (long)comboBoxVCPUs.SelectedItem))) { VCPUWarningLabel.Visible = true; } else { VCPUWarningLabel.Visible = false; } } public String SubText { get { return ShowMemory ? String.Format(Messages.CPU_AND_MEMORY_SUB, comboBoxVCPUs.SelectedItem, nudMemory.Value) : String.Format(Messages.CPU_SUB, comboBoxVCPUs.SelectedItem); } } private void comboBoxTopology_SelectedIndexChanged(object sender, EventArgs e) { ValidateVCPUSettings(); } private void ValidateVCPUSettings() { if (comboBoxVCPUs.SelectedItem != null) labelInvalidVCPUWarning.Text = VM.ValidVCPUConfiguration((long)comboBoxVCPUs.SelectedItem, comboBoxTopology.CoresPerSocket); } } }