/* * 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: * * 1) Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2) 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; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Linq; using Newtonsoft.Json; namespace XenAPI { /// /// A storage manager plugin /// First published in XenServer 4.0. /// public partial class SM : XenObject { #region Constructors public SM() { } public SM(string uuid, string name_label, string name_description, string type, string vendor, string copyright, string version, string required_api_version, Dictionary configuration, string[] capabilities, Dictionary features, Dictionary other_config, string driver_filename, string[] required_cluster_stack) { this.uuid = uuid; this.name_label = name_label; this.name_description = name_description; this.type = type; this.vendor = vendor; this.copyright = copyright; this.version = version; this.required_api_version = required_api_version; this.configuration = configuration; this.capabilities = capabilities; this.features = features; this.other_config = other_config; this.driver_filename = driver_filename; this.required_cluster_stack = required_cluster_stack; } /// /// Creates a new SM from a Hashtable. /// Note that the fields not contained in the Hashtable /// will be created with their default values. /// /// public SM(Hashtable table) : this() { UpdateFrom(table); } /// /// Creates a new SM from a Proxy_SM. /// /// public SM(Proxy_SM proxy) { UpdateFrom(proxy); } #endregion /// /// Updates each field of this instance with the value of /// the corresponding field of a given SM. /// public override void UpdateFrom(SM record) { uuid = record.uuid; name_label = record.name_label; name_description = record.name_description; type = record.type; vendor = record.vendor; copyright = record.copyright; version = record.version; required_api_version = record.required_api_version; configuration = record.configuration; capabilities = record.capabilities; features = record.features; other_config = record.other_config; driver_filename = record.driver_filename; required_cluster_stack = record.required_cluster_stack; } internal void UpdateFrom(Proxy_SM proxy) { uuid = proxy.uuid == null ? null : proxy.uuid; name_label = proxy.name_label == null ? null : proxy.name_label; name_description = proxy.name_description == null ? null : proxy.name_description; type = proxy.type == null ? null : proxy.type; vendor = proxy.vendor == null ? null : proxy.vendor; copyright = proxy.copyright == null ? null : proxy.copyright; version = proxy.version == null ? null : proxy.version; required_api_version = proxy.required_api_version == null ? null : proxy.required_api_version; configuration = proxy.configuration == null ? null : Maps.convert_from_proxy_string_string(proxy.configuration); capabilities = proxy.capabilities == null ? new string[] {} : (string [])proxy.capabilities; features = proxy.features == null ? null : Maps.convert_from_proxy_string_long(proxy.features); other_config = proxy.other_config == null ? null : Maps.convert_from_proxy_string_string(proxy.other_config); driver_filename = proxy.driver_filename == null ? null : proxy.driver_filename; required_cluster_stack = proxy.required_cluster_stack == null ? new string[] {} : (string [])proxy.required_cluster_stack; } /// /// Given a Hashtable with field-value pairs, it updates the fields of this SM /// with the values listed in the Hashtable. Note that only the fields contained /// in the Hashtable will be updated and the rest will remain the same. /// /// public void UpdateFrom(Hashtable table) { if (table.ContainsKey("uuid")) uuid = Marshalling.ParseString(table, "uuid"); if (table.ContainsKey("name_label")) name_label = Marshalling.ParseString(table, "name_label"); if (table.ContainsKey("name_description")) name_description = Marshalling.ParseString(table, "name_description"); if (table.ContainsKey("type")) type = Marshalling.ParseString(table, "type"); if (table.ContainsKey("vendor")) vendor = Marshalling.ParseString(table, "vendor"); if (table.ContainsKey("copyright")) copyright = Marshalling.ParseString(table, "copyright"); if (table.ContainsKey("version")) version = Marshalling.ParseString(table, "version"); if (table.ContainsKey("required_api_version")) required_api_version = Marshalling.ParseString(table, "required_api_version"); if (table.ContainsKey("configuration")) configuration = Maps.convert_from_proxy_string_string(Marshalling.ParseHashTable(table, "configuration")); if (table.ContainsKey("capabilities")) capabilities = Marshalling.ParseStringArray(table, "capabilities"); if (table.ContainsKey("features")) features = Maps.convert_from_proxy_string_long(Marshalling.ParseHashTable(table, "features")); if (table.ContainsKey("other_config")) other_config = Maps.convert_from_proxy_string_string(Marshalling.ParseHashTable(table, "other_config")); if (table.ContainsKey("driver_filename")) driver_filename = Marshalling.ParseString(table, "driver_filename"); if (table.ContainsKey("required_cluster_stack")) required_cluster_stack = Marshalling.ParseStringArray(table, "required_cluster_stack"); } public Proxy_SM ToProxy() { Proxy_SM result_ = new Proxy_SM(); result_.uuid = uuid ?? ""; result_.name_label = name_label ?? ""; result_.name_description = name_description ?? ""; result_.type = type ?? ""; result_.vendor = vendor ?? ""; result_.copyright = copyright ?? ""; result_.version = version ?? ""; result_.required_api_version = required_api_version ?? ""; result_.configuration = Maps.convert_to_proxy_string_string(configuration); result_.capabilities = capabilities; result_.features = Maps.convert_to_proxy_string_long(features); result_.other_config = Maps.convert_to_proxy_string_string(other_config); result_.driver_filename = driver_filename ?? ""; result_.required_cluster_stack = required_cluster_stack; return result_; } public bool DeepEquals(SM other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Helper.AreEqual2(this._uuid, other._uuid) && Helper.AreEqual2(this._name_label, other._name_label) && Helper.AreEqual2(this._name_description, other._name_description) && Helper.AreEqual2(this._type, other._type) && Helper.AreEqual2(this._vendor, other._vendor) && Helper.AreEqual2(this._copyright, other._copyright) && Helper.AreEqual2(this._version, other._version) && Helper.AreEqual2(this._required_api_version, other._required_api_version) && Helper.AreEqual2(this._configuration, other._configuration) && Helper.AreEqual2(this._capabilities, other._capabilities) && Helper.AreEqual2(this._features, other._features) && Helper.AreEqual2(this._other_config, other._other_config) && Helper.AreEqual2(this._driver_filename, other._driver_filename) && Helper.AreEqual2(this._required_cluster_stack, other._required_cluster_stack); } public override string SaveChanges(Session session, string opaqueRef, SM server) { if (opaqueRef == null) { System.Diagnostics.Debug.Assert(false, "Cannot create instances of this type on the server"); return ""; } else { if (!Helper.AreEqual2(_other_config, server._other_config)) { SM.set_other_config(session, opaqueRef, _other_config); } return null; } } /// /// Get a record containing the current state of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static SM get_record(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_record(session.opaque_ref, _sm); else return new SM(session.XmlRpcProxy.sm_get_record(session.opaque_ref, _sm ?? "").parse()); } /// /// Get a reference to the SM instance with the specified UUID. /// First published in XenServer 4.0. /// /// The session /// UUID of object to return public static XenRef get_by_uuid(Session session, string _uuid) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_by_uuid(session.opaque_ref, _uuid); else return XenRef.Create(session.XmlRpcProxy.sm_get_by_uuid(session.opaque_ref, _uuid ?? "").parse()); } /// /// Get all the SM instances with the given label. /// First published in XenServer 4.0. /// /// The session /// label of object to return public static List> get_by_name_label(Session session, string _label) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_by_name_label(session.opaque_ref, _label); else return XenRef.Create(session.XmlRpcProxy.sm_get_by_name_label(session.opaque_ref, _label ?? "").parse()); } /// /// Get the uuid field of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static string get_uuid(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_uuid(session.opaque_ref, _sm); else return session.XmlRpcProxy.sm_get_uuid(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the name/label field of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static string get_name_label(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_name_label(session.opaque_ref, _sm); else return session.XmlRpcProxy.sm_get_name_label(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the name/description field of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static string get_name_description(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_name_description(session.opaque_ref, _sm); else return session.XmlRpcProxy.sm_get_name_description(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the type field of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static string get_type(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_type(session.opaque_ref, _sm); else return session.XmlRpcProxy.sm_get_type(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the vendor field of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static string get_vendor(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_vendor(session.opaque_ref, _sm); else return session.XmlRpcProxy.sm_get_vendor(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the copyright field of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static string get_copyright(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_copyright(session.opaque_ref, _sm); else return session.XmlRpcProxy.sm_get_copyright(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the version field of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static string get_version(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_version(session.opaque_ref, _sm); else return session.XmlRpcProxy.sm_get_version(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the required_api_version field of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static string get_required_api_version(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_required_api_version(session.opaque_ref, _sm); else return session.XmlRpcProxy.sm_get_required_api_version(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the configuration field of the given SM. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given sm public static Dictionary get_configuration(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_configuration(session.opaque_ref, _sm); else return Maps.convert_from_proxy_string_string(session.XmlRpcProxy.sm_get_configuration(session.opaque_ref, _sm ?? "").parse()); } /// /// Get the capabilities field of the given SM. /// First published in XenServer 4.0. /// Deprecated since XenServer 6.2. /// /// The session /// The opaque_ref of the given sm [Deprecated("XenServer 6.2")] public static string[] get_capabilities(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_capabilities(session.opaque_ref, _sm); else return (string [])session.XmlRpcProxy.sm_get_capabilities(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the features field of the given SM. /// First published in XenServer 6.2. /// /// The session /// The opaque_ref of the given sm public static Dictionary get_features(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_features(session.opaque_ref, _sm); else return Maps.convert_from_proxy_string_long(session.XmlRpcProxy.sm_get_features(session.opaque_ref, _sm ?? "").parse()); } /// /// Get the other_config field of the given SM. /// First published in XenServer 4.1. /// /// The session /// The opaque_ref of the given sm public static Dictionary get_other_config(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_other_config(session.opaque_ref, _sm); else return Maps.convert_from_proxy_string_string(session.XmlRpcProxy.sm_get_other_config(session.opaque_ref, _sm ?? "").parse()); } /// /// Get the driver_filename field of the given SM. /// First published in XenServer 5.0. /// /// The session /// The opaque_ref of the given sm public static string get_driver_filename(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_driver_filename(session.opaque_ref, _sm); else return session.XmlRpcProxy.sm_get_driver_filename(session.opaque_ref, _sm ?? "").parse(); } /// /// Get the required_cluster_stack field of the given SM. /// First published in XenServer 7.0. /// /// The session /// The opaque_ref of the given sm public static string[] get_required_cluster_stack(Session session, string _sm) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_required_cluster_stack(session.opaque_ref, _sm); else return (string [])session.XmlRpcProxy.sm_get_required_cluster_stack(session.opaque_ref, _sm ?? "").parse(); } /// /// Set the other_config field of the given SM. /// First published in XenServer 4.1. /// /// The session /// The opaque_ref of the given sm /// New value to set public static void set_other_config(Session session, string _sm, Dictionary _other_config) { if (session.JsonRpcClient != null) session.JsonRpcClient.sm_set_other_config(session.opaque_ref, _sm, _other_config); else session.XmlRpcProxy.sm_set_other_config(session.opaque_ref, _sm ?? "", Maps.convert_to_proxy_string_string(_other_config)).parse(); } /// /// Add the given key-value pair to the other_config field of the given SM. /// First published in XenServer 4.1. /// /// The session /// The opaque_ref of the given sm /// Key to add /// Value to add public static void add_to_other_config(Session session, string _sm, string _key, string _value) { if (session.JsonRpcClient != null) session.JsonRpcClient.sm_add_to_other_config(session.opaque_ref, _sm, _key, _value); else session.XmlRpcProxy.sm_add_to_other_config(session.opaque_ref, _sm ?? "", _key ?? "", _value ?? "").parse(); } /// /// Remove the given key and its corresponding value from the other_config field of the given SM. If the key is not in that Map, then do nothing. /// First published in XenServer 4.1. /// /// The session /// The opaque_ref of the given sm /// Key to remove public static void remove_from_other_config(Session session, string _sm, string _key) { if (session.JsonRpcClient != null) session.JsonRpcClient.sm_remove_from_other_config(session.opaque_ref, _sm, _key); else session.XmlRpcProxy.sm_remove_from_other_config(session.opaque_ref, _sm ?? "", _key ?? "").parse(); } /// /// Return a list of all the SMs known to the system. /// First published in XenServer 4.0. /// /// The session public static List> get_all(Session session) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_all(session.opaque_ref); else return XenRef.Create(session.XmlRpcProxy.sm_get_all(session.opaque_ref).parse()); } /// /// Get all the SM Records at once, in a single XML RPC call /// First published in XenServer 4.0. /// /// The session public static Dictionary, SM> get_all_records(Session session) { if (session.JsonRpcClient != null) return session.JsonRpcClient.sm_get_all_records(session.opaque_ref); else return XenRef.Create(session.XmlRpcProxy.sm_get_all_records(session.opaque_ref).parse()); } /// /// Unique identifier/object reference /// public virtual string uuid { get { return _uuid; } set { if (!Helper.AreEqual(value, _uuid)) { _uuid = value; NotifyPropertyChanged("uuid"); } } } private string _uuid = ""; /// /// a human-readable name /// public virtual string name_label { get { return _name_label; } set { if (!Helper.AreEqual(value, _name_label)) { _name_label = value; NotifyPropertyChanged("name_label"); } } } private string _name_label = ""; /// /// a notes field containing human-readable description /// public virtual string name_description { get { return _name_description; } set { if (!Helper.AreEqual(value, _name_description)) { _name_description = value; NotifyPropertyChanged("name_description"); } } } private string _name_description = ""; /// /// SR.type /// public virtual string type { get { return _type; } set { if (!Helper.AreEqual(value, _type)) { _type = value; NotifyPropertyChanged("type"); } } } private string _type = ""; /// /// Vendor who created this plugin /// public virtual string vendor { get { return _vendor; } set { if (!Helper.AreEqual(value, _vendor)) { _vendor = value; NotifyPropertyChanged("vendor"); } } } private string _vendor = ""; /// /// Entity which owns the copyright of this plugin /// public virtual string copyright { get { return _copyright; } set { if (!Helper.AreEqual(value, _copyright)) { _copyright = value; NotifyPropertyChanged("copyright"); } } } private string _copyright = ""; /// /// Version of the plugin /// public virtual string version { get { return _version; } set { if (!Helper.AreEqual(value, _version)) { _version = value; NotifyPropertyChanged("version"); } } } private string _version = ""; /// /// Minimum SM API version required on the server /// public virtual string required_api_version { get { return _required_api_version; } set { if (!Helper.AreEqual(value, _required_api_version)) { _required_api_version = value; NotifyPropertyChanged("required_api_version"); } } } private string _required_api_version = ""; /// /// names and descriptions of device config keys /// [JsonConverter(typeof(StringStringMapConverter))] public virtual Dictionary configuration { get { return _configuration; } set { if (!Helper.AreEqual(value, _configuration)) { _configuration = value; NotifyPropertyChanged("configuration"); } } } private Dictionary _configuration = new Dictionary() {}; /// /// capabilities of the SM plugin /// public virtual string[] capabilities { get { return _capabilities; } set { if (!Helper.AreEqual(value, _capabilities)) { _capabilities = value; NotifyPropertyChanged("capabilities"); } } } private string[] _capabilities = {}; /// /// capabilities of the SM plugin, with capability version numbers /// First published in XenServer 6.2. /// public virtual Dictionary features { get { return _features; } set { if (!Helper.AreEqual(value, _features)) { _features = value; NotifyPropertyChanged("features"); } } } private Dictionary _features = new Dictionary() {}; /// /// additional configuration /// First published in XenServer 4.1. /// [JsonConverter(typeof(StringStringMapConverter))] public virtual Dictionary other_config { get { return _other_config; } set { if (!Helper.AreEqual(value, _other_config)) { _other_config = value; NotifyPropertyChanged("other_config"); } } } private Dictionary _other_config = new Dictionary() {}; /// /// filename of the storage driver /// First published in XenServer 5.0. /// public virtual string driver_filename { get { return _driver_filename; } set { if (!Helper.AreEqual(value, _driver_filename)) { _driver_filename = value; NotifyPropertyChanged("driver_filename"); } } } private string _driver_filename = ""; /// /// The storage plugin requires that one of these cluster stacks is configured and running. /// First published in XenServer 7.0. /// public virtual string[] required_cluster_stack { get { return _required_cluster_stack; } set { if (!Helper.AreEqual(value, _required_cluster_stack)) { _required_cluster_stack = value; NotifyPropertyChanged("required_cluster_stack"); } } } private string[] _required_cluster_stack = {}; } }