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

org.codehaus.httpcache4j.Directives Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010. The Codehaus. All Rights Reserved.
 *
 *   Licensed 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 org.codehaus.httpcache4j;

import org.codehaus.httpcache4j.util.Streamable;

import java.io.Serializable;
import java.util.*;
import java.util.function.BinaryOperator;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

/**
 * @author Erlend Hamnaberg
 * @version $Revision: $
 */
public final class Directives implements Streamable, Serializable {
    private final Map directives;

    public Directives(Iterable directives) {
        Map m = StreamSupport.stream(directives.spliterator(), false).
                collect(Collectors.toMap(Directive::getName, Function.identity(), throwingMerger(), LinkedHashMap::new));
        this.directives = Collections.unmodifiableMap(m);
    }

    public Directives() {
        directives = Collections.emptyMap();
    }

    public boolean hasDirective(String key) {
        return directives.containsKey(key);
    }

    public String get(String key) {
        Directive directive = directives.get(key);
        if (directive == null) {
            return "";
        }
        return directive.getValue();
    }

    public Directive getAsDirective(String key) {
        return directives.get(key);
    }

    public int size() {
        return directives.size();
    }

    public Iterator iterator() {
        return new ArrayList<>(directives.values()).iterator();
    }
    
    @Override
    public String toString() {
        return stream().map(Directive::toString).collect(Collectors.joining(", "));
    }

    public Directives add(Directive directive) {
        List list = Stream.concat(stream(), Arrays.asList(directive).stream()).collect(Collectors.toList());
        return new Directives(list);
    }

    private static  BinaryOperator throwingMerger() {
        return (u,v) -> { throw new IllegalStateException(String.format("Duplicate key %s", u)); };
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy