aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/StructDataField.java
blob: 7daa0ebd68fed15a6acd84636b59d4da1a4382b0 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.fastsearch;

import com.yahoo.search.result.StructuredData;
import com.yahoo.data.access.Inspector;
import com.yahoo.data.access.Type;
import com.yahoo.prelude.hitfield.JSONString;

/**
 * A hit field containing JSON structured data
 */
public class StructDataField extends DocsumField {

    public StructDataField(String name) {
        super(name);
    }

    @Override
    public String toString() {
        return "field " + getName() + " type StructDataField";
    }

    @Override
    public Object convert(Inspector value) {
        if (value.type() == Type.STRING)
            return convertString(value);
        return new StructuredData(value);
    }

    private Object convertString(Inspector value) {
        if (value.valid()) {
            return new JSONString(value);
        } else {
            return new JSONString("");
        }
    }

}