mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 08:36:07 +00:00

Summary: A *.cpp file header in LLDB (and in LLDB) should like this: ``` //===-- TestUtilities.cpp -------------------------------------------------===// ``` However in LLDB most of our source files have arbitrary changes to this format and these changes are spreading through LLDB as folks usually just use the existing source files as templates for their new files (most notably the unnecessary editor language indicator `-*- C++ -*-` is spreading and in every review someone is pointing out that this is wrong, resulting in people pointing out that this is done in the same way in other files). This patch removes most of these inconsistencies including the editor language indicators, all the different missing/additional '-' characters, files that center the file name, missing trailing `===//` (mostly caused by clang-format breaking the line). Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere Reviewed By: JDevlieghere Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D73258
211 lines
6.0 KiB
C++
211 lines
6.0 KiB
C++
//===-- SBProcessInfo.cpp -------------------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/API/SBProcessInfo.h"
|
|
#include "SBReproducerPrivate.h"
|
|
#include "Utils.h"
|
|
#include "lldb/API/SBFileSpec.h"
|
|
#include "lldb/Utility/ProcessInfo.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
SBProcessInfo::SBProcessInfo() : m_opaque_up() {
|
|
LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBProcessInfo);
|
|
}
|
|
|
|
SBProcessInfo::SBProcessInfo(const SBProcessInfo &rhs) : m_opaque_up() {
|
|
LLDB_RECORD_CONSTRUCTOR(SBProcessInfo, (const lldb::SBProcessInfo &), rhs);
|
|
|
|
m_opaque_up = clone(rhs.m_opaque_up);
|
|
}
|
|
|
|
SBProcessInfo::~SBProcessInfo() {}
|
|
|
|
SBProcessInfo &SBProcessInfo::operator=(const SBProcessInfo &rhs) {
|
|
LLDB_RECORD_METHOD(lldb::SBProcessInfo &,
|
|
SBProcessInfo, operator=,(const lldb::SBProcessInfo &),
|
|
rhs);
|
|
|
|
if (this != &rhs)
|
|
m_opaque_up = clone(rhs.m_opaque_up);
|
|
return LLDB_RECORD_RESULT(*this);
|
|
}
|
|
|
|
ProcessInstanceInfo &SBProcessInfo::ref() {
|
|
if (m_opaque_up == nullptr) {
|
|
m_opaque_up.reset(new ProcessInstanceInfo());
|
|
}
|
|
return *m_opaque_up;
|
|
}
|
|
|
|
void SBProcessInfo::SetProcessInfo(const ProcessInstanceInfo &proc_info_ref) {
|
|
ref() = proc_info_ref;
|
|
}
|
|
|
|
bool SBProcessInfo::IsValid() const {
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBProcessInfo, IsValid);
|
|
return this->operator bool();
|
|
}
|
|
SBProcessInfo::operator bool() const {
|
|
LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBProcessInfo, operator bool);
|
|
|
|
return m_opaque_up != nullptr;
|
|
}
|
|
|
|
const char *SBProcessInfo::GetName() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(const char *, SBProcessInfo, GetName);
|
|
|
|
const char *name = nullptr;
|
|
if (m_opaque_up) {
|
|
name = m_opaque_up->GetName();
|
|
}
|
|
return name;
|
|
}
|
|
|
|
SBFileSpec SBProcessInfo::GetExecutableFile() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBProcessInfo,
|
|
GetExecutableFile);
|
|
|
|
SBFileSpec file_spec;
|
|
if (m_opaque_up) {
|
|
file_spec.SetFileSpec(m_opaque_up->GetExecutableFile());
|
|
}
|
|
return LLDB_RECORD_RESULT(file_spec);
|
|
}
|
|
|
|
lldb::pid_t SBProcessInfo::GetProcessID() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::pid_t, SBProcessInfo, GetProcessID);
|
|
|
|
lldb::pid_t proc_id = LLDB_INVALID_PROCESS_ID;
|
|
if (m_opaque_up) {
|
|
proc_id = m_opaque_up->GetProcessID();
|
|
}
|
|
return proc_id;
|
|
}
|
|
|
|
uint32_t SBProcessInfo::GetUserID() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcessInfo, GetUserID);
|
|
|
|
uint32_t user_id = UINT32_MAX;
|
|
if (m_opaque_up) {
|
|
user_id = m_opaque_up->GetUserID();
|
|
}
|
|
return user_id;
|
|
}
|
|
|
|
uint32_t SBProcessInfo::GetGroupID() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcessInfo, GetGroupID);
|
|
|
|
uint32_t group_id = UINT32_MAX;
|
|
if (m_opaque_up) {
|
|
group_id = m_opaque_up->GetGroupID();
|
|
}
|
|
return group_id;
|
|
}
|
|
|
|
bool SBProcessInfo::UserIDIsValid() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBProcessInfo, UserIDIsValid);
|
|
|
|
bool is_valid = false;
|
|
if (m_opaque_up) {
|
|
is_valid = m_opaque_up->UserIDIsValid();
|
|
}
|
|
return is_valid;
|
|
}
|
|
|
|
bool SBProcessInfo::GroupIDIsValid() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBProcessInfo, GroupIDIsValid);
|
|
|
|
bool is_valid = false;
|
|
if (m_opaque_up) {
|
|
is_valid = m_opaque_up->GroupIDIsValid();
|
|
}
|
|
return is_valid;
|
|
}
|
|
|
|
uint32_t SBProcessInfo::GetEffectiveUserID() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcessInfo, GetEffectiveUserID);
|
|
|
|
uint32_t user_id = UINT32_MAX;
|
|
if (m_opaque_up) {
|
|
user_id = m_opaque_up->GetEffectiveUserID();
|
|
}
|
|
return user_id;
|
|
}
|
|
|
|
uint32_t SBProcessInfo::GetEffectiveGroupID() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBProcessInfo, GetEffectiveGroupID);
|
|
|
|
uint32_t group_id = UINT32_MAX;
|
|
if (m_opaque_up) {
|
|
group_id = m_opaque_up->GetEffectiveGroupID();
|
|
}
|
|
return group_id;
|
|
}
|
|
|
|
bool SBProcessInfo::EffectiveUserIDIsValid() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBProcessInfo, EffectiveUserIDIsValid);
|
|
|
|
bool is_valid = false;
|
|
if (m_opaque_up) {
|
|
is_valid = m_opaque_up->EffectiveUserIDIsValid();
|
|
}
|
|
return is_valid;
|
|
}
|
|
|
|
bool SBProcessInfo::EffectiveGroupIDIsValid() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBProcessInfo, EffectiveGroupIDIsValid);
|
|
|
|
bool is_valid = false;
|
|
if (m_opaque_up) {
|
|
is_valid = m_opaque_up->EffectiveGroupIDIsValid();
|
|
}
|
|
return is_valid;
|
|
}
|
|
|
|
lldb::pid_t SBProcessInfo::GetParentProcessID() {
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::pid_t, SBProcessInfo, GetParentProcessID);
|
|
|
|
lldb::pid_t proc_id = LLDB_INVALID_PROCESS_ID;
|
|
if (m_opaque_up) {
|
|
proc_id = m_opaque_up->GetParentProcessID();
|
|
}
|
|
return proc_id;
|
|
}
|
|
|
|
namespace lldb_private {
|
|
namespace repro {
|
|
|
|
template <>
|
|
void RegisterMethods<SBProcessInfo>(Registry &R) {
|
|
LLDB_REGISTER_CONSTRUCTOR(SBProcessInfo, ());
|
|
LLDB_REGISTER_CONSTRUCTOR(SBProcessInfo, (const lldb::SBProcessInfo &));
|
|
LLDB_REGISTER_METHOD(
|
|
lldb::SBProcessInfo &,
|
|
SBProcessInfo, operator=,(const lldb::SBProcessInfo &));
|
|
LLDB_REGISTER_METHOD_CONST(bool, SBProcessInfo, IsValid, ());
|
|
LLDB_REGISTER_METHOD_CONST(bool, SBProcessInfo, operator bool, ());
|
|
LLDB_REGISTER_METHOD(const char *, SBProcessInfo, GetName, ());
|
|
LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBProcessInfo, GetExecutableFile,
|
|
());
|
|
LLDB_REGISTER_METHOD(lldb::pid_t, SBProcessInfo, GetProcessID, ());
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetUserID, ());
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetGroupID, ());
|
|
LLDB_REGISTER_METHOD(bool, SBProcessInfo, UserIDIsValid, ());
|
|
LLDB_REGISTER_METHOD(bool, SBProcessInfo, GroupIDIsValid, ());
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetEffectiveUserID, ());
|
|
LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetEffectiveGroupID, ());
|
|
LLDB_REGISTER_METHOD(bool, SBProcessInfo, EffectiveUserIDIsValid, ());
|
|
LLDB_REGISTER_METHOD(bool, SBProcessInfo, EffectiveGroupIDIsValid, ());
|
|
LLDB_REGISTER_METHOD(lldb::pid_t, SBProcessInfo, GetParentProcessID, ());
|
|
}
|
|
|
|
}
|
|
}
|