3 // Copyright by Johannes Sixt
4 // This file is under GPL, the GNU General Public Licence
25 * A type representing an address.
32 DbgAddr(const QString
& aa
);
33 DbgAddr(const DbgAddr
& src
) : a(src
.a
), fnoffs(src
.fnoffs
) { }
34 void operator=(const QString
& aa
);
35 void operator=(const DbgAddr
& src
) { a
= src
.a
; fnoffs
= src
.fnoffs
; }
36 QString
asString() const;
37 bool isEmpty() const { return a
.isEmpty(); }
41 bool operator==(const DbgAddr
& a1
, const DbgAddr
& a2
);
42 bool operator>(const DbgAddr
& a1
, const DbgAddr
& a2
);
61 DCsetoption
, /* debugger options */
71 DCuntil
, /* line number is zero-based! */
74 DCbreakline
, /* line number is zero-based! */
75 DCtbreakline
, /* line number is zero-based! */
100 RDNstdin
= 0x1, /* redirect stdin to /dev/null */
101 RDNstdout
= 0x2, /* redirect stdout to /dev/null */
102 RDNstderr
= 0x4 /* redirect stderr to /dev/null */
106 * How the memory dump is formated. The lowest 4 bits define the size of
107 * the entities. The higher bits define how these are formatted. Note that
108 * not all combinations make sense.
110 enum MemoryDumpType
{
134 * Debugger commands are placed in a queue. Only one command at a time is
135 * sent down to the debugger. All other commands in the queue are retained
136 * until the sent command has been processed by gdb. The debugger tells us
137 * that it's done with the command by sending the prompt. The output of the
138 * debugger is parsed at that time. Then, if more commands are in the
139 * queue, the next one is sent to the debugger.
145 bool m_committed
; /* just a debugging aid */
146 // remember which expression when printing an expression
149 // remember file position
152 // the breakpoint info
154 // whether command was emitted due to direct user request (only set when relevant)
157 CmdQueueItem(DbgCommand cmd
, const QString
& str
) :
170 * The information about a breakpoint that is parsed from the list of
175 int id
; /* gdb's number */
177 breakpoint
, watchpoint
182 QString text
; /* text if set using DCbreaktext */
183 DbgAddr address
; /* exact address of breakpoint */
184 QString condition
; /* condition as printed by gdb */
185 int ignoreCount
; /* ignore next that may hits */
186 int hitCount
; /* as reported by gdb */
187 // the following items repeat the location, but in a better usable way
189 int lineNo
; /* zero-based line number */
191 bool isOrphaned() const { return id
< 0; }
195 * Information about a stack frame.
200 int lineNo
; /* zero-based line number */
201 DbgAddr address
; /* exact address of PC */
205 * The information about a stack frame as parsed from the backtrace.
207 struct StackFrame
: FrameInfo
210 ExprValue
* var
; /* more information if non-zero */
211 StackFrame() : var(0) { }
216 * The information about a thread as parsed from the threads list.
218 struct ThreadInfo
: FrameInfo
220 int id
; /* gdb's number */
221 QString threadName
; /* the SYSTAG */
222 QString function
; /* where thread is halted */
223 bool hasFocus
; /* the thread whose stack we are watching */
227 * Register information
233 QString cookedValue
; /* may be empty */
234 QString type
; /* of vector register if not empty */
240 struct DisassembledCode
256 * This is an abstract base class for debugger process.
258 * This class represents the debugger program. It provides the low-level
259 * interface to the commandline debugger. As such it implements the
260 * commands and parses the output.
262 class DebuggerDriver
: public KProcess
267 virtual ~DebuggerDriver() = 0;
269 virtual QString
driverName() const = 0;
271 * Returns the default command string to invoke the debugger driver.
273 virtual QString
defaultInvocation() const = 0;
276 * Returns a list of options that can be turned on and off.
278 virtual QStringList
boolOptionList() const = 0;
280 virtual bool startup(QString cmdStr
);
281 void setLogFileName(const QString
& fname
) { m_logFileName
= fname
; }
287 DSidle
, /* gdb waits for input */
288 DSinterrupted
, /* a command was interrupted */
289 DSrunningLow
, /* gdb is running a low-priority command */
290 DSrunning
, /* gdb waits for program */
291 DScommandSent
, /* command has been sent, we wait for wroteStdin signal */
292 DScommandSentLow
/* low-prioritycommand has been sent */
294 DebuggerState m_state
;
297 bool isIdle() const { return m_state
== DSidle
; }
299 * Tells whether a high prority command would be executed immediately.
301 bool canExecuteImmediately() const { return m_hipriCmdQueue
.isEmpty(); }
304 char* m_output
; /* normal gdb output */
305 size_t m_outputLen
; /* amount of data so far accumulated in m_output */
306 size_t m_outputAlloc
; /* space available in m_output */
307 typedef QCString DelayedStr
;
308 QQueue
<DelayedStr
> m_delayedOutput
; /* output colleced while we have receivedOutput */
309 /* but before signal wroteStdin arrived */
313 * Enqueues a high-priority command. High-priority commands are
314 * executed before any low-priority commands. No user interaction is
315 * possible as long as there is a high-priority command in the queue.
317 virtual CmdQueueItem
* executeCmd(DbgCommand
,
318 bool clearLow
= false) = 0;
319 virtual CmdQueueItem
* executeCmd(DbgCommand
, QString strArg
,
320 bool clearLow
= false) = 0;
321 virtual CmdQueueItem
* executeCmd(DbgCommand
, int intArg
,
322 bool clearLow
= false) = 0;
323 virtual CmdQueueItem
* executeCmd(DbgCommand
, QString strArg
, int intArg
,
324 bool clearLow
= false) = 0;
325 virtual CmdQueueItem
* executeCmd(DbgCommand
, QString strArg1
, QString strArg2
,
326 bool clearLow
= false) = 0;
327 virtual CmdQueueItem
* executeCmd(DbgCommand
, int intArg1
, int intArg2
,
328 bool clearLow
= false) = 0;
331 QMnormal
, /* queues the command last */
332 QMoverride
, /* removes an already queued command */
333 QMoverrideMoreEqual
/* ditto, also puts the command first in the queue */
337 * Enqueues a low-priority command. Low-priority commands are executed
338 * after any high-priority commands.
340 virtual CmdQueueItem
* queueCmd(DbgCommand
,
342 virtual CmdQueueItem
* queueCmd(DbgCommand
, QString strArg
,
344 virtual CmdQueueItem
* queueCmd(DbgCommand
, int intArg
,
346 virtual CmdQueueItem
* queueCmd(DbgCommand
, QString strArg
, int intArg
,
348 virtual CmdQueueItem
* queueCmd(DbgCommand
, QString strArg1
, QString strArg2
,
352 * Flushes the command queues.
353 * @param hipriOnly if true, only the high priority queue is flushed.
355 virtual void flushCommands(bool hipriOnly
= false);
358 * Terminates the debugger process.
360 virtual void terminate() = 0;
363 * Terminates the debugger process, but also detaches any program that
364 * it has been attached to.
366 virtual void detachAndTerminate() = 0;
369 * Interrupts the debuggee.
371 virtual void interruptInferior() = 0;
374 * Specifies the command that prints the QString data.
376 virtual void setPrintQStringDataCmd(const char* cmd
) = 0;
379 * Parses the output as an array of QChars.
381 virtual ExprValue
* parseQCharArray(const char* output
, bool wantErrorValue
, bool qt3like
) = 0;
384 * Parses a back-trace (the output of the DCbt command).
386 virtual void parseBackTrace(const char* output
, QList
<StackFrame
>& stack
) = 0;
389 * Parses the output of the DCframe command;
390 * @param frameNo Returns the frame number.
391 * @param file Returns the source file name.
392 * @param lineNo The zero-based line number.
393 * @param address Returns the exact address.
394 * @return false if the frame could not be parsed successfully. The
395 * output values are undefined in this case.
397 virtual bool parseFrameChange(const char* output
, int& frameNo
,
398 QString
& file
, int& lineNo
, DbgAddr
& address
) = 0;
401 * Parses a list of breakpoints.
402 * @param output The output of the debugger.
403 * @param brks The list of new #Breakpoint objects. The list
404 * must initially be empty.
405 * @return False if there was an error before the first breakpoint
406 * was found. Even if true is returned, #brks may be empty.
408 virtual bool parseBreakList(const char* output
, QList
<Breakpoint
>& brks
) = 0;
411 * Parses a list of threads.
412 * @param output The output of the debugger.
413 * @param threads The list of new #ThreadInfo objects. The list
414 * must initially be empty.
415 * @return False if there was an error before the first thread entry
416 * was found. Even if true is returned, #threads may be empty.
418 virtual bool parseThreadList(const char* output
, QList
<ThreadInfo
>& threads
) = 0;
421 * Parses the output when the program stops to see whether this it
422 * stopped due to a breakpoint.
423 * @param output The output of the debugger.
424 * @param id Returns the breakpoint id.
425 * @param file Returns the file name in which the breakpoint is.
426 * @param lineNo Returns the zero-based line number of the breakpoint.
427 * @param address Returns the address of the breakpoint.
428 * @return False if there was no breakpoint.
430 virtual bool parseBreakpoint(const char* output
, int& id
,
431 QString
& file
, int& lineNo
, QString
& address
) = 0;
434 * Parses the output of the DCinfolocals command.
435 * @param output The output of the debugger.
436 * @param newVars Receives the parsed variable values. The values are
437 * simply append()ed to the supplied list.
439 virtual void parseLocals(const char* output
, QList
<ExprValue
>& newVars
) = 0;
442 * Parses the output of a DCprint or DCprintStruct command.
443 * @param output The output of the debugger.
444 * @param wantErrorValue Specifies whether the error message should be
445 * provided as the value of a NKplain variable. If this is false,
446 * 0 is returned if the printed value is an error message.
447 * @return the parsed value. It is 0 if there was a parse error
448 * or if the output is an error message and #wantErrorValue
449 * is \c false. The returned object's text() is undefined.
451 virtual ExprValue
* parsePrintExpr(const char* output
, bool wantErrorValue
) = 0;
454 * Parses the output of the DCcd command.
455 * @return false if the message is an error message.
457 virtual bool parseChangeWD(const char* output
, QString
& message
) = 0;
460 * Parses the output of the DCexecutable command.
461 * @return false if an error occured.
463 virtual bool parseChangeExecutable(const char* output
, QString
& message
) = 0;
466 * Parses the output of the DCcorefile command.
467 * @return false if the core file was not loaded successfully.
469 virtual bool parseCoreFile(const char* output
) = 0;
472 SFrefreshSource
= 1, /* refresh of source code is needed */
473 SFrefreshBreak
= 2, /* refresh breakpoints */
474 SFrefreshThreads
= 4, /* refresh thread list */
475 SFprogramActive
= 128 /* program remains active */
478 * Parses the output of commands that execute (a piece of) the program.
479 * @return The inclusive OR of zero or more of the StopFlags.
481 virtual uint
parseProgramStopped(const char* output
, QString
& message
) = 0;
484 * Parses the output of the DCsharedlibs command.
486 virtual void parseSharedLibs(const char* output
, QStrList
& shlibs
) = 0;
489 * Parses the output of the DCfindType command.
490 * @return true if a type was found.
492 virtual bool parseFindType(const char* output
, QString
& type
) = 0;
495 * Parses the output of the DCinforegisters command.
497 virtual void parseRegisters(const char* output
, QList
<RegisterInfo
>& regs
) = 0;
500 * Parses the output of the DCinfoline command. Returns false if the
501 * two addresses could not be found.
503 virtual bool parseInfoLine(const char* output
,
504 QString
& addrFrom
, QString
& addrTo
) = 0;
507 * Parses the ouput of the DCdisassemble command.
509 virtual void parseDisassemble(const char* output
, QList
<DisassembledCode
>& code
) = 0;
512 * Parses a memory dump. Returns an empty string if no error was found;
513 * otherwise it contains an error message.
515 virtual QString
parseMemoryDump(const char* output
, QList
<MemoryDump
>& memdump
) = 0;
518 * Parses the output of the DCsetvariable command. Returns an empty
519 * string if no error was found; otherwise it contains an error
522 virtual QString
parseSetVariable(const char* output
) = 0;
525 * Returns a value that the user can edit.
527 virtual QString
editableValue(VarTree
* value
);
530 /** Removes all commands from the low-priority queue. */
531 void flushLoPriQueue();
532 /** Removes all commands from the high-priority queue. */
533 void flushHiPriQueue();
535 QQueue
<CmdQueueItem
> m_hipriCmdQueue
;
536 QList
<CmdQueueItem
> m_lopriCmdQueue
;
538 * The active command is kept separately from other pending commands.
540 CmdQueueItem
* m_activeCmd
;
542 * Helper function that queues the given command string in the
543 * low-priority queue.
545 CmdQueueItem
* queueCmdString(DbgCommand cmd
, QString cmdString
,
548 * Helper function that queues the given command string in the
549 * high-priority queue.
551 CmdQueueItem
* executeCmdString(DbgCommand cmd
, QString cmdString
,
554 virtual void commandFinished(CmdQueueItem
* cmd
) = 0;
558 virtual int commSetupDoneC();
561 size_t m_promptMinLen
;
562 char m_promptLastChar
;
566 QString m_logFileName
;
570 void dequeueCmdByVar(VarTree
* var
);
573 virtual void slotReceiveOutput(KProcess
*, char* buffer
, int buflen
);
574 virtual void slotCommandRead(KProcess
*);
575 virtual void slotExited(KProcess
*);
579 * This signal is emitted when the output of a command has been fully
580 * collected and is ready to be interpreted.
582 void commandReceived(CmdQueueItem
* cmd
, const char* output
);
585 * This signal is emitted when the debugger recognizes that a specific
586 * location in a file ought to be displayed.
588 * Gdb's --fullname option supports this for the step, next, frame, and
589 * run commands (and possibly others).
591 * @param file specifies the file; this is not necessarily a full path
592 * name, and if it is relative, you won't know relative to what, you
594 * @param lineNo specifies the line number (0-based!) (this may be
595 * negative, in which case the file should be activated, but the line
596 * should NOT be changed).
597 * @param address specifies the exact address of the PC or is empty.
599 void activateFileLine(const QString
& file
, int lineNo
, const DbgAddr
& address
);
602 * This signal is emitted when a command that starts the inferior has
603 * been submitted to the debugger.
605 void inferiorRunning();
608 * This signal is emitted when all output from the debugger has been
609 * consumed and no more commands are in the queues.
611 void enterIdleState();
614 #endif // DBGDRIVER_H