summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/searchdefinition/fieldoperation/SummaryInFieldShortOperation.java
blob: a59252ab8a8b028d07cbac78513450aa971e84a3 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchdefinition.fieldoperation;

import com.yahoo.searchdefinition.document.SDField;
import com.yahoo.vespa.documentmodel.SummaryField;

/**
 * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
 */
public class SummaryInFieldShortOperation extends SummaryInFieldOperation {
    public SummaryInFieldShortOperation(String name) {
        super(name);
    }

    public void apply(SDField field) {
        SummaryField ret = field.getSummaryField(name);
        if (ret == null) {
            ret = new SummaryField(name, field.getDataType());
            ret.addSource(field.getName());
            ret.addDestination("default");
        }
        ret.setImplicit(false);

        ret.setTransform(transform);
        for (SummaryField.Source source : sources) {
            ret.addSource(source);
        }
        field.addSummaryField(ret);
    }
}