using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using XenAdmin.Controls.DataGridViewEx; using XenAPI; using XenAdmin.Dialogs; using XenAdmin.Actions.GPU; using System.Text.RegularExpressions; namespace XenAdmin.Controls.GPU { public partial class GpuConfiguration : XenDialogBase { private List PGpuList { get; set; } private GpuConfiguration() { InitializeComponent(); } public GpuConfiguration(IEnumerable pGpuList) : this() { if (pGpuList == null) throw new ArgumentNullException("pGpuList"); if (pGpuList.Count() == 0) throw new ArgumentOutOfRangeException("pGpuList", "pGpuList list should not be empty"); if (pGpuList.ElementAt(0) == null) throw new ArgumentOutOfRangeException("pGpuList[0]", "first element of the pGpuList list should not be null"); PGpuList = pGpuList.ToList(); connection = PGpuList[0].Connection; PopulateGrid(pGpuList); } protected override void OnShown(EventArgs e) { base.OnShown(e); SetWindowTitle(); } private void PopulateGrid(IEnumerable pGpuList) { var pGpu = PGpuList[0]; dataGridViewEx1.SuspendLayout(); dataGridViewEx1.Rows.Clear(); dataGridViewEx1.Cursor = Cursors.WaitCursor; try { if (pGpu.supported_VGPU_types != null) { dataGridViewEx1.Rows.AddRange((from supportedVGpuTypeRef in pGpu.supported_VGPU_types let supportedVGpuType = pGpu.Connection.Resolve(supportedVGpuTypeRef) let enabled = pGpu.enabled_VGPU_types.Contains(supportedVGpuTypeRef) let isInUse = pGpuList.Any(p => p.Connection.ResolveAll(p.resident_VGPUs).Any(v => v.type.opaque_ref == supportedVGpuTypeRef.opaque_ref)) orderby supportedVGpuType.Capacity ascending select new VGpuDetailWithCheckBoxRow(supportedVGpuTypeRef, supportedVGpuType, enabled, isInUse) ) .ToArray()); } SetCheckedValues(); } finally { dataGridViewEx1.ResumeLayout(); dataGridViewEx1.Cursor = Cursors.Default; } } private void SetCheckedValues() { dataGridViewEx1.Rows.Cast().ToList().ForEach(r => r.Enabled = !r.IsInUse); } private void okButton_Click(object sender, System.EventArgs e) { var updatedEnabledVGpuListByPGpu = new Dictionary>>(); PGpuList.ForEach(pgpu => updatedEnabledVGpuListByPGpu.Add(pgpu, new List>(pgpu.enabled_VGPU_types))); var changes = dataGridViewEx1.Rows.Cast().ToList().FindAll(r => r.NeedsSave); if (changes.Count > 0) { changes.ForEach(r => updatedEnabledVGpuListByPGpu.Keys.ToList() .ForEach(pGpu => { var vGpuList = updatedEnabledVGpuListByPGpu[pGpu]; if (vGpuList.Contains(r.VGpuTypeRef) && !r.CheckBoxChecked) vGpuList.Remove(r.VGpuTypeRef); else if (r.CheckBoxChecked) vGpuList.Add(r.VGpuTypeRef); })); new VgpuConfigurationAction(updatedEnabledVGpuListByPGpu, connection).RunAsync(); } Close(); } private void dataGridViewEx1_SelectionChanged(object sender, System.EventArgs e) { dataGridViewEx1.ClearSelection(); } private void SetWindowTitle() { var match = Regex.Match(PGpuList[0].Name, @"\[(.*?)\]", RegexOptions.CultureInvariant); if (match.Success) { var name = match.Groups[1].Value; Text = PGpuList.Count == 1 ? String.Format(Messages.GPU_GROUP_NAME_AND_NO_OF_GPUS_ONE, name) : String.Format(Messages.GPU_GROUP_NAME_AND_NO_OF_GPUS, name, PGpuList.Count); } rubricLabel.Text = PGpuList.Count == 1 ? Messages.GPU_RUBRIC_PLEASE_SELECT_WHICH_GPU_ONE : Messages.GPU_RUBRIC_PLEASE_SELECT_WHICH_GPU_MULTIPLE; } } class VGpuDetailWithCheckBoxRow : DataGridViewExRow { private readonly bool allowed; private readonly DataGridViewCheckBoxCell checkBoxCell = new DataGridViewCheckBoxCell(false); private readonly DataGridViewTextBoxCell nameColumn = new DataGridViewTextBoxCell(); private readonly DataGridViewTextBoxCell vGpusPerGpuColumn = new DataGridViewTextBoxCell(); private readonly DataGridViewTextBoxCell maxResolutionColumn = new DataGridViewTextBoxCell(); private readonly DataGridViewTextBoxCell maxDisplaysColumn = new DataGridViewTextBoxCell(); private readonly DataGridViewTextBoxCell videoRamColumn = new DataGridViewTextBoxCell(); public VGPU_type VGpuType { get; private set; } public XenRef VGpuTypeRef { get; private set; } public bool IsInUse { get; private set; } public bool NeedsSave { get { return !IsInUse && (allowed != CheckBoxChecked); } } public bool CheckBoxChecked { get { return (bool)checkBoxCell.Value; } } public VGpuDetailWithCheckBoxRow(XenRef vGpuTypeRef, VGPU_type vGpuType, bool allowed, bool isInUse) { VGpuTypeRef = vGpuTypeRef; VGpuType = vGpuType; this.allowed = allowed; IsInUse = isInUse; SetCells(); Cells.AddRange(checkBoxCell, nameColumn, vGpusPerGpuColumn, maxResolutionColumn, maxDisplaysColumn, videoRamColumn); SetupCheckBoxCell(); } private void SetCells() { bool isPassThru = VGpuType.max_heads == 0; nameColumn.Value = isPassThru ? Messages.VGPU_PASSTHRU_TOSTRING : VGpuType.model_name; if (!isPassThru) vGpusPerGpuColumn.Value = VGpuType.Capacity; else vGpusPerGpuColumn.Value = string.Empty; if (!isPassThru) maxResolutionColumn.Value = "max res."; //VGpuType.max_res as soon as it is available in API if (!isPassThru) maxDisplaysColumn.Value = VGpuType.max_heads; else maxDisplaysColumn.Value = string.Empty; videoRamColumn.Value = VGpuType.framebuffer_size != 0 ? Util.SuperiorSizeString(VGpuType.framebuffer_size, 0) : string.Empty; } private void SetupCheckBoxCell() { checkBoxCell.TrueValue = true; checkBoxCell.FalseValue = false; checkBoxCell.ValueType = typeof(bool); checkBoxCell.Value = allowed; checkBoxCell.ReadOnly = IsInUse; } } }