[mlir][int-range] Limit xor int range inference to i1 (#116968)
[llvm-project.git] / lldb / source / Commands / CommandObjectRegexCommand.h
blobc78b0b586c37580d6fbce2ec1612f4fbc1b541e5
1 //===-- CommandObjectRegexCommand.h -----------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_INTERPRETER_COMMANDOBJECTREGEXCOMMAND_H
10 #define LLDB_INTERPRETER_COMMANDOBJECTREGEXCOMMAND_H
12 #include <list>
14 #include "lldb/Interpreter/CommandObject.h"
15 #include "lldb/Utility/CompletionRequest.h"
16 #include "lldb/Utility/RegularExpression.h"
18 namespace lldb_private {
20 // CommandObjectRegexCommand
22 class CommandObjectRegexCommand : public CommandObjectRaw {
23 public:
24 CommandObjectRegexCommand(CommandInterpreter &interpreter,
25 llvm::StringRef name, llvm::StringRef help,
26 llvm::StringRef syntax,
27 uint32_t completion_type_mask, bool is_removable);
29 ~CommandObjectRegexCommand() override;
31 bool IsRemovable() const override { return m_is_removable; }
33 bool AddRegexCommand(llvm::StringRef re_cstr, llvm::StringRef command_cstr);
35 bool HasRegexEntries() const { return !m_entries.empty(); }
37 void HandleCompletion(CompletionRequest &request) override;
39 protected:
40 void DoExecute(llvm::StringRef command, CommandReturnObject &result) override;
42 /// Substitute variables of the format %\d+ in the input string.
43 static llvm::Expected<std::string> SubstituteVariables(
44 llvm::StringRef input,
45 const llvm::SmallVectorImpl<llvm::StringRef> &replacements);
47 struct Entry {
48 RegularExpression regex;
49 std::string command;
52 typedef std::list<Entry> EntryCollection;
53 const uint32_t m_completion_type_mask;
54 EntryCollection m_entries;
55 bool m_is_removable;
57 private:
58 CommandObjectRegexCommand(const CommandObjectRegexCommand &) = delete;
59 const CommandObjectRegexCommand &
60 operator=(const CommandObjectRegexCommand &) = delete;
63 } // namespace lldb_private
65 #endif // LLDB_INTERPRETER_COMMANDOBJECTREGEXCOMMAND_H