xenadmin/XenModel/Actions/StorageLink/SrCslgStorageSystemScanAction.cs
Konstantina Chremmou d7b519a53c Updated copyright notice on files.
Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
2023-01-30 16:24:16 +00:00

298 lines
10 KiB
C#

/* Copyright (c) Cloud Software Group, Inc.
*
* 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.Collections.ObjectModel;
using System.Xml;
using XenAdmin.Network;
namespace XenAdmin.Actions
{
/// <summary>
/// Performs a scan of a CSLG server for storage systems.
/// </summary>
public class SrCslgStorageSystemScanAction : SrCslgScanAction
{
private static readonly log4net.ILog Log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
private ReadOnlyCollection<CslgSystemStorage> _cslgSystemStorages;
private string _adapterid;
public SrCslgStorageSystemScanAction(IXenConnection connection, string adapterid, string target, string user, string password)
: base(connection, target, user, password)
{
_adapterid = adapterid;
}
/// <summary>
/// Gets the CSLG system storages. Returns null before the action has been run.
/// </summary>
/// <value>The CSLG system storages.</value>
public ReadOnlyCollection<CslgSystemStorage> CslgSystemStorages
{
get
{
return _cslgSystemStorages;
}
}
/// <summary>
/// Runs this instance.
/// </summary>
protected override void Run()
{
Dictionary<String, String> dconf = GetAuthenticationDeviceConfig();
Log.DebugFormat("Attempting to find SRs on CSLG {0}.", dconf["target"]);
dconf["adapterid"] = _adapterid;
RunProbe(dconf);
if (!string.IsNullOrEmpty(Result))
_cslgSystemStorages = new ReadOnlyCollection<CslgSystemStorage>(ParseStorageSystemsXml(Util.GetContentsOfValueNode(Result)));
}
private List<CslgSystemStorage> ParseStorageSystemsXml(String xml)
{
List<CslgSystemStorage> output = new List<CslgSystemStorage>();
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
foreach (XmlNode storageSystemInfo in doc.GetElementsByTagName("csl__storageSystemInfo"))
{
string displayName = GetXmlNodeInnerText(storageSystemInfo, "displayName");
string storageSystemId = GetXmlNodeInnerText(storageSystemInfo, "storageSystemId");
List<CslgParameter> protocols = new List<CslgParameter>();
protocols.Add(new CslgParameter(null, Messages.NEWSR_CSLG_AUTO));
List<CslgParameter> provisioningOptions = new List<CslgParameter>();
provisioningOptions.Add(new CslgParameter(null, Messages.NEWSR_CSLG_NONE));
bool supportsCHAP = false;
foreach (string innerText in GetXmlChildNodeInnerTexts(storageSystemInfo, "systemCapabilities/capabilities"))
{
if (innerText == "DEDUPLICATION")
{
provisioningOptions.Add(new CslgParameter(innerText, Messages.NEWSR_CSLG_DEDUPLICATION));
}
if (innerText == "SUPPORTS_CHAP")
{
supportsCHAP = true;
}
}
foreach (string innerText in GetXmlChildNodeInnerTexts(storageSystemInfo, "protocolSupport/capabilities"))
{
if (innerText == "ISCSI")
{
protocols.Add(new CslgParameter(innerText, Messages.NEWSR_CSLG_ISCSI));
}
else if (innerText == "FC")
{
protocols.Add(new CslgParameter(innerText, Messages.NEWSR_CSLG_FC));
}
}
output.Add(new CslgSystemStorage(displayName, storageSystemId, protocols, provisioningOptions, supportsCHAP));
}
return output;
}
}
#region CslgSystemStorage class
/// <summary>
/// Represents a System Storage from a CSLG server.
/// </summary>
public class CslgSystemStorage
{
private readonly string _displayName;
private readonly string _storageSystemId;
private readonly ReadOnlyCollection<CslgParameter> _protocols;
private readonly ReadOnlyCollection<CslgParameter> _provisioningOptions;
private readonly bool _supportsCHAP;
/// <summary>
/// Initializes a new instance of the <see cref="CslgSystemStorage"/> class.
/// </summary>
/// <param name="displayName">The display name.</param>
/// <param name="storageSystemId">The storage system id.</param>
/// <param name="protocols">The available protocols.</param>
/// <param name="provisioningOptions">The available provisioning options.</param>
/// <param name="supportsCHAP">Indicates whether CHAP is supported.</param>
public CslgSystemStorage(string displayName, string storageSystemId, IEnumerable<CslgParameter> protocols,
IEnumerable<CslgParameter> provisioningOptions, bool supportsCHAP)
{
Util.ThrowIfStringParameterNullOrEmpty(displayName, "displayName");
Util.ThrowIfStringParameterNullOrEmpty(storageSystemId, "storageSystemId");
Util.ThrowIfParameterNull(protocols, "protocols");
Util.ThrowIfParameterNull(protocols, "provisioningOptions");
_displayName = displayName;
_storageSystemId = storageSystemId;
_protocols = new ReadOnlyCollection<CslgParameter>(new List<CslgParameter>(protocols));
_provisioningOptions = new ReadOnlyCollection<CslgParameter>(new List<CslgParameter>(provisioningOptions));
_supportsCHAP = supportsCHAP;
}
/// <summary>
/// Gets the display name.
/// </summary>
/// <value>The display name.</value>
public string DisplayName
{
get
{
return _displayName;
}
}
/// <summary>
/// Gets the available protocols.
/// </summary>
/// <value>The available protocols.</value>
public ReadOnlyCollection<CslgParameter> Protocols
{
get
{
return _protocols;
}
}
/// <summary>
/// Gets the storage system id.
/// </summary>
/// <value>The storage system id.</value>
public string StorageSystemId
{
get
{
return _storageSystemId;
}
}
public override string ToString()
{
return DisplayName;
}
/// <summary>
/// Gets the available provisioning options.
/// </summary>
/// <value>The available provisioning options.</value>
public ReadOnlyCollection<CslgParameter> ProvisioningOptions
{
get
{
return _provisioningOptions;
}
}
/// <summary>
/// Gets supports CHAP value.
/// </summary>
/// <value>Indicates whether CHAP is supported.</value>
public bool SupportsCHAP
{
get
{
return _supportsCHAP;
}
}
public override bool Equals(object obj)
{
var other = obj as CslgSystemStorage;
return other != null && other.StorageSystemId == StorageSystemId;
}
public override int GetHashCode()
{
return StorageSystemId.GetHashCode();
}
}
#endregion
#region CslgParameter class
/// <summary>
/// Represents a parameter required to configure CSLG storage repository which has a string value and string display-name for that value.
/// </summary>
public class CslgParameter
{
private readonly string _name;
private readonly string _displayName;
/// <summary>
/// Initializes a new instance of the <see cref="CslgParameter"/> class.
/// </summary>
/// <param name="name">The name.</param>
/// <param name="displayName">The display name.</param>
public CslgParameter(string name, string displayName)
{
Util.ThrowIfStringParameterNullOrEmpty(displayName, "displayName");
_name = name;
_displayName = displayName;
}
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name
{
get
{
return _name;
}
}
/// <summary>
/// Gets the display name.
/// </summary>
/// <value>The display name.</value>
public string DisplayName
{
get
{
return _displayName;
}
}
public override string ToString()
{
return _displayName;
}
}
#endregion
}