clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
158 lines
3.9 KiB
C++
158 lines
3.9 KiB
C++
//===-- SBCommandReturnObject.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_API_SBCOMMANDRETURNOBJECT_H
|
|
#define LLDB_API_SBCOMMANDRETURNOBJECT_H
|
|
|
|
#include <cstdio>
|
|
|
|
#include <memory>
|
|
|
|
#include "lldb/API/SBDefines.h"
|
|
|
|
namespace lldb_private {
|
|
class CommandPluginInterfaceImplementation;
|
|
class SBCommandReturnObjectImpl;
|
|
namespace python {
|
|
class SWIGBridge;
|
|
}
|
|
} // namespace lldb_private
|
|
|
|
namespace lldb {
|
|
|
|
class LLDB_API SBCommandReturnObject {
|
|
public:
|
|
SBCommandReturnObject();
|
|
|
|
// rvalue ctor+assignment are incompatible with Reproducers.
|
|
|
|
SBCommandReturnObject(const lldb::SBCommandReturnObject &rhs);
|
|
|
|
~SBCommandReturnObject();
|
|
|
|
lldb::SBCommandReturnObject &
|
|
operator=(const lldb::SBCommandReturnObject &rhs);
|
|
|
|
explicit operator bool() const;
|
|
|
|
bool IsValid() const;
|
|
|
|
const char *GetOutput();
|
|
|
|
const char *GetError();
|
|
|
|
#ifndef SWIG
|
|
LLDB_DEPRECATED_FIXME("Use PutOutput(SBFile) or PutOutput(FileSP)",
|
|
"PutOutput(SBFile)")
|
|
size_t PutOutput(FILE *fh);
|
|
#endif
|
|
|
|
size_t PutOutput(SBFile file);
|
|
|
|
size_t PutOutput(FileSP BORROWED);
|
|
|
|
size_t GetOutputSize();
|
|
|
|
size_t GetErrorSize();
|
|
|
|
#ifndef SWIG
|
|
LLDB_DEPRECATED_FIXME("Use PutError(SBFile) or PutError(FileSP)",
|
|
"PutError(SBFile)")
|
|
size_t PutError(FILE *fh);
|
|
#endif
|
|
|
|
size_t PutError(SBFile file);
|
|
|
|
size_t PutError(FileSP BORROWED);
|
|
|
|
void Clear();
|
|
|
|
lldb::ReturnStatus GetStatus();
|
|
|
|
void SetStatus(lldb::ReturnStatus status);
|
|
|
|
bool Succeeded();
|
|
|
|
bool HasResult();
|
|
|
|
void AppendMessage(const char *message);
|
|
|
|
void AppendWarning(const char *message);
|
|
|
|
bool GetDescription(lldb::SBStream &description);
|
|
|
|
#ifndef SWIG
|
|
LLDB_DEPRECATED_FIXME(
|
|
"Use SetImmediateOutputFile(SBFile) or SetImmediateOutputFile(FileSP)",
|
|
"SetImmediateOutputFile(SBFile)")
|
|
void SetImmediateOutputFile(FILE *fh);
|
|
|
|
LLDB_DEPRECATED_FIXME(
|
|
"Use SetImmediateErrorFile(SBFile) or SetImmediateErrorFile(FileSP)",
|
|
"SetImmediateErrorFile(SBFile)")
|
|
void SetImmediateErrorFile(FILE *fh);
|
|
|
|
LLDB_DEPRECATED_FIXME(
|
|
"Use SetImmediateOutputFile(SBFile) or SetImmediateOutputFile(FileSP)",
|
|
"SetImmediateOutputFile(SBFile)")
|
|
void SetImmediateOutputFile(FILE *fh, bool transfer_ownership);
|
|
|
|
LLDB_DEPRECATED_FIXME(
|
|
"Use SetImmediateErrorFile(SBFile) or SetImmediateErrorFile(FileSP)",
|
|
"SetImmediateErrorFile(SBFile)")
|
|
void SetImmediateErrorFile(FILE *fh, bool transfer_ownership);
|
|
#endif
|
|
|
|
void SetImmediateOutputFile(SBFile file);
|
|
|
|
void SetImmediateErrorFile(SBFile file);
|
|
|
|
void SetImmediateOutputFile(FileSP BORROWED);
|
|
|
|
void SetImmediateErrorFile(FileSP BORROWED);
|
|
|
|
void PutCString(const char *string, int len = -1);
|
|
|
|
#ifndef SWIG
|
|
__attribute__((format(printf, 2, 3))) size_t Printf(const char *format, ...);
|
|
#endif
|
|
|
|
const char *GetOutput(bool only_if_no_immediate);
|
|
|
|
const char *GetError(bool only_if_no_immediate);
|
|
|
|
void SetError(lldb::SBError &error,
|
|
const char *fallback_error_cstr = nullptr);
|
|
|
|
void SetError(const char *error_cstr);
|
|
|
|
protected:
|
|
friend class SBCommandInterpreter;
|
|
friend class SBOptions;
|
|
|
|
friend class lldb_private::CommandPluginInterfaceImplementation;
|
|
friend class lldb_private::python::SWIGBridge;
|
|
|
|
SBCommandReturnObject(lldb_private::CommandReturnObject &ref);
|
|
|
|
lldb_private::CommandReturnObject *operator->() const;
|
|
|
|
lldb_private::CommandReturnObject *get() const;
|
|
|
|
lldb_private::CommandReturnObject &operator*() const;
|
|
|
|
private:
|
|
lldb_private::CommandReturnObject &ref() const;
|
|
|
|
std::unique_ptr<lldb_private::SBCommandReturnObjectImpl> m_opaque_up;
|
|
};
|
|
|
|
} // namespace lldb
|
|
|
|
#endif // LLDB_API_SBCOMMANDRETURNOBJECT_H
|