clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
//===-- SaveCoreOptions.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_SOURCE_PLUGINS_OBJECTFILE_SaveCoreOPTIONS_H
|
|
#define LLDB_SOURCE_PLUGINS_OBJECTFILE_SaveCoreOPTIONS_H
|
|
|
|
#include "lldb/Utility/FileSpec.h"
|
|
#include "lldb/lldb-forward.h"
|
|
#include "lldb/lldb-types.h"
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
#include <unordered_set>
|
|
|
|
namespace lldb_private {
|
|
|
|
class SaveCoreOptions {
|
|
public:
|
|
SaveCoreOptions(){};
|
|
~SaveCoreOptions() = default;
|
|
|
|
lldb_private::Status SetPluginName(const char *name);
|
|
std::optional<std::string> GetPluginName() const;
|
|
|
|
void SetStyle(lldb::SaveCoreStyle style);
|
|
lldb::SaveCoreStyle GetStyle() const;
|
|
|
|
void SetOutputFile(lldb_private::FileSpec file);
|
|
const std::optional<lldb_private::FileSpec> GetOutputFile() const;
|
|
|
|
Status SetProcess(lldb::ProcessSP process_sp);
|
|
|
|
Status AddThread(lldb::ThreadSP thread_sp);
|
|
bool RemoveThread(lldb::ThreadSP thread_sp);
|
|
bool ShouldThreadBeSaved(lldb::tid_t tid) const;
|
|
|
|
Status EnsureValidConfiguration(lldb::ProcessSP process_sp) const;
|
|
|
|
void Clear();
|
|
|
|
private:
|
|
void ClearProcessSpecificData();
|
|
|
|
std::optional<std::string> m_plugin_name;
|
|
std::optional<lldb_private::FileSpec> m_file;
|
|
std::optional<lldb::SaveCoreStyle> m_style;
|
|
lldb::ProcessSP m_process_sp;
|
|
std::unordered_set<lldb::tid_t> m_threads_to_save;
|
|
};
|
|
} // namespace lldb_private
|
|
|
|
#endif // LLDB_SOURCE_PLUGINS_OBJECTFILE_SAVECOREOPTIONS_H
|