blob: b07824581471d3b9bf0727886269ca65b6788bbb [file] [log] [blame]
//===-- 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 SBFileSpec
{
public:
SBFileSpec ();
SBFileSpec (const lldb::SBFileSpec &rhs);
SBFileSpec (const char *path);// Deprected, 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;
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;
private:
friend class SBAttachInfo;
friend class SBBlock;
friend class SBCompileUnit;
friend class SBFileSpecList;
friend class SBHostOS;
friend class SBLaunchInfo;
friend class SBLineEntry;
friend class SBModule;
friend class SBProcess;
friend class SBSourceManager;
friend class SBThread;
friend class SBTarget;
void
SetFileSpec (const lldb_private::FileSpec& fs);
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::auto_ptr <lldb_private::FileSpec> m_opaque_ap;
};
} // namespace lldb
#endif // LLDB_SBFileSpec_h_