2023-01-24 15:29:31 +01:00
|
|
|
|
/* Copyright (c) Cloud Software Group, Inc.
|
2019-08-22 11:47:43 +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;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using XenAdmin.Actions;
|
2019-08-29 12:40:21 +02:00
|
|
|
|
using XenAdmin.Actions.Xcm;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
using XenAdmin.XCM;
|
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAdmin.Network;
|
|
|
|
|
using XenAdmin.Wizards.ConversionWizard;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Dialogs
|
|
|
|
|
{
|
|
|
|
|
public partial class ConversionDialog : XenDialogBase
|
|
|
|
|
{
|
|
|
|
|
#region Private fields
|
|
|
|
|
|
|
|
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
|
|
|
|
|
|
private const int HEARTBEAT = 10; //seconds
|
|
|
|
|
private ConversionClient _conversionClient;
|
|
|
|
|
private Conversion[] _currentConversionList = { };
|
|
|
|
|
private readonly object _conversionLock = new object();
|
|
|
|
|
private volatile bool _updating;
|
|
|
|
|
private volatile bool _updateRequired;
|
|
|
|
|
private VM _conversionVm;
|
2019-09-23 15:56:36 +02:00
|
|
|
|
private VM[] _conversionVms;
|
2019-08-29 12:40:21 +02:00
|
|
|
|
private ActivateConversionVpxAction _activateAction;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
|
|
|
|
private static readonly string[] DetailHeaders =
|
|
|
|
|
{
|
|
|
|
|
Messages.CONVERSION_DETAIL_CONVERSION_ID,
|
|
|
|
|
Messages.CONVERSION_DETAIL_TARGET_SR,
|
|
|
|
|
Messages.CONVERSION_DETAIL_NETWORK_READ,
|
|
|
|
|
Messages.CONVERSION_DETAIL_DISK_WRITE,
|
|
|
|
|
Messages.CONVERSION_DETAIL_START_TIME,
|
|
|
|
|
Messages.CONVERSION_DETAIL_FINISH_TIME,
|
|
|
|
|
Messages.CONVERSION_DETAIL_DURATION,
|
|
|
|
|
Messages.CONVERSION_DETAIL_STATUS,
|
2019-08-22 16:52:59 +02:00
|
|
|
|
Messages.CONVERSION_DETAIL_DESCRIPTION
|
2019-08-22 11:47:43 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2019-09-23 15:56:36 +02:00
|
|
|
|
public ConversionDialog(IXenConnection conn, params VM[] conversionVms)
|
2019-08-22 11:47:43 +02:00
|
|
|
|
: base(conn)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2019-09-23 15:56:36 +02:00
|
|
|
|
_conversionVms = conversionVms;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
2019-08-28 15:57:36 +02:00
|
|
|
|
toolStripDdbFilterStatus.ImplementsIncomplete = true;
|
|
|
|
|
toolStripDdbFilterStatus.ImplementsQueued = true;
|
|
|
|
|
|
2019-08-22 11:47:43 +02:00
|
|
|
|
toolStripSplitButtonRefresh.DefaultItem = toolStripMenuItemRefreshAll;
|
|
|
|
|
toolStripSplitButtonRefresh.Text = toolStripMenuItemRefreshAll.Text;
|
|
|
|
|
toolStripSplitButtonLogs.DefaultItem = menuItemFetchAllLogs;
|
|
|
|
|
toolStripSplitButtonLogs.Text = menuItemFetchAllLogs.Text;
|
|
|
|
|
|
|
|
|
|
statusLabel.Image = null;
|
|
|
|
|
statusLabel.Text = string.Empty;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
SetFilterLabel();
|
|
|
|
|
UpdateButtons();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Conversion[] CurrentConversionList
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
lock (_conversionLock)
|
|
|
|
|
return _currentConversionList;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
lock (_conversionLock)
|
|
|
|
|
_currentConversionList = value ?? new Conversion[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool FilterIsOn => toolStripDdbFilterStatus.FilterIsOn;
|
|
|
|
|
|
2019-09-23 15:56:36 +02:00
|
|
|
|
protected override void OnShown(EventArgs e)
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
2019-09-23 15:56:36 +02:00
|
|
|
|
base.OnShown(e);
|
|
|
|
|
Text = string.Format(Messages.CONVERSION_MANAGER_TITLE, Helpers.GetName(Helpers.GetPoolOfOne(connection)).Ellipsise(80));
|
|
|
|
|
|
|
|
|
|
if (_conversionVms.Length == 0) //shouldn't happen, but just in case
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
|
|
|
|
statusLabel.Text = Messages.CONVERSION_CANNOT_FIND_VPX;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_conversionVms.Length == 1)
|
|
|
|
|
{
|
|
|
|
|
_conversionVm = _conversionVms[0];
|
|
|
|
|
ConnectToVpx();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
using (var dlg = new ConversionVmSelectionDialog(connection, _conversionVms))
|
|
|
|
|
{
|
|
|
|
|
if (dlg.ShowDialog(this) == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
_conversionVm = dlg.ConversionVm;
|
|
|
|
|
ConnectToVpx();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Close();
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-22 11:47:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnFormClosing(FormClosingEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
timerVpx.Stop();
|
2019-08-29 12:40:21 +02:00
|
|
|
|
|
2019-08-22 11:47:43 +02:00
|
|
|
|
if (_conversionVm != null)
|
|
|
|
|
_conversionVm.PropertyChanged -= _conversionVm_PropertyChanged;
|
2019-08-29 12:40:21 +02:00
|
|
|
|
|
|
|
|
|
if (_activateAction != null)
|
|
|
|
|
{
|
|
|
|
|
_activateAction.Completed -= ActivateConversionVpxAction_Completed;
|
|
|
|
|
_activateAction.Changed -= ActivateConversionVpxAction_Changed;
|
|
|
|
|
|
|
|
|
|
if (!_activateAction.IsCompleted)
|
|
|
|
|
_activateAction.Cancel();
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-22 11:47:43 +02:00
|
|
|
|
base.OnFormClosing(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal override string HelpName => "ConversionManager";
|
|
|
|
|
|
2020-01-22 15:47:39 +01:00
|
|
|
|
private Version ConversionVpxMinimumSupportedVersion
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var version = Program.Version;
|
2023-01-15 15:08:53 +01:00
|
|
|
|
return version.ToString() == "0.0.0.0" ? version : new Version(BrandManager.ProductVersion70Short);
|
2020-01-22 15:47:39 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
|
|
|
|
private void ConnectToVpx()
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages.ajax_loader;
|
|
|
|
|
statusLabel.Text = Messages.CONVERSION_INITIALIZING_VPX;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
|
2019-09-23 15:56:36 +02:00
|
|
|
|
_activateAction = new ActivateConversionVpxAction(_conversionVm);
|
2019-08-29 12:40:21 +02:00
|
|
|
|
_activateAction.Completed += ActivateConversionVpxAction_Completed;
|
|
|
|
|
_activateAction.Changed += ActivateConversionVpxAction_Changed;
|
|
|
|
|
_activateAction.RunAsync();
|
2019-08-22 11:47:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 12:40:21 +02:00
|
|
|
|
private void ActivateConversionVpxAction_Completed(ActionBase obj)
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
2019-08-29 12:40:21 +02:00
|
|
|
|
if (!(obj is ActivateConversionVpxAction action))
|
|
|
|
|
return;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
2019-08-29 12:40:21 +02:00
|
|
|
|
action.Completed -= ActivateConversionVpxAction_Completed;
|
|
|
|
|
action.Changed -= ActivateConversionVpxAction_Changed;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
2019-08-29 12:40:21 +02:00
|
|
|
|
Program.Invoke(this, () =>
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
2019-08-29 12:40:21 +02:00
|
|
|
|
if (!action.Succeeded)
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
|
|
|
|
statusLabel.Text = action.Exception.Message;
|
|
|
|
|
statusLinkLabel.Reset(Messages.CONVERSION_TRY_AGAIN, ConnectToVpx);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
2019-08-29 12:40:21 +02:00
|
|
|
|
var useSsl = Properties.Settings.Default.ConversionClientUseSsl;
|
|
|
|
|
_conversionClient = new ConversionClient(connection, action.ServiceIp, useSsl);
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
2019-08-29 12:40:21 +02:00
|
|
|
|
// if we're reconnecting the conversion VM, we need to clear the old one
|
|
|
|
|
if (_conversionVm != null)
|
|
|
|
|
_conversionVm.PropertyChanged -= _conversionVm_PropertyChanged;
|
|
|
|
|
_conversionVm = action.ConversionVm;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
_conversionVm.PropertyChanged += _conversionVm_PropertyChanged;
|
2019-08-29 12:40:21 +02:00
|
|
|
|
|
|
|
|
|
CheckVersionCompatibility();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ActivateConversionVpxAction_Changed(ActionBase obj)
|
|
|
|
|
{
|
|
|
|
|
if (!(obj is ActivateConversionVpxAction action))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () => { statusLabel.Text = action.Description; });
|
2019-08-22 11:47:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void _conversionVm_PropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.PropertyName != "power_state" || _conversionVm == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (_conversionVm.power_state != vm_power_state.Running)
|
|
|
|
|
{
|
|
|
|
|
timerVpx.Stop();
|
|
|
|
|
CurrentConversionList = null;
|
|
|
|
|
Program.Invoke(this, BuildConversionList);
|
|
|
|
|
ConnectToVpx();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CheckVersionCompatibility()
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Text = Messages.CONVERSION_VERSION_CHECK;
|
|
|
|
|
|
|
|
|
|
ThreadPool.QueueUserWorkItem(obj =>
|
|
|
|
|
{
|
2019-09-11 00:31:05 +02:00
|
|
|
|
const int sleep = 3000, timeout = 120000;
|
|
|
|
|
var tries = timeout / sleep;
|
|
|
|
|
|
|
|
|
|
Exception ex = null;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
string version = null;
|
2019-09-11 00:31:05 +02:00
|
|
|
|
|
|
|
|
|
while (tries > 0)
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
2019-09-11 00:31:05 +02:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
version = _conversionClient.GetVpxVersion();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(version))
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
ex = e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Thread.Sleep(sleep);
|
|
|
|
|
tries--;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
}
|
2019-09-11 00:31:05 +02:00
|
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(version))
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
2019-09-11 00:31:05 +02:00
|
|
|
|
log.Error("Cannot retrieve XCM VPX version.", ex);
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
|
|
|
|
statusLabel.Text = Messages.CONVERSION_VERSION_CHECK_FAILURE;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
2019-08-28 15:57:36 +02:00
|
|
|
|
if (!Version.TryParse(version, out Version result) ||
|
2020-01-22 15:47:39 +01:00
|
|
|
|
result.CompareTo(ConversionVpxMinimumSupportedVersion) < 0)
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
2021-03-16 02:50:45 +01:00
|
|
|
|
statusLabel.Text = string.Format(Messages.CONVERSION_VERSION_INCOMPATIBILITY, BrandManager.BrandConsole);
|
2019-08-22 11:47:43 +02:00
|
|
|
|
statusLinkLabel.Reset(Messages.MORE_INFO, () =>
|
|
|
|
|
{
|
2023-01-15 15:08:53 +01:00
|
|
|
|
using (var dlog = new NoIconDialog(string.Format(Messages.CONVERSION_VERSION_INCOMPATIBILITY_INFO, ConversionVpxMinimumSupportedVersion, BrandManager.ProductBrand)))
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
|
|
|
|
dlog.ShowDialog(this);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-30 19:55:52 +01:00
|
|
|
|
//statusLabel.Image = Images.StaticImages.xcm;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
statusLabel.Text = Messages.CONVERSION_CONNECTING_VPX_SUCCESS;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
|
|
|
|
|
timerVpx.Start();
|
|
|
|
|
FetchConversionHistory();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FetchConversionHistory()
|
|
|
|
|
{
|
|
|
|
|
ThreadPool.QueueUserWorkItem(obj =>
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
CurrentConversionList = _conversionClient.GetConversionHistory();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
log.Error("Cannot fetch conversion history.", e);
|
|
|
|
|
CurrentConversionList = null;
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
|
|
|
|
statusLabel.Text = string.Format(Messages.CONVERSION_CONNECTING_VPX_INTERRUPTION, HEARTBEAT);
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_updating)
|
|
|
|
|
{
|
|
|
|
|
_updateRequired = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, BuildConversionList);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FetchConversionDetails(Conversion conversion)
|
|
|
|
|
{
|
|
|
|
|
ThreadPool.QueueUserWorkItem(obj =>
|
|
|
|
|
{
|
|
|
|
|
Conversion refreshedConversion;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
refreshedConversion = _conversionClient.GetConversionDetails(conversion);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
log.Error($"Cannot fetch details for conversion {conversion.Id}", e);
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
|
|
|
|
statusLabel.Text = Messages.CONVERSION_DETAIL_GET_FAILURE;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_updating)
|
|
|
|
|
{
|
|
|
|
|
_updateRequired = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
|
|
|
|
UpdateConversionRow(refreshedConversion);
|
|
|
|
|
UpdateButtons();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CreateConversion(ConversionConfig config)
|
|
|
|
|
{
|
|
|
|
|
ThreadPool.QueueUserWorkItem(obj =>
|
|
|
|
|
{
|
|
|
|
|
Conversion conv;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
conv = _conversionClient.CreateConversion(config);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
log.Error("Failed to create new conversion", e);
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
|
|
|
|
statusLabel.Text = Messages.CONVERSION_CREATE_FAILURE;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FetchConversionDetails(conv);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void BuildConversionList()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_updating = true;
|
|
|
|
|
dataGridViewConversions.SuspendLayout();
|
|
|
|
|
|
|
|
|
|
var selectedConversionId = dataGridViewConversions.SelectedRows.Count == 1 && dataGridViewConversions.SelectedRows[0] is ConversionRow r
|
|
|
|
|
? r.Conversion.Id
|
|
|
|
|
: null;
|
|
|
|
|
|
|
|
|
|
dataGridViewConversions.Rows.Clear();
|
|
|
|
|
var rows = CurrentConversionList.Where(c => !toolStripDdbFilterStatus.HideByStatus(c)).Select(c => new ConversionRow(c)).ToList();
|
|
|
|
|
|
2019-08-22 16:52:59 +02:00
|
|
|
|
if (dataGridViewConversions.SortedColumn == null)
|
|
|
|
|
{
|
|
|
|
|
rows.Sort((r1, r2) => CompareConversionRows(ColumnStartTime.Index, r1, r2));
|
|
|
|
|
rows.Reverse();
|
|
|
|
|
dataGridViewConversions.Sort(ColumnStartTime, ListSortDirection.Descending);
|
|
|
|
|
}
|
|
|
|
|
else
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
|
|
|
|
rows.Sort((r1, r2) => CompareConversionRows(dataGridViewConversions.SortedColumn.Index, r1, r2));
|
|
|
|
|
|
|
|
|
|
if (dataGridViewConversions.SortOrder == SortOrder.Descending)
|
|
|
|
|
rows.Reverse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dataGridViewConversions.Rows.AddRange(rows.Cast<DataGridViewRow>().ToArray());
|
|
|
|
|
|
|
|
|
|
foreach (ConversionRow row in dataGridViewConversions.Rows)
|
|
|
|
|
{
|
|
|
|
|
if (row.Conversion.Id == selectedConversionId)
|
|
|
|
|
{
|
|
|
|
|
row.Selected = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dataGridViewConversions.SelectedRows.Count == 0 && dataGridViewConversions.Rows.Count > 0)
|
|
|
|
|
dataGridViewConversions.Rows[0].Selected = true;
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
dataGridViewConversions.ResumeLayout();
|
|
|
|
|
_updating = false;
|
|
|
|
|
|
|
|
|
|
if (_updateRequired)
|
|
|
|
|
{
|
|
|
|
|
_updateRequired = false;
|
|
|
|
|
BuildConversionList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UpdateButtons();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateConversionRow(Conversion conversion)
|
|
|
|
|
{
|
|
|
|
|
foreach (ConversionRow row in dataGridViewConversions.Rows)
|
|
|
|
|
{
|
|
|
|
|
if (row.Conversion.Id == conversion.Id)
|
|
|
|
|
{
|
|
|
|
|
if (toolStripDdbFilterStatus.HideByStatus(conversion))
|
|
|
|
|
{
|
|
|
|
|
dataGridViewConversions.Rows.Remove(row);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
row.RefreshRow(conversion);
|
|
|
|
|
if (row.Selected)
|
|
|
|
|
BuildDetailsView(row.Conversion);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void BuildDetailsView(Conversion conversion)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
dataGridViewDetails.SuspendLayout();
|
|
|
|
|
|
|
|
|
|
var details = GetDetailValues(conversion);
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < DetailHeaders.Length; i++)
|
|
|
|
|
AddOrUpdateDetailRow($"{DetailHeaders[i]}:", details[i]);
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
dataGridViewDetails.ResumeLayout();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void AddOrUpdateDetailRow(string key, string val)
|
|
|
|
|
{
|
|
|
|
|
foreach (DataGridViewRow row in dataGridViewDetails.Rows)
|
|
|
|
|
{
|
|
|
|
|
if (row.Cells.Count > 1 && row.Cells[0].Value as string == key)
|
|
|
|
|
{
|
|
|
|
|
row.Cells[1].Value = val;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dataGridViewDetails.Rows.Add(new ConversionDetailRow(key, val));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ClearDetailsView()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
dataGridViewDetails.SuspendLayout();
|
|
|
|
|
dataGridViewDetails.Rows.Clear();
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
dataGridViewDetails.ResumeLayout();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string[] GetDetailValues(Conversion conversion)
|
|
|
|
|
{
|
2019-11-07 16:07:15 +01:00
|
|
|
|
GetConversionLocalTimes(conversion, out DateTime? startTime, out DateTime? finishTime, out TimeSpan? duration);
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
|
|
|
|
var startTimeString = Messages.HYPHEN;
|
|
|
|
|
var finishTimeString = Messages.HYPHEN;
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
2019-11-07 16:07:15 +01:00
|
|
|
|
if (startTime.HasValue)
|
|
|
|
|
startTimeString = HelpersGUI.DateTimeToString(startTime.Value, Messages.DATEFORMAT_DMY_HM, true);
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
2019-11-07 16:07:15 +01:00
|
|
|
|
if (finishTime.HasValue)
|
|
|
|
|
finishTimeString = HelpersGUI.DateTimeToString(finishTime.Value, Messages.DATEFORMAT_DMY_HM, true);
|
2019-08-22 11:47:43 +02:00
|
|
|
|
});
|
|
|
|
|
|
2019-08-22 16:52:59 +02:00
|
|
|
|
var statusDetail = conversion.StatusDetail;
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(conversion.Error))
|
|
|
|
|
statusDetail = string.Format("{0}\n{1}", statusDetail, conversion.Error);
|
|
|
|
|
|
2019-08-22 11:47:43 +02:00
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
conversion.Id,
|
|
|
|
|
conversion.SRName,
|
2019-08-22 16:52:59 +02:00
|
|
|
|
string.Format(Messages.CONVERSION_DETAIL_NETWORK_READ_COMPRESSED, Util.DiskSizeString(conversion.CompressedBytesRead)),
|
2019-08-22 11:47:43 +02:00
|
|
|
|
Util.DiskSizeString(conversion.UncompressedBytesWritten),
|
2019-11-07 16:07:15 +01:00
|
|
|
|
startTimeString,
|
2019-08-22 11:47:43 +02:00
|
|
|
|
finishTimeString,
|
2019-11-07 16:07:15 +01:00
|
|
|
|
duration.HasValue ? duration.Value.ToString(@"h\:mm\:ss") : Messages.HYPHEN,
|
2019-08-22 16:52:59 +02:00
|
|
|
|
conversion.GetStatusString(),
|
|
|
|
|
statusDetail
|
2019-08-22 11:47:43 +02:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-07 16:07:15 +01:00
|
|
|
|
private static void GetConversionLocalTimes(Conversion conversion,
|
|
|
|
|
out DateTime? startTime, out DateTime? finishTime, out TimeSpan? duration)
|
|
|
|
|
{
|
|
|
|
|
var now = DateTime.Now;
|
|
|
|
|
|
|
|
|
|
startTime = conversion.StartTime.ToLocalTime();
|
|
|
|
|
if (now < startTime)
|
|
|
|
|
startTime = null;
|
|
|
|
|
|
|
|
|
|
finishTime = conversion.CompletedTime.ToLocalTime();
|
|
|
|
|
if (conversion.StartTime > conversion.CompletedTime)
|
|
|
|
|
finishTime = null;
|
|
|
|
|
|
|
|
|
|
if (startTime.HasValue && finishTime.HasValue)
|
|
|
|
|
duration = finishTime - startTime;
|
|
|
|
|
else if (startTime.HasValue)
|
|
|
|
|
duration = now - startTime;
|
|
|
|
|
else
|
|
|
|
|
duration = null;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-22 11:47:43 +02:00
|
|
|
|
private void FetchLogs(Conversion? conversion = null)
|
|
|
|
|
{
|
|
|
|
|
string fileName;
|
|
|
|
|
using (SaveFileDialog dialog = new SaveFileDialog
|
|
|
|
|
{
|
|
|
|
|
AddExtension = true,
|
|
|
|
|
Filter = string.Format("{0} (*.txt)|*.txt|{1} (*.*)|*.*", Messages.TXT_DESCRIPTION, Messages.ALL_FILES),
|
|
|
|
|
FilterIndex = 0,
|
|
|
|
|
Title = Messages.CONVERSION_LOG_SAVE_TITLE,
|
|
|
|
|
RestoreDirectory = true,
|
|
|
|
|
DefaultExt = "txt",
|
|
|
|
|
CheckPathExists = false,
|
|
|
|
|
OverwritePrompt = true
|
|
|
|
|
})
|
|
|
|
|
{
|
|
|
|
|
if (dialog.ShowDialog(this) != DialogResult.OK)
|
|
|
|
|
return;
|
|
|
|
|
fileName = dialog.FileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
new DelegatedAsyncAction(null,
|
|
|
|
|
string.Format(Messages.CONVERSION_LOG_SAVE, fileName),
|
|
|
|
|
string.Format(Messages.CONVERSION_LOG_SAVING, fileName),
|
|
|
|
|
string.Format(Messages.CONVERSION_LOG_SAVED, fileName),
|
|
|
|
|
obj =>
|
|
|
|
|
{
|
|
|
|
|
var logString = conversion.HasValue
|
|
|
|
|
? _conversionClient.GetConversionLog(conversion.Value)
|
|
|
|
|
: _conversionClient.GetVpxLogs();
|
|
|
|
|
|
|
|
|
|
using (StreamWriter stream = new StreamWriter(fileName, false, Encoding.UTF8))
|
|
|
|
|
stream.Write(logString);
|
|
|
|
|
}).RunAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateButtons()
|
|
|
|
|
{
|
|
|
|
|
toolStripButtonNew.Enabled = _conversionClient != null;
|
|
|
|
|
|
|
|
|
|
ConversionRow oneRow = null;
|
|
|
|
|
if (dataGridViewConversions.SelectedRows.Count == 1)
|
|
|
|
|
oneRow = dataGridViewConversions.SelectedRows[0] as ConversionRow;
|
|
|
|
|
|
2019-08-28 15:57:36 +02:00
|
|
|
|
contextItemCancel.Visible = toolStripButtonCancel.Enabled = oneRow != null && oneRow.Conversion.CanCancel;
|
|
|
|
|
contextItemRetry.Visible = toolStripButtonRetry.Enabled = oneRow != null && oneRow.Conversion.CanRetry;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
2019-08-28 15:57:36 +02:00
|
|
|
|
contextItemRefresh.Visible = toolStripMenuItemRefreshSelected.Enabled = oneRow != null;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
toolStripMenuItemRefreshAll.Enabled = dataGridViewConversions.Rows.Count > 0;
|
|
|
|
|
toolStripSplitButtonRefresh.Enabled = toolStripMenuItemRefreshAll.Enabled || toolStripMenuItemRefreshSelected.Enabled;
|
|
|
|
|
|
2019-08-28 15:57:36 +02:00
|
|
|
|
contextItemFetchLogs.Visible = menuItemFetchSelectedLog.Enabled = oneRow != null;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
menuItemFetchAllLogs.Enabled = _conversionClient != null;
|
|
|
|
|
toolStripSplitButtonLogs.Enabled = menuItemFetchSelectedLog.Enabled || menuItemFetchAllLogs.Enabled;
|
|
|
|
|
|
|
|
|
|
toolStripButtonClear.Enabled = toolStripButtonExport.Enabled = dataGridViewConversions.Rows.Count > 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SetFilterLabel()
|
|
|
|
|
{
|
|
|
|
|
toolStripLabelFiltersOnOff.Text = FilterIsOn ? Messages.FILTERS_ON : Messages.FILTERS_OFF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int CompareConversionRows(int sortingColumnIndex, ConversionRow row1, ConversionRow row2)
|
|
|
|
|
{
|
|
|
|
|
var conv1 = row1.Conversion;
|
|
|
|
|
var conv2 = row2.Conversion;
|
|
|
|
|
|
|
|
|
|
if (sortingColumnIndex == ColumnVm.Index)
|
|
|
|
|
return Conversion.CompareOnVm(conv1, conv2);
|
|
|
|
|
|
|
|
|
|
if (sortingColumnIndex == ColumnSourceServer.Index)
|
|
|
|
|
return Conversion.CompareOnServer(conv1, conv2);
|
|
|
|
|
|
|
|
|
|
if (sortingColumnIndex == ColumnStartTime.Index)
|
|
|
|
|
return Conversion.CompareOnStartTime(conv1, conv2);
|
|
|
|
|
|
|
|
|
|
if (sortingColumnIndex == ColumnFinishTime.Index)
|
|
|
|
|
return Conversion.CompareOnCompletedTime(conv1, conv2);
|
|
|
|
|
|
|
|
|
|
if (sortingColumnIndex == ColumnStatus.Index)
|
|
|
|
|
return Conversion.CompareOnStatus(conv1, conv2);
|
|
|
|
|
|
|
|
|
|
return Conversion.CompareOnId(conv1, conv2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region Event handlers
|
|
|
|
|
|
|
|
|
|
private void timerVpx_Tick(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
//the timer ticks every second, but a request is sent only every as many seconds as specified by the HEARTBEAT
|
|
|
|
|
if (DateTime.Now.Second % HEARTBEAT == 0)
|
|
|
|
|
FetchConversionHistory();
|
|
|
|
|
|
|
|
|
|
if (dataGridViewConversions.SelectedRows.Count == 1 && dataGridViewConversions.SelectedRows[0] is ConversionRow row && row.Conversion.InProgress)
|
|
|
|
|
BuildDetailsView(row.Conversion);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void dataGridViewConversions_SelectionChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
UpdateButtons();
|
|
|
|
|
|
|
|
|
|
if (dataGridViewConversions.SelectedRows.Count == 1 && dataGridViewConversions.SelectedRows[0] is ConversionRow row)
|
|
|
|
|
BuildDetailsView(row.Conversion);
|
|
|
|
|
else
|
|
|
|
|
ClearDetailsView();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void dataGridViewConversions_SortCompare(object sender, DataGridViewSortCompareEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var row1 = (ConversionRow)dataGridViewConversions.Rows[e.RowIndex1];
|
|
|
|
|
var row2 = (ConversionRow)dataGridViewConversions.Rows[e.RowIndex2];
|
|
|
|
|
e.SortResult = CompareConversionRows(e.Column.Index, row1, row2);
|
|
|
|
|
e.Handled = true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 15:57:36 +02:00
|
|
|
|
private void dataGridViewConversions_MouseUp(object sender, MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.Button != MouseButtons.Right)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
var hitTestInfo = dataGridViewConversions.HitTest(e.X, e.Y);
|
|
|
|
|
|
|
|
|
|
if (hitTestInfo.Type == DataGridViewHitTestType.Cell &&
|
|
|
|
|
0 <= hitTestInfo.RowIndex && hitTestInfo.RowIndex < dataGridViewConversions.Rows.Count)
|
|
|
|
|
{
|
|
|
|
|
dataGridViewConversions.Rows[hitTestInfo.RowIndex].Selected = true;
|
|
|
|
|
contextMenuStrip1.Show(dataGridViewConversions, new Point(e.X, e.Y));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void dataGridViewConversions_KeyUp(object sender, KeyEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.KeyCode != Keys.Apps)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (dataGridViewConversions.SelectedRows.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
var row = dataGridViewConversions.SelectedRows[0];
|
|
|
|
|
contextMenuStrip1.Show(dataGridViewConversions, 3, row.Height * (row.Index + 2));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-22 11:47:43 +02:00
|
|
|
|
private void ConversionWizard_FormClosed(object sender, FormClosedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var wizard = sender as ConversionWizard;
|
|
|
|
|
if (wizard == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
wizard.FormClosed -= ConversionWizard_FormClosed;
|
|
|
|
|
|
|
|
|
|
if (wizard.ConversionConfigs == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
foreach (var config in wizard.ConversionConfigs)
|
|
|
|
|
CreateConversion(config);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripButtonNew_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var wizard = new ConversionWizard(_conversionClient);
|
|
|
|
|
wizard.FormClosed += ConversionWizard_FormClosed;
|
|
|
|
|
Program.MainWindow.ShowPerConnectionWizard(connection, wizard, this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripButtonCancel_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (dataGridViewConversions.SelectedRows.Count == 1 && dataGridViewConversions.SelectedRows[0] is ConversionRow row)
|
|
|
|
|
{
|
2020-04-22 15:47:03 +02:00
|
|
|
|
using (var dlog = new WarningDialog(Messages.CONVERSION_CANCEL_CONFIRM,
|
|
|
|
|
ThreeButtonDialog.ButtonYes, ThreeButtonDialog.ButtonNo))
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
2019-09-23 15:56:36 +02:00
|
|
|
|
if (dlog.ShowDialog(this) == DialogResult.No)
|
2019-08-22 11:47:43 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ThreadPool.QueueUserWorkItem(obj =>
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_conversionClient.CancelConversion(row.Conversion);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
log.Error($"Cannot cancel conversion {row.Conversion.Id}.", ex);
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
|
|
|
|
statusLabel.Text = Messages.CONVERSION_CANCEL_FAILURE;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripButtonRetry_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (dataGridViewConversions.SelectedRows.Count == 1 && dataGridViewConversions.SelectedRows[0] is ConversionRow row)
|
|
|
|
|
{
|
|
|
|
|
ThreadPool.QueueUserWorkItem(obj =>
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_conversionClient.RetryConversion(row.Conversion);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
log.Error($"Cannot retry conversion {row.Conversion.Id}.", ex);
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
|
|
|
|
statusLabel.Text = Messages.CONVERSION_RETRY_FAILURE;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripButtonClear_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2020-04-22 15:47:03 +02:00
|
|
|
|
using (var dlog = new WarningDialog(Messages.CONVERSION_CLEAR_HISTORY_CONFIRM,
|
|
|
|
|
ThreeButtonDialog.ButtonYes, ThreeButtonDialog.ButtonNo))
|
2019-08-22 11:47:43 +02:00
|
|
|
|
{
|
2019-09-23 15:56:36 +02:00
|
|
|
|
if (dlog.ShowDialog(this) == DialogResult.No)
|
2019-08-22 11:47:43 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
toolStripButtonClear.Enabled = false;
|
|
|
|
|
|
|
|
|
|
ThreadPool.QueueUserWorkItem(obj =>
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_conversionClient.ClearConversionHistory();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
log.Error("Cannot clear conversion history.", ex);
|
|
|
|
|
|
|
|
|
|
Program.Invoke(this, () =>
|
|
|
|
|
{
|
|
|
|
|
statusLabel.Image = Images.StaticImages._000_error_h32bit_16;
|
|
|
|
|
statusLabel.Text = Messages.CONVERSION_CLEAR_HISTORY_FAILURE;
|
|
|
|
|
statusLinkLabel.Reset();
|
|
|
|
|
toolStripButtonClear.Enabled = true;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripDdbFilterStatus_FilterChanged()
|
|
|
|
|
{
|
|
|
|
|
SetFilterLabel();
|
|
|
|
|
BuildConversionList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripButtonExport_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
bool exportAll = true;
|
|
|
|
|
|
|
|
|
|
if (FilterIsOn)
|
|
|
|
|
{
|
2020-04-22 15:47:03 +02:00
|
|
|
|
using (var dlog = new NoIconDialog(Messages.CONVERSION_EXPORT_ALL_OR_FILTERED,
|
2019-08-22 11:47:43 +02:00
|
|
|
|
new ThreeButtonDialog.TBDButton(Messages.EXPORT_ALL_BUTTON, DialogResult.Yes),
|
|
|
|
|
new ThreeButtonDialog.TBDButton(Messages.EXPORT_FILTERED_BUTTON, DialogResult.No, ThreeButtonDialog.ButtonType.NONE),
|
|
|
|
|
ThreeButtonDialog.ButtonCancel))
|
|
|
|
|
{
|
|
|
|
|
var result = dlog.ShowDialog(this);
|
|
|
|
|
|
|
|
|
|
if (result == DialogResult.No)
|
|
|
|
|
exportAll = false;
|
|
|
|
|
else if (result == DialogResult.Cancel)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string fileName;
|
|
|
|
|
using (SaveFileDialog dialog = new SaveFileDialog
|
|
|
|
|
{
|
|
|
|
|
AddExtension = true,
|
|
|
|
|
Filter = string.Format("{0} (*.csv)|*.csv|{1} (*.txt)|*.txt|{2} (*.*)|*.*",
|
|
|
|
|
Messages.CSV_DESCRIPTION, Messages.TXT_DESCRIPTION, Messages.ALL_FILES),
|
|
|
|
|
FilterIndex = 0,
|
|
|
|
|
Title = Messages.EXPORT_ALL,
|
|
|
|
|
RestoreDirectory = true,
|
|
|
|
|
DefaultExt = "csv",
|
|
|
|
|
CheckPathExists = false,
|
|
|
|
|
OverwritePrompt = true
|
|
|
|
|
})
|
|
|
|
|
{
|
|
|
|
|
if (dialog.ShowDialog(this) != DialogResult.OK)
|
|
|
|
|
return;
|
|
|
|
|
fileName = dialog.FileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
new DelegatedAsyncAction(null,
|
|
|
|
|
string.Format(Messages.CONVERSION_EXPORT, fileName),
|
|
|
|
|
string.Format(Messages.CONVERSION_EXPORTING, fileName),
|
|
|
|
|
string.Format(Messages.CONVERSION_EXPORTED, fileName),
|
|
|
|
|
s =>
|
|
|
|
|
{
|
|
|
|
|
using (StreamWriter stream = new StreamWriter(fileName, false, Encoding.UTF8))
|
|
|
|
|
{
|
|
|
|
|
stream.WriteLine(string.Join(",", DetailHeaders.Select(v => $"\"{v}\"")));
|
|
|
|
|
|
|
|
|
|
if (exportAll)
|
|
|
|
|
{
|
|
|
|
|
var exportable = new List<Conversion>(CurrentConversionList);
|
|
|
|
|
foreach (var conv in exportable)
|
|
|
|
|
stream.WriteLine(string.Join(",", GetDetailValues(conv).Select(v => $"\"{v}\"")));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
foreach (ConversionRow row in dataGridViewConversions.Rows)
|
|
|
|
|
{
|
|
|
|
|
if (row != null)
|
|
|
|
|
stream.WriteLine(string.Join(",", GetDetailValues(row.Conversion).Select(v => $"\"{v}\"")));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}).RunAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripSplitButtonRefresh_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
toolStripSplitButtonRefresh.DefaultItem = e.ClickedItem;
|
|
|
|
|
toolStripSplitButtonRefresh.Text = toolStripSplitButtonRefresh.DefaultItem.Text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripMenuItemRefreshSelected_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (dataGridViewConversions.SelectedRows.Count == 1 && dataGridViewConversions.SelectedRows[0] is ConversionRow row)
|
|
|
|
|
FetchConversionDetails(row.Conversion);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripMenuItemRefreshAll_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
FetchConversionHistory();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripSplitButtonLogs_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
toolStripSplitButtonLogs.DefaultItem = e.ClickedItem;
|
|
|
|
|
toolStripSplitButtonLogs.Text = toolStripSplitButtonLogs.DefaultItem.Text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void menuItemFetchSelectedLog_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (dataGridViewConversions.SelectedRows.Count == 1 && dataGridViewConversions.SelectedRows[0] is ConversionRow row)
|
|
|
|
|
FetchLogs(row.Conversion);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void menuItemFetchAllLogs_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
FetchLogs();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void buttonClose_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region Nested items
|
|
|
|
|
|
|
|
|
|
private class ConversionRow : DataGridViewRow
|
|
|
|
|
{
|
|
|
|
|
private readonly DataGridViewTextBoxCell cellSourceVm = new DataGridViewTextBoxCell();
|
|
|
|
|
private readonly DataGridViewTextBoxCell cellsourceServer = new DataGridViewTextBoxCell();
|
|
|
|
|
private readonly DataGridViewTextBoxCell cellStartTime = new DataGridViewTextBoxCell();
|
|
|
|
|
private readonly DataGridViewTextBoxCell cellFinishTime = new DataGridViewTextBoxCell();
|
|
|
|
|
private readonly DataGridViewImageCell cellStatus = new DataGridViewImageCell();
|
|
|
|
|
|
|
|
|
|
public Conversion Conversion { get; private set; }
|
|
|
|
|
|
|
|
|
|
public ConversionRow(Conversion conversion)
|
|
|
|
|
{
|
|
|
|
|
Cells.AddRange(cellSourceVm, cellsourceServer, cellStartTime, cellFinishTime, cellStatus);
|
|
|
|
|
RefreshRow(conversion);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void RefreshRow(Conversion conversion)
|
|
|
|
|
{
|
|
|
|
|
Conversion = conversion;
|
|
|
|
|
cellSourceVm.Value = conversion.Configuration.SourceVmName;
|
|
|
|
|
cellsourceServer.Value = conversion.Configuration.SourceServer.Hostname;
|
|
|
|
|
|
2019-11-07 16:07:15 +01:00
|
|
|
|
GetConversionLocalTimes(conversion, out DateTime? startTime, out DateTime? finishTime, out _);
|
|
|
|
|
|
|
|
|
|
cellStartTime.Value = startTime.HasValue
|
|
|
|
|
? HelpersGUI.DateTimeToString(startTime.Value, Messages.DATEFORMAT_DMY_HM, true)
|
|
|
|
|
: Messages.HYPHEN;
|
2019-08-22 11:47:43 +02:00
|
|
|
|
|
2019-11-07 16:07:15 +01:00
|
|
|
|
cellFinishTime.Value = finishTime.HasValue
|
|
|
|
|
? HelpersGUI.DateTimeToString(finishTime.Value, Messages.DATEFORMAT_DMY_HM, true)
|
2019-08-22 11:47:43 +02:00
|
|
|
|
: Messages.HYPHEN;
|
|
|
|
|
|
|
|
|
|
cellStatus.Value = Images.GetImageFor(conversion);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class ConversionDetailRow : DataGridViewRow
|
|
|
|
|
{
|
|
|
|
|
private readonly DataGridViewTextBoxCell cellKey = new DataGridViewTextBoxCell();
|
|
|
|
|
private readonly DataGridViewTextBoxCell cellValue = new DataGridViewTextBoxCell();
|
|
|
|
|
|
|
|
|
|
private readonly Font boldFont = new Font(Program.DefaultFont, FontStyle.Bold);
|
|
|
|
|
|
|
|
|
|
public ConversionDetailRow(string key, string val)
|
|
|
|
|
{
|
|
|
|
|
cellKey.Style.Font = boldFont;
|
|
|
|
|
Cells.AddRange(cellKey, cellValue);
|
|
|
|
|
cellKey.Value = key;
|
|
|
|
|
cellValue.Value = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing)
|
|
|
|
|
boldFont.Dispose();
|
|
|
|
|
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class ActionableLinkLabel : ToolStripStatusLabel
|
|
|
|
|
{
|
|
|
|
|
private Action _linkAction;
|
|
|
|
|
|
|
|
|
|
protected override void OnClick(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnClick(e);
|
|
|
|
|
_linkAction?.Invoke();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Reset(string text = "", Action linkAction = null)
|
|
|
|
|
{
|
|
|
|
|
Text = text;
|
|
|
|
|
_linkAction = linkAction;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|