forked from OSchip/llvm-project
90 lines
2.1 KiB
C++
90 lines
2.1 KiB
C++
//===-- SBFileSpec.h --------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_SBFileSpec_h_
|
|
#define LLDB_SBFileSpec_h_
|
|
|
|
#include "lldb/API/SBDefines.h"
|
|
|
|
namespace lldb {
|
|
|
|
class LLDB_API SBFileSpec {
|
|
public:
|
|
SBFileSpec();
|
|
|
|
SBFileSpec(const lldb::SBFileSpec &rhs);
|
|
|
|
SBFileSpec(const char *path); // Deprecated, use SBFileSpec (const char *path,
|
|
// bool resolve)
|
|
|
|
SBFileSpec(const char *path, bool resolve);
|
|
|
|
~SBFileSpec();
|
|
|
|
const SBFileSpec &operator=(const lldb::SBFileSpec &rhs);
|
|
|
|
bool IsValid() const;
|
|
|
|
bool Exists() const;
|
|
|
|
bool ResolveExecutableLocation();
|
|
|
|
const char *GetFilename() const;
|
|
|
|
const char *GetDirectory() const;
|
|
|
|
void SetFilename(const char *filename);
|
|
|
|
void SetDirectory(const char *directory);
|
|
|
|
uint32_t GetPath(char *dst_path, size_t dst_len) const;
|
|
|
|
static int ResolvePath(const char *src_path, char *dst_path, size_t dst_len);
|
|
|
|
bool GetDescription(lldb::SBStream &description) const;
|
|
|
|
void AppendPathComponent(const char *file_or_directory);
|
|
|
|
private:
|
|
friend class SBAttachInfo;
|
|
friend class SBBlock;
|
|
friend class SBCommandInterpreter;
|
|
friend class SBCompileUnit;
|
|
friend class SBDeclaration;
|
|
friend class SBFileSpecList;
|
|
friend class SBHostOS;
|
|
friend class SBLaunchInfo;
|
|
friend class SBLineEntry;
|
|
friend class SBModule;
|
|
friend class SBModuleSpec;
|
|
friend class SBPlatform;
|
|
friend class SBProcess;
|
|
friend class SBSourceManager;
|
|
friend class SBThread;
|
|
friend class SBTarget;
|
|
|
|
SBFileSpec(const lldb_private::FileSpec &fspec);
|
|
|
|
void SetFileSpec(const lldb_private::FileSpec &fspec);
|
|
|
|
const lldb_private::FileSpec *operator->() const;
|
|
|
|
const lldb_private::FileSpec *get() const;
|
|
|
|
const lldb_private::FileSpec &operator*() const;
|
|
|
|
const lldb_private::FileSpec &ref() const;
|
|
|
|
std::unique_ptr<lldb_private::FileSpec> m_opaque_ap;
|
|
};
|
|
|
|
} // namespace lldb
|
|
|
|
#endif // LLDB_SBFileSpec_h_
|