mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-04 07:52:12 +00:00
Delete method.{cc,h} Rename $ccls/setSkippedRanges to $ccls/publishSkippedRanges Rename $ccls/publishSemanticHighlighting to $ccls/publishSemanticHighlight; stableId -> id
65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#include "match.h"
|
|
|
|
#include "lsp.h"
|
|
#include "pipeline.hh"
|
|
using namespace ccls;
|
|
|
|
std::optional<Matcher> Matcher::Create(const std::string &search) {
|
|
try {
|
|
Matcher m;
|
|
m.regex_string = search;
|
|
m.regex = std::regex(search, std::regex_constants::ECMAScript |
|
|
std::regex_constants::icase |
|
|
std::regex_constants::optimize
|
|
// std::regex_constants::nosubs
|
|
);
|
|
return m;
|
|
} catch (const std::exception &e) {
|
|
lsShowMessageParams params;
|
|
params.type = lsMessageType::Error;
|
|
params.message =
|
|
"failed to parse EMCAScript regex " + search + " : " + e.what();
|
|
pipeline::Notify(window_showMessage, params);
|
|
return std::nullopt;
|
|
}
|
|
}
|
|
|
|
bool Matcher::IsMatch(const std::string &value) const {
|
|
// std::smatch match;
|
|
// return std::regex_match(value, match, regex);
|
|
return std::regex_search(value, regex, std::regex_constants::match_any);
|
|
}
|
|
|
|
GroupMatch::GroupMatch(const std::vector<std::string> &whitelist,
|
|
const std::vector<std::string> &blacklist) {
|
|
for (const std::string &entry : whitelist) {
|
|
std::optional<Matcher> m = Matcher::Create(entry);
|
|
if (m)
|
|
this->whitelist.push_back(*m);
|
|
}
|
|
for (const std::string &entry : blacklist) {
|
|
std::optional<Matcher> m = Matcher::Create(entry);
|
|
if (m)
|
|
this->blacklist.push_back(*m);
|
|
}
|
|
}
|
|
|
|
bool GroupMatch::IsMatch(const std::string &value,
|
|
std::string *match_failure_reason) const {
|
|
for (const Matcher &m : whitelist)
|
|
if (m.IsMatch(value))
|
|
return true;
|
|
|
|
for (const Matcher &m : blacklist)
|
|
if (m.IsMatch(value)) {
|
|
if (match_failure_reason)
|
|
*match_failure_reason = "blacklist \"" + m.regex_string + "\"";
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|