2015-03-19 05:31:45 +08:00
|
|
|
//===-- NameMatches.cpp -----------------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-03-19 05:31:45 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/Utility/NameMatches.h"
|
2017-02-03 05:39:50 +08:00
|
|
|
#include "lldb/Utility/RegularExpression.h"
|
2015-03-19 05:31:45 +08:00
|
|
|
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2017-02-20 19:35:33 +08:00
|
|
|
bool lldb_private::NameMatches(llvm::StringRef name, NameMatch match_type,
|
2016-11-17 09:37:42 +08:00
|
|
|
llvm::StringRef match) {
|
|
|
|
switch (match_type) {
|
2017-02-20 19:35:33 +08:00
|
|
|
case NameMatch::Ignore:
|
2016-11-17 09:37:42 +08:00
|
|
|
return true;
|
2017-02-20 19:35:33 +08:00
|
|
|
case NameMatch::Equals:
|
2016-11-17 09:37:42 +08:00
|
|
|
return name == match;
|
2017-02-20 19:35:33 +08:00
|
|
|
case NameMatch::Contains:
|
2016-11-17 09:37:42 +08:00
|
|
|
return name.contains(match);
|
2017-02-20 19:35:33 +08:00
|
|
|
case NameMatch::StartsWith:
|
2016-11-17 09:37:42 +08:00
|
|
|
return name.startswith(match);
|
2017-02-20 19:35:33 +08:00
|
|
|
case NameMatch::EndsWith:
|
2016-11-17 09:37:42 +08:00
|
|
|
return name.endswith(match);
|
2017-02-20 19:35:33 +08:00
|
|
|
case NameMatch::RegularExpression: {
|
2016-11-17 09:37:42 +08:00
|
|
|
RegularExpression regex(match);
|
|
|
|
return regex.Execute(name);
|
2017-02-20 19:35:33 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2015-03-19 05:31:45 +08:00
|
|
|
return false;
|
|
|
|
}
|