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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
|
/***************************************************************************
* Copyright (C) 2004 by Roberto Raggi *
* roberto@kdevelop.org *
* Copyright (C) 2005-2006 by Vladimir Prus *
* ghost@cs.msu.su *
* Copyright (C) 2016 by Aetf *
* aetf@unlimitedcodeworks.xyz *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library General Public License as *
* published by the Free Software Foundation; either version 2 of the *
* License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef GDBMI_H
#define GDBMI_H
#include <QString>
#include <QMap>
#include <stdexcept>
/**
@author Roberto Raggi
@author Vladimir Prus
*/
namespace KDevMI { namespace MI {
enum CommandType {
NonMI,
BreakAfter,
BreakCommands,
BreakCondition,
BreakDelete,
BreakDisable,
BreakEnable,
BreakInfo,
BreakInsert,
BreakList,
BreakWatch,
DataDisassemble,
DataEvaluateExpression,
DataListChangedRegisters,
DataListRegisterNames,
DataListRegisterValues,
DataReadMemory,
DataWriteMemory,
DataWriteRegisterVariables,
EnablePrettyPrinting,
EnableTimings,
EnvironmentCd,
EnvironmentDirectory,
EnvironmentPath,
EnvironmentPwd,
ExecAbort,
ExecArguments,
ExecContinue,
ExecFinish,
ExecInterrupt,
ExecNext,
ExecNextInstruction,
ExecRun,
ExecStep,
ExecStepInstruction,
ExecUntil,
FileExecAndSymbols,
FileExecFile,
FileListExecSourceFile,
FileListExecSourceFiles,
FileSymbolFile,
GdbExit,
GdbSet,
GdbShow,
GdbVersion,
InferiorTtySet,
InferiorTtyShow,
InterpreterExec,
ListFeatures,
SignalHandle,
StackInfoDepth,
StackInfoFrame,
StackListArguments,
StackListFrames,
StackListLocals,
StackSelectFrame,
SymbolListLines,
TargetAttach,
TargetDetach,
TargetDisconnect,
TargetDownload,
TargetSelect,
ThreadInfo,
ThreadListIds,
ThreadSelect,
TraceFind,
TraceStart,
TraceStop,
VarAssign,
VarCreate,
VarDelete,
VarEvaluateExpression,
VarInfoPathExpression,
VarInfoNumChildren,
VarInfoType,
VarListChildren,
VarSetFormat,
VarSetFrozen,
VarShowAttributes,
VarShowFormat,
VarUpdate
};
/** Exception that is thrown when we're trying to invoke an
operation that is not supported by specific MI value. For
example, trying to index a string literal.
Such errors are conceptually the same as assert, but in GUI
we can't use regular assert, and Q_ASSERT, which only prints
a message, is not suitable either. We need to break processing,
and the higher-level code can report "Internal parsing error",
or something.
Being glorified assert, this exception does not cary any
useful information.
*/
class type_error : public std::logic_error
{
public:
type_error();
};
/** Base class for all MI values.
MI values are of three kinds:
- String literals
- Lists (indexed by integer)
- Tuple (set of named values, indexed by name)
The structure of response to a specific gdb command is fixed.
While any tuples in response may omit certain named fields, the
kind of each item never changes. That is, response to specific
command can't contains sometimes string and sometimes tuple in
specific position.
Because of that static structure, it's almost never needed to query
dynamic type of a MI value. Most often we know it's say, tuple, and
can subscripts it.
So, the Value class has methods for accessing all kinds of values.
Attempting to call a method that is not applicable to specific value
will result in exception. The client code will almost never need to
cast from 'Value' to its derived classes.
Note also that all methods in this class are const and return
const Value&. That's by design -- there's no need to modify gdb
responses in GUI.
*/
struct Value
{
enum Kind {
StringLiteral,
Tuple,
List
};
protected:
constexpr explicit Value(Kind k) : kind(k) {}
public:
virtual ~Value() = default;
Value() = delete;
// Copy disabled to prevent slicing.
Value(const Value&) = delete;
Value& operator=(const Value&) = delete;
const Kind kind = StringLiteral;
/** If this value is a string literals, returns the string value.
Otherwise, throws type_error.
*/
virtual QString literal() const;
//NOTE: Wouldn't it be better to use literal().toInt and get rid of that?
/** If the value is a string literal, converts it to int and
returns. If conversion fails, or the value cannot be
converted to int, throws type_error.
*/
virtual int toInt(int base = 10) const;
/** If this value is a tuple, returns true if the tuple
has a field named 'variable'. Otherwise,
throws type_error.
*/
virtual bool hasField(const QString& variable) const;
/** If this value is a tuple, and contains named field 'variable',
returns it. Otherwise, throws 'type_error'.
This method is virtual, and derived in base class, so that
we can save on casting, when we know for sure that instance
is TupleValue, or ListValue.
*/
virtual const Value& operator[](const QString& variable) const;
/** If this value is a list, returns true if the list is empty.
If this value is not a list, throws 'type_error'.
*/
virtual bool empty() const;
/** If this value is a list, returns it's size.
Otherwise, throws 'type_error'.
*/
virtual int size() const;
/** If this value is a list, returns the element at
'index'. Otherwise, throws 'type_error'.
*/
virtual const Value& operator[](int index) const;
};
/** @internal
Internal class to represent name-value pair in tuples.
*/
struct Result
{
Result() = default;
~Result() { delete value; value = nullptr; }
QString variable;
Value *value = nullptr;
private:
Q_DISABLE_COPY(Result)
};
struct StringLiteralValue : public Value
{
explicit StringLiteralValue(const QString &lit)
: Value(StringLiteral)
, literal_(lit)
{}
public: // Value overrides
QString literal() const override;
int toInt(int base) const override;
private:
QString literal_;
};
struct TupleValue : public Value
{
TupleValue() : Value(Tuple) {}
~TupleValue() override;
bool hasField(const QString&) const override;
using Value::operator[];
const Value& operator[](const QString& variable) const override;
QList<Result*> results;
QMap<QString, Result*> results_by_name;
};
struct ListValue : public Value
{
ListValue() : Value(List) {}
~ListValue() override;
bool empty() const override;
int size() const override;
using Value::operator[];
const Value& operator[](int index) const override;
QList<Result*> results;
};
struct Record
{
enum Kind {
Prompt,
Stream,
Result,
Async
};
protected:
constexpr explicit Record(Kind k) : kind(k) {}
public:
Record() = delete;
Record(const Record&) = delete;
Record& operator=(const Record&) = delete;
virtual ~Record() = default;
virtual QString toString() const { Q_ASSERT( 0 ); return QString(); }
const Kind kind;
};
struct TupleRecord : public Record, public TupleValue
{
protected:
explicit TupleRecord(Record::Kind k) : Record(k) {}
};
struct ResultRecord : public TupleRecord
{
explicit ResultRecord(const QString& reason)
: TupleRecord(Result)
, reason(reason)
{
}
uint32_t token = 0;
QString reason;
};
struct AsyncRecord : public TupleRecord
{
enum Subkind {
Exec,
Status,
Notify
};
AsyncRecord(Subkind subkind, const QString& reason)
: TupleRecord(Async)
, subkind(subkind)
, reason(reason)
{
}
Subkind subkind;
QString reason;
};
struct PromptRecord : public Record
{
PromptRecord() : Record(Prompt) {}
QString toString() const override
{ return QStringLiteral("(prompt)\n"); }
};
struct StreamRecord : public Record
{
enum Subkind {
/// Console stream: usual CLI output of GDB in response to non-MI commands
Console,
/// Target output stream (stdout/stderr of the inferior process, only in some
/// scenarios - usually we get stdout/stderr via other means)
Target,
/// Log stream: GDB internal messages that should be displayed as part of an error log
Log
};
explicit StreamRecord(Subkind subkind)
: Record(Stream)
, subkind(subkind)
{
}
Subkind subkind;
QString message;
};
} // end of namespace MI
} // end of namespace KDevMI
#endif
|