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;
|
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Diagnostics.Hotfixing
|
|
|
|
|
{
|
|
|
|
|
internal sealed class HotfixFactory
|
|
|
|
|
{
|
|
|
|
|
public enum HotfixableServerVersion
|
|
|
|
|
{
|
2017-04-20 11:15:15 +02:00
|
|
|
|
Dundee,
|
2018-08-22 16:50:13 +02:00
|
|
|
|
ElyKolkata
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-10 15:27:28 +01:00
|
|
|
|
private readonly Hotfix dundeeHotfix = new SingleHotfix
|
|
|
|
|
{
|
|
|
|
|
Filename = "RPU003",
|
2018-04-23 16:39:34 +02:00
|
|
|
|
UUID = "f6014211-7611-47ac-ac4c-e66bb1692c35"
|
2016-11-10 15:27:28 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-08-22 16:50:13 +02:00
|
|
|
|
private readonly Hotfix elyKolkataHotfix = new SingleHotfix
|
2017-04-20 11:15:15 +02:00
|
|
|
|
{
|
|
|
|
|
Filename = "RPU004",
|
2018-04-23 16:39:34 +02:00
|
|
|
|
UUID = "ddd68553-2bf8-411d-99bc-ed4a95265840"
|
2017-04-20 11:15:15 +02:00
|
|
|
|
};
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
public Hotfix Hotfix(Host host)
|
|
|
|
|
{
|
2018-08-22 16:50:13 +02:00
|
|
|
|
if (Helpers.ElyOrGreater(host) && !Helpers.LimaOrGreater(host))
|
|
|
|
|
return Hotfix(HotfixableServerVersion.ElyKolkata);
|
2016-11-10 15:27:28 +01:00
|
|
|
|
if (Helpers.DundeeOrGreater(host) && !Helpers.ElyOrGreater(host))
|
|
|
|
|
return Hotfix(HotfixableServerVersion.Dundee);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Hotfix Hotfix(HotfixableServerVersion version)
|
|
|
|
|
{
|
2018-08-22 16:50:13 +02:00
|
|
|
|
if (version == HotfixableServerVersion.ElyKolkata)
|
|
|
|
|
return elyKolkataHotfix;
|
2016-11-10 15:27:28 +01:00
|
|
|
|
if (version == HotfixableServerVersion.Dundee)
|
2018-08-22 16:50:13 +02:00
|
|
|
|
return dundeeHotfix;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
throw new ArgumentException("A version was provided for which there is no hotfix filename");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsHotfixRequired(Host host)
|
|
|
|
|
{
|
|
|
|
|
return Hotfix(host) != null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|