/* * 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 CookComputing.XmlRpc; namespace XenAPI { /// /// individual machine serving provisioning (block) data /// public partial class PVS_server : XenObject { public PVS_server() { } public PVS_server(string uuid, string[] addresses, long first_port, long last_port, XenRef site) { this.uuid = uuid; this.addresses = addresses; this.first_port = first_port; this.last_port = last_port; this.site = site; } /// /// Creates a new PVS_server from a Proxy_PVS_server. /// /// public PVS_server(Proxy_PVS_server proxy) { this.UpdateFromProxy(proxy); } public override void UpdateFrom(PVS_server update) { uuid = update.uuid; addresses = update.addresses; first_port = update.first_port; last_port = update.last_port; site = update.site; } internal void UpdateFromProxy(Proxy_PVS_server proxy) { uuid = proxy.uuid == null ? null : (string)proxy.uuid; addresses = proxy.addresses == null ? new string[] {} : (string [])proxy.addresses; first_port = proxy.first_port == null ? 0 : long.Parse((string)proxy.first_port); last_port = proxy.last_port == null ? 0 : long.Parse((string)proxy.last_port); site = proxy.site == null ? null : XenRef.Create(proxy.site); } public Proxy_PVS_server ToProxy() { Proxy_PVS_server result_ = new Proxy_PVS_server(); result_.uuid = (uuid != null) ? uuid : ""; result_.addresses = addresses; result_.first_port = first_port.ToString(); result_.last_port = last_port.ToString(); result_.site = (site != null) ? site : ""; return result_; } /// /// Creates a new PVS_server from a Hashtable. /// /// public PVS_server(Hashtable table) { uuid = Marshalling.ParseString(table, "uuid"); addresses = Marshalling.ParseStringArray(table, "addresses"); first_port = Marshalling.ParseLong(table, "first_port"); last_port = Marshalling.ParseLong(table, "last_port"); site = Marshalling.ParseRef(table, "site"); } public bool DeepEquals(PVS_server other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Helper.AreEqual2(this._uuid, other._uuid) && Helper.AreEqual2(this._addresses, other._addresses) && Helper.AreEqual2(this._first_port, other._first_port) && Helper.AreEqual2(this._last_port, other._last_port) && Helper.AreEqual2(this._site, other._site); } public override string SaveChanges(Session session, string opaqueRef, PVS_server server) { if (opaqueRef == null) { System.Diagnostics.Debug.Assert(false, "Cannot create instances of this type on the server"); return ""; } else { throw new InvalidOperationException("This type has no read/write properties"); } } /// /// Get a record containing the current state of the given PVS_server. /// Experimental. First published in . /// /// The session /// The opaque_ref of the given pvs_server public static PVS_server get_record(Session session, string _pvs_server) { return new PVS_server((Proxy_PVS_server)session.proxy.pvs_server_get_record(session.uuid, (_pvs_server != null) ? _pvs_server : "").parse()); } /// /// Get a reference to the PVS_server instance with the specified UUID. /// Experimental. First published in . /// /// The session /// UUID of object to return public static XenRef get_by_uuid(Session session, string _uuid) { return XenRef.Create(session.proxy.pvs_server_get_by_uuid(session.uuid, (_uuid != null) ? _uuid : "").parse()); } /// /// Get the uuid field of the given PVS_server. /// Experimental. First published in . /// /// The session /// The opaque_ref of the given pvs_server public static string get_uuid(Session session, string _pvs_server) { return (string)session.proxy.pvs_server_get_uuid(session.uuid, (_pvs_server != null) ? _pvs_server : "").parse(); } /// /// Get the addresses field of the given PVS_server. /// Experimental. First published in . /// /// The session /// The opaque_ref of the given pvs_server public static string[] get_addresses(Session session, string _pvs_server) { return (string [])session.proxy.pvs_server_get_addresses(session.uuid, (_pvs_server != null) ? _pvs_server : "").parse(); } /// /// Get the first_port field of the given PVS_server. /// Experimental. First published in . /// /// The session /// The opaque_ref of the given pvs_server public static long get_first_port(Session session, string _pvs_server) { return long.Parse((string)session.proxy.pvs_server_get_first_port(session.uuid, (_pvs_server != null) ? _pvs_server : "").parse()); } /// /// Get the last_port field of the given PVS_server. /// Experimental. First published in . /// /// The session /// The opaque_ref of the given pvs_server public static long get_last_port(Session session, string _pvs_server) { return long.Parse((string)session.proxy.pvs_server_get_last_port(session.uuid, (_pvs_server != null) ? _pvs_server : "").parse()); } /// /// Get the site field of the given PVS_server. /// Experimental. First published in . /// /// The session /// The opaque_ref of the given pvs_server public static XenRef get_site(Session session, string _pvs_server) { return XenRef.Create(session.proxy.pvs_server_get_site(session.uuid, (_pvs_server != null) ? _pvs_server : "").parse()); } /// /// introduce new PVS server /// Experimental. First published in . /// /// The session /// IPv4 addresses of the server /// first UDP port accepted by this server /// last UDP port accepted by this server /// PVS site this server is a part of public static XenRef introduce(Session session, string[] _addresses, long _first_port, long _last_port, string _site) { return XenRef.Create(session.proxy.pvs_server_introduce(session.uuid, _addresses, _first_port.ToString(), _last_port.ToString(), (_site != null) ? _site : "").parse()); } /// /// introduce new PVS server /// Experimental. First published in . /// /// The session /// IPv4 addresses of the server /// first UDP port accepted by this server /// last UDP port accepted by this server /// PVS site this server is a part of public static XenRef async_introduce(Session session, string[] _addresses, long _first_port, long _last_port, string _site) { return XenRef.Create(session.proxy.async_pvs_server_introduce(session.uuid, _addresses, _first_port.ToString(), _last_port.ToString(), (_site != null) ? _site : "").parse()); } /// /// forget a PVS server /// Experimental. First published in . /// /// The session /// The opaque_ref of the given pvs_server public static void forget(Session session, string _pvs_server) { session.proxy.pvs_server_forget(session.uuid, (_pvs_server != null) ? _pvs_server : "").parse(); } /// /// forget a PVS server /// Experimental. First published in . /// /// The session /// The opaque_ref of the given pvs_server public static XenRef async_forget(Session session, string _pvs_server) { return XenRef.Create(session.proxy.async_pvs_server_forget(session.uuid, (_pvs_server != null) ? _pvs_server : "").parse()); } /// /// Return a list of all the PVS_servers known to the system. /// Experimental. First published in . /// /// The session public static List> get_all(Session session) { return XenRef.Create(session.proxy.pvs_server_get_all(session.uuid).parse()); } /// /// Get all the PVS_server Records at once, in a single XML RPC call /// /// The session public static Dictionary, PVS_server> get_all_records(Session session) { return XenRef.Create(session.proxy.pvs_server_get_all_records(session.uuid).parse()); } /// /// Unique identifier/object reference /// Experimental. First published in . /// public virtual string uuid { get { return _uuid; } set { if (!Helper.AreEqual(value, _uuid)) { _uuid = value; Changed = true; NotifyPropertyChanged("uuid"); } } } private string _uuid; /// /// IPv4 addresses of this server /// Experimental. First published in . /// public virtual string[] addresses { get { return _addresses; } set { if (!Helper.AreEqual(value, _addresses)) { _addresses = value; Changed = true; NotifyPropertyChanged("addresses"); } } } private string[] _addresses; /// /// First UDP port accepted by this server /// Experimental. First published in . /// public virtual long first_port { get { return _first_port; } set { if (!Helper.AreEqual(value, _first_port)) { _first_port = value; Changed = true; NotifyPropertyChanged("first_port"); } } } private long _first_port; /// /// Last UDP port accepted by this server /// Experimental. First published in . /// public virtual long last_port { get { return _last_port; } set { if (!Helper.AreEqual(value, _last_port)) { _last_port = value; Changed = true; NotifyPropertyChanged("last_port"); } } } private long _last_port; /// /// PVS site this server is part of /// Experimental. First published in . /// public virtual XenRef site { get { return _site; } set { if (!Helper.AreEqual(value, _site)) { _site = value; Changed = true; NotifyPropertyChanged("site"); } } } private XenRef _site; } }