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

com.yahoo.vespa.model.content.cluster.GlobalDistributionBuilder Maven / Gradle / Ivy

// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.content.cluster;

import com.yahoo.documentmodel.NewDocumentType;
import com.yahoo.vespa.model.builder.xml.dom.ModelElement;

import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;

/**
 * Determines the set of document types that are configured to be globally distributed.
 *
 * @author bjorncs
 */
public class GlobalDistributionBuilder {

    private final Map documentDefinitions;

    public GlobalDistributionBuilder(Map documentDefinitions) {
        this.documentDefinitions = Map.copyOf(documentDefinitions);
    }

    public Set build(ModelElement documentsElement) {
        if (documentsElement == null || documentsElement.subElements("document").isEmpty())
            return Set.of();

        return documentsElement.subElements("document")
                .stream()
                .filter(GlobalDistributionBuilder::isGloballyDistributed)
                .map(GlobalDistributionBuilder::getDocumentName)
                .map(this::getDocumentType)
                .collect(Collectors.toCollection(LinkedHashSet::new));
    }

    private static boolean isGloballyDistributed(ModelElement e) {
        return e.booleanAttribute("global", false);
    }

    private static String getDocumentName(ModelElement e) {
        return e.stringAttribute("type");
    }

    private NewDocumentType getDocumentType(String name) {
        return documentDefinitions.get(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy