blob: e45f3ca2da1e2c7d75279ea08af6a4c831add110 [file] [log] [blame]
Deepak Panickal6f9c4682014-05-16 10:51:01 +00001//===-- MICmnLLDBDebugSessionInfo.h -----------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10//++
Zachary Turner1d6af022014-11-17 18:06:21 +000011// File: MICmnLLDBDebugSessionInfo.h
Deepak Panickal6f9c4682014-05-16 10:51:01 +000012//
Zachary Turner1d6af022014-11-17 18:06:21 +000013// Overview: CMICmnLLDBDebugSessionInfo interface.
Deepak Panickal6f9c4682014-05-16 10:51:01 +000014//
Zachary Turner1d6af022014-11-17 18:06:21 +000015// Environment: Compilers: Visual C++ 12.
16// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
17// Libraries: See MIReadmetxt.
Deepak Panickal6f9c4682014-05-16 10:51:01 +000018//
Zachary Turner1d6af022014-11-17 18:06:21 +000019// Copyright: None.
Deepak Panickal6f9c4682014-05-16 10:51:01 +000020//--
21
22#pragma once
23
24// Third party headers:
25#include <map>
26#include <vector>
Greg Claytonee3626e2015-01-20 00:04:26 +000027#include "lldb/API/SBDebugger.h"
28#include "lldb/API/SBListener.h"
29#include "lldb/API/SBProcess.h"
30#include "lldb/API/SBTarget.h"
Deepak Panickal6f9c4682014-05-16 10:51:01 +000031
32// In-house headers:
33#include "MICmnBase.h"
34#include "MIUtilSingletonBase.h"
35#include "MICmnLLDBDebugSessionInfoVarObj.h"
36#include "MICmnMIValueTuple.h"
Deepak Panickal877569c2014-06-24 16:35:50 +000037#include "MIUtilMapIdToVariant.h"
Deepak Panickal6f9c4682014-05-16 10:51:01 +000038
39// Declarations:
40class CMICmnLLDBDebugger;
41struct SMICmdData;
42class CMICmnMIValueTuple;
43class CMICmnMIValueList;
44
45//++ ============================================================================
Zachary Turner1d6af022014-11-17 18:06:21 +000046// Details: MI debug session object that holds debugging information between
47// instances of MI commands executing their work and producing MI
48// result records. Information/data is set by one or many commands then
49// retrieved by the same or other sebsequent commands.
50// It primarily to hold LLDB type objects.
51// A singleton class.
52// Gotchas: None.
53// Authors: Illya Rudkin 04/03/2014.
54// Changes: None.
Deepak Panickal6f9c4682014-05-16 10:51:01 +000055//--
Zachary Turner1d6af022014-11-17 18:06:21 +000056class CMICmnLLDBDebugSessionInfo : public CMICmnBase, public MI::ISingleton<CMICmnLLDBDebugSessionInfo>
Deepak Panickal6f9c4682014-05-16 10:51:01 +000057{
Zachary Turner1d6af022014-11-17 18:06:21 +000058 friend class MI::ISingleton<CMICmnLLDBDebugSessionInfo>;
Deepak Panickal6f9c4682014-05-16 10:51:01 +000059
Zachary Turner1d6af022014-11-17 18:06:21 +000060 // Structs:
61 public:
62 //++ ============================================================================
63 // Details: Break point information object. Used to easily pass information about
64 // a break around and record break point information to be recalled by
65 // other commands or LLDB event handling functions.
66 //--
67 struct SBrkPtInfo
68 {
69 SBrkPtInfo(void)
70 : m_id(0)
71 , m_bDisp(false)
72 , m_bEnabled(false)
73 , m_pc(0)
74 , m_nLine(0)
75 , m_bHaveArgOptionThreadGrp(false)
76 , m_nTimes(0)
77 , m_bPending(false)
78 , m_nIgnore(0)
79 , m_bCondition(false)
80 , m_bBrkPtThreadId(false)
81 , m_nBrkPtThreadId(0)
82 {
83 }
Deepak Panickal877569c2014-06-24 16:35:50 +000084
Zachary Turner1d6af022014-11-17 18:06:21 +000085 MIuint m_id; // LLDB break point ID.
86 CMIUtilString m_strType; // Break point type.
87 bool m_bDisp; // True = "del", false = "keep".
88 bool m_bEnabled; // True = enabled, false = disabled break point.
89 MIuint m_pc; // Address number.
90 CMIUtilString m_fnName; // Function name.
91 CMIUtilString m_fileName; // File name text.
92 CMIUtilString m_path; // Full file name and path text.
93 MIuint m_nLine; // File line number.
94 bool m_bHaveArgOptionThreadGrp; // True = include MI field, false = do not include "thread-groups".
95 CMIUtilString m_strOptThrdGrp; // Thread group number.
96 MIuint m_nTimes; // The count of the breakpoint existence.
97 CMIUtilString m_strOrigLoc; // The name of the break point.
98 bool m_bPending; // True = the breakpoint has not been established yet, false = location found
99 MIuint m_nIgnore; // The number of time the breakpoint is run over before it is stopped on a hit
100 bool m_bCondition; // True = break point is conditional, use condition expression, false = no condition
101 CMIUtilString m_strCondition; // Break point condition expression
102 bool m_bBrkPtThreadId; // True = break point is specified to work with a specific thread, false = no specified thread given
103 MIuint m_nBrkPtThreadId; // Restrict the breakpoint to the specified thread-id
104 };
Deepak Panickal877569c2014-06-24 16:35:50 +0000105
Hafiz Abid Qadeer290ece82014-12-08 18:07:40 +0000106 // Enumerations:
107 public:
108 //++ ===================================================================
109 // Details: The type of variable used by MIResponseFormVariableInfo family functions.
110 //--
111 enum VariableType_e
112 {
113 eVariableType_InScope = (1u << 0), // In scope only.
114 eVariableType_Statics = (1u << 1), // Statics.
115 eVariableType_Locals = (1u << 2), // Locals.
116 eVariableType_Arguments = (1u << 3) // Arguments.
117 };
118
Zachary Turner1d6af022014-11-17 18:06:21 +0000119 // Typedefs:
120 public:
121 typedef std::vector<uint32_t> VecActiveThreadId_t;
Deepak Panickal6f9c4682014-05-16 10:51:01 +0000122
Zachary Turner1d6af022014-11-17 18:06:21 +0000123 // Methods:
124 public:
125 bool Initialize(void);
126 bool Shutdown(void);
Deepak Panickal6f9c4682014-05-16 10:51:01 +0000127
Zachary Turner1d6af022014-11-17 18:06:21 +0000128 // Variant type data which can be assigned and retrieved across all command instances
129 template <typename T> bool SharedDataAdd(const CMIUtilString &vKey, const T &vData);
130 template <typename T> bool SharedDataRetrieve(const CMIUtilString &vKey, T &vwData);
131 bool SharedDataDestroy(void);
Deepak Panickal6f9c4682014-05-16 10:51:01 +0000132
Zachary Turner1d6af022014-11-17 18:06:21 +0000133 // Common command required functionality
134 bool AccessPath(const CMIUtilString &vPath, bool &vwbYesAccessible);
135 bool GetFrameInfo(const lldb::SBFrame &vrFrame, lldb::addr_t &vwPc, CMIUtilString &vwFnName, CMIUtilString &vwFileName,
136 CMIUtilString &vwPath, MIuint &vwnLine);
137 bool GetThreadFrames(const SMICmdData &vCmdData, const MIuint vThreadIdx, CMIUtilString &vwrThreadFrames);
138 bool GetThreadFrames2(const SMICmdData &vCmdData, const MIuint vThreadIdx, CMIUtilString &vwrThreadFrames);
139 bool ResolvePath(const SMICmdData &vCmdData, const CMIUtilString &vPath, CMIUtilString &vwrResolvedPath);
140 bool ResolvePath(const CMIUtilString &vstrUnknown, CMIUtilString &vwrResolvedPath);
141 bool MIResponseFormFrameInfo(const lldb::SBThread &vrThread, const MIuint vnLevel, CMICmnMIValueTuple &vwrMiValueTuple);
142 bool MIResponseFormFrameInfo(const lldb::addr_t vPc, const CMIUtilString &vFnName, const CMIUtilString &vFileName,
143 const CMIUtilString &vPath, const MIuint vnLine, CMICmnMIValueTuple &vwrMiValueTuple);
144 bool MIResponseFormFrameInfo2(const lldb::addr_t vPc, const CMIUtilString &vArgInfo, const CMIUtilString &vFnName,
145 const CMIUtilString &vFileName, const CMIUtilString &vPath, const MIuint vnLine,
146 CMICmnMIValueTuple &vwrMiValueTuple);
147 bool MIResponseFormThreadInfo(const SMICmdData &vCmdData, const lldb::SBThread &vrThread, CMICmnMIValueTuple &vwrMIValueTuple);
148 bool MIResponseFormThreadInfo2(const SMICmdData &vCmdData, const lldb::SBThread &vrThread, CMICmnMIValueTuple &vwrMIValueTuple);
149 bool MIResponseFormThreadInfo3(const SMICmdData &vCmdData, const lldb::SBThread &vrThread, CMICmnMIValueTuple &vwrMIValueTuple);
150 bool MIResponseFormVariableInfo(const lldb::SBFrame &vrFrame, const MIuint vMaskVarTypes, CMICmnMIValueList &vwrMiValueList);
151 bool MIResponseFormVariableInfo2(const lldb::SBFrame &vrFrame, const MIuint vMaskVarTypes, CMICmnMIValueList &vwrMiValueList);
152 bool MIResponseFormVariableInfo3(const lldb::SBFrame &vrFrame, const MIuint vMaskVarTypes, CMICmnMIValueList &vwrMiValueList);
153 bool MIResponseFormBrkPtFrameInfo(const SBrkPtInfo &vrBrkPtInfo, CMICmnMIValueTuple &vwrMiValueTuple);
154 bool MIResponseFormBrkPtInfo(const SBrkPtInfo &vrBrkPtInfo, CMICmnMIValueTuple &vwrMiValueTuple);
155 bool GetBrkPtInfo(const lldb::SBBreakpoint &vBrkPt, SBrkPtInfo &vrwBrkPtInfo) const;
156 bool RecordBrkPtInfo(const MIuint vnBrkPtId, const SBrkPtInfo &vrBrkPtInfo);
157 bool RecordBrkPtInfoGet(const MIuint vnBrkPtId, SBrkPtInfo &vrwBrkPtInfo) const;
158 bool RecordBrkPtInfoDelete(const MIuint vnBrkPtId);
Deepak Panickal877569c2014-06-24 16:35:50 +0000159
Zachary Turner1d6af022014-11-17 18:06:21 +0000160 // Attributes:
161 public:
162 // The following are available to all command instances
163 lldb::SBDebugger &m_rLldbDebugger;
164 lldb::SBListener &m_rLlldbListener;
165 lldb::SBTarget m_lldbTarget;
166 lldb::SBProcess m_lldbProcess;
167 const MIuint m_nBrkPointCntMax;
168 VecActiveThreadId_t m_vecActiveThreadId;
169 lldb::tid_t m_currentSelectedThread;
170
171 // These are keys that can be used to access the shared data map
172 // Note: This list is expected to grow and will be moved and abstracted in the future.
173 const CMIUtilString m_constStrSharedDataKeyWkDir;
Deepak Panickal877569c2014-06-24 16:35:50 +0000174 const CMIUtilString m_constStrSharedDataSolibPath;
Deepak Panickal6f9c4682014-05-16 10:51:01 +0000175
Zachary Turner1d6af022014-11-17 18:06:21 +0000176 // Typedefs:
177 private:
178 typedef std::vector<CMICmnLLDBDebugSessionInfoVarObj> VecVarObj_t;
179 typedef std::map<MIuint, SBrkPtInfo> MapBrkPtIdToBrkPtInfo_t;
180 typedef std::pair<MIuint, SBrkPtInfo> MapPairBrkPtIdToBrkPtInfo_t;
Deepak Panickal6f9c4682014-05-16 10:51:01 +0000181
Zachary Turner1d6af022014-11-17 18:06:21 +0000182 // Methods:
183 private:
184 /* ctor */ CMICmnLLDBDebugSessionInfo(void);
185 /* ctor */ CMICmnLLDBDebugSessionInfo(const CMICmnLLDBDebugSessionInfo &);
186 void operator=(const CMICmnLLDBDebugSessionInfo &);
187 //
188 bool GetVariableInfo(const MIuint vnMaxDepth, const lldb::SBValue &vrValue, const bool vbIsChildValue,
189 CMICmnMIValueList &vwrMiValueList, MIuint &vrwnDepth);
190 bool GetVariableInfo2(const MIuint vnMaxDepth, const lldb::SBValue &vrValue, const bool vbIsChildValue,
191 CMICmnMIValueList &vwrMiValueList, MIuint &vrwnDepth);
Deepak Panickal6f9c4682014-05-16 10:51:01 +0000192
Zachary Turner1d6af022014-11-17 18:06:21 +0000193 // Overridden:
194 private:
195 // From CMICmnBase
196 /* dtor */ virtual ~CMICmnLLDBDebugSessionInfo(void);
197
198 // Attributes:
199 private:
200 CMIUtilMapIdToVariant m_mapIdToSessionData; // Hold and retrieve key to value data available across all commands
201 VecVarObj_t m_vecVarObj; // Vector of session variable objects
202 MapBrkPtIdToBrkPtInfo_t m_mapBrkPtIdToBrkPtInfo;
Deepak Panickal6f9c4682014-05-16 10:51:01 +0000203};
Deepak Panickal877569c2014-06-24 16:35:50 +0000204
205//++ ------------------------------------------------------------------------------------
Zachary Turner1d6af022014-11-17 18:06:21 +0000206// Details: Command instances can create and share data between other instances of commands.
207// This function adds new data to the shared data. Using the same ID more than
208// once replaces any previous matching data keys.
209// Type: Template method.
210// Args: T - The type of the object to be stored.
211// vKey - (R) A non empty unique data key to retrieve the data by.
212// vData - (R) Data to be added to the share.
213// Return: MIstatus::success - Functional succeeded.
214// MIstatus::failure - Functional failed.
215// Throws: None.
Deepak Panickal877569c2014-06-24 16:35:50 +0000216//--
Zachary Turner1d6af022014-11-17 18:06:21 +0000217template <typename T>
218bool
219CMICmnLLDBDebugSessionInfo::SharedDataAdd(const CMIUtilString &vKey, const T &vData)
Deepak Panickal877569c2014-06-24 16:35:50 +0000220{
Zachary Turner1d6af022014-11-17 18:06:21 +0000221 if (!m_mapIdToSessionData.Add<T>(vKey, vData))
222 {
223 SetErrorDescription(m_mapIdToSessionData.GetErrorDescription());
224 return MIstatus::failure;
225 }
Deepak Panickal877569c2014-06-24 16:35:50 +0000226
Zachary Turner1d6af022014-11-17 18:06:21 +0000227 return MIstatus::success;
Deepak Panickal877569c2014-06-24 16:35:50 +0000228}
229
230//++ ------------------------------------------------------------------------------------
Zachary Turner1d6af022014-11-17 18:06:21 +0000231// Details: Command instances can create and share data between other instances of commands.
232// This function retrieves data from the shared data container.
233// Type: Method.
234// Args: T - The type of the object being retrieved.
235// vKey - (R) A non empty unique data key to retrieve the data by.
236// vData - (W) The data.
237// Return: bool - True = data found, false = data not found or an error occurred trying to fetch.
238// Throws: None.
Deepak Panickal877569c2014-06-24 16:35:50 +0000239//--
Zachary Turner1d6af022014-11-17 18:06:21 +0000240template <typename T>
241bool
242CMICmnLLDBDebugSessionInfo::SharedDataRetrieve(const CMIUtilString &vKey, T &vwData)
Deepak Panickal877569c2014-06-24 16:35:50 +0000243{
Zachary Turner1d6af022014-11-17 18:06:21 +0000244 bool bDataFound = false;
Deepak Panickal877569c2014-06-24 16:35:50 +0000245
Zachary Turner1d6af022014-11-17 18:06:21 +0000246 if (!m_mapIdToSessionData.Get<T>(vKey, vwData, bDataFound))
247 {
248 SetErrorDescription(m_mapIdToSessionData.GetErrorDescription());
249 return MIstatus::failure;
250 }
Deepak Panickal877569c2014-06-24 16:35:50 +0000251
Zachary Turner1d6af022014-11-17 18:06:21 +0000252 return bDataFound;
253}