mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-03 15:32:09 +00:00
34 lines
758 B
C++
34 lines
758 B
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#include <optional>
|
|
|
|
#include <regex>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace ccls {
|
|
struct Matcher {
|
|
static std::optional<Matcher> Create(const std::string &search);
|
|
|
|
bool IsMatch(const std::string &value) const;
|
|
|
|
std::string regex_string;
|
|
std::regex regex;
|
|
};
|
|
|
|
// Check multiple |Matcher| instances at the same time.
|
|
struct GroupMatch {
|
|
GroupMatch(const std::vector<std::string> &whitelist,
|
|
const std::vector<std::string> &blacklist);
|
|
|
|
bool IsMatch(const std::string &value,
|
|
std::string *match_failure_reason = nullptr) const;
|
|
|
|
std::vector<Matcher> whitelist;
|
|
std::vector<Matcher> blacklist;
|
|
};
|
|
} // namespace ccls
|