/* * 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; namespace XenAPI { /// /// Cluster-wide Cluster metadata /// First published in Unreleased. /// public partial class Cluster : XenObject { public Cluster() { } public Cluster(string uuid, List> cluster_hosts, XenRef network, string cluster_token, string cluster_stack, List allowed_operations, Dictionary current_operations, bool pool_auto_join, Dictionary cluster_config, Dictionary other_config) { this.uuid = uuid; this.cluster_hosts = cluster_hosts; this.network = network; this.cluster_token = cluster_token; this.cluster_stack = cluster_stack; this.allowed_operations = allowed_operations; this.current_operations = current_operations; this.pool_auto_join = pool_auto_join; this.cluster_config = cluster_config; this.other_config = other_config; } /// /// Creates a new Cluster from a Proxy_Cluster. /// /// public Cluster(Proxy_Cluster proxy) { this.UpdateFromProxy(proxy); } public override void UpdateFrom(Cluster update) { uuid = update.uuid; cluster_hosts = update.cluster_hosts; network = update.network; cluster_token = update.cluster_token; cluster_stack = update.cluster_stack; allowed_operations = update.allowed_operations; current_operations = update.current_operations; pool_auto_join = update.pool_auto_join; cluster_config = update.cluster_config; other_config = update.other_config; } internal void UpdateFromProxy(Proxy_Cluster proxy) { uuid = proxy.uuid == null ? null : (string)proxy.uuid; cluster_hosts = proxy.cluster_hosts == null ? null : XenRef.Create(proxy.cluster_hosts); network = proxy.network == null ? null : XenRef.Create(proxy.network); cluster_token = proxy.cluster_token == null ? null : (string)proxy.cluster_token; cluster_stack = proxy.cluster_stack == null ? null : (string)proxy.cluster_stack; allowed_operations = proxy.allowed_operations == null ? null : Helper.StringArrayToEnumList(proxy.allowed_operations); current_operations = proxy.current_operations == null ? null : Maps.convert_from_proxy_string_cluster_operation(proxy.current_operations); pool_auto_join = (bool)proxy.pool_auto_join; cluster_config = proxy.cluster_config == null ? null : Maps.convert_from_proxy_string_string(proxy.cluster_config); other_config = proxy.other_config == null ? null : Maps.convert_from_proxy_string_string(proxy.other_config); } public Proxy_Cluster ToProxy() { Proxy_Cluster result_ = new Proxy_Cluster(); result_.uuid = uuid ?? ""; result_.cluster_hosts = (cluster_hosts != null) ? Helper.RefListToStringArray(cluster_hosts) : new string[] {}; result_.network = network ?? ""; result_.cluster_token = cluster_token ?? ""; result_.cluster_stack = cluster_stack ?? ""; result_.allowed_operations = (allowed_operations != null) ? Helper.ObjectListToStringArray(allowed_operations) : new string[] {}; result_.current_operations = Maps.convert_to_proxy_string_cluster_operation(current_operations); result_.pool_auto_join = pool_auto_join; result_.cluster_config = Maps.convert_to_proxy_string_string(cluster_config); result_.other_config = Maps.convert_to_proxy_string_string(other_config); return result_; } /// /// Creates a new Cluster from a Hashtable. /// /// public Cluster(Hashtable table) { uuid = Marshalling.ParseString(table, "uuid"); cluster_hosts = Marshalling.ParseSetRef(table, "cluster_hosts"); network = Marshalling.ParseRef(table, "network"); cluster_token = Marshalling.ParseString(table, "cluster_token"); cluster_stack = Marshalling.ParseString(table, "cluster_stack"); allowed_operations = Helper.StringArrayToEnumList(Marshalling.ParseStringArray(table, "allowed_operations")); current_operations = Maps.convert_from_proxy_string_cluster_operation(Marshalling.ParseHashTable(table, "current_operations")); pool_auto_join = Marshalling.ParseBool(table, "pool_auto_join"); cluster_config = Maps.convert_from_proxy_string_string(Marshalling.ParseHashTable(table, "cluster_config")); other_config = Maps.convert_from_proxy_string_string(Marshalling.ParseHashTable(table, "other_config")); } public bool DeepEquals(Cluster other, bool ignoreCurrentOperations) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; if (!ignoreCurrentOperations && !Helper.AreEqual2(this.current_operations, other.current_operations)) return false; return Helper.AreEqual2(this._uuid, other._uuid) && Helper.AreEqual2(this._cluster_hosts, other._cluster_hosts) && Helper.AreEqual2(this._network, other._network) && Helper.AreEqual2(this._cluster_token, other._cluster_token) && Helper.AreEqual2(this._cluster_stack, other._cluster_stack) && Helper.AreEqual2(this._allowed_operations, other._allowed_operations) && Helper.AreEqual2(this._pool_auto_join, other._pool_auto_join) && Helper.AreEqual2(this._cluster_config, other._cluster_config) && Helper.AreEqual2(this._other_config, other._other_config); } internal static List ProxyArrayToObjectList(Proxy_Cluster[] input) { var result = new List(); foreach (var item in input) result.Add(new Cluster(item)); return result; } public override string SaveChanges(Session session, string opaqueRef, Cluster 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)) { Cluster.set_other_config(session, opaqueRef, _other_config); } return null; } } /// /// Get a record containing the current state of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static Cluster get_record(Session session, string _cluster) { return new Cluster((Proxy_Cluster)session.proxy.cluster_get_record(session.uuid, _cluster ?? "").parse()); } /// /// Get a reference to the Cluster instance with the specified UUID. /// First published in Unreleased. /// /// The session /// UUID of object to return public static XenRef get_by_uuid(Session session, string _uuid) { return XenRef.Create(session.proxy.cluster_get_by_uuid(session.uuid, _uuid ?? "").parse()); } /// /// Get the uuid field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static string get_uuid(Session session, string _cluster) { return (string)session.proxy.cluster_get_uuid(session.uuid, _cluster ?? "").parse(); } /// /// Get the cluster_hosts field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static List> get_cluster_hosts(Session session, string _cluster) { return XenRef.Create(session.proxy.cluster_get_cluster_hosts(session.uuid, _cluster ?? "").parse()); } /// /// Get the network field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static XenRef get_network(Session session, string _cluster) { return XenRef.Create(session.proxy.cluster_get_network(session.uuid, _cluster ?? "").parse()); } /// /// Get the cluster_token field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static string get_cluster_token(Session session, string _cluster) { return (string)session.proxy.cluster_get_cluster_token(session.uuid, _cluster ?? "").parse(); } /// /// Get the cluster_stack field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static string get_cluster_stack(Session session, string _cluster) { return (string)session.proxy.cluster_get_cluster_stack(session.uuid, _cluster ?? "").parse(); } /// /// Get the allowed_operations field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static List get_allowed_operations(Session session, string _cluster) { return Helper.StringArrayToEnumList(session.proxy.cluster_get_allowed_operations(session.uuid, _cluster ?? "").parse()); } /// /// Get the current_operations field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static Dictionary get_current_operations(Session session, string _cluster) { return Maps.convert_from_proxy_string_cluster_operation(session.proxy.cluster_get_current_operations(session.uuid, _cluster ?? "").parse()); } /// /// Get the pool_auto_join field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static bool get_pool_auto_join(Session session, string _cluster) { return (bool)session.proxy.cluster_get_pool_auto_join(session.uuid, _cluster ?? "").parse(); } /// /// Get the cluster_config field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static Dictionary get_cluster_config(Session session, string _cluster) { return Maps.convert_from_proxy_string_string(session.proxy.cluster_get_cluster_config(session.uuid, _cluster ?? "").parse()); } /// /// Get the other_config field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static Dictionary get_other_config(Session session, string _cluster) { return Maps.convert_from_proxy_string_string(session.proxy.cluster_get_other_config(session.uuid, _cluster ?? "").parse()); } /// /// Set the other_config field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster /// New value to set public static void set_other_config(Session session, string _cluster, Dictionary _other_config) { session.proxy.cluster_set_other_config(session.uuid, _cluster ?? "", Maps.convert_to_proxy_string_string(_other_config)).parse(); } /// /// Add the given key-value pair to the other_config field of the given Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster /// Key to add /// Value to add public static void add_to_other_config(Session session, string _cluster, string _key, string _value) { session.proxy.cluster_add_to_other_config(session.uuid, _cluster ?? "", _key ?? "", _value ?? "").parse(); } /// /// Remove the given key and its corresponding value from the other_config field of the given Cluster. If the key is not in that Map, then do nothing. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster /// Key to remove public static void remove_from_other_config(Session session, string _cluster, string _key) { session.proxy.cluster_remove_from_other_config(session.uuid, _cluster ?? "", _key ?? "").parse(); } /// /// Creates a Cluster object and one Cluster_host object as its first member /// First published in Unreleased. /// /// The session /// the single network on which corosync carries out its inter-host communications /// simply the string 'corosync'. No other cluster stacks are currently supported /// true if xapi is automatically joining new pool members to the cluster public static XenRef create(Session session, string _network, string _cluster_stack, bool _pool_auto_join) { return XenRef.Create(session.proxy.cluster_create(session.uuid, _network ?? "", _cluster_stack ?? "", _pool_auto_join).parse()); } /// /// Creates a Cluster object and one Cluster_host object as its first member /// First published in Unreleased. /// /// The session /// the single network on which corosync carries out its inter-host communications /// simply the string 'corosync'. No other cluster stacks are currently supported /// true if xapi is automatically joining new pool members to the cluster public static XenRef async_create(Session session, string _network, string _cluster_stack, bool _pool_auto_join) { return XenRef.Create(session.proxy.async_cluster_create(session.uuid, _network ?? "", _cluster_stack ?? "", _pool_auto_join).parse()); } /// /// Destroys a Cluster object and the one remaining Cluster_host member /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static void destroy(Session session, string _cluster) { session.proxy.cluster_destroy(session.uuid, _cluster ?? "").parse(); } /// /// Destroys a Cluster object and the one remaining Cluster_host member /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static XenRef async_destroy(Session session, string _cluster) { return XenRef.Create(session.proxy.async_cluster_destroy(session.uuid, _cluster ?? "").parse()); } /// /// Attempt to create a Cluster from the entire pool /// First published in Unreleased. /// /// The session /// the single network on which corosync carries out its inter-host communications /// simply the string 'corosync'. No other cluster stacks are currently supported public static XenRef pool_create(Session session, string _network, string _cluster_stack) { return XenRef.Create(session.proxy.cluster_pool_create(session.uuid, _network ?? "", _cluster_stack ?? "").parse()); } /// /// Attempt to create a Cluster from the entire pool /// First published in Unreleased. /// /// The session /// the single network on which corosync carries out its inter-host communications /// simply the string 'corosync'. No other cluster stacks are currently supported public static XenRef async_pool_create(Session session, string _network, string _cluster_stack) { return XenRef.Create(session.proxy.async_cluster_pool_create(session.uuid, _network ?? "", _cluster_stack ?? "").parse()); } /// /// Attempt to destroy the Cluster_host objects for all hosts in the pool and then destroy the Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static void pool_destroy(Session session, string _cluster) { session.proxy.cluster_pool_destroy(session.uuid, _cluster ?? "").parse(); } /// /// Attempt to destroy the Cluster_host objects for all hosts in the pool and then destroy the Cluster. /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static XenRef async_pool_destroy(Session session, string _cluster) { return XenRef.Create(session.proxy.async_cluster_pool_destroy(session.uuid, _cluster ?? "").parse()); } /// /// Resynchronise the cluster_host objects across the pool. Creates them where they need creating and then plugs them /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static void pool_resync(Session session, string _cluster) { session.proxy.cluster_pool_resync(session.uuid, _cluster ?? "").parse(); } /// /// Resynchronise the cluster_host objects across the pool. Creates them where they need creating and then plugs them /// First published in Unreleased. /// /// The session /// The opaque_ref of the given cluster public static XenRef async_pool_resync(Session session, string _cluster) { return XenRef.Create(session.proxy.async_cluster_pool_resync(session.uuid, _cluster ?? "").parse()); } /// /// Return a list of all the Clusters known to the system. /// First published in Unreleased. /// /// The session public static List> get_all(Session session) { return XenRef.Create(session.proxy.cluster_get_all(session.uuid).parse()); } /// /// Get all the Cluster Records at once, in a single XML RPC call /// First published in Unreleased. /// /// The session public static Dictionary, Cluster> get_all_records(Session session) { return XenRef.Create(session.proxy.cluster_get_all_records(session.uuid).parse()); } /// /// Unique identifier/object reference /// public virtual string uuid { get { return _uuid; } set { if (!Helper.AreEqual(value, _uuid)) { _uuid = value; Changed = true; NotifyPropertyChanged("uuid"); } } } private string _uuid; /// /// A list of the cluster_host objects associated with the Cluster /// public virtual List> cluster_hosts { get { return _cluster_hosts; } set { if (!Helper.AreEqual(value, _cluster_hosts)) { _cluster_hosts = value; Changed = true; NotifyPropertyChanged("cluster_hosts"); } } } private List> _cluster_hosts; /// /// Reference to the single network on which corosync carries out its inter-host communications /// public virtual XenRef network { get { return _network; } set { if (!Helper.AreEqual(value, _network)) { _network = value; Changed = true; NotifyPropertyChanged("network"); } } } private XenRef _network; /// /// The secret key used by xapi-clusterd when it talks to itself on other hosts /// public virtual string cluster_token { get { return _cluster_token; } set { if (!Helper.AreEqual(value, _cluster_token)) { _cluster_token = value; Changed = true; NotifyPropertyChanged("cluster_token"); } } } private string _cluster_token; /// /// Simply the string 'corosync'. No other cluster stacks are currently supported /// public virtual string cluster_stack { get { return _cluster_stack; } set { if (!Helper.AreEqual(value, _cluster_stack)) { _cluster_stack = value; Changed = true; NotifyPropertyChanged("cluster_stack"); } } } private string _cluster_stack; /// /// list of the operations allowed in this state. This list is advisory only and the server state may have changed by the time this field is read by a client. /// public virtual List allowed_operations { get { return _allowed_operations; } set { if (!Helper.AreEqual(value, _allowed_operations)) { _allowed_operations = value; Changed = true; NotifyPropertyChanged("allowed_operations"); } } } private List _allowed_operations; /// /// links each of the running tasks using this object (by reference) to a current_operation enum which describes the nature of the task. /// public virtual Dictionary current_operations { get { return _current_operations; } set { if (!Helper.AreEqual(value, _current_operations)) { _current_operations = value; Changed = true; NotifyPropertyChanged("current_operations"); } } } private Dictionary _current_operations; /// /// True if xapi is automatically joining new pool members to the cluster. This will be `true` in the first release /// public virtual bool pool_auto_join { get { return _pool_auto_join; } set { if (!Helper.AreEqual(value, _pool_auto_join)) { _pool_auto_join = value; Changed = true; NotifyPropertyChanged("pool_auto_join"); } } } private bool _pool_auto_join; /// /// Contains read-only settings for the cluster, such as timeouts and other options. It can only be set at cluster create time /// public virtual Dictionary cluster_config { get { return _cluster_config; } set { if (!Helper.AreEqual(value, _cluster_config)) { _cluster_config = value; Changed = true; NotifyPropertyChanged("cluster_config"); } } } private Dictionary _cluster_config; /// /// Additional configuration /// public virtual Dictionary other_config { get { return _other_config; } set { if (!Helper.AreEqual(value, _other_config)) { _other_config = value; Changed = true; NotifyPropertyChanged("other_config"); } } } private Dictionary _other_config; } }