All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dockerjava.api.model.RestartPolicy Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package com.github.dockerjava.api.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;

import java.io.Serializable;

import static java.util.Objects.requireNonNull;

/**
 * Container restart policy
 *
 * 
*
no
*
Do not restart the container if it dies. (default)
* *
on-failure
*
Restart the container if it exits with a non-zero exit code. Can also accept an optional maximum restart count (e.g. on-failure:5). *
* *
always
*
Always restart the container no matter what exit code is returned. *
*
* * @author Marcus Linke * */ @EqualsAndHashCode public class RestartPolicy implements Serializable { private static final long serialVersionUID = 1L; @JsonProperty("MaximumRetryCount") private Integer maximumRetryCount = 0; @JsonProperty("Name") private String name = ""; public RestartPolicy() { } private RestartPolicy(int maximumRetryCount, String name) { requireNonNull(name, "name is null"); this.maximumRetryCount = maximumRetryCount; this.name = name; } /** * Do not restart the container if it dies. (default) */ public static RestartPolicy noRestart() { return new RestartPolicy(); } /** * Always restart the container no matter what exit code is returned. */ public static RestartPolicy alwaysRestart() { return new RestartPolicy(0, "always"); } /** * Restart the container if it exits with a non-zero exit code. * * @param maximumRetryCount * the maximum number of restarts. Set to 0 for unlimited retries. */ public static RestartPolicy onFailureRestart(int maximumRetryCount) { return new RestartPolicy(maximumRetryCount, "on-failure"); } /** * Restart the container unless it has been stopped */ public static RestartPolicy unlessStoppedRestart() { return new RestartPolicy(0, "unless-stopped"); } public Integer getMaximumRetryCount() { return maximumRetryCount; } public String getName() { return name; } /** * Parses a textual restart polixy specification (as used by the Docker CLI) to a {@link RestartPolicy}. * * @param serialized * the specification, e.g. on-failure:2 * @return a {@link RestartPolicy} matching the specification * @throws IllegalArgumentException * if the specification cannot be parsed */ public static RestartPolicy parse(String serialized) throws IllegalArgumentException { try { String[] parts = serialized.split(":"); String name = parts[0]; if ("no".equals(name)) { return noRestart(); } if ("always".equals(name)) { return alwaysRestart(); } if ("unless-stopped".equals(name)) { return unlessStoppedRestart(); } if ("on-failure".equals(name)) { int count = 0; if (parts.length == 2) { count = Integer.parseInt(parts[1]); } return onFailureRestart(count); } throw new IllegalArgumentException(); } catch (Exception e) { throw new IllegalArgumentException("Error parsing RestartPolicy '" + serialized + "'"); } } /** * Returns a string representation of this {@link RestartPolicy}. The format is name[:count], like the argument in * {@link #parse(String)}. * * @return a string representation of this {@link RestartPolicy} */ @Override public String toString() { String result = name.isEmpty() ? "no" : name; return maximumRetryCount > 0 ? result + ":" + maximumRetryCount : result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy