summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/schema/Schema.java
blob: b66e6ce957af9a727ba5cfb808f2ece104b8ba81 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.schema;

import com.yahoo.api.annotations.Beta;

import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/**
 * Information about a schema which is part of the application running this.
 *
 * This is immutable.
 *
 * @author bratseth
 */
@Beta
public class Schema {

    private final String name;
    private final Map<String, RankProfile> rankProfiles;

    private Schema(Builder builder) {
        this.name = builder.name;
        this.rankProfiles = Map.copyOf(builder.rankProfiles);
    }

    public String name() { return name; }
    public Map<String, RankProfile> rankProfiles() { return rankProfiles; }

    @Override
    public boolean equals(Object o) {
        if (o == this) return true;
        if ( ! (o instanceof Schema)) return false;
        Schema other = (Schema)o;
        if ( ! other.name.equals(this.name)) return false;
        if ( ! other.rankProfiles.equals(this.rankProfiles)) return false;
        return true;
    }

    @Override
    public int hashCode() {
        return Objects.hash(name, rankProfiles);
    }

    @Override
    public String toString() {
        return "schema '" + name + "'";
    }

    public static class Builder {

        private final String name;
        private final Map<String, RankProfile> rankProfiles = new HashMap<>();

        public Builder(String name) {
            this.name = Objects.requireNonNull(name);
        }

        public Builder add(RankProfile profile) {
            rankProfiles.put(profile.name(), Objects.requireNonNull(profile));
            return this;
        }

        public Schema build() {
            return new Schema(this);
        }

    }

}