/* 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.Linq; using XenAdmin.Actions; using XenAdmin.Network; using XenAdmin.Commands; using XenAdmin.Controls; using XenAdmin.Core; using XenAPI; namespace XenAdmin.Dialogs { public partial class MoveVirtualDiskDialog : XenDialogBase { protected const int BATCH_SIZE = 3; protected readonly List _vdis= new List(); /// /// Designer support only. Do not use. /// public MoveVirtualDiskDialog() { InitializeComponent(); } public MoveVirtualDiskDialog(IXenConnection connection, List vdis) : base(connection) { InitializeComponent(); _vdis = vdis ?? new List(); } protected override void OnLoad(EventArgs e) { base.OnLoad(e); UpdateButtons(); srPicker1.PopulateAsync(SrPickerType, connection, null, null, _vdis.ToArray()); } internal override string HelpName => "VDIMigrateDialog"; protected SR SelectedSR => srPicker1.SR; protected virtual SrPicker.SRPickerType SrPickerType => SrPicker.SRPickerType.MoveOrCopy; private void UpdateButtons() { buttonMove.Enabled = srPicker1.SR != null; } #region Control event handlers private void srPicker1_SelectedIndexChanged(object sender, EventArgs e) { UpdateButtons(); } private void srPicker1_DoubleClickOnRow(object sender, EventArgs e) { if (buttonMove.Enabled) buttonMove.PerformClick(); } private void buttonMove_Click(object sender, EventArgs e) { CreateAndRunParallelActions(); Close(); } private void buttonCancel_Click(object sender, EventArgs e) { Close(); } #endregion protected virtual void CreateAndRunParallelActions() { if (_vdis.Count == 1) { new MoveVirtualDiskAction(connection, _vdis[0], SelectedSR).RunAsync(); } else if (_vdis.Count > 1) { string title = string.Format(Messages.ACTION_MOVING_X_VDIS, _vdis.Count, SelectedSR.name_label); var batch = from VDI vdi in _vdis select (AsyncAction)new MoveVirtualDiskAction(connection, vdi, SelectedSR); new ParallelAction(connection, title, Messages.ACTION_MOVING_X_VDIS_STARTED, Messages.ACTION_MOVING_X_VDIS_COMPLETED, batch.ToList(), BATCH_SIZE).RunAsync(); } } internal static Command MoveMigrateCommand(IMainWindow mainWindow, SelectedItemCollection selection) { var cmd = new MigrateVirtualDiskCommand(mainWindow, selection); var con = selection.GetConnectionOfFirstItem(); if (cmd.CanExecute() && !Helpers.FeatureForbidden(con, Host.RestrictCrossPoolMigrate)) return cmd; return new MoveVirtualDiskCommand(mainWindow, selection); } } public class MigrateVirtualDiskDialog : MoveVirtualDiskDialog { public MigrateVirtualDiskDialog(IXenConnection connection, List vdis) : base(connection, vdis) { } protected override SrPicker.SRPickerType SrPickerType => SrPicker.SRPickerType.Migrate; protected override void CreateAndRunParallelActions() { if (_vdis.Count == 1) { new MigrateVirtualDiskAction(connection, _vdis[0], SelectedSR).RunAsync(); } else if (_vdis.Count > 1) { string title = string.Format(Messages.ACTION_MIGRATING_X_VDIS, _vdis.Count, SelectedSR.name_label); var batch = from VDI vdi in _vdis select (AsyncAction)new MigrateVirtualDiskAction(connection, vdi, SelectedSR); new ParallelAction(connection, title, Messages.ACTION_MIGRATING_X_VDIS_STARTED, Messages.ACTION_MIGRATING_X_VDIS_COMPLETED, batch.ToList(), BATCH_SIZE).RunAsync(); } } } }