/* * 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 Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace XenAPI { /// /// The physical block devices through which hosts access SRs /// First published in XenServer 4.0. /// public partial class PBD : XenObject { public PBD() { } public PBD(string uuid, XenRef host, XenRef SR, Dictionary device_config, bool currently_attached, Dictionary other_config) { this.uuid = uuid; this.host = host; this.SR = SR; this.device_config = device_config; this.currently_attached = currently_attached; this.other_config = other_config; } /// /// Creates a new PBD from a Proxy_PBD. /// /// public PBD(Proxy_PBD proxy) { this.UpdateFromProxy(proxy); } /// /// Updates each field of this instance with the value of /// the corresponding field of a given PBD. /// public override void UpdateFrom(PBD update) { uuid = update.uuid; host = update.host; SR = update.SR; device_config = update.device_config; currently_attached = update.currently_attached; other_config = update.other_config; } internal void UpdateFromProxy(Proxy_PBD proxy) { uuid = proxy.uuid == null ? null : (string)proxy.uuid; host = proxy.host == null ? null : XenRef.Create(proxy.host); SR = proxy.SR == null ? null : XenRef.Create(proxy.SR); device_config = proxy.device_config == null ? null : Maps.convert_from_proxy_string_string(proxy.device_config); currently_attached = (bool)proxy.currently_attached; other_config = proxy.other_config == null ? null : Maps.convert_from_proxy_string_string(proxy.other_config); } public Proxy_PBD ToProxy() { Proxy_PBD result_ = new Proxy_PBD(); result_.uuid = uuid ?? ""; result_.host = host ?? ""; result_.SR = SR ?? ""; result_.device_config = Maps.convert_to_proxy_string_string(device_config); result_.currently_attached = currently_attached; result_.other_config = Maps.convert_to_proxy_string_string(other_config); return result_; } /// /// Creates a new PBD from a Hashtable. /// Note that the fields not contained in the Hashtable /// will be created with their default values. /// /// public PBD(Hashtable table) : this() { UpdateFrom(table); } /// /// Given a Hashtable with field-value pairs, it updates the fields of this PBD /// 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 = (string)table["uuid"]; if (table.ContainsKey("host")) host = XenRef.Create((string)table["host"]); if (table.ContainsKey("SR")) SR = XenRef.Create((string)table["SR"]); if (table.ContainsKey("device_config")) device_config = Maps.convert_from_proxy_string_string((Hashtable)table["device_config"]); if (table.ContainsKey("currently_attached")) currently_attached = (bool)table["currently_attached"]; if (table.ContainsKey("other_config")) other_config = Maps.convert_from_proxy_string_string((Hashtable)table["other_config"]); } public bool DeepEquals(PBD other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Helper.AreEqual2(this._uuid, other._uuid) && Helper.AreEqual2(this._host, other._host) && Helper.AreEqual2(this._SR, other._SR) && Helper.AreEqual2(this._device_config, other._device_config) && Helper.AreEqual2(this._currently_attached, other._currently_attached) && Helper.AreEqual2(this._other_config, other._other_config); } internal static List ProxyArrayToObjectList(Proxy_PBD[] input) { var result = new List(); foreach (var item in input) result.Add(new PBD(item)); return result; } public override string SaveChanges(Session session, string opaqueRef, PBD server) { if (opaqueRef == null) { var reference = create(session, this); return reference == null ? null : reference.opaque_ref; } else { if (!Helper.AreEqual2(_other_config, server._other_config)) { PBD.set_other_config(session, opaqueRef, _other_config); } if (!Helper.AreEqual2(_device_config, server._device_config)) { PBD.set_device_config(session, opaqueRef, _device_config); } return null; } } /// /// Get a record containing the current state of the given PBD. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static PBD get_record(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.pbd_get_record(session.uuid, _pbd); else return new PBD((Proxy_PBD)session.proxy.pbd_get_record(session.uuid, _pbd ?? "").parse()); } /// /// Get a reference to the PBD 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.pbd_get_by_uuid(session.uuid, _uuid); else return XenRef.Create(session.proxy.pbd_get_by_uuid(session.uuid, _uuid ?? "").parse()); } /// /// Create a new PBD instance, and return its handle. /// First published in XenServer 4.0. /// /// The session /// All constructor arguments public static XenRef create(Session session, PBD _record) { if (session.JsonRpcClient != null) return session.JsonRpcClient.pbd_create(session.uuid, _record); else return XenRef.Create(session.proxy.pbd_create(session.uuid, _record.ToProxy()).parse()); } /// /// Create a new PBD instance, and return its handle. /// First published in XenServer 4.0. /// /// The session /// All constructor arguments public static XenRef async_create(Session session, PBD _record) { if (session.JsonRpcClient != null) return session.JsonRpcClient.async_pbd_create(session.uuid, _record); else return XenRef.Create(session.proxy.async_pbd_create(session.uuid, _record.ToProxy()).parse()); } /// /// Destroy the specified PBD instance. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static void destroy(Session session, string _pbd) { if (session.JsonRpcClient != null) session.JsonRpcClient.pbd_destroy(session.uuid, _pbd); else session.proxy.pbd_destroy(session.uuid, _pbd ?? "").parse(); } /// /// Destroy the specified PBD instance. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static XenRef async_destroy(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.async_pbd_destroy(session.uuid, _pbd); else return XenRef.Create(session.proxy.async_pbd_destroy(session.uuid, _pbd ?? "").parse()); } /// /// Get the uuid field of the given PBD. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static string get_uuid(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.pbd_get_uuid(session.uuid, _pbd); else return (string)session.proxy.pbd_get_uuid(session.uuid, _pbd ?? "").parse(); } /// /// Get the host field of the given PBD. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static XenRef get_host(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.pbd_get_host(session.uuid, _pbd); else return XenRef.Create(session.proxy.pbd_get_host(session.uuid, _pbd ?? "").parse()); } /// /// Get the SR field of the given PBD. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static XenRef get_SR(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.pbd_get_sr(session.uuid, _pbd); else return XenRef.Create(session.proxy.pbd_get_sr(session.uuid, _pbd ?? "").parse()); } /// /// Get the device_config field of the given PBD. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static Dictionary get_device_config(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.pbd_get_device_config(session.uuid, _pbd); else return Maps.convert_from_proxy_string_string(session.proxy.pbd_get_device_config(session.uuid, _pbd ?? "").parse()); } /// /// Get the currently_attached field of the given PBD. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static bool get_currently_attached(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.pbd_get_currently_attached(session.uuid, _pbd); else return (bool)session.proxy.pbd_get_currently_attached(session.uuid, _pbd ?? "").parse(); } /// /// Get the other_config field of the given PBD. /// First published in XenServer 4.1. /// /// The session /// The opaque_ref of the given pbd public static Dictionary get_other_config(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.pbd_get_other_config(session.uuid, _pbd); else return Maps.convert_from_proxy_string_string(session.proxy.pbd_get_other_config(session.uuid, _pbd ?? "").parse()); } /// /// Set the other_config field of the given PBD. /// First published in XenServer 4.1. /// /// The session /// The opaque_ref of the given pbd /// New value to set public static void set_other_config(Session session, string _pbd, Dictionary _other_config) { if (session.JsonRpcClient != null) session.JsonRpcClient.pbd_set_other_config(session.uuid, _pbd, _other_config); else session.proxy.pbd_set_other_config(session.uuid, _pbd ?? "", Maps.convert_to_proxy_string_string(_other_config)).parse(); } /// /// Add the given key-value pair to the other_config field of the given PBD. /// First published in XenServer 4.1. /// /// The session /// The opaque_ref of the given pbd /// Key to add /// Value to add public static void add_to_other_config(Session session, string _pbd, string _key, string _value) { if (session.JsonRpcClient != null) session.JsonRpcClient.pbd_add_to_other_config(session.uuid, _pbd, _key, _value); else session.proxy.pbd_add_to_other_config(session.uuid, _pbd ?? "", _key ?? "", _value ?? "").parse(); } /// /// Remove the given key and its corresponding value from the other_config field of the given PBD. 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 pbd /// Key to remove public static void remove_from_other_config(Session session, string _pbd, string _key) { if (session.JsonRpcClient != null) session.JsonRpcClient.pbd_remove_from_other_config(session.uuid, _pbd, _key); else session.proxy.pbd_remove_from_other_config(session.uuid, _pbd ?? "", _key ?? "").parse(); } /// /// Activate the specified PBD, causing the referenced SR to be attached and scanned /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static void plug(Session session, string _pbd) { if (session.JsonRpcClient != null) session.JsonRpcClient.pbd_plug(session.uuid, _pbd); else session.proxy.pbd_plug(session.uuid, _pbd ?? "").parse(); } /// /// Activate the specified PBD, causing the referenced SR to be attached and scanned /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static XenRef async_plug(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.async_pbd_plug(session.uuid, _pbd); else return XenRef.Create(session.proxy.async_pbd_plug(session.uuid, _pbd ?? "").parse()); } /// /// Deactivate the specified PBD, causing the referenced SR to be detached and nolonger scanned /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static void unplug(Session session, string _pbd) { if (session.JsonRpcClient != null) session.JsonRpcClient.pbd_unplug(session.uuid, _pbd); else session.proxy.pbd_unplug(session.uuid, _pbd ?? "").parse(); } /// /// Deactivate the specified PBD, causing the referenced SR to be detached and nolonger scanned /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given pbd public static XenRef async_unplug(Session session, string _pbd) { if (session.JsonRpcClient != null) return session.JsonRpcClient.async_pbd_unplug(session.uuid, _pbd); else return XenRef.Create(session.proxy.async_pbd_unplug(session.uuid, _pbd ?? "").parse()); } /// /// Sets the PBD's device_config field /// First published in XenServer 4.1. /// /// The session /// The opaque_ref of the given pbd /// The new value of the PBD's device_config public static void set_device_config(Session session, string _pbd, Dictionary _value) { if (session.JsonRpcClient != null) session.JsonRpcClient.pbd_set_device_config(session.uuid, _pbd, _value); else session.proxy.pbd_set_device_config(session.uuid, _pbd ?? "", Maps.convert_to_proxy_string_string(_value)).parse(); } /// /// Sets the PBD's device_config field /// First published in XenServer 4.1. /// /// The session /// The opaque_ref of the given pbd /// The new value of the PBD's device_config public static XenRef async_set_device_config(Session session, string _pbd, Dictionary _value) { if (session.JsonRpcClient != null) return session.JsonRpcClient.async_pbd_set_device_config(session.uuid, _pbd, _value); else return XenRef.Create(session.proxy.async_pbd_set_device_config(session.uuid, _pbd ?? "", Maps.convert_to_proxy_string_string(_value)).parse()); } /// /// Return a list of all the PBDs 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.pbd_get_all(session.uuid); else return XenRef.Create(session.proxy.pbd_get_all(session.uuid).parse()); } /// /// Get all the PBD Records at once, in a single XML RPC call /// First published in XenServer 4.0. /// /// The session public static Dictionary, PBD> get_all_records(Session session) { if (session.JsonRpcClient != null) return session.JsonRpcClient.pbd_get_all_records(session.uuid); else return XenRef.Create(session.proxy.pbd_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 = ""; /// /// physical machine on which the pbd is available /// [JsonConverter(typeof(XenRefConverter))] public virtual XenRef host { get { return _host; } set { if (!Helper.AreEqual(value, _host)) { _host = value; Changed = true; NotifyPropertyChanged("host"); } } } private XenRef _host = new XenRef(Helper.NullOpaqueRef); /// /// the storage repository that the pbd realises /// [JsonConverter(typeof(XenRefConverter))] public virtual XenRef SR { get { return _SR; } set { if (!Helper.AreEqual(value, _SR)) { _SR = value; Changed = true; NotifyPropertyChanged("SR"); } } } private XenRef _SR = new XenRef(Helper.NullOpaqueRef); /// /// a config string to string map that is provided to the host's SR-backend-driver /// public virtual Dictionary device_config { get { return _device_config; } set { if (!Helper.AreEqual(value, _device_config)) { _device_config = value; Changed = true; NotifyPropertyChanged("device_config"); } } } private Dictionary _device_config = new Dictionary() {}; /// /// is the SR currently attached on this host? /// public virtual bool currently_attached { get { return _currently_attached; } set { if (!Helper.AreEqual(value, _currently_attached)) { _currently_attached = value; Changed = true; NotifyPropertyChanged("currently_attached"); } } } private bool _currently_attached; /// /// additional configuration /// First published in XenServer 4.1. /// 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 = new Dictionary() {}; } }