summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/tensor/dense_tensor_attribute_saver.h
blob: 1f6596e82f59e1b2226b039e75573d2d41ba4850 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "tensor_attribute.h"
#include <vespa/searchlib/attribute/attributesaver.h>

namespace search::tensor {

class DenseTensorStore;

/*
 * Class for saving a tensor attribute.
 */
class DenseTensorAttributeSaver : public AttributeSaver
{
public:
    using RefCopyVector = TensorAttribute::RefCopyVector;
private:
    RefCopyVector      _refs;
    const DenseTensorStore &_tensorStore;
    using GenerationHandler = vespalib::GenerationHandler;

    bool onSave(IAttributeSaveTarget &saveTarget) override;
public:
    DenseTensorAttributeSaver(GenerationHandler::Guard &&guard, const attribute::AttributeHeader &header,
                              RefCopyVector &&refs, const DenseTensorStore &tensorStore);

    ~DenseTensorAttributeSaver() override;
};

}