xenadmin/XenAdmin/Controls/Ballooning/HostShinyBar.cs
Carmen Agimof 4da67c0590 CA-147944: Use GB for VM Memory if large values
- Memory Tab uses GB units for values greater or equal to 1 GB, otherwise show in MB;
- Search Tab displays values in GB or MB in the same as the Memory Tab (e.g. 512 MB of 1 GB, 256 MB of 512 MB, 2.5 GB of 16 GB).
- The shiny bar present in the Memory Tab and in Memory Settings dialog shows the scaling in the following way: If smaller than 1 GB, then show as before, else show only labels with values multiples of half a GB.
- The units used in Memory Setting Dialog are set depending on the static_max. If it is greater or equal to 1 GB, then the units are GB, else MB. The user does not have the possibility of changing them.
2015-08-20 12:41:39 +01:00

146 lines
6.2 KiB
C#

/* 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.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using XenAPI;
namespace XenAdmin.Controls.Ballooning
{
public partial class HostShinyBar : ShinyBar
{
public HostShinyBar()
{
InitializeComponent();
}
private Host host;
private Host_metrics host_metrics;
List<VM> vms;
Dictionary<VM, VM_metrics> vm_metrics;
long xen_memory;
public void Initialize(Host host, long xen_memory)
{
this.host = host;
this.host_metrics = host.Connection.Resolve(host.metrics);
this.xen_memory = xen_memory;
vms = host.Connection.ResolveAll(host.resident_VMs);
vm_metrics = new Dictionary<VM, VM_metrics>();
foreach (VM vm in vms)
vm_metrics[vm] = vm.Connection.Resolve(vm.metrics);
}
protected override void OnPaint(PaintEventArgs e)
{
if (host == null || host_metrics == null || vms == null || host_metrics.memory_total == 0)
return;
Graphics g = e.Graphics;
Rectangle barArea = barRect;
double bytesPerPixel = (double)host_metrics.memory_total / (double)barArea.Width;
// Grid
DrawGrid(g, barArea, bytesPerPixel, host_metrics.memory_total);
// A bar for Xen memory
double left = (double)barArea.Left;
DrawSegment(g, xen_memory, bytesPerPixel, Messages.MEMORY_XEN, null, BallooningColors.HostShinyBar_Control, ref left);
// A bar for each VM
int i = 0;
vms.Sort();
foreach (VM vm in vms)
{
if (vm.is_control_domain)
continue;
VM_metrics metrics = vm_metrics[vm];
if (metrics != null)
{
DrawSegment(g, metrics.memory_actual, bytesPerPixel, vm.Name, vm,
BallooningColors.HostShinyBar_VMs[i++ % BallooningColors.HostShinyBar_VMs.Length],
ref left);
}
}
// One final bar for free space
Rectangle rectFree = new Rectangle((int)left, barArea.Top, barArea.Right - (int)left, barArea.Height);
DrawToTarget(g, barArea, rectFree, BallooningColors.HostShinyBar_Unused);
}
private void DrawSegment(Graphics g, long mem, double bytesPerPixel, string name, VM vm, Color color, ref double left)
{
// This should never happen, but actually does happen in older server dbs because
// we didn't used to have the amount of free memory accurately (see CA-31223).
if (mem < 0)
return;
Rectangle barArea = barRect;
double width = mem / bytesPerPixel;
Rectangle rect = new Rectangle((int)left, barArea.Top,
(int)(left + width) - (int)left, // this is not necessarily the same as (int)width, which can leave a 1 pixel gap
barArea.Height);
string bytesString = Util.MemorySizeStringSuitableUnits(mem, false);
string caption = name + "\n" + bytesString;
string toolTip = name + "\n" + string.Format(Messages.CURRENT_MEMORY_USAGE, Util.MemorySizeStringSuitableUnits(mem, true));
if (vm != null && vm.has_ballooning)
{
if (vm.memory_dynamic_max == vm.memory_static_max)
toolTip += string.Format("\n{0}: {1}\n{2}: {3}",
Messages.DYNAMIC_MIN, Util.MemorySizeStringSuitableUnits(vm.memory_dynamic_min, true),
Messages.DYNAMIC_MAX, Util.MemorySizeStringSuitableUnits(vm.memory_dynamic_max, true));
else
toolTip += string.Format("\n{0}: {1}\n{2}: {3}\n{4}: {5}",
Messages.DYNAMIC_MIN, Util.MemorySizeStringSuitableUnits(vm.memory_dynamic_min, true),
Messages.DYNAMIC_MAX, Util.MemorySizeStringSuitableUnits(vm.memory_dynamic_max, true),
Messages.STATIC_MAX, Util.MemorySizeStringSuitableUnits(vm.memory_static_max, true));
}
DrawToTarget(g, barArea, rect, color, caption, BallooningColors.HostShinyBar_Text, HorizontalAlignment.Center, toolTip);
left += width;
}
protected override int barHeight
{
get
{
return 40;
}
}
}
}