com.github.dockerjava.api.model.VolumesFrom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.docker-java
Show all versions of org.apache.servicemix.bundles.docker-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.github.dockerjava.api.model;
import java.io.IOException;
import java.io.Serializable;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.ObjectCodec;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize(using = VolumesFrom.Serializer.class)
@JsonDeserialize(using = VolumesFrom.Deserializer.class)
public class VolumesFrom implements Serializable {
private static final long serialVersionUID = 1L;
private String container;
private AccessMode accessMode;
public VolumesFrom(String container) {
this(container, AccessMode.DEFAULT);
}
public VolumesFrom(String container, AccessMode accessMode) {
this.container = container;
this.accessMode = accessMode;
}
public String getContainer() {
return container;
}
public AccessMode getAccessMode() {
return accessMode;
}
/**
* Parses a volume from specification to a {@link VolumesFrom}.
*
* @param serialized
* the specification, e.g. container:ro
* @return a {@link VolumesFrom} matching the specification
* @throws IllegalArgumentException
* if the specification cannot be parsed
*/
public static VolumesFrom parse(String serialized) {
try {
String[] parts = serialized.split(":");
switch (parts.length) {
case 1: {
return new VolumesFrom(parts[0]);
}
case 2: {
return new VolumesFrom(parts[0], AccessMode.valueOf(parts[1]));
}
default: {
throw new IllegalArgumentException();
}
}
} catch (Exception e) {
throw new IllegalArgumentException("Error parsing Bind '" + serialized + "'");
}
}
@Override
public boolean equals(Object obj) {
if (obj instanceof VolumesFrom) {
VolumesFrom other = (VolumesFrom) obj;
return new EqualsBuilder().append(container, other.getContainer())
.append(accessMode, other.getAccessMode()).isEquals();
} else {
return super.equals(obj);
}
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(container).append(accessMode).toHashCode();
}
/**
* Returns a string representation of this {@link VolumesFrom} suitable for inclusion in a JSON message. The format is
* <container>:<access mode>
, like the argument in {@link #parse(String)}.
*
* @return a string representation of this {@link VolumesFrom}
*/
@Override
public String toString() {
return container + ":" + accessMode.toString();
}
public static class Serializer extends JsonSerializer {
@Override
public void serialize(VolumesFrom volumeFrom, JsonGenerator jsonGen, SerializerProvider serProvider)
throws IOException, JsonProcessingException {
jsonGen.writeString(volumeFrom.toString());
}
}
public static class Deserializer extends JsonDeserializer {
@Override
public VolumesFrom deserialize(JsonParser jsonParser, DeserializationContext deserializationContext)
throws IOException, JsonProcessingException {
ObjectCodec oc = jsonParser.getCodec();
JsonNode node = oc.readTree(jsonParser);
return VolumesFrom.parse(node.asText());
}
}
}