2023-01-24 15:29:31 +01:00
|
|
|
|
/* Copyright (c) Cloud Software Group, Inc.
|
2015-07-10 14:36:26 +02:00
|
|
|
|
*
|
|
|
|
|
* 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;
|
2014-12-05 11:12:29 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
using XenAdmin.Model;
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Actions
|
|
|
|
|
{
|
2022-12-22 00:02:07 +01:00
|
|
|
|
public abstract class DockerContainerLifetimeAction : AsyncAction
|
2014-12-05 11:12:29 +01:00
|
|
|
|
{
|
|
|
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
|
|
|
|
|
|
private readonly DockerContainer dockerContainer;
|
|
|
|
|
private readonly string action;
|
|
|
|
|
private readonly string endDescription;
|
|
|
|
|
|
2021-08-06 01:30:16 +02:00
|
|
|
|
protected DockerContainerLifetimeAction(DockerContainer dockerContainer, string title, string startDescription, string endDescription, string action)
|
2014-12-05 11:12:29 +01:00
|
|
|
|
: base(dockerContainer.Connection, title, startDescription)
|
|
|
|
|
{
|
|
|
|
|
this.endDescription = endDescription;
|
|
|
|
|
this.dockerContainer = dockerContainer;
|
|
|
|
|
this.action = action;
|
2022-12-22 00:02:07 +01:00
|
|
|
|
ApiMethodsToRoleCheck.Add("host.call_plugin");
|
2014-12-05 11:12:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Run()
|
|
|
|
|
{
|
2021-08-31 12:31:16 +02:00
|
|
|
|
var host = Helpers.GetCoordinator(Connection);
|
2014-12-05 11:12:29 +01:00
|
|
|
|
var result = false;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var args = new Dictionary<string, string> { { "vmuuid", dockerContainer.Parent.uuid }, { "container", dockerContainer.container } };
|
|
|
|
|
Result = Host.call_plugin(Session, host.opaque_ref, "xscontainer", action, args);
|
|
|
|
|
result = Result.ToLower().StartsWith("true");
|
|
|
|
|
}
|
|
|
|
|
catch (Failure failure)
|
|
|
|
|
{
|
2017-09-03 04:33:29 +02:00
|
|
|
|
log.WarnFormat("Plugin call xscontainer.start({0}) on {1} failed with {2}", dockerContainer.uuid, host.Name(),
|
2014-12-05 11:12:29 +01:00
|
|
|
|
failure.Message);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (result)
|
|
|
|
|
Description = endDescription;
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-09-03 04:33:29 +02:00
|
|
|
|
log.WarnFormat("Plugin call xscontainer.start({0}) on {1} failed with {2}", dockerContainer.uuid, host.Name(), Result);
|
2014-12-05 11:12:29 +01:00
|
|
|
|
Exception = new Exception(Result ?? Messages.ERROR_UNKNOWN);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Start the Docker container
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class StartDockerContainerAction : DockerContainerLifetimeAction
|
|
|
|
|
{
|
|
|
|
|
public StartDockerContainerAction(DockerContainer dockerContainer)
|
|
|
|
|
: base(dockerContainer,
|
2017-09-03 04:33:29 +02:00
|
|
|
|
string.Format(Messages.ACTION_START_CONTAINER_TITLE, dockerContainer.Name()),
|
2015-02-09 17:53:29 +01:00
|
|
|
|
Messages.ACTION_START_CONTAINER_DESCRIPTION,
|
|
|
|
|
Messages.ACTION_START_CONTAINER_END_DESCRIPTION,
|
2014-12-05 11:12:29 +01:00
|
|
|
|
"start")
|
|
|
|
|
{ }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Stop the Docker container
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class StopDockerContainerAction : DockerContainerLifetimeAction
|
|
|
|
|
{
|
|
|
|
|
public StopDockerContainerAction(DockerContainer dockerContainer)
|
|
|
|
|
: base(dockerContainer,
|
2017-09-03 04:33:29 +02:00
|
|
|
|
string.Format(Messages.ACTION_STOP_CONTAINER_TITLE, dockerContainer.Name()),
|
2015-02-09 17:53:29 +01:00
|
|
|
|
Messages.ACTION_STOP_CONTAINER_DESCRIPTION,
|
|
|
|
|
Messages.ACTION_STOP_CONTAINER_END_DESCRIPTION,
|
2014-12-05 11:12:29 +01:00
|
|
|
|
"stop")
|
|
|
|
|
{ }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Pause the Docker container
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class PauseDockerContainerAction : DockerContainerLifetimeAction
|
|
|
|
|
{
|
|
|
|
|
public PauseDockerContainerAction(DockerContainer dockerContainer)
|
|
|
|
|
: base(dockerContainer,
|
2017-09-03 04:33:29 +02:00
|
|
|
|
string.Format(Messages.ACTION_PAUSE_CONTAINER_TITLE, dockerContainer.Name()),
|
2015-02-09 17:53:29 +01:00
|
|
|
|
Messages.ACTION_PAUSE_CONTAINER_DESCRIPTION,
|
|
|
|
|
Messages.ACTION_PAUSE_CONTAINER_END_DESCRIPTION,
|
2014-12-05 11:12:29 +01:00
|
|
|
|
"pause")
|
|
|
|
|
{ }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resume the Docker container
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ResumeDockerContainerAction : DockerContainerLifetimeAction
|
|
|
|
|
{
|
|
|
|
|
public ResumeDockerContainerAction(DockerContainer dockerContainer)
|
|
|
|
|
: base(dockerContainer,
|
2017-09-03 04:33:29 +02:00
|
|
|
|
string.Format(Messages.ACTION_RESUME_CONTAINER_TITLE, dockerContainer.Name()),
|
2015-02-09 17:53:29 +01:00
|
|
|
|
Messages.ACTION_RESUME_CONTAINER_DESCRIPTION,
|
|
|
|
|
Messages.ACTION_RESUME_CONTAINER_END_DESCRIPTION,
|
2014-12-05 11:12:29 +01:00
|
|
|
|
"unpause")
|
|
|
|
|
{ }
|
|
|
|
|
}
|
2015-02-11 12:08:37 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Restart the Docker container
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class RestartDockerContainerAction : DockerContainerLifetimeAction
|
|
|
|
|
{
|
|
|
|
|
public RestartDockerContainerAction(DockerContainer dockerContainer)
|
|
|
|
|
: base(dockerContainer,
|
2017-09-03 04:33:29 +02:00
|
|
|
|
string.Format(Messages.ACTION_RESTART_CONTAINER_TITLE, dockerContainer.Name()),
|
2015-02-11 12:08:37 +01:00
|
|
|
|
Messages.ACTION_RESTART_CONTAINER_DESCRIPTION,
|
|
|
|
|
Messages.ACTION_RESTART_CONTAINER_END_DESCRIPTION,
|
|
|
|
|
"restart")
|
|
|
|
|
{ }
|
|
|
|
|
}
|
2014-12-05 11:12:29 +01:00
|
|
|
|
}
|