aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/query/streaming/regexp_term.h
blob: 96d14eeb0bdd32702dddc9b761eaf23ca87fcabf (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "queryterm.h"
#include <vespa/vespalib/regex/regex.h>

namespace search::streaming {

/**
 * Query term that matches fields using a regular expression, with case sensitivity
 * controlled by the provided Normalizing mode.
 */
class RegexpTerm : public QueryTerm {
    vespalib::Regex _regexp;
public:
    RegexpTerm(std::unique_ptr<QueryNodeResultBase> result_base, stringref term,
               const string& index, Type type, Normalizing normalizing);
    ~RegexpTerm() override;

    RegexpTerm* as_regexp_term() noexcept override { return this; }

    [[nodiscard]] const vespalib::Regex& regexp() const noexcept { return _regexp; }
};

}