aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/processing/MutableAttributes.java
blob: 854f6b2dddb75ce90e25d1526897601d053e3797 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.schema.processing;

import com.yahoo.config.application.api.DeployLogger;
import com.yahoo.schema.RankProfileRegistry;
import com.yahoo.schema.Schema;
import com.yahoo.schema.document.SDField;
import com.yahoo.vespa.model.container.search.QueryProfiles;

public class MutableAttributes extends Processor {

    public MutableAttributes(Schema schema, DeployLogger deployLogger,
                             RankProfileRegistry rankProfileRegistry, QueryProfiles queryProfiles)
    {
        super(schema, deployLogger, rankProfileRegistry, queryProfiles);
    }

    @Override
    public void process(boolean validate, boolean documentsOnly) {
        for (SDField field : schema.allConcreteFields()) {
            if ( ! field.isExtraField() && field.getAttributes().containsKey(field.getName())) {
                if (field.getAttributes().get(field.getName()).isMutable()) {
                    throw new IllegalArgumentException("Field '" + field.getName() + "' in '" + schema.getDocument().getName() +
                                                       "' can not be marked mutable as it is inside the document clause.");
                }
            }
        }
    }
}