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-05-05 11:18:40 +02:00
|
|
|
|
Clearwater,
|
2016-11-10 15:27:28 +01:00
|
|
|
|
Creedence,
|
2017-04-20 11:15:15 +02:00
|
|
|
|
Dundee,
|
2018-04-04 16:16:45 +02:00
|
|
|
|
ElyJura
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-05 11:18:40 +02:00
|
|
|
|
private readonly Hotfix clearwaterHotfix = new SingleHotfix
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2016-02-11 23:18:06 +01:00
|
|
|
|
Filename = "RPU001",
|
|
|
|
|
UUID = "591d0209-531e-4ed8-9ed2-98df2a1a445c"
|
2013-06-24 13:41:48 +02:00
|
|
|
|
};
|
|
|
|
|
|
2015-06-24 18:22:08 +02:00
|
|
|
|
private readonly Hotfix creedenceHotfix = new SingleHotfix
|
|
|
|
|
{
|
2016-02-11 23:18:06 +01:00
|
|
|
|
Filename = "RPU002",
|
|
|
|
|
UUID = "3f92b111-0a90-4ec6-b85a-737f241a3fc1 "
|
2015-06-24 18:22:08 +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-04-04 16:16:45 +02:00
|
|
|
|
private readonly Hotfix elyJuraHotfix = 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-04-04 16:16:45 +02:00
|
|
|
|
if (Helpers.ElyOrGreater(host) && !Helpers.KolkataOrGreater(host))
|
|
|
|
|
return Hotfix(HotfixableServerVersion.ElyJura);
|
2016-11-10 15:27:28 +01:00
|
|
|
|
if (Helpers.DundeeOrGreater(host) && !Helpers.ElyOrGreater(host))
|
|
|
|
|
return Hotfix(HotfixableServerVersion.Dundee);
|
2015-06-24 18:22:08 +02:00
|
|
|
|
if (Helpers.CreedenceOrGreater(host) && !Helpers.DundeeOrGreater(host))
|
|
|
|
|
return Hotfix(HotfixableServerVersion.Creedence);
|
2017-05-05 11:18:40 +02:00
|
|
|
|
if (!Helpers.CreedenceOrGreater(host))
|
|
|
|
|
return Hotfix(HotfixableServerVersion.Clearwater);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Hotfix Hotfix(HotfixableServerVersion version)
|
|
|
|
|
{
|
2018-04-04 16:16:45 +02:00
|
|
|
|
if (version == HotfixableServerVersion.ElyJura)
|
|
|
|
|
return elyJuraHotfix;
|
2016-11-10 15:27:28 +01:00
|
|
|
|
if (version == HotfixableServerVersion.Dundee)
|
|
|
|
|
return dundeeHotfix;
|
2015-06-24 18:22:08 +02:00
|
|
|
|
if (version == HotfixableServerVersion.Creedence)
|
|
|
|
|
return creedenceHotfix;
|
2017-05-05 11:18:40 +02:00
|
|
|
|
if (version == HotfixableServerVersion.Clearwater)
|
|
|
|
|
return clearwaterHotfix;
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|