summaryrefslogtreecommitdiffstats
path: root/searchsummary/src/vespa/searchsummary/docsummary/attribute_field_writer.h
blob: 3fed6edb1b5fb9ccf4cfeb33b90ade5ccb2644b3 (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
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/vespalib/data/memory.h>

namespace search::attribute { class IAttributeVector; }
namespace vespalib::slime { struct Cursor; }

namespace search::docsummary {

/*
 * This class reads values from a struct field attribute and inserts
 * them into proper position in an array of struct or map of struct.
 * If the value to be inserted is considered to be undefined then
 * the value is not inserted.
 */
class AttributeFieldWriter
{
protected:
    const vespalib::Memory                     _fieldName;
    const search::attribute::IAttributeVector &_attr;
    size_t                                     _size;
    AttributeFieldWriter(vespalib::Memory fieldName,
                         const search::attribute::IAttributeVector &attr);
public:
    virtual ~AttributeFieldWriter();
    virtual void fetch(uint32_t docId) = 0;
    virtual void print(uint32_t idx, vespalib::slime::Cursor &cursor) = 0;
    static std::unique_ptr<AttributeFieldWriter> create(vespalib::Memory fieldName, const search::attribute::IAttributeVector &attr);
    uint32_t size() const { return _size; }
};

}