mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
d7b519a53c
Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
593 lines
21 KiB
C#
593 lines
21 KiB
C#
/* Copyright (c) Cloud Software Group, Inc.
|
|
*
|
|
* 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.Diagnostics;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Windows.Forms;
|
|
using XenAdmin.Core;
|
|
using XenAdmin.Dialogs;
|
|
using XenAPI;
|
|
using XenAdmin.Commands;
|
|
using XenCenterLib;
|
|
|
|
|
|
namespace XenAdmin.TabPages
|
|
{
|
|
internal partial class VMStoragePage : BaseTabPage
|
|
{
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
private readonly DataGridViewColumn storageLinkColumn;
|
|
|
|
private VM vm;
|
|
|
|
public VMStoragePage()
|
|
{
|
|
InitializeComponent();
|
|
storageLinkColumn = ColumnSRVolume;
|
|
|
|
Text = Messages.VIRTUAL_DISKS;
|
|
dataGridViewStorage.Sort(ColumnDevicePosition, ListSortDirection.Ascending);
|
|
}
|
|
|
|
public override string HelpID => "TabPageStorage";
|
|
|
|
public VM VM
|
|
{
|
|
set
|
|
{
|
|
Program.AssertOnEventThread();
|
|
|
|
UnregisterHandlers();
|
|
|
|
vm = value;
|
|
multipleDvdIsoList1.VM = vm;
|
|
|
|
if (vm != null)
|
|
vm.PropertyChanged += vm_PropertyChanged;
|
|
|
|
BuildList();
|
|
|
|
// set all columns to be preferred width but allow user to resize.
|
|
foreach (DataGridViewTextBoxColumn col in dataGridViewStorage.Columns)
|
|
{
|
|
if (col != storageLinkColumn)
|
|
{
|
|
col.Width = col.GetPreferredWidth(DataGridViewAutoSizeColumnMode.AllCells, false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private void vdi_PropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
{
|
|
// Nothing changing on any of the VDIs will require a rebuild of the list
|
|
Program.Invoke(this, () =>
|
|
{
|
|
if (e.PropertyName == "allowed_operations")
|
|
UpdateButtons();
|
|
else
|
|
UpdateData();
|
|
});
|
|
}
|
|
|
|
private void vbd_PropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
{
|
|
// Only rebuild list if VDIs changed - otherwise just refresh
|
|
|
|
Program.Invoke(this, () =>
|
|
{
|
|
if (e.PropertyName == "VDI" || e.PropertyName == "empty" || e.PropertyName == "device")
|
|
{
|
|
BuildList();
|
|
}
|
|
else if (e.PropertyName == "allowed_operations")
|
|
{
|
|
UpdateButtons();
|
|
}
|
|
else if (e.PropertyName == "currently_attached")
|
|
{
|
|
UpdateButtons();
|
|
UpdateData();
|
|
}
|
|
else
|
|
{
|
|
UpdateData();
|
|
}
|
|
});
|
|
}
|
|
|
|
private void UnregisterHandlers()
|
|
{
|
|
if (vm == null)
|
|
return;
|
|
|
|
foreach (VBD vbd in vm.Connection.ResolveAll(vm.VBDs))
|
|
{
|
|
vbd.PropertyChanged -= vbd_PropertyChanged;
|
|
|
|
VDI vdi = vm.Connection.Resolve(vbd.VDI);
|
|
if (vdi == null)
|
|
continue;
|
|
|
|
vdi.PropertyChanged -= vdi_PropertyChanged;
|
|
}
|
|
|
|
vm.PropertyChanged -= vm_PropertyChanged;
|
|
|
|
multipleDvdIsoList1.DeregisterEvents();
|
|
}
|
|
|
|
public override void PageHidden()
|
|
{
|
|
UnregisterHandlers();
|
|
}
|
|
|
|
private void UpdateData()
|
|
{
|
|
try
|
|
{
|
|
dataGridViewStorage.SuspendLayout();
|
|
foreach (DataGridViewRow r in dataGridViewStorage.Rows)
|
|
{
|
|
VBDRow row = r as VBDRow;
|
|
row.UpdateCells();
|
|
}
|
|
dataGridViewStorage.Sort(dataGridViewStorage.SortedColumn,
|
|
dataGridViewStorage.SortOrder == SortOrder.Ascending
|
|
? ListSortDirection.Ascending
|
|
: ListSortDirection.Descending);
|
|
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
log.Error("Error updating vm storage list.", e);
|
|
}
|
|
finally
|
|
{
|
|
dataGridViewStorage.ResumeLayout();
|
|
}
|
|
}
|
|
|
|
private void vm_PropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
{
|
|
if (e.PropertyName == "VBDs")
|
|
Program.Invoke(this, BuildList);
|
|
else if (e.PropertyName == "power_state" || e.PropertyName == "Locked")
|
|
Program.Invoke(this, UpdateButtons);
|
|
}
|
|
|
|
private void BuildList()
|
|
{
|
|
Program.AssertOnEventThread();
|
|
if (!this.Visible)
|
|
return;
|
|
try
|
|
{
|
|
dataGridViewStorage.SuspendLayout();
|
|
DataGridViewSelectedRowCollection vbdSavedItems = dataGridViewStorage.SelectedRows;
|
|
|
|
dataGridViewStorage.Rows.Clear();
|
|
|
|
if (vm == null)
|
|
return;
|
|
|
|
bool storageLinkColumnVisible = false;
|
|
|
|
List<bool> devices_in_use = new List<bool>();
|
|
foreach (VBD vbd in vm.Connection.ResolveAll(vm.VBDs))
|
|
{
|
|
vbd.PropertyChanged -= vbd_PropertyChanged;
|
|
vbd.PropertyChanged += vbd_PropertyChanged;
|
|
|
|
if (!vbd.IsCDROM() && !vbd.IsFloppyDrive())
|
|
{
|
|
VDI vdi = vm.Connection.Resolve(vbd.VDI);
|
|
if (vdi == null || !vdi.Show(Properties.Settings.Default.ShowHiddenVMs))
|
|
continue;
|
|
|
|
SR sr = vm.Connection.Resolve(vdi.SR);
|
|
if (sr == null || sr.IsToolsSR())
|
|
continue;
|
|
|
|
storageLinkColumnVisible = vdi.sm_config.ContainsKey("SVID");
|
|
|
|
vdi.PropertyChanged -= vdi_PropertyChanged;
|
|
vdi.PropertyChanged += vdi_PropertyChanged;
|
|
|
|
dataGridViewStorage.Rows.Add(new VBDRow(vbd, vdi, sr));
|
|
|
|
int i;
|
|
if (int.TryParse(vbd.userdevice, out i))
|
|
{
|
|
while (devices_in_use.Count <= i)
|
|
{
|
|
devices_in_use.Add(false);
|
|
}
|
|
devices_in_use[i] = true;
|
|
}
|
|
}
|
|
|
|
//CA-47050: the dnsColumn should be autosized to Fill, but should not become smaller than a minimum
|
|
//width, which is chosen to be the column's contents (including header) width. To find what this is
|
|
//set temporarily the column's autosize mode to AllCells.
|
|
HelpersGUI.ResizeGridViewColumnToAllCells(ColumnDevicePath);
|
|
}
|
|
|
|
|
|
storageLinkColumn.Visible = storageLinkColumnVisible;
|
|
dataGridViewStorage.Sort(dataGridViewStorage.SortedColumn, dataGridViewStorage.SortOrder == SortOrder.Ascending ? ListSortDirection.Ascending : ListSortDirection.Descending);
|
|
|
|
IEnumerable<VBD> vbdsSelected = from VBDRow row in vbdSavedItems select row.VBD;
|
|
foreach (VBDRow row in dataGridViewStorage.Rows)
|
|
{
|
|
row.Selected = vbdsSelected.Contains(row.VBD);
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
log.Error("Exception while building the VM storage list.", e);
|
|
}
|
|
finally
|
|
{
|
|
dataGridViewStorage.ResumeLayout();
|
|
}
|
|
UpdateButtons();
|
|
}
|
|
|
|
private void UpdateButtons()
|
|
{
|
|
var selectedVMs = new List<SelectedItem>();
|
|
var vbdRows = new List<VBDRow>();
|
|
var selectedVDIs = new List<SelectedItem>();
|
|
var selectedVBDs = new List<SelectedItem>();
|
|
|
|
if (vm != null)
|
|
{
|
|
selectedVMs = new List<SelectedItem> {new SelectedItem(vm)};
|
|
vbdRows = dataGridViewStorage.SelectedRows.Cast<VBDRow>().ToList();
|
|
|
|
foreach (VBDRow r in vbdRows)
|
|
{
|
|
selectedVDIs.Add(new SelectedItem(r.VDI));
|
|
selectedVBDs.Add(new SelectedItem(r.VBD));
|
|
}
|
|
}
|
|
|
|
AddButton.Command = new AddVirtualDiskCommand(Program.MainWindow, selectedVMs);
|
|
AttachButton.Command = new AttachVirtualDiskCommand(Program.MainWindow, selectedVMs);
|
|
|
|
EditButton.Enabled = vbdRows.Count == 1 && !vbdRows[0].VBD.Locked && !vbdRows[0].VDI.Locked;
|
|
EditButton.Tag = EditButton.Enabled ? vbdRows[0].VDI : null;
|
|
|
|
// The user can see that this disk in use by this VM. Allow unplug + delete in single
|
|
// step (non default behaviour), but only if we are the only VBD (default behaviour)
|
|
|
|
DeleteButton.Command = new DeleteVirtualDiskCommand(Program.MainWindow, selectedVDIs)
|
|
{AllowRunningVMDelete = true};
|
|
|
|
//If the selection contains a mixture of attached and detached VBDs, go with the activation scenario.
|
|
//The action will report afterwards which ones failed because they were attached
|
|
|
|
if (selectedVBDs.Any(v => v.XenObject is VBD vbd && !vbd.currently_attached))
|
|
DeactivateButton.Command = new ActivateVBDCommand(Program.MainWindow, selectedVBDs);
|
|
else
|
|
DeactivateButton.Command = new DeactivateVBDCommand(Program.MainWindow, selectedVBDs);
|
|
|
|
DetachButton.Command = new DetachVirtualDiskCommand(Program.MainWindow, selectedVDIs, vm);
|
|
|
|
MoveButton.Command = MoveVirtualDiskDialog.MoveMigrateCommand(Program.MainWindow,
|
|
new SelectedItemCollection(selectedVDIs));
|
|
}
|
|
|
|
#region Actions on VDIs
|
|
|
|
private void EditVdi()
|
|
{
|
|
if (EditButton.Tag is VDI vdi)
|
|
using (var dlg = new PropertiesDialog(vdi))
|
|
dlg.ShowDialog(this);
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
#region Datagridview event handlers
|
|
|
|
private void dataGridViewStorage_SortCompare(object sender, DataGridViewSortCompareEventArgs e)
|
|
{
|
|
if (e.Column == ColumnDevicePosition)
|
|
{
|
|
e.SortResult = StringUtility.NaturalCompare(e.CellValue1.ToString(), e.CellValue2.ToString());
|
|
|
|
e.Handled = true;
|
|
}
|
|
else
|
|
{
|
|
e.Handled = false;
|
|
}
|
|
}
|
|
|
|
private void dataGridViewStorage_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
UpdateButtons();
|
|
}
|
|
|
|
private void dataGridViewStorage_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
|
|
{
|
|
if (e.RowIndex >= 0 && EditButton.Enabled)
|
|
{
|
|
// If double-click was on data row (not including header), launch the storage edit box
|
|
EditVdi();
|
|
}
|
|
}
|
|
|
|
private void dataGridViewStorage_MouseUp(object sender, MouseEventArgs e)
|
|
{
|
|
DataGridView.HitTestInfo hitTestInfo = dataGridViewStorage.HitTest(e.X, e.Y);
|
|
|
|
if (hitTestInfo.Type == DataGridViewHitTestType.None)
|
|
{
|
|
dataGridViewStorage.ClearSelection();
|
|
}
|
|
else if (hitTestInfo.Type == DataGridViewHitTestType.Cell && e.Button == MouseButtons.Right
|
|
&& 0 <= hitTestInfo.RowIndex && hitTestInfo.RowIndex < dataGridViewStorage.Rows.Count
|
|
&& !dataGridViewStorage.Rows[hitTestInfo.RowIndex].Selected)
|
|
{
|
|
// Select the row that the user right clicked on (similiar to outlook) if it's not already in the selection
|
|
// (avoids clearing a multiselect if you right click inside it)
|
|
// Check if the CurrentCell is the cell the user right clicked on (but the row is not Selected) [CA-64954]
|
|
// This happens when the grid is initially shown: the current cell is the first cell in the first column, but the row is not selected
|
|
|
|
if (dataGridViewStorage.CurrentCell == dataGridViewStorage[hitTestInfo.ColumnIndex, hitTestInfo.RowIndex])
|
|
dataGridViewStorage.Rows[hitTestInfo.RowIndex].Selected = true;
|
|
else
|
|
dataGridViewStorage.CurrentCell = dataGridViewStorage[hitTestInfo.ColumnIndex, hitTestInfo.RowIndex];
|
|
}
|
|
|
|
if ((hitTestInfo.Type == DataGridViewHitTestType.None || hitTestInfo.Type == DataGridViewHitTestType.Cell)
|
|
&& e.Button == MouseButtons.Right)
|
|
{
|
|
contextMenuStrip1.Show(dataGridViewStorage, new Point(e.X, e.Y));
|
|
}
|
|
}
|
|
|
|
private void dataGridViewStorage_KeyUp(object sender, KeyEventArgs e)
|
|
{
|
|
if (e.KeyCode != Keys.Apps)
|
|
return;
|
|
|
|
if (dataGridViewStorage.SelectedRows.Count == 0)
|
|
{
|
|
// 3 is the defaul control margin
|
|
contextMenuStrip1.Show(dataGridViewStorage, 3, dataGridViewStorage.ColumnHeadersHeight + 3);
|
|
}
|
|
else
|
|
{
|
|
DataGridViewRow row = dataGridViewStorage.SelectedRows[0];
|
|
contextMenuStrip1.Show(dataGridViewStorage, 3, row.Height * (row.Index + 2));
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
#region Button and Toolstrip event handlers
|
|
|
|
private void contextMenuStrip1_Opening(object sender, CancelEventArgs e)
|
|
{
|
|
bool add = AddButton.Visible && AddButton.Enabled;
|
|
bool attach = AttachButton.Visible && AttachButton.Enabled;
|
|
bool deactivate = DeactivateButton.Enabled;
|
|
bool move = MoveButton.Enabled;
|
|
bool delete = DeleteButton.Visible && DeleteButton.Enabled;
|
|
bool detach = DetachButton.Visible && DetachButton.Enabled;
|
|
bool edit = EditButton.Visible && EditButton.Enabled;
|
|
|
|
if (!(add || attach || deactivate || move || delete || detach || edit))
|
|
{
|
|
e.Cancel = true;
|
|
return;
|
|
}
|
|
|
|
toolStripMenuItemAdd.Visible = add;
|
|
toolStripMenuItemAttach.Visible = attach;
|
|
toolStripMenuItemDeactivate.Visible = deactivate;
|
|
toolStripMenuItemMove.Visible = move;
|
|
toolStripMenuItemDelete.Visible = delete;
|
|
toolStripMenuItemDetach.Visible = detach;
|
|
toolStripMenuItemProperties.Visible = edit;
|
|
toolStripSeparator1.Visible = (add || attach || deactivate || move || delete || detach) && edit;
|
|
}
|
|
|
|
|
|
private void toolStripMenuItemAdd_Click(object sender, EventArgs e)
|
|
{
|
|
if (AddButton.Visible && AddButton.Enabled)
|
|
AddButton.PerformClick();
|
|
UpdateButtons();
|
|
}
|
|
|
|
private void toolStripMenuItemAttach_Click(object sender, EventArgs e)
|
|
{
|
|
if (AttachButton.Visible && AttachButton.Enabled)
|
|
AttachButton.PerformClick();
|
|
UpdateButtons();
|
|
}
|
|
|
|
private void toolStripMenuItemDeactivate_Click(object sender, EventArgs e)
|
|
{
|
|
if (DeactivateButton.Enabled)
|
|
DeactivateButton.PerformClick();
|
|
}
|
|
|
|
private void toolStripMenuItemMove_Click(object sender, EventArgs e)
|
|
{
|
|
if (MoveButton.Enabled)
|
|
MoveButton.PerformClick();
|
|
}
|
|
|
|
private void toolStripMenuItemDelete_Click(object sender, EventArgs e)
|
|
{
|
|
if (DeleteButton.Visible && DeleteButton.Enabled)
|
|
DeleteButton.PerformClick();
|
|
}
|
|
|
|
private void toolStripMenuItemDetach_Click(object sender, EventArgs e)
|
|
{
|
|
if (DetachButton.Visible && DetachButton.Enabled)
|
|
DetachButton.PerformClick();
|
|
}
|
|
|
|
private void toolStripMenuItemProperties_Click(object sender, EventArgs e)
|
|
{
|
|
EditVdi();
|
|
}
|
|
|
|
|
|
private void AddButton_Click(object sender, EventArgs e)
|
|
{
|
|
UpdateButtons();
|
|
}
|
|
|
|
private void AttachButton_Click(object sender, EventArgs e)
|
|
{
|
|
UpdateButtons();
|
|
}
|
|
|
|
private void EditButton_Click(object sender, EventArgs e)
|
|
{
|
|
EditVdi();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
|
|
public class VBDRow : DataGridViewRow
|
|
{
|
|
public readonly VBD VBD;
|
|
|
|
public readonly VDI VDI;
|
|
|
|
public readonly SR SR;
|
|
|
|
/// <summary>
|
|
/// Arguments should never be null
|
|
/// </summary>
|
|
public VBDRow(VBD vbd, VDI vdi, SR sr)
|
|
{
|
|
Debug.Assert(vbd != null && vdi != null && sr != null, "vbd, vdi and sr must be set to a non-null value");
|
|
|
|
VBD = vbd;
|
|
VDI = vdi;
|
|
SR = sr;
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
DataGridViewTextBoxCell c = new DataGridViewTextBoxCell();
|
|
c.Value = CellValue(i);
|
|
Cells.Add(c);
|
|
}
|
|
}
|
|
|
|
public int CompareTo(object o)
|
|
{
|
|
VBDRow r = (VBDRow)o;
|
|
string c1 = this.VBD.userdevice;
|
|
string c2 = r.VBD.userdevice;
|
|
int i1;
|
|
int i2;
|
|
if (int.TryParse(c1, out i1) && int.TryParse(c2, out i2))
|
|
{
|
|
return i1 - i2;
|
|
}
|
|
else
|
|
{
|
|
return c1.CompareTo(c2);
|
|
}
|
|
}
|
|
|
|
private object CellValue(int col)
|
|
{
|
|
switch (col)
|
|
{
|
|
case 0:
|
|
return VBD.userdevice;
|
|
case 1:
|
|
return VDI.Name();
|
|
case 2:
|
|
return VDI.Description();
|
|
case 3:
|
|
return SR.Name();
|
|
case 4:
|
|
string name;
|
|
return VDI.sm_config.TryGetValue("displayname", out name) ? name : "";
|
|
case 5:
|
|
return VDI.SizeText();
|
|
case 6:
|
|
return VBD.IsReadOnly() ? Messages.YES : Messages.NO;
|
|
case 7:
|
|
return GetPriorityString(VBD.GetIoNice());
|
|
case 8:
|
|
return VBD.currently_attached ? Messages.YES : Messages.NO;
|
|
case 9:
|
|
return VBD.device == "" ? Messages.STORAGE_PANEL_UNKNOWN : string.Format("/dev/{0}", VBD.device);
|
|
default:
|
|
throw new ArgumentException(String.Format("Invalid column number {0} in VBDRenderer.CellValue()", col));
|
|
}
|
|
}
|
|
|
|
public void UpdateCells()
|
|
{
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
Cells[i].Value = CellValue(i);
|
|
}
|
|
}
|
|
|
|
private static string GetPriorityString(int p)
|
|
{
|
|
switch (p)
|
|
{
|
|
case 0:
|
|
return Messages.STORAGE_WORST;
|
|
case 7:
|
|
return Messages.STORAGE_BEST;
|
|
default:
|
|
return p.ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|