/* Copyright (c) Cloud Software Group, Inc. * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions are met: * * * Redistributions of source code must retain the above * copyright notice, this list of conditions and the * following disclaimer. * * 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.Reflection; using XenAPI; using XenAdmin.Core; using XenAdmin.Model; using System.Linq; using System.Diagnostics; using XenCenterLib; namespace XenAdmin.Network { public class Cache : ICache { #pragma warning disable 0414 // keep sorted please private readonly ChangeableDictionary, Blob> _blob = new ChangeableDictionary, Blob>(); private readonly ChangeableDictionary, Bond> _bond = new ChangeableDictionary, Bond>(); private readonly ChangeableDictionary, Certificate> _certificates = new ChangeableDictionary, Certificate>(); private readonly ChangeableDictionary, Cluster_host> _cluster_host = new ChangeableDictionary, Cluster_host>(); private readonly ChangeableDictionary, Cluster> _cluster = new ChangeableDictionary, Cluster>(); private readonly ChangeableDictionary, XenAPI.Console> _console = new ChangeableDictionary, XenAPI.Console>(); private readonly ChangeableDictionary, Crashdump> _crashdump = new ChangeableDictionary, Crashdump>(); private readonly ChangeableDictionary, DockerContainer> _dockerContainers = new ChangeableDictionary, DockerContainer>(); private readonly ChangeableDictionary, Feature> _feature = new ChangeableDictionary, Feature>(); private readonly ChangeableDictionary, Folder> _folders = new ChangeableDictionary, Folder>(); private readonly ChangeableDictionary, GPU_group> _gpu_groups = new ChangeableDictionary, GPU_group>(); private readonly ChangeableDictionary, Host_cpu> _host_cpu = new ChangeableDictionary, Host_cpu>(); private readonly ChangeableDictionary, Host_crashdump> _host_crashdump = new ChangeableDictionary, Host_crashdump>(); private readonly ChangeableDictionary, Host_metrics> _host_metrics = new ChangeableDictionary, Host_metrics>(); private readonly ChangeableDictionary, Host_patch> _host_patch = new ChangeableDictionary, Host_patch>(); private readonly ChangeableDictionary, Host> _host = new ChangeableDictionary, Host>(); private readonly ChangeableDictionary, Message> _message = new ChangeableDictionary, Message>(); private readonly ChangeableDictionary, Network_sriov> _network_sriov = new ChangeableDictionary, Network_sriov>(); private readonly ChangeableDictionary, XenAPI.Network> _network = new ChangeableDictionary, XenAPI.Network>(); private readonly ChangeableDictionary, PBD> _pbd = new ChangeableDictionary, PBD>(); private readonly ChangeableDictionary, PCI> _pcis = new ChangeableDictionary, PCI>(); private readonly ChangeableDictionary, PGPU> _pgpu = new ChangeableDictionary, PGPU>(); private readonly ChangeableDictionary, PIF_metrics> _pif_metrics = new ChangeableDictionary, PIF_metrics>(); private readonly ChangeableDictionary, PIF> _pif = new ChangeableDictionary, PIF>(); private readonly ChangeableDictionary, Pool_patch> _pool_patch = new ChangeableDictionary, Pool_patch>(); private readonly ChangeableDictionary, Pool_update> _pool_update = new ChangeableDictionary, Pool_update>(); private readonly ChangeableDictionary, Pool> _pool = new ChangeableDictionary, Pool>(); private readonly ChangeableDictionary, PUSB> _pusb = new ChangeableDictionary, PUSB>(); private readonly ChangeableDictionary, PVS_cache_storage> _pvs_cache_storage = new ChangeableDictionary, PVS_cache_storage>(); private readonly ChangeableDictionary, PVS_proxy> _pvs_proxy = new ChangeableDictionary, PVS_proxy>(); private readonly ChangeableDictionary, PVS_server> _pvs_server = new ChangeableDictionary, PVS_server>(); private readonly ChangeableDictionary, PVS_site> _pvs_site = new ChangeableDictionary, PVS_site>(); private readonly ChangeableDictionary, Repository> _repositories = new ChangeableDictionary, Repository>(); private readonly ChangeableDictionary, Role> _role = new ChangeableDictionary, Role>(); private readonly ChangeableDictionary, SM> _sm = new ChangeableDictionary, SM>(); private readonly ChangeableDictionary, SR> _sr = new ChangeableDictionary, SR>(); private readonly ChangeableDictionary, Subject> _subject = new ChangeableDictionary, Subject>(); private readonly ChangeableDictionary, Task> _task = new ChangeableDictionary, Task>(); private readonly ChangeableDictionary, Tunnel> _tunnel = new ChangeableDictionary, Tunnel>(); private readonly ChangeableDictionary, USB_group> _usb_group = new ChangeableDictionary, USB_group>(); private readonly ChangeableDictionary, VBD_metrics> _vbd_metrics = new ChangeableDictionary, VBD_metrics>(); private readonly ChangeableDictionary, VBD> _vbd = new ChangeableDictionary, VBD>(); private readonly ChangeableDictionary, VDI> _vdi = new ChangeableDictionary, VDI>(); private readonly ChangeableDictionary, VGPU_type> _vgpu_types = new ChangeableDictionary, VGPU_type>(); private readonly ChangeableDictionary, VGPU> _vgpu = new ChangeableDictionary, VGPU>(); private readonly ChangeableDictionary, VIF_metrics> _vif_metrics = new ChangeableDictionary, VIF_metrics>(); private readonly ChangeableDictionary, VIF> _vif = new ChangeableDictionary, VIF>(); private readonly ChangeableDictionary, VLAN> _vlan = new ChangeableDictionary, VLAN>(); private readonly ChangeableDictionary, VM_appliance> _vm_appliance = new ChangeableDictionary, VM_appliance>(); private readonly ChangeableDictionary, VM_guest_metrics> _vm_guest_metrics = new ChangeableDictionary, VM_guest_metrics>(); private readonly ChangeableDictionary, VM_metrics> _vm_metrics = new ChangeableDictionary, VM_metrics>(); private readonly ChangeableDictionary, VM> _vm = new ChangeableDictionary, VM>(); private readonly ChangeableDictionary, VMSS> _vmss = new ChangeableDictionary, VMSS>(); private readonly ChangeableDictionary, VTPM> _vtpms = new ChangeableDictionary, VTPM>(); private readonly ChangeableDictionary, VUSB> _vusb = new ChangeableDictionary, VUSB>(); #pragma warning restore 0414 private bool foldersChanged; private bool dockerContainersChanged; private readonly Dictionary dictionaries = new Dictionary(); public Cache() { foreach (FieldInfo f in GetType().GetFields(BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.NonPublic)) { if (f.FieldType.Name.StartsWith("ChangeableDictionary")) { dictionaries.Add(f.FieldType.GetGenericArguments()[0].GetGenericArguments()[0], (IDictionary)f.GetValue(this)); } } } #region Properties public Bond[] Bonds => contents(_bond); public Certificate[] Certificates => contents(_certificates); public Cluster[] Clusters => contents(_cluster); public Cluster_host[] Cluster_hosts => contents(_cluster_host); public DockerContainer[] DockerContainers => contents(_dockerContainers); public Feature[] Features => contents(_feature); public Folder[] Folders => contents(_folders); public GPU_group[] GPU_groups => contents(_gpu_groups); public Host[] Hosts => contents(_host); public Host_cpu[] Host_cpus => contents(_host_cpu); public int HostCount => _host.Count; public Message[] Messages => contents(_message); public XenAPI.Network[] Networks => contents(_network); public Network_sriov[] Network_sriov => contents(_network_sriov); public PBD[] PBDs => contents(_pbd); public PCI[] PCIs => contents(_pcis); public PGPU[] PGPUs => contents(_pgpu); public PIF[] PIFs => contents(_pif); public Pool[] Pools => contents(_pool); public Pool_patch[] Pool_patches => contents(_pool_patch); public Pool_update[] Pool_updates => contents(_pool_update); public PUSB[] PUSBs => contents(_pusb); public PVS_cache_storage[] PVS_cache_storages => contents(_pvs_cache_storage); public PVS_proxy[] PVS_proxies => contents(_pvs_proxy); public PVS_server[] PVS_servers => contents(_pvs_server); public PVS_site[] PVS_sites => contents(_pvs_site); public Repository[] Repositories => contents(_repositories); public Role[] Roles => contents(_role); public SM[] SMs => contents(_sm); public SR[] SRs => contents(_sr); public Subject[] Subjects => contents(_subject); public Tunnel[] Tunnels => contents(_tunnel); public USB_group[] USB_groups => contents(_usb_group); public VBD[] VBDs => contents(_vbd); public VDI[] VDIs => contents(_vdi); public VGPU[] VGPUs => contents(_vgpu); public VGPU_type[] VGPU_types => contents(_vgpu_types); public VIF[] VIFs => contents(_vif); public VM[] VMs => contents(_vm); public VM_appliance[] VM_appliances => contents(_vm_appliance); public VMSS[] VMSSs => contents(_vmss); public VTPM[] VTPMs => contents(_vtpms); public VUSB[] VUSBs => contents(_vusb); #endregion private static T[] contents(ChangeableDictionary, T> d) where T : XenObject { lock (d) { T[] result = new T[d.Values.Count]; int i = 0; foreach (T o in d.Values) { result[i] = o; i++; } return result; } } /// /// Returns the collection for the given type, or null if no such dictionary is present. /// private IDictionary GetCollectionForType(Type t) { return dictionaries.ContainsKey(t) ? dictionaries[t] : null; } public void DeregisterCollectionChanged(CollectionChangeEventHandler h) where T : XenObject { ChangeableDictionary, T> d = GetCollectionForType(typeof(T)) as ChangeableDictionary, T>; if (d == null) return; d.CollectionChanged -= h; } public void RegisterCollectionChanged(CollectionChangeEventHandler h) where T : XenObject { ChangeableDictionary, T> d = GetCollectionForType(typeof(T)) as ChangeableDictionary, T>; if (d == null) return; d.CollectionChanged -= h; d.CollectionChanged += h; } public void DeregisterBatchCollectionChanged(EventHandler h) where T : XenObject { ChangeableDictionary, T> d = GetCollectionForType(typeof(T)) as ChangeableDictionary, T>; if (d == null) return; d.BatchCollectionChanged -= h; } public void RegisterBatchCollectionChanged(EventHandler h) where T : XenObject { ChangeableDictionary, T> d = GetCollectionForType(typeof(T)) as ChangeableDictionary, T>; if (d == null) return; d.BatchCollectionChanged -= h; d.BatchCollectionChanged += h; } public void AddAll(List l, Predicate p) where T : XenObject { IDictionary d = GetCollectionForType(typeof(T)); if (d == null) return; lock (d) { if (p == null) foreach (T value in d.Values) l.Add(value); else foreach (T value in d.Values) if (p(value)) l.Add(value); } } private static MethodInfo ClearMethod = typeof(Cache).GetMethod("Clear_", BindingFlags.NonPublic | BindingFlags.Instance); public void Clear() { foreach (IDictionary d in dictionaries.Values) { lock (d) { object[] args = { d }; ClearMethod.MakeGenericMethod(APIType(d)).Invoke(this, args); } INotifyCollectionChanged d1 = d as INotifyCollectionChanged; if (d1 != null) d1.OnBatchCollectionChanged(); } } private static MethodInfo UpdateFromMethod = typeof(Cache).GetMethod("UpdateFrom_", BindingFlags.NonPublic | BindingFlags.Instance); /// true if some changes have been made. This is used to indicate that XenObjectsUpdated should be fired by IXenConnection. public bool UpdateFrom(IXenConnection connection, IList changes) { Dictionary tofire = new Dictionary(); foreach (ObjectChange o in changes) { if (IgnoreObjectChange(o)) continue; IDictionary d = GetCollectionForType(o.type); if (d == null) continue; object[] args = { connection, d, o }; UpdateFromMethod.MakeGenericMethod(o.type).Invoke(this, args); tofire[d] = null; } bool result = false; foreach (IDictionary d in tofire.Keys) { INotifyCollectionChanged n = d as INotifyCollectionChanged; if (n != null) n.OnBatchCollectionChanged(); result = true; } return result; } /// /// For performance reasons, we ignore some events. These are: /// 1. The heartbeat event from xapi, which is a "change" on the pool object, but where the object doesn't actually change. /// 2. Tasks that are frequent and which we don't care about, like SR.scan. /// 3. Changes on SR that only toggle current_operations. These happen at the same time as the /// periodic SR.scan. /// private bool IgnoreObjectChange(ObjectChange obj) { if (obj.value == null) { // Object is being deleted. Never ignore these! return false; } else if (obj.type == typeof(Task)) { Task task = (Task)obj.value; return task.IgnoreInCacheUpdate(); } else if (obj.type == typeof(Pool)) { Pool newPool = (Pool)obj.value; Pool oldPool = Resolve(new XenRef(obj.xenref)); return oldPool != null && newPool.DeepEquals(oldPool, false); //We do want to see changes in the Pool.current_operations. } else if (obj.type == typeof(SR)) { SR newSR = (SR)obj.value; SR oldSR = Resolve(new XenRef(obj.xenref)); return oldSR != null && newSR.DeepEquals(oldSR, true); } else { return false; } } public T Find_By_Uuid(string uuid) where T : XenObject { Type t = typeof(T); PropertyInfo p = t.GetProperty("uuid", BindingFlags.Public | BindingFlags.Instance); if (p == null) return null; ChangeableDictionary, T> d = GetCollectionForType(t) as ChangeableDictionary, T>; if (d == null) return null; lock (d) { foreach (T m in d.Values) { if (string.Equals((string)p.GetValue(m, null), uuid, StringComparison.OrdinalIgnoreCase)) return m; } } return null; } /// /// Find a XenRef corresponding to the given XenObject, using its UUID. /// Returns null if no such object is found. /// public XenRef FindRef(T needle) where T : XenObject { Type t = typeof(T); PropertyInfo p = t.GetProperty("uuid", BindingFlags.Public | BindingFlags.Instance); if (p == null) return null; string uuid = (string)p.GetValue(needle, null); ChangeableDictionary, T> d = GetCollectionForType(t) as ChangeableDictionary, T>; if (d == null) return null; lock (d) { foreach (KeyValuePair, T> kvp in d) { if (string.Equals((string)p.GetValue(kvp.Value, null), uuid, StringComparison.OrdinalIgnoreCase)) return kvp.Key; } } return null; } public bool TryResolve(XenRef xenRef, out T result) where T : XenObject { result = Resolve(xenRef); return result != null; } /// /// /// /// /// May be null, in which case null is returned. May not be a null ref. /// public T Resolve(XenRef xenRef) where T : XenObject { if (xenRef == null) return null; ChangeableDictionary, T> d = GetCollectionForType(typeof(T)) as ChangeableDictionary, T>; if (d == null) return null; T result; return d.TryGetValue(xenRef, out result) ? result : null; } private void Clear_(ChangeableDictionary, T> o) where T : XenObject { // explicitly remove each element so change events are fired XenRef[] keys = new XenRef[o.Keys.Count]; o.Keys.CopyTo(keys, 0); foreach (XenRef key in keys) { lock (o) { o.Remove(key); } } } private void UpdateFrom_(Network.IXenConnection connection, ChangeableDictionary, T> target, ObjectChange source) where T : XenObject, new() { XenRef xenref = source.xenref as XenRef; if (xenref == null) { xenref = new XenRef((string)source.xenref); } if (source.value != null) { T to_update = null; lock (target) { if (!target.TryGetValue(xenref, out to_update)) { // add T obj = new T(); obj.Connection = connection; obj.UpdateFrom((T)source.value); obj.opaque_ref = xenref.opaque_ref; target.Add(xenref, obj); } } // Update the object that we found above. Note that this needs to be done out of the // scope of the lock(target), as UpdateFrom is going to fire events. if (to_update != null) to_update.UpdateFrom((T)source.value); } else { // delete the source object from our model lock (target) { target.Remove(xenref); } } } private Type APIType(IDictionary d) { return d.GetType().GetGenericArguments()[1]; } public void AddFolder(XenRef path, Folder folder) { _folders[path] = folder; foldersChanged = true; } public void RemoveFolder(XenRef path) { lock (_folders) { _folders.Remove(path); } foldersChanged = true; } public void CheckFoldersBatchChange() { if (foldersChanged) { foldersChanged = false; _folders.OnBatchCollectionChanged(); } } public void CheckDockerContainersBatchChange() { if (dockerContainersChanged) { dockerContainersChanged = false; _dockerContainers.OnBatchCollectionChanged(); } } public void UpdateDockerContainersForVM(IList containers, VM vm) { Trace.Assert(vm != null); //updating existing, adding new containers dockerContainersChanged = dockerContainersChanged || containers.Count > 0; foreach (var c in containers) { _dockerContainers[new XenRef(c)] = c; } List, DockerContainer>> containersGoneFromThisVM = null; //removing the ones that are not there anymore on this VM lock (_dockerContainers) { containersGoneFromThisVM = _dockerContainers.Where(c => c.Value != null && c.Value.Parent.uuid == vm.uuid && !containers.Any(cont => cont.uuid == c.Value.uuid)).ToList(); dockerContainersChanged = dockerContainersChanged || containersGoneFromThisVM.Count > 0; foreach (var c in containersGoneFromThisVM) { _dockerContainers.Remove(new XenRef(c.Value)); } } } public IEnumerable XenSearchableObjects { get { foreach (IXenObject o in VMs) yield return o; foreach (IXenObject o in VM_appliances) yield return o; foreach (IXenObject o in Hosts) yield return o; foreach (IXenObject o in SRs) yield return o; foreach (IXenObject o in Networks) yield return o; foreach (IXenObject o in VDIs) yield return o; foreach (IXenObject o in Folders) yield return o; foreach (IXenObject o in DockerContainers) yield return o; foreach (Pool pool in Pools) { if (pool != null && pool.IsVisible()) { yield return pool; break; } } } } } }