xenadmin/XenModel/XenAPI/Event.cs
Konstantina Chremmou 8207a25fc8 Reverted to use of the Marshalling methods, as the Hashtable values can often be null.
Also fixed regression within the Masrshalling methods to account for null
values, however I did not reinstate the checks for keys, because Hashtable
returns null if the key does not exist instead of throwing an exception.

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
2018-02-26 15:48:29 +00:00

185 lines
6.3 KiB
C#

/*
* 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.Generic;
using CookComputing.XmlRpc;
using Newtonsoft.Json;
namespace XenAPI
{
[JsonConverter(typeof(XenEventConverter))]
public partial class Event : XenObject<Event>
{
public Event()
{
}
internal Event(Proxy_Event proxy)
{
this.UpdateFromProxy(proxy);
}
internal void UpdateFromProxy(Proxy_Event proxy)
{
id = long.Parse(proxy.id);
}
public override void UpdateFrom(Event update)
{
id = update.id;
}
internal Proxy_Event ToProxy()
{
Proxy_Event result = new Proxy_Event();
result.id = id.ToString();
return result;
}
public override string SaveChanges(Session session, string opaqueRef, Event serverObject)
{
Event server = serverObject;
if (opaqueRef == null)
{
Proxy_Event p = this.ToProxy();
throw new InvalidOperationException("There is no constructor available for this type; you cannot directly create one on the server.");
}
else
{
if (!_id.Equals(server._id))
{
Event.set_id(session, opaqueRef, _id);
}
return null;
}
}
public static Event get_record(Session session, string _event)
{
if (session.JsonRpcClient != null)
return session.JsonRpcClient.event_get_record(session.opaque_ref, _event);
else
return new Event(session.proxy.event_get_record(session.opaque_ref, _event ?? "").parse());
}
public static string get_by_uuid(Session session, string _uuid)
{
if (session.JsonRpcClient != null)
return session.JsonRpcClient.event_get_by_uuid(session.opaque_ref, _uuid);
else
return session.proxy.event_get_by_uuid(session.opaque_ref, _uuid ?? "").parse();
}
public static long get_id(Session session, string _event)
{
if (session.JsonRpcClient != null)
return session.JsonRpcClient.event_get_id(session.opaque_ref, _event);
else
return long.Parse(session.proxy.event_get_id(session.opaque_ref, _event ?? "").parse());
}
public static void set_id(Session session, string _event, long _id)
{
if (session.JsonRpcClient != null)
session.JsonRpcClient.event_set_id(session.opaque_ref, _event, _id);
else
session.proxy.event_set_id(session.opaque_ref, _event ?? "", _id.ToString()).parse();
}
public static void register(Session session, string[] _classes)
{
if (session.JsonRpcClient != null)
session.JsonRpcClient.event_register(session.opaque_ref, _classes);
else
session.proxy.event_register(session.opaque_ref, _classes).parse();
}
public static void unregister(Session session, string[] _classes)
{
if (session.JsonRpcClient != null)
session.JsonRpcClient.event_unregister(session.opaque_ref, _classes);
else
session.proxy.event_unregister(session.opaque_ref, _classes).parse();
}
public static Proxy_Event[] next(Session session)
{
if (session.JsonRpcClient != null)
throw new NotImplementedException();
else
return session.proxy.event_next(session.opaque_ref).parse();
}
public static IEventCollection from(Session session, string[] _classes, string _token, double _timeout)
{
if (session.JsonRpcClient != null)
return session.JsonRpcClient.event_from(session.opaque_ref, _classes, _token, _timeout);
else
return session.proxy.event_from(session.opaque_ref, _classes, _token, _timeout).parse();
}
private long _id;
public long id
{
get { return _id; }
set { if (value != _id) { _id = value; Changed = true; NotifyPropertyChanged("id"); } }
}
public string timestamp;
[XmlRpcMember("class")]
public string class_;
public string operation;
[XmlRpcMember("ref")]
public string opaqueRef;
[XmlRpcMember("snapshot")]
public object snapshot;
}
[XmlRpcMissingMapping(MappingAction.Ignore)]
public class EventBatch : IEventCollection
{
public Event[] events;
public Dictionary<string, int> valid_ref_counts;
public string token;
}
public interface IEventCollection
{
}
}