1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 The CodeLite Team
// file name : LLDBBreakpoint.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef LLDBBREAKPOINT_H
#define LLDBBREAKPOINT_H
#include <wx/string.h>
#include <vector>
#include <wx/filename.h>
#include <wx/sharedptr.h>
#include "debugger.h"
#include "json_node.h"
class LLDBBreakpoint
{
public:
// Breakpoint type
enum {
kInvalid = -1,
kFileLine,
kFunction,
kLocation,
};
typedef wxSharedPtr<LLDBBreakpoint> Ptr_t;
typedef std::vector<LLDBBreakpoint::Ptr_t> Vec_t;
protected:
int m_id;
int m_type;
wxString m_name;
wxString m_filename;
int m_lineNumber;
LLDBBreakpoint::Vec_t m_children;
public:
class Equal
{
LLDBBreakpoint::Ptr_t m_src;
public:
Equal(LLDBBreakpoint::Ptr_t src) : m_src(src) {}
bool operator()(LLDBBreakpoint::Ptr_t other) const {
return m_src->SameAs(other);
}
};
public:
LLDBBreakpoint() : m_id(wxNOT_FOUND), m_type(kInvalid), m_lineNumber(wxNOT_FOUND) {}
LLDBBreakpoint(const wxString &name);
LLDBBreakpoint(const wxFileName& filename, int line);
bool SameAs(LLDBBreakpoint::Ptr_t other) const;
virtual ~LLDBBreakpoint();
/**
* @brief copy breakpoint from other
* @param other
*/
void Copy(LLDBBreakpoint::Ptr_t other);
bool IsLocation() const {
return m_type == kLocation;
}
size_t GetNumChildren() const {
return m_children.size();
}
LLDBBreakpoint::Vec_t& GetChildren() {
return m_children;
}
const LLDBBreakpoint::Vec_t& GetChildren() const {
return m_children;
}
/**
* @brief convert list of gdb breakpoints into LLDBBreakpoint vector
*/
static BreakpointInfo::Vec_t ToBreakpointInfoVector(const LLDBBreakpoint::Vec_t& breakpoints);
/**
* @brief convert list of lldb breakpoints into gdb's breakpoint list
* @param breakpoints
*/
static LLDBBreakpoint::Vec_t FromBreakpointInfoVector(const BreakpointInfo::Vec_t& breakpoints);
/**
* @brief return a string representation for this breakpoint
*/
wxString ToString() const;
bool IsApplied() const {
return m_id != wxNOT_FOUND;
}
/**
* @brief return true if this is a valid breakpoint
*/
bool IsValid() const;
void Invalidate() ;
void SetFilename(const wxString& filename) {
this->m_filename = filename;
}
void SetLineNumber(int lineNumber) {
this->m_lineNumber = lineNumber;
}
void SetName(const wxString& name) {
this->m_name = name;
}
void SetType(int type) {
this->m_type = type;
}
const wxString& GetFilename() const {
return m_filename;
}
int GetLineNumber() const {
return m_lineNumber;
}
const wxString& GetName() const {
return m_name;
}
int GetType() const {
return m_type;
}
void SetId(int id) {
this->m_id = id;
}
int GetId() const {
return m_id;
}
// Serialization API
void FromJSON(const JSONElement& json);
JSONElement ToJSON() const;
};
#endif // LLDBBREAKPOINT_H
|