summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/application/validation/change/search/DocumentDatabaseChangeValidator.java
blob: ad97c0682a40bef6480aaa1be832d26732059b04 (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.application.validation.change.search;

import com.yahoo.documentmodel.NewDocumentType;
import com.yahoo.vespa.model.application.validation.ValidationOverrides;
import com.yahoo.vespa.model.application.validation.change.VespaConfigChangeAction;
import com.yahoo.vespa.model.search.DocumentDatabase;

import java.util.ArrayList;
import java.util.List;

/**
 * Validates the changes between a current and next document database that is part of an indexed search cluster.
 *
 * @author geirst
 * @since 2014-11-18
 */
public class DocumentDatabaseChangeValidator {

    private DocumentDatabase currentDatabase;
    private NewDocumentType currentDocType;
    private DocumentDatabase nextDatabase;
    private NewDocumentType nextDocType;

    public DocumentDatabaseChangeValidator(DocumentDatabase currentDatabase,
                                           NewDocumentType currentDocType,
                                           DocumentDatabase nextDatabase,
                                           NewDocumentType nextDocType) {
        this.currentDatabase = currentDatabase;
        this.currentDocType = currentDocType;
        this.nextDatabase = nextDatabase;
        this.nextDocType = nextDocType;
    }

    public List<VespaConfigChangeAction> validate(final ValidationOverrides overrides) {
        List<VespaConfigChangeAction> result = new ArrayList<>();
        result.addAll(validateAttributeChanges(overrides));
        result.addAll(validateIndexingScriptChanges(overrides));
        result.addAll(validateDocumentTypeChanges(overrides));
        return result;
    }

    private List<VespaConfigChangeAction> validateAttributeChanges(final ValidationOverrides overrides) {
        return new AttributeChangeValidator(
                currentDatabase.getDerivedConfiguration().getAttributeFields(),
                currentDatabase.getDerivedConfiguration().getIndexSchema(), currentDocType,
                nextDatabase.getDerivedConfiguration().getAttributeFields(),
                nextDatabase.getDerivedConfiguration().getIndexSchema(), nextDocType).validate(overrides);
    }

    private List<VespaConfigChangeAction> validateIndexingScriptChanges(ValidationOverrides overrides) {
        return new IndexingScriptChangeValidator(currentDatabase.getDerivedConfiguration().getSearch(),
                nextDatabase.getDerivedConfiguration().getSearch()).validate(overrides);
    }

    private List<VespaConfigChangeAction> validateDocumentTypeChanges(ValidationOverrides overrides) {
        return new DocumentTypeChangeValidator(currentDocType, nextDocType).validate(overrides);
    }

}