2017-01-16 20:59:50 +01:00
|
|
|
/* Copyright (c) Citrix Systems, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
* 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;
|
2013-07-23 20:57:51 +02:00
|
|
|
using System.Threading;
|
2013-06-24 13:41:48 +02:00
|
|
|
using XenAdmin.Actions;
|
|
|
|
using XenAdmin.Controls;
|
|
|
|
using XenAdmin.Core;
|
|
|
|
using XenAdmin.Dialogs;
|
|
|
|
using System.Windows.Forms;
|
2018-06-21 13:28:49 +02:00
|
|
|
using XenAdmin.Wizards.PatchingWizard;
|
|
|
|
using XenAPI;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
namespace XenAdmin.Wizards.RollingUpgradeWizard
|
|
|
|
{
|
2018-07-02 16:48:33 +02:00
|
|
|
public partial class RollingUpgradeWizard : UpdateUpgradeWizard
|
2013-06-24 13:41:48 +02:00
|
|
|
{
|
|
|
|
private readonly RollingUpgradeUpgradePage RollingUpgradeUpgradePage;
|
|
|
|
private readonly RollingUpgradeWizardSelectPool RollingUpgradeWizardSelectPool;
|
|
|
|
private readonly RollingUpgradeWizardPrecheckPage RollingUpgradeWizardPrecheckPage;
|
|
|
|
private readonly RollingUpgradeWizardFirstPage RollingUpgradeWizardFirstPage;
|
|
|
|
private readonly RollingUpgradeWizardUpgradeModePage RollingUpgradeWizardUpgradeModePage;
|
2019-01-16 17:35:44 +01:00
|
|
|
private readonly RollingUpgradeExtrasPage RollingUpgradeExtrasPage;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
public RollingUpgradeWizard()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
RollingUpgradeUpgradePage = new RollingUpgradeUpgradePage();
|
|
|
|
RollingUpgradeWizardSelectPool = new RollingUpgradeWizardSelectPool();
|
|
|
|
RollingUpgradeWizardPrecheckPage = new RollingUpgradeWizardPrecheckPage();
|
|
|
|
RollingUpgradeWizardFirstPage = new RollingUpgradeWizardFirstPage();
|
|
|
|
RollingUpgradeWizardUpgradeModePage = new RollingUpgradeWizardUpgradeModePage();
|
2019-01-16 17:35:44 +01:00
|
|
|
RollingUpgradeExtrasPage = new RollingUpgradeExtrasPage();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
AddPage(RollingUpgradeWizardFirstPage);
|
|
|
|
AddPage(RollingUpgradeWizardSelectPool);
|
|
|
|
AddPage(RollingUpgradeWizardUpgradeModePage);
|
|
|
|
//Here has to be inserted the installer location page if automatic
|
2019-01-16 17:35:44 +01:00
|
|
|
AddPage(RollingUpgradeExtrasPage);
|
CP-30335: Rearrange the RPU wizard pages
- Moved Install Location (RollingUpgradeWizard_SelectInstallMethod) page immediatelly after the Upgrade Mode page (and before the Prechecks page)
- Added a new page, called Extras, which contains the updates and supp pack installation options. These options have been moved here from the "Upgrade Mode" and "Ready To Upgrade" pages. This page is also inserted before the Prechecks
- There is no "Ready To Upgrade" page anymore. So the wizard pages are:
- when automatic mode is selected: Before You Start, Select Pools, Upgrade Mode, Installer Location, Extras, Prechecks, Apply Upgrade.
- when manual mode is selected: Before You Start, Select Pools, Upgrade Mode, Extras, Prechecks, Apply Upgrade.
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
2019-01-17 15:01:49 +01:00
|
|
|
AddPage(RollingUpgradeWizardPrecheckPage);
|
2013-06-24 13:41:48 +02:00
|
|
|
AddPage(RollingUpgradeUpgradePage);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void FinishWizard()
|
|
|
|
{
|
|
|
|
var brokenSRs = RollingUpgradeWizardSelectPool.SelectedMasters
|
|
|
|
.Any(master => master != null && master.Connection.Cache.SRs.Any(sr => sr.IsBroken(true)));
|
|
|
|
if(brokenSRs)
|
|
|
|
{
|
2016-06-20 11:49:12 +02:00
|
|
|
using (var dlg = new ThreeButtonDialog(
|
2013-06-24 13:41:48 +02:00
|
|
|
new ThreeButtonDialog.Details(SystemIcons.Warning,
|
2016-06-20 11:49:12 +02:00
|
|
|
Messages.BROKEN_SRS_AFTER_UPGRADE)))
|
|
|
|
{
|
|
|
|
dlg.ShowDialog(Program.MainWindow);
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
base.FinishWizard();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void UpdateWizardContent(XenTabPage senderPage)
|
|
|
|
{
|
|
|
|
var prevPageType = senderPage.GetType();
|
|
|
|
|
|
|
|
if (prevPageType == typeof(RollingUpgradeWizardSelectPool))
|
|
|
|
{
|
|
|
|
var selectedMasters = RollingUpgradeWizardSelectPool.SelectedMasters;
|
|
|
|
RollingUpgradeWizardPrecheckPage.SelectedMasters = selectedMasters;
|
2019-01-16 17:35:44 +01:00
|
|
|
RollingUpgradeExtrasPage.SelectedMasters = selectedMasters;
|
2018-06-21 13:28:49 +02:00
|
|
|
|
|
|
|
var selectedPools = new List<Pool>();
|
|
|
|
foreach (var master in selectedMasters)
|
|
|
|
{
|
|
|
|
var pool = Helpers.GetPoolOfOne(master.Connection);
|
|
|
|
if (pool != null && !selectedPools.Contains(pool))
|
|
|
|
selectedPools.Add(pool);
|
|
|
|
}
|
|
|
|
|
|
|
|
RollingUpgradeUpgradePage.SelectedPools = selectedPools;
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
else if (prevPageType == typeof(RollingUpgradeWizardUpgradeModePage))
|
|
|
|
{
|
|
|
|
var manualModeSelected = RollingUpgradeWizardUpgradeModePage.ManualModeSelected;
|
2018-07-06 18:45:00 +02:00
|
|
|
RollingUpgradeWizardPrecheckPage.ManualUpgrade = manualModeSelected;
|
2013-06-24 13:41:48 +02:00
|
|
|
RollingUpgradeUpgradePage.ManualModeSelected = manualModeSelected;
|
2019-01-29 15:17:42 +01:00
|
|
|
|
|
|
|
RollingUpgradeWizardPrecheckPage.InstallMethodConfig =
|
|
|
|
RollingUpgradeUpgradePage.InstallMethodConfig = RollingUpgradeWizardUpgradeModePage.InstallMethodConfig;
|
2018-10-04 15:38:07 +02:00
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
else if (prevPageType == typeof(RollingUpgradeWizardPrecheckPage))
|
2018-07-02 16:48:33 +02:00
|
|
|
RollingUpgradeUpgradePage.PrecheckProblemsActuallyResolved = RollingUpgradeWizardPrecheckPage.PrecheckProblemsActuallyResolved;
|
2019-01-16 17:35:44 +01:00
|
|
|
else if (prevPageType == typeof(RollingUpgradeExtrasPage))
|
2018-10-04 15:38:07 +02:00
|
|
|
{
|
CP-30335: Rearrange the RPU wizard pages
- Moved Install Location (RollingUpgradeWizard_SelectInstallMethod) page immediatelly after the Upgrade Mode page (and before the Prechecks page)
- Added a new page, called Extras, which contains the updates and supp pack installation options. These options have been moved here from the "Upgrade Mode" and "Ready To Upgrade" pages. This page is also inserted before the Prechecks
- There is no "Ready To Upgrade" page anymore. So the wizard pages are:
- when automatic mode is selected: Before You Start, Select Pools, Upgrade Mode, Installer Location, Extras, Prechecks, Apply Upgrade.
- when manual mode is selected: Before You Start, Select Pools, Upgrade Mode, Extras, Prechecks, Apply Upgrade.
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
2019-01-17 15:01:49 +01:00
|
|
|
var applyUpdatesToNewVersion = RollingUpgradeExtrasPage.ApplyUpdatesToNewVersion;
|
|
|
|
RollingUpgradeWizardPrecheckPage.ApplyUpdatesToNewVersion = applyUpdatesToNewVersion;
|
|
|
|
RollingUpgradeUpgradePage.ApplyUpdatesToNewVersion = applyUpdatesToNewVersion;
|
|
|
|
|
2019-01-16 17:35:44 +01:00
|
|
|
RollingUpgradeUpgradePage.ApplySuppPackAfterUpgrade = RollingUpgradeExtrasPage.ApplySuppPackAfterUpgrade;
|
|
|
|
RollingUpgradeUpgradePage.SelectedSuppPackPath = RollingUpgradeExtrasPage.SelectedSuppPack;
|
2018-10-04 15:38:07 +02:00
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnShown(System.EventArgs e)
|
|
|
|
{
|
|
|
|
base.OnShown(e);
|
|
|
|
|
|
|
|
if (Properties.Settings.Default.RollingUpgradeWizardShowFirstPage)
|
|
|
|
NextStep();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void RevertResolvedPreChecks()
|
|
|
|
{
|
2018-07-02 16:48:33 +02:00
|
|
|
var subActions = GetUnwindChangesActions(RollingUpgradeWizardPrecheckPage.PrecheckProblemsActuallyResolved);
|
2013-06-24 13:41:48 +02:00
|
|
|
if (subActions.Count > 0)
|
|
|
|
{
|
|
|
|
using (MultipleAction multipleAction = new MultipleAction(xenConnection, Messages.REVERT_WIZARD_CHANGES,
|
|
|
|
Messages.REVERTING_WIZARD_CHANGES,
|
|
|
|
Messages.REVERTED_WIZARD_CHANGES,
|
2014-07-21 12:19:04 +02:00
|
|
|
subActions, false, true))
|
2013-06-24 13:41:48 +02:00
|
|
|
{
|
2016-06-20 14:17:42 +02:00
|
|
|
using (var dialog = new ActionProgressDialog(multipleAction, ProgressBarStyle.Blocks))
|
|
|
|
dialog.ShowDialog(Program.MainWindow);
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-20 13:33:26 +01:00
|
|
|
protected override void OnCancel(ref bool cancel)
|
2013-06-24 13:41:48 +02:00
|
|
|
{
|
2019-02-05 13:08:15 +01:00
|
|
|
base.OnCancel(ref cancel);
|
|
|
|
|
|
|
|
if (cancel)
|
|
|
|
return;
|
|
|
|
|
2018-06-21 13:28:49 +02:00
|
|
|
if (RollingUpgradeUpgradePage.Status == Status.NotStarted)
|
2013-06-24 13:41:48 +02:00
|
|
|
RevertResolvedPreChecks();
|
|
|
|
}
|
2013-07-23 20:57:51 +02:00
|
|
|
|
|
|
|
private void ShowCanBeResumedInfo()
|
|
|
|
{
|
2013-07-24 12:01:53 +02:00
|
|
|
using (var dialog = new ThreeButtonDialog(new ThreeButtonDialog.Details(SystemIcons.Information,
|
2013-07-23 20:57:51 +02:00
|
|
|
Messages.ROLLING_UPGRADE_CAN_RESUME_UPGRADE,
|
2013-07-24 12:01:53 +02:00
|
|
|
Messages.ROLLING_POOL_UPGRADE)))
|
|
|
|
{
|
|
|
|
dialog.ShowDialog(Program.MainWindow);
|
|
|
|
}
|
2013-07-23 20:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnClosed(System.EventArgs e)
|
|
|
|
{
|
|
|
|
base.OnClosed(e);
|
|
|
|
|
2018-06-21 13:28:49 +02:00
|
|
|
if (RollingUpgradeUpgradePage.Status == Status.Cancelled)
|
2013-07-23 20:57:51 +02:00
|
|
|
ThreadPool.QueueUserWorkItem(o => Program.Invoke(Program.MainWindow, ShowCanBeResumedInfo));
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
}
|