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

com.kpelykh.docker.client.model.BoundHostVolumes Maven / Gradle / Ivy

There is a newer version: 0.8.14
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package com.kpelykh.docker.client.model;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

/**
 * @author Kevin A. Archie 
 *
 */
@JsonSerialize(using=BoundHostVolumes.Serializer.class)
public class BoundHostVolumes {
    private static final String[] STRING_ARRAY = new String[0];
    private final String[] dests, binds;

    /**
     * 
     * @param specs Iterable of String binding specs, each of form "{host-path}:{container-patch}:[rw|ro]"
     * @throws MalformedVolumeSpecException if any specs are null or empty
     */
    public BoundHostVolumes(final Iterable specs) {
        final List dests = new ArrayList(), binds = new ArrayList();
        for (final String spec : specs) {
            if (null == spec || "".equals(spec)) {
                // skip empty spec lines
            } else {
                final String[] sspec = spec.split(":");
                dests.add(sspec.length > 1 ? sspec[1] : sspec[0]);
                binds.add(spec);
            }
        }
        this.dests = dests.toArray(STRING_ARRAY);
        this.binds = binds.toArray(STRING_ARRAY);
    }

    public String[] asBinds() {
        return binds;
    }

    private BoundHostVolumes writeVolumes(final JsonGenerator jg) throws IOException {
        jg.writeStartObject();
        for (final String dest : dests) {
            jg.writeObjectFieldStart(dest);
            jg.writeEndObject();
        }
        jg.writeEndObject();
        return this;
    }

    /**
     * This is an ugly hack. We assume that the serializer only gets called when
     * a containing ContainerConfig gets serialized, when POSTing to
     * /containers/create . In that context, we pass only the container-path
     * part (the key in the volumes map).
     * 
     * @author Kevin A. Archie 
     * 
     */
    public static class Serializer extends JsonSerializer {
        /* (non-Javadoc)
         * @see org.codehaus.jackson.map.JsonSerializer#serialize(java.lang.Object, org.codehaus.jackson.JsonGenerator, org.codehaus.jackson.map.SerializerProvider)
         */
        @Override
        public void serialize(final BoundHostVolumes volumes, final JsonGenerator jg, final SerializerProvider sp)
                throws IOException {
            volumes.writeVolumes(jg);
        }       
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy