aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/document_selection_parser.h
blob: 45ca2bf1cdedca9fd8ee6f6ce070704b7037563b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/vespalib/stllike/string.h>
#include <memory>

namespace document::select { class Node; }

namespace storage::distributor {

/**
 * Interface to parse a document selection string.
 */
class DocumentSelectionParser {
public:
    virtual ~DocumentSelectionParser() = default;
    virtual std::unique_ptr<document::select::Node> parse_selection(const vespalib::string& str) const = 0;
};

}