/* * 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: * * 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; namespace XenAPI { internal class Maps { internal static Dictionary ToDictionary_string_string(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; string v = table[key] == null ? null : (string)table[key]; result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_long(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; long v = table[key] == null ? 0 : long.Parse((string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_cluster_host_operation(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; cluster_host_operation v = table[key] == null ? (cluster_host_operation) 0 : (cluster_host_operation)Helper.EnumParseDefault(typeof(cluster_host_operation), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_cluster_operation(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; cluster_operation v = table[key] == null ? (cluster_operation) 0 : (cluster_operation)Helper.EnumParseDefault(typeof(cluster_operation), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_host_allowed_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; host_allowed_operations v = table[key] == null ? (host_allowed_operations) 0 : (host_allowed_operations)Helper.EnumParseDefault(typeof(host_allowed_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_network_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; network_operations v = table[key] == null ? (network_operations) 0 : (network_operations)Helper.EnumParseDefault(typeof(network_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_pool_allowed_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; pool_allowed_operations v = table[key] == null ? (pool_allowed_operations) 0 : (pool_allowed_operations)Helper.EnumParseDefault(typeof(pool_allowed_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_storage_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; storage_operations v = table[key] == null ? (storage_operations) 0 : (storage_operations)Helper.EnumParseDefault(typeof(storage_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_task_allowed_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; task_allowed_operations v = table[key] == null ? (task_allowed_operations) 0 : (task_allowed_operations)Helper.EnumParseDefault(typeof(task_allowed_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_vbd_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; vbd_operations v = table[key] == null ? (vbd_operations) 0 : (vbd_operations)Helper.EnumParseDefault(typeof(vbd_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_vdi_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; vdi_operations v = table[key] == null ? (vdi_operations) 0 : (vdi_operations)Helper.EnumParseDefault(typeof(vdi_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_vif_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; vif_operations v = table[key] == null ? (vif_operations) 0 : (vif_operations)Helper.EnumParseDefault(typeof(vif_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_vm_appliance_operation(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; vm_appliance_operation v = table[key] == null ? (vm_appliance_operation) 0 : (vm_appliance_operation)Helper.EnumParseDefault(typeof(vm_appliance_operation), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_vm_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; vm_operations v = table[key] == null ? (vm_operations) 0 : (vm_operations)Helper.EnumParseDefault(typeof(vm_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_vtpm_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; vtpm_operations v = table[key] == null ? (vtpm_operations) 0 : (vtpm_operations)Helper.EnumParseDefault(typeof(vtpm_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_string_vusb_operations(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; vusb_operations v = table[key] == null ? (vusb_operations) 0 : (vusb_operations)Helper.EnumParseDefault(typeof(vusb_operations), (string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary> ToDictionary_string_XenRefBlob(Hashtable table) { Dictionary> result = new Dictionary>(); if (table != null) { foreach (string key in table.Keys) { try { string k = key; XenRef v = table[key] == null ? null : XenRef.Create(table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_long_long(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { long k = long.Parse(key); long v = table[key] == null ? 0 : long.Parse((string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_long_double(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { long k = long.Parse(key); double v = Convert.ToDouble(table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_long_string_array(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { long k = long.Parse(key); string[] v = table[key] == null ? new string[] {} : Array.ConvertAll((object[])table[key], Convert.ToString); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary ToDictionary_vm_operations_string(Hashtable table) { Dictionary result = new Dictionary(); if (table != null) { foreach (string key in table.Keys) { try { vm_operations k = (vm_operations)Helper.EnumParseDefault(typeof(vm_operations), (string)key); string v = table[key] == null ? null : (string)table[key]; result[k] = v; } catch { // continue } } } return result; } internal static Dictionary, long> ToDictionary_XenRefVGPU_type_long(Hashtable table) { Dictionary, long> result = new Dictionary, long>(); if (table != null) { foreach (string key in table.Keys) { try { XenRef k = XenRef.Create(key); long v = table[key] == null ? 0 : long.Parse((string)table[key]); result[k] = v; } catch { // continue } } } return result; } internal static Dictionary, string> ToDictionary_XenRefVIF_string(Hashtable table) { Dictionary, string> result = new Dictionary, string>(); if (table != null) { foreach (string key in table.Keys) { try { XenRef k = XenRef.Create(key); string v = table[key] == null ? null : (string)table[key]; result[k] = v; } catch { // continue } } } return result; } } }