mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 23:10:16 +01:00
3c051654d6
- Suppress reporting of success and failure for sub-actions: The suppress history flag is set when the action is created and if is false (by default) the action is added to the history (the Events list). In order to suppress history for the subactions, we need change all actions used in Edit pages so their constructor can set the SuppressHistory flag and then use these constructors with suppressHistory = true on all the implementations of IEditPage.SaveSettings() where an action is created (then we need to remember to do the same everytime we introduce a new page and / or "save" action). Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
187 lines
8.6 KiB
C#
187 lines
8.6 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.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using XenAdmin.Actions;
|
|
using XenAdmin.Controls;
|
|
using XenAdmin.Core;
|
|
using XenAdmin.Dialogs;
|
|
using System.Windows.Forms;
|
|
|
|
namespace XenAdmin.Wizards.RollingUpgradeWizard
|
|
{
|
|
public enum RollingUpgradeStatus { NotStarted, Started, Cancelled, Completed }
|
|
|
|
public partial class RollingUpgradeWizard : XenWizardBase
|
|
{
|
|
private readonly RollingUpgradeUpgradePage RollingUpgradeUpgradePage;
|
|
private readonly RollingUpgradeWizardSelectPool RollingUpgradeWizardSelectPool;
|
|
private readonly RollingUpgradeWizardPrecheckPage RollingUpgradeWizardPrecheckPage;
|
|
private readonly RollingUpgradeWizardFirstPage RollingUpgradeWizardFirstPage;
|
|
private readonly RollingUpgradeWizardInstallMethodPage RollingUpgradeWizardInstallMethodPage;
|
|
private readonly RollingUpgradeWizardUpgradeModePage RollingUpgradeWizardUpgradeModePage;
|
|
private readonly RollingUpgradeReadyToUpgradePage RollingUpgradeReadyToUpgradePage;
|
|
|
|
public RollingUpgradeWizard()
|
|
{
|
|
InitializeComponent();
|
|
|
|
RollingUpgradeUpgradePage = new RollingUpgradeUpgradePage();
|
|
RollingUpgradeWizardSelectPool = new RollingUpgradeWizardSelectPool();
|
|
RollingUpgradeWizardPrecheckPage = new RollingUpgradeWizardPrecheckPage();
|
|
RollingUpgradeWizardFirstPage = new RollingUpgradeWizardFirstPage();
|
|
RollingUpgradeWizardInstallMethodPage = new RollingUpgradeWizardInstallMethodPage();
|
|
RollingUpgradeWizardUpgradeModePage = new RollingUpgradeWizardUpgradeModePage();
|
|
RollingUpgradeReadyToUpgradePage = new RollingUpgradeReadyToUpgradePage();
|
|
|
|
AddPage(RollingUpgradeWizardFirstPage);
|
|
AddPage(RollingUpgradeWizardSelectPool);
|
|
AddPage(RollingUpgradeWizardUpgradeModePage);
|
|
AddPage(RollingUpgradeWizardPrecheckPage);
|
|
//Here has to be inserted the installer location page if automatic
|
|
AddPage(RollingUpgradeReadyToUpgradePage);
|
|
AddPage(RollingUpgradeUpgradePage);
|
|
}
|
|
|
|
protected override void FinishWizard()
|
|
{
|
|
var brokenSRs = RollingUpgradeWizardSelectPool.SelectedMasters
|
|
.Where(Helpers.BostonOrGreater)
|
|
.Any(master => master != null && master.Connection.Cache.SRs.Any(sr => sr.IsBroken(true)));
|
|
if(brokenSRs)
|
|
{
|
|
new ThreeButtonDialog(
|
|
new ThreeButtonDialog.Details(SystemIcons.Warning,
|
|
Messages.BROKEN_SRS_AFTER_UPGRADE))
|
|
.ShowDialog(Program.MainWindow);
|
|
}
|
|
base.FinishWizard();
|
|
}
|
|
|
|
protected override void UpdateWizardContent(XenTabPage senderPage)
|
|
{
|
|
var prevPageType = senderPage.GetType();
|
|
|
|
if (prevPageType == typeof(RollingUpgradeWizardSelectPool))
|
|
{
|
|
var selectedMasters = RollingUpgradeWizardSelectPool.SelectedMasters;
|
|
RollingUpgradeWizardPrecheckPage.SelectedMasters = selectedMasters;
|
|
RollingUpgradeWizardInstallMethodPage.SelectedMasters = selectedMasters;
|
|
RollingUpgradeReadyToUpgradePage.SelectedMasters = selectedMasters;
|
|
RollingUpgradeUpgradePage.SelectedMasters = selectedMasters;
|
|
}
|
|
else if (prevPageType == typeof(RollingUpgradeWizardUpgradeModePage))
|
|
{
|
|
var manualModeSelected = RollingUpgradeWizardUpgradeModePage.ManualModeSelected;
|
|
|
|
RemovePageAt(4);
|
|
if (manualModeSelected)
|
|
AddPage(RollingUpgradeReadyToUpgradePage, 4);
|
|
else
|
|
AddPage(RollingUpgradeWizardInstallMethodPage, 4);
|
|
|
|
RollingUpgradeWizardPrecheckPage.ManualModeSelected = manualModeSelected;
|
|
RollingUpgradeUpgradePage.ManualModeSelected = manualModeSelected;
|
|
}
|
|
else if (prevPageType == typeof(RollingUpgradeWizardInstallMethodPage))
|
|
RollingUpgradeUpgradePage.InstallMethodConfig = RollingUpgradeWizardInstallMethodPage.InstallMethodConfig;
|
|
else if (prevPageType == typeof(RollingUpgradeWizardPrecheckPage))
|
|
RollingUpgradeUpgradePage.ProblemsResolvedPreCheck = RollingUpgradeWizardPrecheckPage.ProblemsResolvedPreCheck;
|
|
}
|
|
|
|
protected override void OnShown(System.EventArgs e)
|
|
{
|
|
base.OnShown(e);
|
|
|
|
if (Properties.Settings.Default.RollingUpgradeWizardShowFirstPage)
|
|
NextStep();
|
|
}
|
|
|
|
private List<AsyncAction> GetUnwindChangesActions()
|
|
{
|
|
if (RollingUpgradeWizardPrecheckPage.ProblemsResolvedPreCheck == null)
|
|
return null;
|
|
|
|
var actionList = (from problem in RollingUpgradeWizardPrecheckPage.ProblemsResolvedPreCheck
|
|
where problem.SolutionActionCompleted
|
|
select problem.UnwindChanges());
|
|
|
|
return actionList.Where(action => action != null &&
|
|
action.Connection != null &&
|
|
action.Connection.IsConnected).ToList();
|
|
}
|
|
|
|
private void RevertResolvedPreChecks()
|
|
{
|
|
List<AsyncAction> subActions = GetUnwindChangesActions();
|
|
if (subActions.Count > 0)
|
|
{
|
|
using (MultipleAction multipleAction = new MultipleAction(xenConnection, Messages.REVERT_WIZARD_CHANGES,
|
|
Messages.REVERTING_WIZARD_CHANGES,
|
|
Messages.REVERTED_WIZARD_CHANGES,
|
|
subActions, false, true))
|
|
{
|
|
ActionProgressDialog dialog = new ActionProgressDialog(multipleAction, ProgressBarStyle.Blocks);
|
|
dialog.ShowDialog(Program.MainWindow);
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override void OnCancel()
|
|
{
|
|
if (RollingUpgradeUpgradePage.UpgradeStatus == RollingUpgradeStatus.NotStarted)
|
|
RevertResolvedPreChecks();
|
|
|
|
base.OnCancel();
|
|
}
|
|
|
|
private void ShowCanBeResumedInfo()
|
|
{
|
|
using (var dialog = new ThreeButtonDialog(new ThreeButtonDialog.Details(SystemIcons.Information,
|
|
Messages.ROLLING_UPGRADE_CAN_RESUME_UPGRADE,
|
|
Messages.ROLLING_POOL_UPGRADE)))
|
|
{
|
|
dialog.ShowDialog(Program.MainWindow);
|
|
}
|
|
}
|
|
|
|
protected override void OnClosed(System.EventArgs e)
|
|
{
|
|
base.OnClosed(e);
|
|
|
|
if (RollingUpgradeUpgradePage.UpgradeStatus == RollingUpgradeStatus.Cancelled)
|
|
ThreadPool.QueueUserWorkItem(o => Program.Invoke(Program.MainWindow, ShowCanBeResumedInfo));
|
|
}
|
|
}
|
|
} |