clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
65 lines
2.4 KiB
C++
65 lines
2.4 KiB
C++
//===--------------------- TildeExpressionResolver.h ------------*- C++ -*-===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_UTILITY_TILDEEXPRESSIONRESOLVER_H
|
|
#define LLDB_UTILITY_TILDEEXPRESSIONRESOLVER_H
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/ADT/StringSet.h"
|
|
|
|
namespace llvm {
|
|
template <typename T> class SmallVectorImpl;
|
|
}
|
|
|
|
namespace lldb_private {
|
|
class TildeExpressionResolver {
|
|
public:
|
|
virtual ~TildeExpressionResolver();
|
|
|
|
/// Resolve a Tilde Expression contained according to bash rules.
|
|
///
|
|
/// \param Expr Contains the tilde expression to resolve. A valid tilde
|
|
/// expression must begin with a tilde and contain only non
|
|
/// separator characters.
|
|
///
|
|
/// \param Output Contains the resolved tilde expression, or the original
|
|
/// input if the tilde expression could not be resolved.
|
|
///
|
|
/// \returns true if \p Expr was successfully resolved, false otherwise.
|
|
virtual bool ResolveExact(llvm::StringRef Expr,
|
|
llvm::SmallVectorImpl<char> &Output) = 0;
|
|
|
|
/// Auto-complete a tilde expression with all matching values.
|
|
///
|
|
/// \param Expr Contains the tilde expression prefix to resolve. See
|
|
/// ResolveExact() for validity rules.
|
|
///
|
|
/// \param Output Contains all matching home directories, each one
|
|
/// itself unresolved (i.e. you need to call ResolveExact
|
|
/// on each item to turn it into a real path).
|
|
///
|
|
/// \returns true if there were any matches, false otherwise.
|
|
virtual bool ResolvePartial(llvm::StringRef Expr,
|
|
llvm::StringSet<> &Output) = 0;
|
|
|
|
/// Resolve an entire path that begins with a tilde expression, replacing
|
|
/// the username portion with the matched result.
|
|
bool ResolveFullPath(llvm::StringRef Expr,
|
|
llvm::SmallVectorImpl<char> &Output);
|
|
};
|
|
|
|
class StandardTildeExpressionResolver : public TildeExpressionResolver {
|
|
public:
|
|
bool ResolveExact(llvm::StringRef Expr,
|
|
llvm::SmallVectorImpl<char> &Output) override;
|
|
bool ResolvePartial(llvm::StringRef Expr, llvm::StringSet<> &Output) override;
|
|
};
|
|
}
|
|
|
|
#endif // LLDB_UTILITY_TILDEEXPRESSIONRESOLVER_H
|