/* 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: * * * 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.Collections.Generic; using XenAdmin.Core; using XenAdmin.Mappings; using XenAPI; namespace XenAdmin.Actions.VMActions { public class VMCrossPoolMigrateAction : PureAsyncAction { private readonly VmMapping mapping; private readonly XenAPI.Network transferNetwork; private readonly bool copy; /// /// Cross pool migration action. Can also be used to copy a VM across pools, by setting the "copy" parameter to true /// /// the VM to be migrated /// the destination host /// the network used for the VM migration /// the storage and networking mappings /// weather this should be a cross-pool copy (true) or migrate (false) operation public VMCrossPoolMigrateAction(VM vm, Host destinationHost, XenAPI.Network transferNetwork, VmMapping mapping, bool copy) : base(vm.Connection, GetTitle(vm, destinationHost, copy)) { Session = vm.Connection.Session; Description = Messages.ACTION_PREPARING; VM = vm; Host = destinationHost; Pool = Helpers.GetPool(vm.Connection); this.mapping = mapping; this.transferNetwork = transferNetwork; this.copy = copy; } public static RbacMethodList StaticRBACDependencies { get { RbacMethodList list = new RbacMethodList( "Host.migrate_receive", "VM.migrate_send", "VM.async_migrate_send", "VM.assert_can_migrate"); list.AddRange(Role.CommonTaskApiList); return list; } } public static string GetTitle(VM vm, Host toHost, bool copy) { if (copy) return string.Format(Messages.ACTION_VM_CROSS_POOL_COPY_TITLE, vm.Name, toHost.Name); Host residentOn = vm.Connection.Resolve(vm.resident_on); return residentOn == null ? string.Format(Messages.ACTION_VM_MIGRATING_NON_RESIDENT, vm.Name, toHost.Name) : string.Format(Messages.ACTION_VM_MIGRATING_RESIDENT, vm.Name, Helpers.GetName(residentOn), toHost.Name); } protected override void Run() { Description = copy ? Messages.ACTION_VM_COPYING: Messages.ACTION_VM_MIGRATING; try { PercentComplete = 0; Session session = Host.Connection.DuplicateSession(); Dictionary sendData = Host.migrate_receive(session, Host.opaque_ref, transferNetwork.opaque_ref, new Dictionary()); PercentComplete = 5; LiveMigrateOptionsVmMapping options = new LiveMigrateOptionsVmMapping(mapping, VM); var _options = new Dictionary(options.Options); if (copy) _options.Add("copy", "true"); RelatedTask = VM.async_migrate_send(Session, VM.opaque_ref, sendData, options.Live, options.VdiMap, options.VifMap, _options); PollToCompletion(PercentComplete, 100); } catch (CancelledException) { Description = string.Format(copy ? Messages.ACTION_VM_CROSS_POOL_COPY_CANCELLED : Messages.ACTION_VM_MIGRATE_CANCELLED, VM.Name); throw; } catch (Failure ex) { Description = ex.Message; List errors = ex.ErrorDescription; throw; } Description = copy ? Messages.ACTION_VM_COPIED: Messages.ACTION_VM_MIGRATED; } } }