2020-07-26 15:36:28 -04:00
|
|
|
//===-- NameMatches.cpp ---------------------------------------------------===//
|
2015-07-03 12:57:06 -04:00
|
|
|
//
|
2019-08-20 16:51:52 -04: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-07-03 12:57:06 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
#include "lldb/Utility/NameMatches.h"
|
2017-04-16 12:04:10 -04:00
|
|
|
#include "lldb/Utility/RegularExpression.h"
|
2015-07-03 12:57:06 -04:00
|
|
|
|
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
|
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
2017-04-16 12:04:10 -04:00
|
|
|
bool lldb_private::NameMatches(llvm::StringRef name, NameMatch match_type,
|
2017-01-02 14:26:05 -05:00
|
|
|
llvm::StringRef match) {
|
|
|
|
|
switch (match_type) {
|
2017-04-16 12:04:10 -04:00
|
|
|
case NameMatch::Ignore:
|
2017-01-02 14:26:05 -05:00
|
|
|
return true;
|
2017-04-16 12:04:10 -04:00
|
|
|
case NameMatch::Equals:
|
2017-01-02 14:26:05 -05:00
|
|
|
return name == match;
|
2017-04-16 12:04:10 -04:00
|
|
|
case NameMatch::Contains:
|
2017-01-02 14:26:05 -05:00
|
|
|
return name.contains(match);
|
2017-04-16 12:04:10 -04:00
|
|
|
case NameMatch::StartsWith:
|
2017-01-02 14:26:05 -05:00
|
|
|
return name.startswith(match);
|
2017-04-16 12:04:10 -04:00
|
|
|
case NameMatch::EndsWith:
|
2017-01-02 14:26:05 -05:00
|
|
|
return name.endswith(match);
|
2017-04-16 12:04:10 -04:00
|
|
|
case NameMatch::RegularExpression: {
|
2017-01-02 14:26:05 -05:00
|
|
|
RegularExpression regex(match);
|
|
|
|
|
return regex.Execute(name);
|
2017-04-16 12:04:10 -04:00
|
|
|
}
|
2017-01-02 14:26:05 -05:00
|
|
|
}
|
|
|
|
|
return false;
|
2015-07-03 12:57:06 -04:00
|
|
|
}
|