2013-06-24 13:41:48 +02:00
/ *
* Copyright ( c ) Citrix Systems , Inc .
* All rights reserved .
2017-09-13 18:14:07 +02:00
*
2013-06-24 13:41:48 +02:00
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
2017-09-13 18:14:07 +02:00
*
2013-06-24 13:41:48 +02:00
* 1 ) Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
2017-09-13 18:14:07 +02:00
*
2013-06-24 13:41:48 +02:00
* 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 .
2017-09-13 18:14:07 +02:00
*
2013-06-24 13:41:48 +02:00
* 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 .
* /
2013-07-03 12:22:08 +02:00
2013-06-24 13:41:48 +02:00
using System ;
using System.Collections ;
using System.Collections.Generic ;
2017-09-13 18:14:07 +02:00
using System.ComponentModel ;
using System.Globalization ;
using Newtonsoft.Json ;
using Newtonsoft.Json.Converters ;
2013-06-24 13:41:48 +02:00
namespace XenAPI
{
2014-05-16 17:58:13 +02:00
/// <summary>
/// A VM crashdump
/// First published in XenServer 4.0.
/// </summary>
2013-06-24 13:41:48 +02:00
public partial class Crashdump : XenObject < Crashdump >
{
public Crashdump ( )
{
}
public Crashdump ( string uuid ,
XenRef < VM > VM ,
XenRef < VDI > VDI ,
Dictionary < string , string > other_config )
{
this . uuid = uuid ;
this . VM = VM ;
this . VDI = VDI ;
this . other_config = other_config ;
}
/// <summary>
/// Creates a new Crashdump from a Proxy_Crashdump.
/// </summary>
/// <param name="proxy"></param>
public Crashdump ( Proxy_Crashdump proxy )
{
this . UpdateFromProxy ( proxy ) ;
}
2018-02-16 17:27:30 +01:00
/// <summary>
/// Updates each field of this instance with the value of
/// the corresponding field of a given Crashdump.
/// </summary>
2013-06-24 13:41:48 +02:00
public override void UpdateFrom ( Crashdump update )
{
uuid = update . uuid ;
VM = update . VM ;
VDI = update . VDI ;
other_config = update . other_config ;
}
internal void UpdateFromProxy ( Proxy_Crashdump proxy )
{
uuid = proxy . uuid = = null ? null : ( string ) proxy . uuid ;
VM = proxy . VM = = null ? null : XenRef < VM > . Create ( proxy . VM ) ;
VDI = proxy . VDI = = null ? null : XenRef < VDI > . Create ( proxy . VDI ) ;
other_config = proxy . other_config = = null ? null : Maps . convert_from_proxy_string_string ( proxy . other_config ) ;
}
public Proxy_Crashdump ToProxy ( )
{
Proxy_Crashdump result_ = new Proxy_Crashdump ( ) ;
2017-09-13 18:14:07 +02:00
result_ . uuid = uuid ? ? "" ;
result_ . VM = VM ? ? "" ;
result_ . VDI = VDI ? ? "" ;
2013-06-24 13:41:48 +02:00
result_ . other_config = Maps . convert_to_proxy_string_string ( other_config ) ;
return result_ ;
}
/// <summary>
/// Creates a new Crashdump from a Hashtable.
2018-02-16 17:27:30 +01:00
/// Note that the fields not contained in the Hashtable
/// will be created with their default values.
/// </summary>
/// <param name="table"></param>
public Crashdump ( Hashtable table ) : this ( )
{
UpdateFrom ( table ) ;
}
/// <summary>
/// Given a Hashtable with field-value pairs, it updates the fields of this Crashdump
/// 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.
2013-06-24 13:41:48 +02:00
/// </summary>
/// <param name="table"></param>
2018-02-16 17:27:30 +01:00
public void UpdateFrom ( Hashtable table )
2013-06-24 13:41:48 +02:00
{
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "uuid" ) )
uuid = ( string ) table [ "uuid" ] ;
if ( table . ContainsKey ( "VM" ) )
VM = XenRef < VM > . Create ( ( string ) table [ "VM" ] ) ;
if ( table . ContainsKey ( "VDI" ) )
VDI = XenRef < VDI > . Create ( ( string ) table [ "VDI" ] ) ;
if ( table . ContainsKey ( "other_config" ) )
other_config = Maps . convert_from_proxy_string_string ( ( Hashtable ) table [ "other_config" ] ) ;
2013-06-24 13:41:48 +02:00
}
public bool DeepEquals ( Crashdump other )
{
if ( ReferenceEquals ( null , other ) )
return false ;
if ( ReferenceEquals ( this , other ) )
return true ;
return Helper . AreEqual2 ( this . _uuid , other . _uuid ) & &
Helper . AreEqual2 ( this . _VM , other . _VM ) & &
Helper . AreEqual2 ( this . _VDI , other . _VDI ) & &
Helper . AreEqual2 ( this . _other_config , other . _other_config ) ;
}
2017-11-17 12:19:01 +01:00
internal static List < Crashdump > ProxyArrayToObjectList ( Proxy_Crashdump [ ] input )
{
var result = new List < Crashdump > ( ) ;
foreach ( var item in input )
result . Add ( new Crashdump ( item ) ) ;
return result ;
}
2013-06-24 13:41:48 +02:00
public override string SaveChanges ( Session session , string opaqueRef , Crashdump server )
{
if ( opaqueRef = = null )
2018-02-14 12:03:48 +01:00
{
System . Diagnostics . Debug . Assert ( false , "Cannot create instances of this type on the server" ) ;
2013-06-24 13:41:48 +02:00
return "" ;
}
else
{
if ( ! Helper . AreEqual2 ( _other_config , server . _other_config ) )
{
Crashdump . set_other_config ( session , opaqueRef , _other_config ) ;
}
return null ;
}
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get a record containing the current state of the given crashdump.
/// First published in XenServer 4.0.
2017-11-22 15:33:26 +01:00
/// Deprecated since XenServer 7.3.
2014-05-16 17:58:13 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
2017-11-22 15:33:26 +01:00
[Deprecated("XenServer 7.3")]
2013-06-24 13:41:48 +02:00
public static Crashdump get_record ( Session session , string _crashdump )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . crashdump_get_record ( session . uuid , _crashdump ) ;
else
return new Crashdump ( ( Proxy_Crashdump ) session . proxy . crashdump_get_record ( session . uuid , _crashdump ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get a reference to the crashdump instance with the specified UUID.
/// First published in XenServer 4.0.
2017-11-22 15:33:26 +01:00
/// Deprecated since XenServer 7.3.
2014-05-16 17:58:13 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_uuid">UUID of object to return</param>
2017-11-22 15:33:26 +01:00
[Deprecated("XenServer 7.3")]
2013-06-24 13:41:48 +02:00
public static XenRef < Crashdump > get_by_uuid ( Session session , string _uuid )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . crashdump_get_by_uuid ( session . uuid , _uuid ) ;
else
return XenRef < Crashdump > . Create ( session . proxy . crashdump_get_by_uuid ( session . uuid , _uuid ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the uuid field of the given crashdump.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
2013-06-24 13:41:48 +02:00
public static string get_uuid ( Session session , string _crashdump )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . crashdump_get_uuid ( session . uuid , _crashdump ) ;
else
return ( string ) session . proxy . crashdump_get_uuid ( session . uuid , _crashdump ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the VM field of the given crashdump.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
2013-06-24 13:41:48 +02:00
public static XenRef < VM > get_VM ( Session session , string _crashdump )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . crashdump_get_vm ( session . uuid , _crashdump ) ;
else
return XenRef < VM > . Create ( session . proxy . crashdump_get_vm ( session . uuid , _crashdump ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the VDI field of the given crashdump.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
2013-06-24 13:41:48 +02:00
public static XenRef < VDI > get_VDI ( Session session , string _crashdump )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . crashdump_get_vdi ( session . uuid , _crashdump ) ;
else
return XenRef < VDI > . Create ( session . proxy . crashdump_get_vdi ( session . uuid , _crashdump ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the other_config field of the given crashdump.
/// First published in XenServer 4.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < string , string > get_other_config ( Session session , string _crashdump )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . crashdump_get_other_config ( session . uuid , _crashdump ) ;
else
return Maps . convert_from_proxy_string_string ( session . proxy . crashdump_get_other_config ( session . uuid , _crashdump ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the other_config field of the given crashdump.
/// First published in XenServer 4.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
/// <param name="_other_config">New value to set</param>
2013-06-24 13:41:48 +02:00
public static void set_other_config ( Session session , string _crashdump , Dictionary < string , string > _other_config )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
session . JsonRpcClient . crashdump_set_other_config ( session . uuid , _crashdump , _other_config ) ;
else
session . proxy . crashdump_set_other_config ( session . uuid , _crashdump ? ? "" , Maps . convert_to_proxy_string_string ( _other_config ) ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Add the given key-value pair to the other_config field of the given crashdump.
/// First published in XenServer 4.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
/// <param name="_key">Key to add</param>
/// <param name="_value">Value to add</param>
2013-06-24 13:41:48 +02:00
public static void add_to_other_config ( Session session , string _crashdump , string _key , string _value )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
session . JsonRpcClient . crashdump_add_to_other_config ( session . uuid , _crashdump , _key , _value ) ;
else
session . proxy . crashdump_add_to_other_config ( session . uuid , _crashdump ? ? "" , _key ? ? "" , _value ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Remove the given key and its corresponding value from the other_config field of the given crashdump. If the key is not in that Map, then do nothing.
/// First published in XenServer 4.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
/// <param name="_key">Key to remove</param>
2013-06-24 13:41:48 +02:00
public static void remove_from_other_config ( Session session , string _crashdump , string _key )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
session . JsonRpcClient . crashdump_remove_from_other_config ( session . uuid , _crashdump , _key ) ;
else
session . proxy . crashdump_remove_from_other_config ( session . uuid , _crashdump ? ? "" , _key ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Destroy the specified crashdump
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
public static void destroy ( Session session , string _crashdump )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
session . JsonRpcClient . crashdump_destroy ( session . uuid , _crashdump ) ;
else
session . proxy . crashdump_destroy ( session . uuid , _crashdump ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Destroy the specified crashdump
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_crashdump">The opaque_ref of the given crashdump</param>
public static XenRef < Task > async_destroy ( Session session , string _crashdump )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . async_crashdump_destroy ( session . uuid , _crashdump ) ;
else
return XenRef < Task > . Create ( session . proxy . async_crashdump_destroy ( session . uuid , _crashdump ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Return a list of all the crashdumps known to the system.
/// First published in XenServer 4.0.
2017-11-22 15:33:26 +01:00
/// Deprecated since XenServer 7.3.
2014-05-16 17:58:13 +02:00
/// </summary>
/// <param name="session">The session</param>
2017-11-22 15:33:26 +01:00
[Deprecated("XenServer 7.3")]
2013-06-24 13:41:48 +02:00
public static List < XenRef < Crashdump > > get_all ( Session session )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . crashdump_get_all ( session . uuid ) ;
else
return XenRef < Crashdump > . Create ( session . proxy . crashdump_get_all ( session . uuid ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get all the crashdump Records at once, in a single XML RPC call
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < XenRef < Crashdump > , Crashdump > get_all_records ( Session session )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . crashdump_get_all_records ( session . uuid ) ;
else
return XenRef < Crashdump > . Create < Proxy_Crashdump > ( session . proxy . crashdump_get_all_records ( session . uuid ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Unique identifier/object reference
/// </summary>
public virtual string uuid
{
get { return _uuid ; }
set
{
if ( ! Helper . AreEqual ( value , _uuid ) )
{
_uuid = value ;
Changed = true ;
NotifyPropertyChanged ( "uuid" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string _uuid = "" ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// the virtual machine
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(XenRefConverter<VM>))]
2014-05-16 17:58:13 +02:00
public virtual XenRef < VM > VM
{
get { return _VM ; }
set
{
if ( ! Helper . AreEqual ( value , _VM ) )
{
_VM = value ;
Changed = true ;
NotifyPropertyChanged ( "VM" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private XenRef < VM > _VM = new XenRef < VM > ( Helper . NullOpaqueRef ) ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// the virtual disk
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(XenRefConverter<VDI>))]
2014-05-16 17:58:13 +02:00
public virtual XenRef < VDI > VDI
{
get { return _VDI ; }
set
{
if ( ! Helper . AreEqual ( value , _VDI ) )
{
_VDI = value ;
Changed = true ;
NotifyPropertyChanged ( "VDI" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private XenRef < VDI > _VDI = new XenRef < VDI > ( Helper . NullOpaqueRef ) ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// additional configuration
/// First published in XenServer 4.1.
/// </summary>
public virtual Dictionary < string , string > other_config
{
get { return _other_config ; }
set
{
if ( ! Helper . AreEqual ( value , _other_config ) )
{
_other_config = value ;
Changed = true ;
NotifyPropertyChanged ( "other_config" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private Dictionary < string , string > _other_config = new Dictionary < string , string > ( ) { } ;
2013-06-24 13:41:48 +02:00
}
}