aboutsummaryrefslogtreecommitdiffstats
path: root/config-lib/src/main/java/com/yahoo/config/LeafNodeVector.java
blob: cfb8cd4eebd54cb7cbec32d841dce57b8340acf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config;

import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Optional;

/**
 * A vector of leaf nodes.
 *
 * @author gjoranv
 */
public class LeafNodeVector<REAL, NODE extends LeafNode<REAL>> extends NodeVector<NODE> {

    private final List<REAL> realValues;

    // TODO: take class instead of default node
    public LeafNodeVector(List<REAL> values, NODE defaultNode) {
        assert (defaultNode != null) : "The default node cannot be null";

        if (createNew(defaultNode) == null) {
            throw new NullPointerException("Unable to duplicate the default node.");
        }

        for (REAL value : values) {
            NODE node = createNew(defaultNode);
            node.value = value;
            vector.add(node);
        }
        realValues = realList(vector);
    }

    public List<REAL> asList() {
        return realValues;
    }

    /**
     * Creates a new Node by cloning the default node.
     */
    @SuppressWarnings("unchecked")
    private static <NODE extends LeafNode<?>> NODE createNew(NODE defaultNode) {
        return (NODE) (defaultNode).clone();
    }

    private static<REAL, NODE extends LeafNode<REAL>> List<REAL> realList(List<NODE> nodes) {
        List<REAL> reals = new ArrayList<>();
        for(NODE node : nodes) {
            reals.add(node.value());
        }
        return Collections.unmodifiableList(reals);
    }

    // TODO: Try to eliminate the need for this method when we have moved FileAcquirer to the config library
    // It is needed now because the builder has a list of String, while REAL=FileReference.
    public static LeafNodeVector<FileReference, FileNode> createFileNodeVector(Collection<String> values) {
        List<FileReference> fileReferences = new ArrayList<>();
         for (String s : values)
             fileReferences.add(new FileReference(ReferenceNode.stripQuotes(s)));

        return new LeafNodeVector<>(fileReferences, new FileNode());
    }

    public static LeafNodeVector<Path, PathNode> createPathNodeVector(Collection<FileReference> values) {
        List<Path> paths = new ArrayList<>();
        for (FileReference fileReference : values)
            paths.add(Paths.get(fileReference.value()));
        return new LeafNodeVector<>(paths, new PathNode());
    }

    public static LeafNodeVector<Optional<Path>, OptionalPathNode> createOptionalPathNodeVector(Collection<Optional<FileReference>> values) {
        List<Optional<Path>> paths = new ArrayList<>();
        for (Optional<FileReference> fileReference : values)
            paths.add(fileReference.map(reference -> Paths.get(reference.value())));
        return new LeafNodeVector<>(paths, new OptionalPathNode());
    }

    public static LeafNodeVector<File, UrlNode> createUrlNodeVector(Collection<UrlReference> values) {
        List<File> files = new ArrayList<>();
        for (UrlReference urlReference : values)
            files.add(new File(urlReference.value()));
        return new LeafNodeVector<>(files, new UrlNode());
    }

    public static LeafNodeVector<Path, ModelNode> createModelNodeVector(Collection<ModelReference> values) {
        List<Path> modelPaths = new ArrayList<>();
        for (ModelReference modelReference : values)
            modelPaths.add(modelReference.value());
        return new LeafNodeVector<>(modelPaths, new ModelNode());
    }

}