mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 14:27:26 +01:00
bd36a85bff
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
367 lines
14 KiB
C#
367 lines
14 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 XenAdmin.Core;
|
|
using XenAPI;
|
|
|
|
|
|
namespace XenAdmin.Controls.Ballooning
|
|
{
|
|
public partial class VMShinyBar : ShinyBar
|
|
{
|
|
public event EventHandler SliderDragged;
|
|
|
|
public VMShinyBar()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
// Variables passed in
|
|
private long memoryUsed;
|
|
private long static_min, static_max, dynamic_min, dynamic_max, dynamic_min_orig, dynamic_max_orig;
|
|
public long dynamic_min_lowlimit, dynamic_min_highlimit, dynamic_max_lowlimit, dynamic_max_highlimit;
|
|
private bool has_ballooning;
|
|
private bool allowEdit;
|
|
private bool multiple;
|
|
|
|
// The increment in which the user can move the draggers, in MB
|
|
long increment;
|
|
public long Increment
|
|
{
|
|
get { return increment; }
|
|
set { increment = value; }
|
|
}
|
|
|
|
public long Dynamic_min
|
|
{
|
|
get { return dynamic_min; }
|
|
}
|
|
|
|
public long Dynamic_max
|
|
{
|
|
get { return dynamic_max; }
|
|
}
|
|
|
|
private bool Equal
|
|
{
|
|
get { return Dynamic_min == Dynamic_max; }
|
|
}
|
|
|
|
public void SetRanges(long dynamic_min_lowlimit, long dynamic_min_highlimit, long dynamic_max_lowlimit, long dynamic_max_highlimit)
|
|
{
|
|
// Round to nearest MB inwards to agree with MemorySpinner and avoid bugs like CA-34996.
|
|
long lowMB, highMB;
|
|
MemorySpinner.CalcMBRanges(dynamic_min_lowlimit, dynamic_min_highlimit, out lowMB, out highMB);
|
|
this.dynamic_min_lowlimit = lowMB * Util.BINARY_MEGA;
|
|
this.dynamic_min_highlimit = highMB * Util.BINARY_MEGA;
|
|
MemorySpinner.CalcMBRanges(dynamic_max_lowlimit, dynamic_max_highlimit, out lowMB, out highMB);
|
|
this.dynamic_max_lowlimit = lowMB * Util.BINARY_MEGA;
|
|
this.dynamic_max_highlimit = highMB * Util.BINARY_MEGA;
|
|
}
|
|
|
|
private long SliderMinLimit
|
|
{
|
|
get
|
|
{
|
|
System.Diagnostics.Trace.Assert(activeSlider != Slider.NONE);
|
|
return (activeSlider == Slider.MAX ? dynamic_max_lowlimit : dynamic_min_lowlimit);
|
|
}
|
|
}
|
|
|
|
private long SliderMaxLimit
|
|
{
|
|
get
|
|
{
|
|
System.Diagnostics.Trace.Assert(activeSlider != Slider.NONE);
|
|
return (activeSlider == Slider.MIN ? dynamic_min_highlimit : dynamic_max_highlimit);
|
|
}
|
|
}
|
|
|
|
private enum Slider { NONE, MIN, MAX };
|
|
|
|
// Internal state
|
|
private Point mouseLocation = new Point(-1, -1);
|
|
private Rectangle min_slider_rect, max_slider_rect;
|
|
private Slider activeSlider = Slider.NONE;
|
|
private bool mouseIsDown = false;
|
|
private double BytesPerPixel;
|
|
|
|
public void Initialize(VM vm, bool multiple, long memoryUsed, bool allowEdit)
|
|
{
|
|
this.multiple = multiple;
|
|
this.memoryUsed = memoryUsed;
|
|
this.static_min = vm.memory_static_min;
|
|
this.static_max = vm.memory_static_max;
|
|
this.dynamic_min = dynamic_min_orig = vm.memory_dynamic_min;
|
|
this.dynamic_max = dynamic_max_orig = vm.memory_dynamic_max;
|
|
this.has_ballooning = vm.has_ballooning;
|
|
this.allowEdit = allowEdit;
|
|
}
|
|
|
|
public void ChangeSettings(long static_min, long dynamic_min, long dynamic_max, long static_max)
|
|
{
|
|
this.static_min = static_min;
|
|
|
|
// If we're editing, we never reduce the static_max (really, the "static_max" is just the top
|
|
// of the bar: the real static_max is the position of the top of the range).
|
|
if (!allowEdit || this.static_max < static_max)
|
|
this.static_max = static_max;
|
|
|
|
// If they're already equal, we don't reset the dynamic_min_orig.
|
|
// (They've probably been set through the sliders not the spinners).
|
|
if (dynamic_min != this.dynamic_min)
|
|
this.dynamic_min = dynamic_min_orig = dynamic_min;
|
|
if (dynamic_max != this.dynamic_max)
|
|
this.dynamic_max = dynamic_max_orig = dynamic_max;
|
|
}
|
|
|
|
private void SetMemory(Slider slider, long bytes)
|
|
{
|
|
bool dragged = false;
|
|
if (slider == Slider.MIN && dynamic_min != bytes)
|
|
{
|
|
dynamic_min = bytes;
|
|
dragged = true;
|
|
}
|
|
if (slider == Slider.MAX && dynamic_max != bytes)
|
|
{
|
|
dynamic_max = bytes;
|
|
dragged = true;
|
|
}
|
|
if (dragged)
|
|
OnSliderDragged();
|
|
}
|
|
|
|
private void OnSliderDragged()
|
|
{
|
|
if (SliderDragged != null)
|
|
SliderDragged(this, null);
|
|
}
|
|
|
|
protected override void OnPaint(PaintEventArgs e)
|
|
{
|
|
if (static_max == 0) // not initialised
|
|
return;
|
|
|
|
Graphics g = e.Graphics;
|
|
Rectangle barArea = barRect;
|
|
BytesPerPixel = (double)static_max / (double)barArea.Width;
|
|
|
|
// Grid
|
|
|
|
DrawGrid(g, barArea, BytesPerPixel, static_max);
|
|
|
|
// The bar
|
|
|
|
int left_width = (int)((double)memoryUsed / BytesPerPixel);
|
|
if (left_width > barArea.Width) // Happens if the user is reducing static_max to below current memory usage.
|
|
left_width = barArea.Width; // I wanted to add a right-arrow to the bytesString in that case too, but the glyph isn't present in the font: and too much work to add an image.
|
|
Rectangle rect = new Rectangle(barArea.Left, barArea.Top, left_width, barArea.Height);
|
|
string bytesString = Util.SuperiorSizeString(memoryUsed, 0);
|
|
string toolTip = string.Format(multiple ? Messages.CURRENT_MEMORY_USAGE_MULTIPLE : Messages.CURRENT_MEMORY_USAGE, bytesString);
|
|
DrawToTarget(g, barArea, rect, BallooningColors.VMShinyBar_Used, bytesString, BallooningColors.VMShinyBar_Text, HorizontalAlignment.Right, toolTip);
|
|
|
|
rect = new Rectangle(barArea.Left + left_width, barArea.Top, barArea.Width - left_width, barArea.Height);
|
|
DrawToTarget(g, barArea, rect, BallooningColors.VMShinyBar_Unused);
|
|
|
|
// Sliders
|
|
|
|
if (has_ballooning)
|
|
{
|
|
DrawSliderRanges(g);
|
|
DrawSliders(g, dynamic_min, dynamic_max);
|
|
}
|
|
}
|
|
|
|
protected override void OnMouseMove(MouseEventArgs e)
|
|
{
|
|
if (allowEdit)
|
|
{
|
|
mouseLocation = e.Location;
|
|
if (activeSlider != Slider.NONE)
|
|
{
|
|
long min = SliderMinLimit;
|
|
long max = SliderMaxLimit;
|
|
long orig = (activeSlider == Slider.MIN ? dynamic_min_orig : dynamic_max_orig);
|
|
long posBytes = (long)((mouseLocation.X - barRect.Left) * BytesPerPixel);
|
|
if (posBytes <= min)
|
|
posBytes = min;
|
|
else if (posBytes >= max)
|
|
posBytes = max;
|
|
else
|
|
{
|
|
long incrBytes = Increment * Util.BINARY_MEGA;
|
|
|
|
// round to nearest incrBytes
|
|
long roundedBytes = (posBytes + incrBytes / 2) / incrBytes * incrBytes;
|
|
|
|
// We also allow the original value, even if it's not a multiple of
|
|
// incrBytes. That's so that we don't jump as soon as we click it
|
|
// (also so that we can get back to the original value if we want to).
|
|
long distRound = (posBytes - roundedBytes > 0 ? posBytes - roundedBytes : roundedBytes - posBytes);
|
|
long distOrig = (posBytes - orig > 0 ? posBytes - orig : orig - posBytes);
|
|
if (distRound >= distOrig)
|
|
roundedBytes = orig;
|
|
|
|
// posBytes can fall outside its range before or after the rounding,
|
|
// and both want to be truncated
|
|
if (roundedBytes <= min)
|
|
posBytes = min;
|
|
else if (roundedBytes >= max)
|
|
posBytes = max;
|
|
else
|
|
posBytes = roundedBytes;
|
|
}
|
|
SetMemory(activeSlider, posBytes);
|
|
}
|
|
Refresh();
|
|
}
|
|
|
|
base.OnMouseMove(e);
|
|
}
|
|
|
|
protected override void OnMouseLeave(EventArgs e)
|
|
{
|
|
if (allowEdit)
|
|
{
|
|
mouseIsDown = false;
|
|
mouseLocation = new Point(-1, -1);
|
|
activeSlider = Slider.NONE;
|
|
Refresh();
|
|
}
|
|
|
|
base.OnMouseLeave(e);
|
|
}
|
|
|
|
protected override void OnMouseDown(MouseEventArgs e)
|
|
{
|
|
if (allowEdit && e.Button == MouseButtons.Left)
|
|
{
|
|
mouseIsDown = true;
|
|
if (min_slider_rect.Contains(mouseLocation))
|
|
activeSlider = Slider.MIN;
|
|
else if (max_slider_rect.Contains(mouseLocation))
|
|
activeSlider = Slider.MAX;
|
|
Refresh();
|
|
}
|
|
|
|
base.OnMouseDown(e);
|
|
}
|
|
|
|
protected override void OnMouseUp(MouseEventArgs e)
|
|
{
|
|
if (allowEdit)
|
|
{
|
|
mouseIsDown = false;
|
|
activeSlider = Slider.NONE;
|
|
Refresh();
|
|
}
|
|
|
|
base.OnMouseUp(e);
|
|
}
|
|
|
|
private void DrawSliderRanges(Graphics g)
|
|
{
|
|
// Draw slider ranges if we're dragging right now
|
|
if (activeSlider == Slider.NONE)
|
|
return;
|
|
|
|
Rectangle barArea = barRect;
|
|
const int Height = 10;
|
|
int min = barArea.Left + (int)((double)SliderMinLimit / BytesPerPixel);
|
|
int max = barArea.Left + (int)((double)SliderMaxLimit / BytesPerPixel);
|
|
|
|
using (Brush brush = new SolidBrush(BallooningColors.SliderLimits))
|
|
{
|
|
g.FillRectangle(brush, min, barRect.Bottom, max - min, Height);
|
|
}
|
|
}
|
|
|
|
private void DrawSliders(Graphics g, long min, long max)
|
|
{
|
|
Rectangle barArea = barRect;
|
|
Image min_image, max_image;
|
|
if (allowEdit)
|
|
{
|
|
min_image = XenAdmin.Properties.Resources.memory_dynmin_slider;
|
|
max_image = XenAdmin.Properties.Resources.memory_dynmax_slider;
|
|
}
|
|
else
|
|
{
|
|
min_image = XenAdmin.Properties.Resources.memory_dynmin_slider_noedit;
|
|
max_image = XenAdmin.Properties.Resources.memory_dynmax_slider_noedit;
|
|
}
|
|
|
|
// Calculate where to draw the sliders
|
|
Point min_pt = new Point(barArea.Left + (int)((double)min / BytesPerPixel) - min_image.Width + (allowEdit ? 0 : 1), barArea.Bottom);
|
|
Point max_pt = new Point(barArea.Left + (int)((double)max / BytesPerPixel) - (allowEdit ? 0 : 1), barArea.Bottom);
|
|
min_slider_rect = new Rectangle(min_pt, min_image.Size);
|
|
max_slider_rect = new Rectangle(max_pt, max_image.Size);
|
|
|
|
// Recalculate the images to draw in case the mouse is over one of them
|
|
if (allowEdit)
|
|
{
|
|
if (activeSlider == Slider.MIN)
|
|
min_image = XenAdmin.Properties.Resources.memory_dynmin_slider_dark;
|
|
if (activeSlider == Slider.MAX)
|
|
max_image = XenAdmin.Properties.Resources.memory_dynmax_slider_dark;
|
|
|
|
if (activeSlider == Slider.NONE && !mouseIsDown)
|
|
{
|
|
if (min_slider_rect.Contains(mouseLocation))
|
|
min_image = XenAdmin.Properties.Resources.memory_dynmin_slider_light;
|
|
else if (max_slider_rect.Contains(mouseLocation))
|
|
max_image = XenAdmin.Properties.Resources.memory_dynmax_slider_light;
|
|
}
|
|
}
|
|
|
|
// Draw the images
|
|
g.DrawImageUnscaled(min_image, min_pt);
|
|
g.DrawImageUnscaled(max_image, max_pt);
|
|
}
|
|
|
|
protected override int barHeight
|
|
{
|
|
get
|
|
{
|
|
return 20;
|
|
}
|
|
}
|
|
}
|
|
}
|