2023-01-24 15:29:31 +01:00
|
|
|
|
/* Copyright (c) Cloud Software Group, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
|
*
|
|
|
|
|
* 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;
|
2014-07-11 13:24:58 +02:00
|
|
|
|
using System.Linq;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
using System.Windows.Forms;
|
2018-04-17 11:36:04 +02:00
|
|
|
|
using System.Drawing;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAdmin.Network;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
using XenAdmin.Commands;
|
|
|
|
|
using XenAdmin.Dialogs;
|
2018-04-17 11:36:04 +02:00
|
|
|
|
using XenAdmin.Controls.DataGridViewEx;
|
|
|
|
|
using XenCenterLib;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.TabPages
|
|
|
|
|
{
|
|
|
|
|
public partial class PhysicalStoragePage : BaseTabPage
|
|
|
|
|
{
|
|
|
|
|
private IXenConnection connection;
|
|
|
|
|
private Host host;
|
|
|
|
|
|
|
|
|
|
private bool NeedBuildList;
|
|
|
|
|
|
2014-07-11 13:24:58 +02:00
|
|
|
|
private SelectionManager selectionManager;
|
|
|
|
|
private bool showTrimButton;
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
public PhysicalStoragePage()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
base.Text = Messages.STORAGE_TAB_TITLE;
|
|
|
|
|
PBD_CollectionChangedWithInvoke=Program.ProgramInvokeHandler(PBD_CollectionChanged);
|
|
|
|
|
|
2020-09-11 02:42:04 +02:00
|
|
|
|
trimButton.Command = new TrimSRCommand();
|
|
|
|
|
newSRButton.Command = new NewSRCommand();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
2019-09-13 18:47:27 +02:00
|
|
|
|
|
|
|
|
|
public override string HelpID => "TabPageStorage";
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Make sure you set this before you set the connection,
|
|
|
|
|
/// as the connection is the one which rebuilds the list
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Host Host
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (host != null)
|
|
|
|
|
{
|
|
|
|
|
host.PropertyChanged -= host_PropertyChanged;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
host = value;
|
|
|
|
|
|
|
|
|
|
if (host != null)
|
|
|
|
|
{
|
|
|
|
|
host.PropertyChanged += host_PropertyChanged;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private readonly CollectionChangeEventHandler PBD_CollectionChangedWithInvoke;
|
|
|
|
|
public IXenConnection Connection
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
2017-01-25 13:38:33 +01:00
|
|
|
|
UnregisterHandlers();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
connection = value;
|
|
|
|
|
|
|
|
|
|
if (connection != null)
|
|
|
|
|
{
|
|
|
|
|
connection.Cache.RegisterCollectionChanged<PBD>(PBD_CollectionChangedWithInvoke);
|
|
|
|
|
connection.XenObjectsUpdated += XenObjectUpdated;
|
|
|
|
|
|
|
|
|
|
Pool pool = Helpers.GetPoolOfOne(connection);
|
|
|
|
|
if (pool != null)
|
|
|
|
|
pool.PropertyChanged += pool_PropertyChanged;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-11 13:24:58 +02:00
|
|
|
|
RefreshTrimButton();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
BuildList();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void SetSelectionBroadcaster(SelectionBroadcaster selectionBroadcaster, IMainWindow mainWindow)
|
|
|
|
|
{
|
|
|
|
|
selectionBroadcaster.BindTo(newSRButton, mainWindow);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void contextMenuStrip_Opening(object sender, CancelEventArgs e)
|
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
if (dataGridViewSr.SelectedRows.Count != 1)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
e.Cancel = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
contextMenuStrip.Items.Clear();
|
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
var row = dataGridViewSr.SelectedRows[0] as SRRow;
|
|
|
|
|
if (row != null)
|
|
|
|
|
{
|
|
|
|
|
contextMenuStrip.Items.AddRange(Program.MainWindow.ContextMenuBuilder.Build(row.SR));
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void XenObjectUpdated(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (NeedBuildList)
|
|
|
|
|
{
|
|
|
|
|
BuildList();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void PBD_CollectionChanged(object sender, CollectionChangeEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Program.AssertOnEventThread();
|
|
|
|
|
|
|
|
|
|
NeedBuildList = true;
|
|
|
|
|
BuildList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void pool_PropertyChanged(object sender1, PropertyChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.PropertyName == "default_SR")
|
|
|
|
|
NeedBuildList = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void host_PropertyChanged(object sender1, PropertyChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.PropertyName == "PBDs")
|
|
|
|
|
NeedBuildList = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void sr_PropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.PropertyName == "PBDs")
|
|
|
|
|
{
|
|
|
|
|
NeedBuildList = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
Program.Invoke(Program.MainWindow, () => RefreshItem(sender as SR));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void RefreshItem(SR sr=null)
|
|
|
|
|
{
|
|
|
|
|
if (sr == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
foreach (DataGridViewRow row in dataGridViewSr.Rows)
|
|
|
|
|
{
|
|
|
|
|
var srRow = row as SRRow;
|
|
|
|
|
if (srRow != null && sr.Equals(srRow.SR))
|
|
|
|
|
{
|
|
|
|
|
srRow.UpdateDetails();
|
|
|
|
|
break;
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-25 13:38:33 +01:00
|
|
|
|
|
|
|
|
|
private void UnregisterHandlers()
|
|
|
|
|
{
|
|
|
|
|
if (connection == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
connection.Cache.DeregisterCollectionChanged<PBD>(PBD_CollectionChangedWithInvoke);
|
|
|
|
|
connection.XenObjectsUpdated -= XenObjectUpdated;
|
|
|
|
|
|
|
|
|
|
foreach (SR sr in connection.Cache.SRs)
|
|
|
|
|
{
|
|
|
|
|
sr.PropertyChanged -= sr_PropertyChanged;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Pool pool = Helpers.GetPoolOfOne(connection);
|
|
|
|
|
if (pool != null)
|
|
|
|
|
pool.PropertyChanged -= pool_PropertyChanged;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void PageHidden()
|
|
|
|
|
{
|
|
|
|
|
UnregisterHandlers();
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
private void BuildList()
|
|
|
|
|
{
|
|
|
|
|
if (!this.Visible)
|
|
|
|
|
return;
|
2018-04-17 11:36:04 +02:00
|
|
|
|
int selectedIndex = dataGridViewSr.SelectedRows.Count == 1 ? dataGridViewSr.SelectedRows[0].Index : -1;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
dataGridViewSr.SuspendLayout();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
dataGridViewSr.Rows.Clear();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
if (connection == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
List<PBD> pbds = host != null ? new List<PBD>(connection.ResolveAll(host.PBDs))
|
|
|
|
|
: new List<PBD>(connection.Cache.PBDs);
|
|
|
|
|
|
|
|
|
|
List<String> srs = new List<String>();
|
|
|
|
|
|
|
|
|
|
foreach (PBD pbd in pbds)
|
|
|
|
|
{
|
|
|
|
|
SR sr = pbd.Connection.Resolve(pbd.SR);
|
|
|
|
|
|
2017-09-03 04:33:29 +02:00
|
|
|
|
if (sr == null || sr.IsToolsSR() || !sr.Show(Properties.Settings.Default.ShowHiddenVMs))
|
2013-06-24 13:41:48 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// From MSDN:
|
|
|
|
|
// Returns the zero-based index of item in the sorted List<T>, if item is found;
|
|
|
|
|
// otherwise, a negative number that is the bitwise complement of the index of
|
|
|
|
|
// the next element that is larger than item or, if there is no larger element,
|
|
|
|
|
// the bitwise complement of Count.
|
|
|
|
|
int index = srs.BinarySearch(sr.opaque_ref);
|
|
|
|
|
|
|
|
|
|
// Don't allow duplicates
|
|
|
|
|
if (index >= 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
sr.PropertyChanged -= sr_PropertyChanged;
|
|
|
|
|
sr.PropertyChanged += sr_PropertyChanged;
|
|
|
|
|
|
|
|
|
|
index = ~index;
|
|
|
|
|
srs.Insert(index, sr.opaque_ref);
|
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
SRRow row = new SRRow(sr);
|
|
|
|
|
dataGridViewSr.Rows.Add(row);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
if (selectedIndex >= 0 && selectedIndex < dataGridViewSr.Rows.Count)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
// Select previously selected item
|
2018-04-17 11:36:04 +02:00
|
|
|
|
dataGridViewSr.Rows[selectedIndex].Selected = true;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
2014-07-11 13:24:58 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Select first item
|
2018-04-17 11:36:04 +02:00
|
|
|
|
if (dataGridViewSr.Rows.Count > 0)
|
|
|
|
|
dataGridViewSr.Rows[0].Selected = true;
|
2014-07-11 13:24:58 +02:00
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
dataGridViewSr.ResumeLayout();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
RefreshButtons();
|
|
|
|
|
NeedBuildList = false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
private void dataGridViewSr_MouseUp(object sender, MouseEventArgs e)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
DataGridView.HitTestInfo hitTestInfo = dataGridViewSr.HitTest(e.X, e.Y);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
if (hitTestInfo.Type == DataGridViewHitTestType.None)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
dataGridViewSr.ClearSelection();
|
|
|
|
|
}
|
|
|
|
|
else if (hitTestInfo.Type == DataGridViewHitTestType.Cell && e.Button == MouseButtons.Right
|
|
|
|
|
&& 0 <= hitTestInfo.RowIndex && hitTestInfo.RowIndex < dataGridViewSr.Rows.Count
|
|
|
|
|
&& !dataGridViewSr.Rows[hitTestInfo.RowIndex].Selected)
|
|
|
|
|
{
|
|
|
|
|
if (dataGridViewSr.CurrentCell == dataGridViewSr[hitTestInfo.ColumnIndex, hitTestInfo.RowIndex])
|
|
|
|
|
dataGridViewSr.Rows[hitTestInfo.RowIndex].Selected = true;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
else
|
2018-04-17 11:36:04 +02:00
|
|
|
|
dataGridViewSr.CurrentCell = dataGridViewSr[hitTestInfo.ColumnIndex, hitTestInfo.RowIndex];
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
2018-04-17 11:36:04 +02:00
|
|
|
|
|
|
|
|
|
if ((hitTestInfo.Type == DataGridViewHitTestType.None || hitTestInfo.Type == DataGridViewHitTestType.Cell)
|
|
|
|
|
&& e.Button == MouseButtons.Right)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
contextMenuStrip.Show(dataGridViewSr, new Point(e.X, e.Y));
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
2018-04-17 11:36:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void dataGridViewSr_SortCompare(object sender, DataGridViewSortCompareEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var sr1 = ((SRRow)dataGridViewSr.Rows[e.RowIndex1]).SR;
|
|
|
|
|
var sr2 = ((SRRow)dataGridViewSr.Rows[e.RowIndex2]).SR;
|
|
|
|
|
|
|
|
|
|
string sr1CompStr = null;
|
|
|
|
|
string sr2CompStr = null;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
if (e.Column.Index == columnUsage.Index)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
int percent1 = sr1.physical_size == 0 ? 0 : (int)(100.0 * sr1.physical_utilisation / (double)sr1.physical_size);
|
|
|
|
|
int percent2 = sr2.physical_size == 0 ? 0 : (int)(100.0 * sr2.physical_utilisation / (double)sr2.physical_size);
|
|
|
|
|
long diff = percent1 - percent2;
|
|
|
|
|
e.SortResult = diff > 0 ? 1 : diff < 0 ? -1 : 0;
|
|
|
|
|
e.Handled = true;
|
|
|
|
|
return;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
2018-04-17 11:36:04 +02:00
|
|
|
|
else if (e.Column.Index == columnSize.Index)
|
|
|
|
|
{
|
|
|
|
|
long diff = sr1.physical_size - sr2.physical_size;
|
|
|
|
|
e.SortResult = diff > 0 ? 1 : diff < 0 ? -1 : 0;
|
|
|
|
|
e.Handled = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if (e.Column.Index == columnVirtAlloc.Index)
|
|
|
|
|
{
|
|
|
|
|
long diff = sr1.virtual_allocation - sr2.virtual_allocation;
|
|
|
|
|
e.SortResult = diff > 0 ? 1 : diff < 0 ? -1 : 0;
|
|
|
|
|
e.Handled = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if (e.Column.Index == columnName.Index)
|
|
|
|
|
{
|
|
|
|
|
sr1CompStr = sr1.Name();
|
|
|
|
|
sr2CompStr = sr2.Name();
|
|
|
|
|
}
|
|
|
|
|
else if (e.Column.Index == columnDescription.Index)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
sr1CompStr = sr1.Description();
|
|
|
|
|
sr2CompStr = sr2.Description();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
if (sr1CompStr != null && sr2CompStr != null)
|
|
|
|
|
{
|
|
|
|
|
var descCompare = StringUtility.NaturalCompare(sr1CompStr, sr2CompStr);
|
|
|
|
|
if (descCompare != 0)
|
|
|
|
|
{
|
|
|
|
|
e.SortResult = descCompare;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var refCompare = string.Compare(sr1.opaque_ref, sr2.opaque_ref, StringComparison.Ordinal);
|
|
|
|
|
e.SortResult = refCompare;
|
|
|
|
|
}
|
|
|
|
|
e.Handled = true;
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void buttonProperties_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
if (dataGridViewSr.SelectedRows.Count != 1)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
return;
|
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
var srRow = dataGridViewSr.SelectedRows[0] as SRRow;
|
|
|
|
|
|
|
|
|
|
if (srRow != null)
|
|
|
|
|
{
|
|
|
|
|
SR sr = srRow.SR;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
new PropertiesDialog(sr).ShowDialog(this);
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 11:36:04 +02:00
|
|
|
|
void dataGridViewSrs_SelectedIndexChanged(object sender, EventArgs e)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
RefreshButtons();
|
2014-07-11 13:24:58 +02:00
|
|
|
|
if (showTrimButton)
|
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
List<SelectedItem> selectedSRs = (from SRRow row in dataGridViewSr.SelectedRows select new SelectedItem(row.SR)).ToList();
|
2014-07-11 13:24:58 +02:00
|
|
|
|
selectionManager.SetSelection(selectedSRs);
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void RefreshButtons()
|
|
|
|
|
{
|
2018-04-17 11:36:04 +02:00
|
|
|
|
buttonProperties.Enabled = dataGridViewSr.SelectedRows.Count == 1;
|
2014-07-11 13:24:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void RefreshTrimButton()
|
|
|
|
|
{
|
2019-01-31 00:00:56 +01:00
|
|
|
|
showTrimButton = connection != null;
|
2014-07-11 13:24:58 +02:00
|
|
|
|
if (showTrimButton)
|
2014-06-24 12:32:36 +02:00
|
|
|
|
{
|
2014-07-11 13:24:58 +02:00
|
|
|
|
trimButtonContainer.Visible = true;
|
|
|
|
|
if (selectionManager == null)
|
|
|
|
|
selectionManager = new SelectionManager();
|
|
|
|
|
selectionManager.BindTo(trimButton, Program.MainWindow);
|
2014-06-24 12:32:36 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-07-11 13:24:58 +02:00
|
|
|
|
trimButtonContainer.Visible = false;
|
|
|
|
|
trimButton.SelectionBroadcaster = null;
|
2014-06-24 12:32:36 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-17 11:36:04 +02:00
|
|
|
|
|
|
|
|
|
protected class SRRow: DataGridViewRow
|
|
|
|
|
{
|
|
|
|
|
private SR sr;
|
|
|
|
|
public SR SR { get { return sr; } }
|
|
|
|
|
|
|
|
|
|
private DataGridViewExImageCell imageCell = new DataGridViewExImageCell();
|
|
|
|
|
private DataGridViewTextBoxCell nameCell = new DataGridViewTextBoxCell();
|
|
|
|
|
private DataGridViewTextBoxCell descriptionCell = new DataGridViewTextBoxCell();
|
|
|
|
|
private DataGridViewTextBoxCell typeCell = new DataGridViewTextBoxCell();
|
|
|
|
|
private DataGridViewTextBoxCell sharedCell = new DataGridViewTextBoxCell();
|
|
|
|
|
private DataGridViewTextBoxCell usageCell = new DataGridViewTextBoxCell();
|
|
|
|
|
private DataGridViewTextBoxCell sizeCell = new DataGridViewTextBoxCell();
|
|
|
|
|
private DataGridViewTextBoxCell virtAllocCell = new DataGridViewTextBoxCell();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public SRRow(SR sr)
|
|
|
|
|
{
|
|
|
|
|
this.sr = sr;
|
|
|
|
|
Cells.AddRange(imageCell,
|
|
|
|
|
nameCell,
|
|
|
|
|
descriptionCell,
|
|
|
|
|
typeCell,
|
|
|
|
|
sharedCell,
|
|
|
|
|
usageCell,
|
|
|
|
|
sizeCell,
|
|
|
|
|
virtAllocCell);
|
|
|
|
|
|
|
|
|
|
sr.PropertyChanged += sr_PropertyChanged;
|
|
|
|
|
UpdateDetails();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateDetails()
|
|
|
|
|
{
|
|
|
|
|
if (this.sr != null)
|
|
|
|
|
{
|
|
|
|
|
// Work out percent usage
|
|
|
|
|
int percent = 0;
|
|
|
|
|
double ratio = 0;
|
|
|
|
|
if (this.sr.physical_size > 0)
|
|
|
|
|
{
|
|
|
|
|
ratio = this.sr.physical_utilisation / (double)this.sr.physical_size;
|
|
|
|
|
percent = (int)(100.0 * ratio);
|
|
|
|
|
}
|
|
|
|
|
string percentString = string.Format(Messages.DISK_PERCENT_USED, percent, Util.DiskSizeString(this.sr.physical_utilisation));
|
|
|
|
|
|
|
|
|
|
imageCell.Value = Images.GetImage16For(Images.GetIconFor(this.sr));
|
|
|
|
|
nameCell.Value = this.sr.Name();
|
|
|
|
|
descriptionCell.Value = this.sr.Description();
|
|
|
|
|
typeCell.Value = this.sr.FriendlyTypeName();
|
|
|
|
|
sharedCell.Value = this.sr.shared ? Messages.YES : Messages.NO;
|
|
|
|
|
usageCell.Value = percentString;
|
|
|
|
|
sizeCell.Value = Util.DiskSizeString(this.sr.physical_size);
|
|
|
|
|
virtAllocCell.Value = Util.DiskSizeString(this.sr.virtual_allocation);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void sr_PropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Program.Invoke(Program.MainWindow, UpdateDetails);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|