2019-04-15 20:47:32 +02:00
|
|
|
|
/* 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.Linq;
|
|
|
|
|
using XenAdmin.Controls;
|
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Dialogs
|
|
|
|
|
{
|
|
|
|
|
public partial class AddVGPUDialog : XenDialogBase
|
|
|
|
|
{
|
|
|
|
|
private VM _vm;
|
|
|
|
|
private List<VGPU> existingVGpus;
|
|
|
|
|
public GpuTuple SelectedTuple { private set; get; }
|
|
|
|
|
|
|
|
|
|
public AddVGPUDialog(VM vm, List<VGPU> VGpus)
|
|
|
|
|
{
|
|
|
|
|
_vm = vm;
|
|
|
|
|
existingVGpus = VGpus;
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
PopulateComboBox();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void PopulateComboBox()
|
|
|
|
|
{
|
|
|
|
|
GPU_group[] gpu_groups = _vm.Connection.Cache.GPU_groups.Where(g => g.PGPUs.Count > 0 && g.supported_VGPU_types.Count != 0).ToArray();
|
2021-08-23 11:58:41 +02:00
|
|
|
|
|
|
|
|
|
//comboBoxTypes should not be available for selection
|
|
|
|
|
if (gpu_groups.Length == 0)
|
|
|
|
|
{
|
|
|
|
|
comboBoxTypes.Enabled = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-15 20:47:32 +02:00
|
|
|
|
Array.Sort(gpu_groups);
|
|
|
|
|
foreach (GPU_group gpu_group in gpu_groups)
|
|
|
|
|
{
|
|
|
|
|
if (Helpers.FeatureForbidden(_vm.Connection, Host.RestrictVgpu) || !_vm.CanHaveVGpu())
|
|
|
|
|
{
|
|
|
|
|
if (gpu_group.HasPassthrough())
|
|
|
|
|
comboBoxTypes.Items.Add(new GpuTuple(gpu_group, null, null)); //GPU pass-through item
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-05-21 11:17:27 +02:00
|
|
|
|
HashSet<XenRef<VGPU_type>> commonTypesSet = new HashSet<XenRef<VGPU_type>>(gpu_group.supported_VGPU_types);
|
2019-04-15 20:47:32 +02:00
|
|
|
|
|
2019-05-21 11:17:27 +02:00
|
|
|
|
foreach (var existingVgpu in existingVGpus)
|
2019-04-15 20:47:32 +02:00
|
|
|
|
{
|
2019-05-21 11:17:27 +02:00
|
|
|
|
var existingType = _vm.Connection.Resolve(existingVgpu.type);
|
|
|
|
|
if (existingType != null && existingType.compatible_types_in_vm != null)
|
|
|
|
|
{
|
|
|
|
|
var compatibleTypesSet = new HashSet<XenRef<VGPU_type>>(existingType.compatible_types_in_vm);
|
|
|
|
|
commonTypesSet.IntersectWith(compatibleTypesSet);
|
|
|
|
|
}
|
2019-04-15 20:47:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-21 11:17:27 +02:00
|
|
|
|
var commonTypes = _vm.Connection.ResolveAll(commonTypesSet);
|
2019-05-17 11:24:17 +02:00
|
|
|
|
commonTypes.Sort();
|
|
|
|
|
commonTypes.Reverse();
|
|
|
|
|
|
2019-04-15 20:47:32 +02:00
|
|
|
|
if (gpu_group.HasVGpu() && commonTypes.Count > 0)
|
2019-05-21 11:17:27 +02:00
|
|
|
|
comboBoxTypes.Items.Add(
|
|
|
|
|
new GpuTuple(gpu_group, _vm.Connection.ResolveAll(gpu_group.supported_VGPU_types).ToArray())); // Group item
|
|
|
|
|
|
|
|
|
|
var disabledTypes = _vm.Connection.ResolveAll(gpu_group.supported_VGPU_types.Except(gpu_group.enabled_VGPU_types));
|
2019-04-15 20:47:32 +02:00
|
|
|
|
|
|
|
|
|
foreach (var vgpuType in commonTypes)
|
|
|
|
|
comboBoxTypes.Items.Add(new GpuTuple(gpu_group, vgpuType, disabledTypes.ToArray())); // GPU_type item
|
2019-05-27 09:53:37 +02:00
|
|
|
|
|
|
|
|
|
if (commonTypes.Count == 1 && !disabledTypes.Contains(commonTypes[0]))
|
2019-05-31 09:02:45 +02:00
|
|
|
|
comboBoxTypes.SelectedItem = comboBoxTypes.Items[0];
|
2019-04-15 20:47:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void buttonAdd_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
GpuTuple tuple = comboBoxTypes.SelectedItem as GpuTuple;
|
|
|
|
|
if (tuple == null || tuple.VgpuTypes == null || tuple.VgpuTypes.Length == 0)
|
|
|
|
|
SelectedTuple = null;
|
|
|
|
|
else
|
|
|
|
|
SelectedTuple = tuple;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void comboBoxTypes_SelectedIndexChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
buttonAdd.Enabled = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|