aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/attribute/attribute_writer_explorer.cpp
blob: eed5f62de6b8464bc7e840513b3f27de6e841bcf (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "attribute_writer.h"
#include "attribute_writer_explorer.h"
#include <vespa/searchlib/attribute/attributevector.h>
#include <vespa/vespalib/data/slime/cursor.h>

using vespalib::slime::Cursor;
using vespalib::slime::Inserter;

namespace proton {

AttributeWriterExplorer::AttributeWriterExplorer(std::shared_ptr<IAttributeWriter> writer)
    : _writer(std::move(writer))
{
}

AttributeWriterExplorer::~AttributeWriterExplorer() = default;

namespace {

void
convert_to_slime(const AttributeWriter::WriteContext& context, Cursor& object)
{
    object.setLong("executor_id", context.getExecutorId().getId());
    Cursor& fields = object.setArray("fields");
    for (const auto& field : context.getFields()) {
        fields.addString(field.getAttribute().getName());
    }
}

}

void
AttributeWriterExplorer::get_state(const Inserter& inserter, bool full) const
{
    Cursor& object = inserter.insertObject();
    if (full) {
        auto* writer = dynamic_cast<AttributeWriter*>(_writer.get());
        if (writer) {
            Cursor& contexts = object.setArray("write_contexts");
            for (const auto& context : writer->get_write_contexts()) {
                convert_to_slime(context, contexts.addObject());
            }
        }
    }
}

}