3 // Copyright by Johannes Sixt
4 // This file is under GPL, the GNU General Public Licence
9 #include <qstringlist.h>
10 #include <klocale.h> /* i18n */
12 #include <stdlib.h> /* strtol, atoi */
13 #include <string.h> /* strcpy */
21 static void skipString(const char*& p
);
22 static void skipNested(const char*& s
, char opening
, char closing
);
23 static ExprValue
* parseVar(const char*& s
);
24 static bool parseName(const char*& s
, QString
& name
, VarTree::NameKind
& kind
);
25 static bool parseValue(const char*& s
, ExprValue
* variable
);
26 static bool parseNested(const char*& s
, ExprValue
* variable
);
27 static bool parseVarSeq(const char*& s
, ExprValue
* variable
);
28 static bool parseValueSeq(const char*& s
, ExprValue
* variable
);
30 #define PROMPT "(kdbg)"
32 #define PROMPT_LAST_CHAR ')' /* needed when searching for prompt string */
35 // TODO: make this cmd info stuff non-static to allow multiple
36 // simultaneous gdbs to run!
40 const char* fmt
; /* format string */
42 argNone
, argString
, argNum
,
43 argStringNum
, argNumString
,
49 // This is how the QString data print statement generally looks like.
50 // It is set by KDebugger via setPrintQStringDataCmd().
52 static const char printQStringStructFmt
[] =
53 // if the string data is junk, fail early
54 "print ($qstrunicode=($qstrdata=(%s))->unicode)?"
55 // print an array of shorts
56 "(*(unsigned short*)$qstrunicode)@"
58 "(($qstrlen=(unsigned int)($qstrdata->len))>100?100:$qstrlen)"
59 // if unicode data is 0, report a special value
62 static const char printQStringStructFmt
[] = "print (0?\"%s\":$kdbgundef)\n";
65 * The following array of commands must be sorted by the DC* values,
66 * because they are used as indices.
68 static GdbCmdInfo cmds
[] = {
69 { DCinitialize
, "", GdbCmdInfo::argNone
},
70 { DCtty
, "tty %s\n", GdbCmdInfo::argString
},
71 { DCexecutable
, "file \"%s\"\n", GdbCmdInfo::argString
},
72 { DCtargetremote
, "target remote %s\n", GdbCmdInfo::argString
},
73 { DCcorefile
, "core-file %s\n", GdbCmdInfo::argString
},
74 { DCattach
, "attach %s\n", GdbCmdInfo::argString
},
75 { DCinfolinemain
, "kdbg_infolinemain\n", GdbCmdInfo::argNone
},
76 { DCinfolocals
, "kdbg__alllocals\n", GdbCmdInfo::argNone
},
77 { DCinforegisters
, "info all-registers\n", GdbCmdInfo::argNone
},
78 { DCexamine
, "x %s %s\n", GdbCmdInfo::argString2
},
79 { DCinfoline
, "info line %s:%d\n", GdbCmdInfo::argStringNum
},
80 { DCdisassemble
, "disassemble %s %s\n", GdbCmdInfo::argString2
},
81 { DCsetargs
, "set args %s\n", GdbCmdInfo::argString
},
82 { DCsetenv
, "set env %s %s\n", GdbCmdInfo::argString2
},
83 { DCunsetenv
, "unset env %s\n", GdbCmdInfo::argString
},
84 { DCsetoption
, "setoption %s %d\n", GdbCmdInfo::argStringNum
},
85 { DCcd
, "cd %s\n", GdbCmdInfo::argString
},
86 { DCbt
, "bt\n", GdbCmdInfo::argNone
},
87 { DCrun
, "run\n", GdbCmdInfo::argNone
},
88 { DCcont
, "cont\n", GdbCmdInfo::argNone
},
89 { DCstep
, "step\n", GdbCmdInfo::argNone
},
90 { DCstepi
, "stepi\n", GdbCmdInfo::argNone
},
91 { DCnext
, "next\n", GdbCmdInfo::argNone
},
92 { DCnexti
, "nexti\n", GdbCmdInfo::argNone
},
93 { DCfinish
, "finish\n", GdbCmdInfo::argNone
},
94 { DCuntil
, "until %s:%d\n", GdbCmdInfo::argStringNum
},
95 { DCkill
, "kill\n", GdbCmdInfo::argNone
},
96 { DCbreaktext
, "break %s\n", GdbCmdInfo::argString
},
97 { DCbreakline
, "break %s:%d\n", GdbCmdInfo::argStringNum
},
98 { DCtbreakline
, "tbreak %s:%d\n", GdbCmdInfo::argStringNum
},
99 { DCbreakaddr
, "break *%s\n", GdbCmdInfo::argString
},
100 { DCtbreakaddr
, "tbreak *%s\n", GdbCmdInfo::argString
},
101 { DCwatchpoint
, "watch %s\n", GdbCmdInfo::argString
},
102 { DCdelete
, "delete %d\n", GdbCmdInfo::argNum
},
103 { DCenable
, "enable %d\n", GdbCmdInfo::argNum
},
104 { DCdisable
, "disable %d\n", GdbCmdInfo::argNum
},
105 { DCprint
, "print %s\n", GdbCmdInfo::argString
},
106 { DCprintDeref
, "print *(%s)\n", GdbCmdInfo::argString
},
107 { DCprintStruct
, "print %s\n", GdbCmdInfo::argString
},
108 { DCprintQStringStruct
, printQStringStructFmt
, GdbCmdInfo::argString
},
109 { DCframe
, "frame %d\n", GdbCmdInfo::argNum
},
110 { DCfindType
, "whatis %s\n", GdbCmdInfo::argString
},
111 { DCinfosharedlib
, "info sharedlibrary\n", GdbCmdInfo::argNone
},
112 { DCthread
, "thread %d\n", GdbCmdInfo::argNum
},
113 { DCinfothreads
, "info threads\n", GdbCmdInfo::argNone
},
114 { DCinfobreak
, "info breakpoints\n", GdbCmdInfo::argNone
},
115 { DCcondition
, "condition %d %s\n", GdbCmdInfo::argNumString
},
116 { DCsetpc
, "set variable $pc=%s\n", GdbCmdInfo::argString
},
117 { DCignore
, "ignore %d %d\n", GdbCmdInfo::argNum2
},
118 { DCprintWChar
, "print ($s=%s)?*$s@wcslen($s):0x0\n", GdbCmdInfo::argString
},
119 { DCsetvariable
, "set variable %s=%s\n", GdbCmdInfo::argString2
},
122 #define NUM_CMDS (int(sizeof(cmds)/sizeof(cmds[0])))
123 #define MAX_FMTLEN 200
125 GdbDriver::GdbDriver() :
127 m_gdbMajor(4), m_gdbMinor(16)
129 strcpy(m_prompt
, PROMPT
);
130 m_promptMinLen
= PROMPT_LEN
;
131 m_promptLastChar
= PROMPT_LAST_CHAR
;
134 // check command info array
136 for (int i
= 0; i
< NUM_CMDS
; i
++) {
137 // must be indexable by DbgCommand values, i.e. sorted by DbgCommand values
138 assert(i
== cmds
[i
].cmd
);
139 // a format string must be associated
140 assert(cmds
[i
].fmt
!= 0);
141 assert(strlen(cmds
[i
].fmt
) <= MAX_FMTLEN
);
142 // format string must match arg specification
143 switch (cmds
[i
].argsNeeded
) {
144 case GdbCmdInfo::argNone
:
145 assert(strchr(cmds
[i
].fmt
, '%') == 0);
147 case GdbCmdInfo::argString
:
148 perc
= strchr(cmds
[i
].fmt
, '%');
149 assert(perc
!= 0 && perc
[1] == 's');
150 assert(strchr(perc
+2, '%') == 0);
152 case GdbCmdInfo::argNum
:
153 perc
= strchr(cmds
[i
].fmt
, '%');
154 assert(perc
!= 0 && perc
[1] == 'd');
155 assert(strchr(perc
+2, '%') == 0);
157 case GdbCmdInfo::argStringNum
:
158 perc
= strchr(cmds
[i
].fmt
, '%');
159 assert(perc
!= 0 && perc
[1] == 's');
160 perc
= strchr(perc
+2, '%');
161 assert(perc
!= 0 && perc
[1] == 'd');
162 assert(strchr(perc
+2, '%') == 0);
164 case GdbCmdInfo::argNumString
:
165 perc
= strchr(cmds
[i
].fmt
, '%');
166 assert(perc
!= 0 && perc
[1] == 'd');
167 perc
= strchr(perc
+2, '%');
168 assert(perc
!= 0 && perc
[1] == 's');
169 assert(strchr(perc
+2, '%') == 0);
171 case GdbCmdInfo::argString2
:
172 perc
= strchr(cmds
[i
].fmt
, '%');
173 assert(perc
!= 0 && perc
[1] == 's');
174 perc
= strchr(perc
+2, '%');
175 assert(perc
!= 0 && perc
[1] == 's');
176 assert(strchr(perc
+2, '%') == 0);
178 case GdbCmdInfo::argNum2
:
179 perc
= strchr(cmds
[i
].fmt
, '%');
180 assert(perc
!= 0 && perc
[1] == 'd');
181 perc
= strchr(perc
+2, '%');
182 assert(perc
!= 0 && perc
[1] == 'd');
183 assert(strchr(perc
+2, '%') == 0);
187 assert(strlen(printQStringStructFmt
) <= MAX_FMTLEN
);
191 GdbDriver::~GdbDriver()
196 QString
GdbDriver::driverName() const
201 QString
GdbDriver::defaultGdb()
205 " --fullname" /* to get standard file names each time the prog stops */
206 " --nx"; /* do not execute initialization files */
209 QString
GdbDriver::defaultInvocation() const
211 if (m_defaultCmd
.isEmpty()) {
218 QStringList
GdbDriver::boolOptionList() const
221 return QStringList();
224 bool GdbDriver::startup(QString cmdStr
)
226 if (!DebuggerDriver::startup(cmdStr
))
229 static const char gdbInitialize
[] =
231 * Work around buggy gdbs that do command line editing even if they
232 * are not on a tty. The readline library echos every command back
233 * in this case, which is confusing for us.
237 "set print static-members off\n"
238 "set print asm-demangle on\n"
240 * Don't assume that program functions invoked from a watch expression
243 "set unwindonsignal on\n"
245 * Write a short macro that prints all locals: local variables and
246 * function arguments.
248 "define kdbg__alllocals\n"
249 "info locals\n" /* local vars supersede args with same name */
250 "info args\n" /* therefore, arguments must come last */
253 * Work around a bug in gdb-6.3: "info line main" crashes gdb.
255 "define kdbg_infolinemain\n"
259 // change prompt string and synchronize with gdb
260 "set prompt " PROMPT
"\n"
263 executeCmdString(DCinitialize
, gdbInitialize
, false);
265 // assume that QString::null is ok
266 cmds
[DCprintQStringStruct
].fmt
= printQStringStructFmt
;
271 void GdbDriver::commandFinished(CmdQueueItem
* cmd
)
273 // command string must be committed
274 if (!cmd
->m_committed
) {
276 TRACE("calling " + (__PRETTY_FUNCTION__
+ (" with uncommited command:\n\t" +
281 switch (cmd
->m_cmd
) {
283 // get version number from preamble
286 QRegExp
GDBVersion("\\nGDB [0-9]+\\.[0-9]+");
287 int offset
= GDBVersion
.match(m_output
, 0, &len
);
289 char* start
= m_output
+ offset
+ 5; // skip "\nGDB "
291 m_gdbMajor
= strtol(start
, &end
, 10);
292 m_gdbMinor
= strtol(end
+ 1, 0, 10); // skip "."
294 // nothing was parsed
299 // assume some default version (what would make sense?)
303 // use a feasible core-file command
304 if (m_gdbMajor
> 4 || (m_gdbMajor
== 4 && m_gdbMinor
>= 16)) {
305 cmds
[DCcorefile
].fmt
= "target core %s\n";
307 cmds
[DCcorefile
].fmt
= "core-file %s\n";
314 /* ok, the command is ready */
315 emit
commandReceived(cmd
, m_output
);
317 switch (cmd
->m_cmd
) {
336 * The --fullname option makes gdb send a special normalized sequence print
337 * each time the program stops and at some other points. The sequence has
338 * the form "\032\032filename:lineno:charoffset:(beg|middle):address".
340 void GdbDriver::parseMarker()
342 char* startMarker
= strstr(m_output
, "\032\032");
343 if (startMarker
== 0)
346 // extract the marker
348 TRACE(QString("found marker: ") + startMarker
);
349 char* endMarker
= strchr(startMarker
, '\n');
355 // extract filename and line number
356 static QRegExp
MarkerRE(":[0-9]+:[0-9]+:[begmidl]+:0x");
359 int lineNoStart
= MarkerRE
.match(startMarker
, 0, &len
);
360 if (lineNoStart
>= 0) {
361 int lineNo
= atoi(startMarker
+ lineNoStart
+1);
364 const char* addrStart
= startMarker
+ lineNoStart
+ len
- 2;
365 DbgAddr address
= QString(addrStart
).stripWhiteSpace();
367 // now show the window
368 startMarker
[lineNoStart
] = '\0'; /* split off file name */
369 emit
activateFileLine(startMarker
, lineNo
-1, address
);
375 * Escapes characters that might lead to problems when they appear on gdb's
378 static void normalizeStringArg(QString
& arg
)
381 * Remove trailing backslashes. This approach is a little simplistic,
382 * but we know that there is at the moment no case where a trailing
383 * backslash would make sense.
385 while (!arg
.isEmpty() && arg
[arg
.length()-1] == '\\') {
386 arg
= arg
.left(arg
.length()-1);
391 QString
GdbDriver::makeCmdString(DbgCommand cmd
, QString strArg
)
393 assert(cmd
>= 0 && cmd
< NUM_CMDS
);
394 assert(cmds
[cmd
].argsNeeded
== GdbCmdInfo::argString
);
396 normalizeStringArg(strArg
);
399 // need the working directory when parsing the output
400 m_programWD
= strArg
;
401 } else if (cmd
== DCsetargs
&& !m_redirect
.isEmpty()) {
403 * Use saved redirection. We prepend it in front of the user's
404 * arguments so that the user can override the redirections.
406 strArg
= m_redirect
+ " " + strArg
;
410 cmdString
.sprintf(cmds
[cmd
].fmt
, strArg
.latin1());
414 QString
GdbDriver::makeCmdString(DbgCommand cmd
, int intArg
)
416 assert(cmd
>= 0 && cmd
< NUM_CMDS
);
417 assert(cmds
[cmd
].argsNeeded
== GdbCmdInfo::argNum
);
420 cmdString
.sprintf(cmds
[cmd
].fmt
, intArg
);
424 QString
GdbDriver::makeCmdString(DbgCommand cmd
, QString strArg
, int intArg
)
426 assert(cmd
>= 0 && cmd
< NUM_CMDS
);
427 assert(cmds
[cmd
].argsNeeded
== GdbCmdInfo::argStringNum
||
428 cmds
[cmd
].argsNeeded
== GdbCmdInfo::argNumString
||
432 normalizeStringArg(strArg
);
439 * intArg specifies which channels should be redirected to
440 * /dev/null. It is a value or'ed together from RDNstdin,
441 * RDNstdout, RDNstderr. We store the value for a later DCsetargs
444 * Note: We rely on that after the DCtty a DCsetargs will follow,
445 * which will ultimately apply the redirection.
447 static const char* const runRedir
[8] = {
451 "</dev/null >/dev/null",
453 "</dev/null 2>/dev/null",
455 "</dev/null >/dev/null 2>&1"
457 if (strArg
.isEmpty())
458 intArg
= 7; /* failsafe if no tty */
459 m_redirect
= runRedir
[intArg
& 7];
461 return makeCmdString(DCtty
, strArg
); /* note: no problem if strArg empty */
464 if (cmd
== DCexamine
) {
465 // make a format specifier from the intArg
466 static const char size
[16] = {
467 '\0', 'b', 'h', 'w', 'g'
469 static const char format
[16] = {
470 '\0', 'x', 'd', 'u', 'o', 't',
471 'a', 'c', 'f', 's', 'i'
473 assert(MDTsizemask
== 0xf); /* lowest 4 bits */
474 assert(MDTformatmask
== 0xf0); /* next 4 bits */
475 int count
= 16; /* number of entities to print */
476 char sizeSpec
= size
[intArg
& MDTsizemask
];
477 char formatSpec
= format
[(intArg
& MDTformatmask
) >> 4];
478 assert(sizeSpec
!= '\0');
479 assert(formatSpec
!= '\0');
480 // adjust count such that 16 lines are printed
481 switch (intArg
& MDTformatmask
) {
482 case MDTstring
: case MDTinsn
:
483 break; /* no modification needed */
485 // all cases drop through:
486 switch (intArg
& MDTsizemask
) {
498 spec
.sprintf("/%d%c%c", count
, sizeSpec
, formatSpec
);
500 return makeCmdString(DCexamine
, spec
, strArg
);
503 if (cmds
[cmd
].argsNeeded
== GdbCmdInfo::argStringNum
)
505 // line numbers are zero-based
506 if (cmd
== DCuntil
|| cmd
== DCbreakline
||
507 cmd
== DCtbreakline
|| cmd
== DCinfoline
)
511 if (cmd
== DCinfoline
)
513 // must split off file name part
514 int slash
= strArg
.findRev('/');
516 strArg
= strArg
.right(strArg
.length()-slash
-1);
518 cmdString
.sprintf(cmds
[cmd
].fmt
, strArg
.latin1(), intArg
);
522 cmdString
.sprintf(cmds
[cmd
].fmt
, intArg
, strArg
.latin1());
527 QString
GdbDriver::makeCmdString(DbgCommand cmd
, QString strArg1
, QString strArg2
)
529 assert(cmd
>= 0 && cmd
< NUM_CMDS
);
530 assert(cmds
[cmd
].argsNeeded
== GdbCmdInfo::argString2
);
532 normalizeStringArg(strArg1
);
533 normalizeStringArg(strArg2
);
536 cmdString
.sprintf(cmds
[cmd
].fmt
, strArg1
.latin1(), strArg2
.latin1());
540 QString
GdbDriver::makeCmdString(DbgCommand cmd
, int intArg1
, int intArg2
)
542 assert(cmd
>= 0 && cmd
< NUM_CMDS
);
543 assert(cmds
[cmd
].argsNeeded
== GdbCmdInfo::argNum2
);
546 cmdString
.sprintf(cmds
[cmd
].fmt
, intArg1
, intArg2
);
550 CmdQueueItem
* GdbDriver::executeCmd(DbgCommand cmd
, bool clearLow
)
552 assert(cmd
>= 0 && cmd
< NUM_CMDS
);
553 assert(cmds
[cmd
].argsNeeded
== GdbCmdInfo::argNone
);
556 m_haveCoreFile
= false;
559 return executeCmdString(cmd
, cmds
[cmd
].fmt
, clearLow
);
562 CmdQueueItem
* GdbDriver::executeCmd(DbgCommand cmd
, QString strArg
,
565 return executeCmdString(cmd
, makeCmdString(cmd
, strArg
), clearLow
);
568 CmdQueueItem
* GdbDriver::executeCmd(DbgCommand cmd
, int intArg
,
572 return executeCmdString(cmd
, makeCmdString(cmd
, intArg
), clearLow
);
575 CmdQueueItem
* GdbDriver::executeCmd(DbgCommand cmd
, QString strArg
, int intArg
,
578 return executeCmdString(cmd
, makeCmdString(cmd
, strArg
, intArg
), clearLow
);
581 CmdQueueItem
* GdbDriver::executeCmd(DbgCommand cmd
, QString strArg1
, QString strArg2
,
584 return executeCmdString(cmd
, makeCmdString(cmd
, strArg1
, strArg2
), clearLow
);
587 CmdQueueItem
* GdbDriver::executeCmd(DbgCommand cmd
, int intArg1
, int intArg2
,
590 return executeCmdString(cmd
, makeCmdString(cmd
, intArg1
, intArg2
), clearLow
);
593 CmdQueueItem
* GdbDriver::queueCmd(DbgCommand cmd
, QueueMode mode
)
595 return queueCmdString(cmd
, cmds
[cmd
].fmt
, mode
);
598 CmdQueueItem
* GdbDriver::queueCmd(DbgCommand cmd
, QString strArg
,
601 return queueCmdString(cmd
, makeCmdString(cmd
, strArg
), mode
);
604 CmdQueueItem
* GdbDriver::queueCmd(DbgCommand cmd
, int intArg
,
607 return queueCmdString(cmd
, makeCmdString(cmd
, intArg
), mode
);
610 CmdQueueItem
* GdbDriver::queueCmd(DbgCommand cmd
, QString strArg
, int intArg
,
613 return queueCmdString(cmd
, makeCmdString(cmd
, strArg
, intArg
), mode
);
616 CmdQueueItem
* GdbDriver::queueCmd(DbgCommand cmd
, QString strArg1
, QString strArg2
,
619 return queueCmdString(cmd
, makeCmdString(cmd
, strArg1
, strArg2
), mode
);
622 void GdbDriver::terminate()
628 void GdbDriver::detachAndTerminate()
632 executeCmdString(DCinitialize
, "detach\nquit\n", true);
635 void GdbDriver::interruptInferior()
638 // remove accidentally queued commands
642 static bool isErrorExpr(const char* output
)
645 strncmp(output
, "Cannot access memory at", 23) == 0 ||
646 strncmp(output
, "Attempt to dereference a generic pointer", 40) == 0 ||
647 strncmp(output
, "Attempt to take contents of ", 28) == 0 ||
648 strncmp(output
, "Attempt to use a type name as an expression", 43) == 0 ||
649 strncmp(output
, "There is no member or method named", 34) == 0 ||
650 strncmp(output
, "A parse error in expression", 27) == 0 ||
651 strncmp(output
, "No symbol \"", 11) == 0 ||
652 strncmp(output
, "Internal error: ", 16) == 0;
656 * Returns true if the output is an error message. If wantErrorValue is
657 * true, a new ExprValue object is created and filled with the error message.
658 * If there are warnings, they are skipped and output points past the warnings
659 * on return (even if there \e are errors).
661 static bool parseErrorMessage(const char*& output
,
662 ExprValue
*& variable
, bool wantErrorValue
)
665 while (strncmp(output
, "warning:", 8) == 0)
667 char* end
= strchr(output
+8, '\n');
669 output
+= strlen(output
);
674 if (isErrorExpr(output
))
676 if (wantErrorValue
) {
677 // put the error message as value in the variable
678 variable
= new ExprValue(QString(), VarTree::NKplain
);
679 const char* endMsg
= strchr(output
, '\n');
681 endMsg
= output
+ strlen(output
);
682 variable
->m_value
= QString::fromLatin1(output
, endMsg
-output
);
691 #if QT_VERSION >= 300
701 void GdbDriver::setPrintQStringDataCmd(const char* cmd
)
703 // don't accept the command if it is empty
704 if (cmd
== 0 || *cmd
== '\0')
706 assert(strlen(cmd
) <= MAX_FMTLEN
);
707 cmds
[DCprintQStringStruct
].fmt
= cmd
;
710 ExprValue
* GdbDriver::parseQCharArray(const char* output
, bool wantErrorValue
, bool qt3like
)
712 ExprValue
* variable
= 0;
715 * Parse off white space. gdb sometimes prints white space first if the
716 * printed array leaded to an error.
718 while (isspace(*output
))
721 // special case: empty string (0 repetitions)
722 if (strncmp(output
, "Invalid number 0 of repetitions", 31) == 0)
724 variable
= new ExprValue(QString(), VarTree::NKplain
);
725 variable
->m_value
= "\"\"";
729 // check for error conditions
730 if (parseErrorMessage(output
, variable
, wantErrorValue
))
736 const char* p
= output
;
744 } while (isspace(*p
));
748 // this is the real data
754 enum { wasNothing
, wasChar
, wasRepeat
} lastThing
= wasNothing
;
756 * A matrix for separators between the individual "things"
757 * that are added to the string. The first index is a bool,
758 * the second index is from the enum above.
760 static const char* separator
[2][3] = {
761 { "\"", 0, ", \"" }, /* normal char is added */
762 { "'", "\", '", ", '" } /* repeated char is added */
765 while (isdigit(*p
)) {
768 unsigned short value
= (unsigned short) strtoul(p
, &end
, 0);
770 goto error
; /* huh? no valid digits */
771 // skip separator and search for a repeat count
773 while (isspace(*p
) || *p
== ',')
775 bool repeats
= strncmp(p
, "<repeats ", 9) == 0;
777 const char* start
= p
;
778 p
= strchr(p
+9, '>'); /* search end and advance */
782 repeatCount
= QString::fromLatin1(start
, p
-start
);
783 while (isspace(*p
) || *p
== ',')
786 // p is now at the next char (or the end)
788 // interpret the value as a QChar
789 // TODO: make cross-architecture compatible
795 (unsigned short&)ch
= value
;
799 ch
.setRow(c
.qch
.row
);
800 ch
.setCell(c
.qch
.cell
);
804 // escape a few frequently used characters
805 char escapeCode
= '\0';
806 switch (ch
.latin1()) {
807 case '\n': escapeCode
= 'n'; break;
808 case '\r': escapeCode
= 'r'; break;
809 case '\t': escapeCode
= 't'; break;
810 case '\b': escapeCode
= 'b'; break;
811 case '\"': escapeCode
= '\"'; break;
812 case '\\': escapeCode
= '\\'; break;
813 case '\0': if (value
== 0) { escapeCode
= '0'; } break;
817 result
+= separator
[repeats
][lastThing
];
819 if (escapeCode
!= '\0') {
825 // fixup repeat count and lastThing
828 result
+= repeatCount
;
829 lastThing
= wasRepeat
;
838 if (lastThing
== wasChar
)
842 variable
= new ExprValue(QString(), VarTree::NKplain
);
843 variable
->m_value
= result
;
845 else if (strncmp(p
, "true", 4) == 0)
847 variable
= new ExprValue(QString(), VarTree::NKplain
);
848 variable
->m_value
= "QString::null";
850 else if (strncmp(p
, "false", 5) == 0)
852 variable
= new ExprValue(QString(), VarTree::NKplain
);
853 variable
->m_value
= "(null)";
860 if (wantErrorValue
) {
861 variable
= new ExprValue(QString(), VarTree::NKplain
);
862 variable
->m_value
= "internal parse error";
867 static ExprValue
* parseVar(const char*& s
)
876 VarTree::NameKind kind
;
878 * Detect anonymouse struct values: The 'name =' part is missing:
879 * s = { a = 1, { b = 2 }}
880 * Note that this detection works only inside structs when the anonymous
881 * struct is not the first member:
882 * s = {{ a = 1 }, b = 2}
883 * This is misparsed (by parseNested()) because it is mistakenly
884 * interprets the second opening brace as the first element of an array
889 name
= i18n("<anonymous struct or union>");
890 kind
= VarTree::NKanonymous
;
894 if (!parseName(p
, name
, kind
)) {
902 TRACE(QString().sprintf("parse error: = not found after %s", (const char*)name
));
905 // skip the '=' and more whitespace
911 ExprValue
* variable
= new ExprValue(name
, kind
);
913 if (!parseValue(p
, variable
)) {
921 static void skipNested(const char*& s
, char opening
, char closing
)
925 // parse a nested type
929 * Search for next matching `closing' char, skipping nested pairs of
930 * `opening' and `closing'.
932 while (*p
&& nest
> 0) {
935 } else if (*p
== closing
) {
941 TRACE(QString().sprintf("parse error: mismatching %c%c at %-20.20s", opening
, closing
, s
));
947 * This function skips text that is delimited by nested angle bracktes, '<>'.
948 * A complication arises because the delimited text can contain the names of
949 * operator<<, operator>>, operator<, and operator>, which have to be treated
950 * specially so that they do not count towards the nesting of '<>'.
951 * This function assumes that the delimited text does not contain strings.
953 static void skipNestedAngles(const char*& s
)
958 p
++; // skip the initial '<'
959 while (*p
&& nest
> 0)
961 // Below we can check for p-s >= 9 instead of 8 because
962 // *s is '<' and cannot be part of "operator".
965 if (p
-s
>= 9 && strncmp(p
-8, "operator", 8) == 0) {
974 if (p
-s
>= 9 && strncmp(p
-8, "operator", 8) == 0) {
984 TRACE(QString().sprintf("parse error: mismatching <> at %-20.20s", s
));
990 * Find the end of line that is not inside braces
992 static void findEnd(const char*& s
)
995 while (*p
&& *p
!='\n') {
996 while (*p
&& *p
!='\n' && *p
!='{')
1000 skipNested(p
, '{', '}'); p
--;
1006 static bool isNumberish(const char ch
)
1008 return (ch
>='0' && ch
<='9') || ch
=='.' || ch
=='x';
1011 void skipString(const char*& p
)
1016 while (*p
!= quote
) {
1018 // skip escaped character
1019 // no special treatment for octal values necessary
1022 // simply return if no more characters
1030 * Strings can consist of several parts, some of which contain repeated
1033 if (quote
== '\'') {
1034 // look ahaead for <repeats 123 times>
1035 const char* q
= p
+1;
1038 if (strncmp(q
, "<repeats ", 9) == 0) {
1040 while (*p
!= '\0' && *p
!= '>')
1043 p
++; /* skip the '>' */
1047 // is the string continued?
1049 // look ahead for another quote
1050 const char* q
= p
+1;
1053 if (*q
== '"' || *q
== '\'') {
1059 /* very long strings are followed by `...' */
1060 if (*p
== '.' && p
[1] == '.' && p
[2] == '.') {
1065 static void skipNestedWithString(const char*& s
, char opening
, char closing
)
1069 // parse a nested expression
1073 * Search for next matching `closing' char, skipping nested pairs of
1074 * `opening' and `closing' as well as strings.
1076 while (*p
&& nest
> 0) {
1077 if (*p
== opening
) {
1079 } else if (*p
== closing
) {
1081 } else if (*p
== '\'' || *p
== '\"') {
1088 TRACE(QString().sprintf("parse error: mismatching %c%c at %-20.20s", opening
, closing
, s
));
1093 inline void skipName(const char*& p
)
1095 // allow : (for enumeration values) and $ and . (for _vtbl.)
1096 while (isalnum(*p
) || *p
== '_' || *p
== ':' || *p
== '$' || *p
== '.')
1100 static bool parseName(const char*& s
, QString
& name
, VarTree::NameKind
& kind
)
1102 kind
= VarTree::NKplain
;
1105 // examples of names:
1108 // <string<a,b<c>,7> >
1111 skipNestedAngles(p
);
1112 name
= QString::fromLatin1(s
, p
- s
);
1113 kind
= VarTree::NKtype
;
1117 // name, which might be "static"; allow dot for "_vtbl."
1120 TRACE(QString().sprintf("parse error: not a name %-20.20s", s
));
1124 if (len
== 6 && strncmp(s
, "static", 6) == 0) {
1125 kind
= VarTree::NKstatic
;
1127 // its a static variable, name comes now
1133 TRACE(QString().sprintf("parse error: not a name after static %-20.20s", s
));
1138 name
= QString::fromLatin1(s
, len
);
1140 // return the new position
1145 static bool parseValue(const char*& s
, ExprValue
* variable
)
1147 variable
->m_value
= "";
1151 // Sometimes we find the following output:
1152 // {<text variable, no debug info>} 0x40012000 <access>
1153 // {<data variable, no debug info>}
1154 // {<variable (not text or data), no debug info>}
1155 if (strncmp(s
, "{<text variable, ", 17) == 0 ||
1156 strncmp(s
, "{<data variable, ", 17) == 0 ||
1157 strncmp(s
, "{<variable (not text or data), ", 31) == 0)
1159 const char* start
= s
;
1160 skipNested(s
, '{', '}');
1161 variable
->m_value
= QString::fromLatin1(start
, s
-start
);
1162 variable
->m_value
+= ' '; // add only a single space
1170 if (!parseNested(s
, variable
)) {
1173 // must be the closing brace
1175 TRACE("parse error: missing } of " + variable
->m_name
);
1179 // final white space
1184 // examples of leaf values (cannot be the empty string):
1190 // (DwContentType&) @0x8123456: {...}
1194 // 0x823abc <Array<int> virtual table>
1195 // (void (*)()) 0x8048480 <f(E *, char)>
1198 // &parseP (HTMLClueV *, char *)
1199 // Variable "x" is not available.
1200 // The value of variable 'x' is distributed...
1201 // -nan(0xfffff081defa0)
1208 skipNested(p
, '(', ')');
1212 variable
->m_value
= QString::fromLatin1(s
, p
- s
);
1215 bool reference
= false;
1217 // skip reference marker
1221 const char* start
= p
;
1225 // some values consist of more than one token
1226 bool checkMultiPart
= false;
1228 if (p
[0] == '0' && p
[1] == 'x') {
1231 while (isxdigit(*p
))
1235 * Assume this is a pointer, but only if it's not a reference, since
1236 * references can't be expanded.
1239 variable
->m_varKind
= VarTree::VKpointer
;
1242 * References are followed by a colon, in which case we'll
1243 * find the value following the reference address.
1248 // Paranoia. (Can this happen, i.e. reference not followed by ':'?)
1252 checkMultiPart
= true;
1253 } else if (isdigit(*p
)) {
1254 // parse decimal number, possibly a float
1257 if (*p
== '.') { /* TODO: obey i18n? */
1258 // In long arrays an integer may be followed by '...'.
1259 // We test for this situation and don't gobble the '...'.
1260 if (p
[1] != '.' || p
[0] != '.') {
1267 if (*p
== 'e' || *p
== 'E') {
1270 if (*p
== '-' || *p
== '+')
1276 // for char variables there is the char, eg. 10 '\n'
1277 checkMultiPart
= true;
1278 } else if (*p
== '<') {
1279 // e.g. <optimized out>
1280 skipNestedAngles(p
);
1281 } else if (*p
== '"' || *p
== '\'') {
1282 // character may have multipart: '\000' <repeats 11 times>
1283 checkMultiPart
= *p
== '\'';
1286 } else if (*p
== '&') {
1290 while (isspace(*p
)) {
1294 skipNested(p
, '(', ')');
1296 } else if (strncmp(p
, "Variable \"", 10) == 0) {
1297 // Variable "x" is not available.
1298 p
+= 10; // skip to "
1300 if (strncmp(p
, "\" is not available.", 19) == 0) {
1303 } else if (strncmp(p
, "The value of variable '", 23) == 0) {
1306 const char* e
= strchr(p
, '.');
1313 // must be an enumeration value
1315 // hmm, not necessarily: nan (floating point Not a Number)
1316 // is followed by a number in ()
1318 skipNested(p
, '(', ')');
1320 variable
->m_value
+= QString::fromLatin1(start
, p
- start
);
1322 // remove line breaks from the value; this is ok since
1323 // string values never contain a literal line break
1324 variable
->m_value
.replace('\n', ' ');
1326 if (checkMultiPart
) {
1330 // may be followed by a string or <...>
1333 if (*p
== '"' || *p
== '\'') {
1335 } else if (*p
== '<') {
1336 // if this value is part of an array, it might be followed
1337 // by <repeats 15 times>, which we don't skip here
1338 if (strncmp(p
, "<repeats ", 9) != 0)
1339 skipNestedAngles(p
);
1342 // there is always a blank before the string,
1343 // which we will include in the final string value
1344 variable
->m_value
+= QString::fromLatin1(start
-1, (p
- start
)+1);
1345 // if this was a pointer, reset that flag since we
1346 // now got the value
1347 variable
->m_varKind
= VarTree::VKsimple
;
1351 if (variable
->m_value
.length() == 0) {
1352 TRACE("parse error: no value for " + variable
->m_name
);
1356 // final white space
1362 * If this was a reference, the value follows. It might even be a
1363 * composite variable!
1373 static bool parseNested(const char*& s
, ExprValue
* variable
)
1375 // could be a structure or an array
1380 bool isStruct
= false;
1382 * If there is a name followed by an = or an < -- which starts a type
1383 * name -- or "static", it is a structure
1385 if (*p
== '<' || *p
== '}') {
1387 } else if (strncmp(p
, "static ", 7) == 0) {
1389 } else if (isalpha(*p
) || *p
== '_' || *p
== '$') {
1390 // look ahead for a comma after the name
1397 p
= s
; /* rescan the name */
1400 if (!parseVarSeq(p
, variable
)) {
1403 variable
->m_varKind
= VarTree::VKstruct
;
1405 if (!parseValueSeq(p
, variable
)) {
1408 variable
->m_varKind
= VarTree::VKarray
;
1414 static bool parseVarSeq(const char*& s
, ExprValue
* variable
)
1416 // parse a comma-separated sequence of variables
1417 ExprValue
* var
= variable
; /* var != 0 to indicate success if empty seq */
1421 if (strncmp(s
, "<No data fields>}", 17) == 0)
1423 // no member variables, so break out immediately
1424 s
+= 16; /* go to the closing brace */
1429 break; /* syntax error */
1430 variable
->appendChild(var
);
1433 // skip the comma and whitespace
1441 static bool parseValueSeq(const char*& s
, ExprValue
* variable
)
1443 // parse a comma-separated sequence of variables
1448 name
.sprintf("[%d]", index
);
1449 ExprValue
* var
= new ExprValue(name
, VarTree::NKplain
);
1450 good
= parseValue(s
, var
);
1455 // a value may be followed by "<repeats 45 times>"
1456 if (strncmp(s
, "<repeats ", 9) == 0) {
1459 int l
= strtol(s
, &end
, 10);
1460 if (end
== s
|| strncmp(end
, " times>", 7) != 0) {
1461 // should not happen
1465 TRACE(QString().sprintf("found <repeats %d times> in array", l
));
1466 // replace name and advance index
1467 name
.sprintf("[%d .. %d]", index
, index
+l
-1);
1470 // skip " times>" and space
1472 // possible final space
1478 variable
->appendChild(var
);
1479 // long arrays may be terminated by '...'
1480 if (strncmp(s
, "...", 3) == 0) {
1482 ExprValue
* var
= new ExprValue("...", VarTree::NKplain
);
1483 var
->m_value
= i18n("<additional entries of the array suppressed>");
1484 variable
->appendChild(var
);
1490 // skip the comma and whitespace
1494 // sometimes there is a closing brace after a comma
1502 * Parses a stack frame.
1504 static void parseFrameInfo(const char*& s
, QString
& func
,
1505 QString
& file
, int& lineNo
, DbgAddr
& address
)
1509 // next may be a hexadecimal address
1511 const char* start
= p
;
1515 while (isxdigit(*p
))
1517 address
= QString::fromLatin1(start
, p
-start
);
1518 if (strncmp(p
, " in ", 4) == 0)
1521 address
= DbgAddr();
1523 const char* start
= p
;
1524 // check for special signal handler frame
1525 if (strncmp(p
, "<signal handler called>", 23) == 0) {
1526 func
= QString::fromLatin1(start
, 23);
1536 * Skip the function name. It is terminated by a left parenthesis
1537 * which does not delimit "(anonymous namespace)" and which is
1538 * outside the angle brackets <> of template parameter lists
1539 * and is preceded by a space.
1544 // check for operator<< and operator<
1545 if (p
-start
>= 8 && strncmp(p
-8, "operator", 8) == 0)
1553 // skip template parameter list
1554 skipNestedAngles(p
);
1556 } else if (*p
== '(') {
1557 // this skips "(anonymous namespace)" as well as the formal
1558 // parameter list of the containing function if this is a member
1559 // of a nested class
1560 skipNestedWithString(p
, '(', ')');
1561 } else if (*p
== ' ') {
1564 break; // parameter list found
1578 * Skip parameters. But notice that for complicated conversion
1579 * functions (eg. "operator int(**)()()", ie. convert to pointer to
1580 * pointer to function) as well as operator()(...) we have to skip
1581 * additional pairs of parentheses. Furthermore, recent gdbs write the
1582 * demangled name followed by the arguments in a pair of parentheses,
1583 * where the demangled name can end in "const".
1586 skipNestedWithString(p
, '(', ')');
1590 if (strncmp(p
, "const", 5) == 0) {
1595 } while (*p
== '(');
1597 // check for file position
1598 if (strncmp(p
, "at ", 3) == 0) {
1600 const char* fileStart
= p
;
1601 // go for the end of the line
1602 while (*p
!= '\0' && *p
!= '\n')
1604 // search back for colon
1605 const char* colon
= p
;
1608 } while (*colon
!= ':');
1609 file
= QString::fromLatin1(fileStart
, colon
-fileStart
);
1610 lineNo
= atoi(colon
+1)-1;
1615 // check for "from shared lib"
1616 if (strncmp(p
, "from ", 5) == 0) {
1618 // go for the end of the line
1619 while (*p
!= '\0' && *p
!= '\n')
1628 // construct the function name (including file info)
1632 func
= QString::fromLatin1(start
, p
-start
-1); /* don't include \n */
1637 * Replace \n (and whitespace around it) in func by a blank. We cannot
1638 * use QString::simplifyWhiteSpace() for this because this would also
1639 * simplify space that belongs to a string arguments that gdb sometimes
1640 * prints in the argument lists of the function.
1642 ASSERT(!isspace(func
[0].latin1())); /* there must be non-white before first \n */
1644 while ((nl
= func
.find('\n', nl
)) >= 0) {
1645 // search back to the beginning of the whitespace
1646 int startWhite
= nl
;
1649 } while (isspace(func
[startWhite
].latin1()));
1651 // search forward to the end of the whitespace
1654 } while (isspace(func
[nl
].latin1()));
1656 func
.replace(startWhite
, nl
-startWhite
, " ");
1657 /* continue searching for more \n's at this place: */
1664 * Parses a stack frame including its frame number
1666 static bool parseFrame(const char*& s
, int& frameNo
, QString
& func
,
1667 QString
& file
, int& lineNo
, DbgAddr
& address
)
1670 // #1 0x8048881 in Dl::Dl (this=0xbffff418, r=3214) at testfile.cpp:72
1671 // Breakpoint 3, Cl::f(int) const (this=0xbffff3c0, x=17) at testfile.cpp:155
1673 // must start with a hash mark followed by number
1674 // or with "Breakpoint " followed by number and comma
1678 s
++; /* skip the hash mark */
1679 } else if (strncmp(s
, "Breakpoint ", 11) == 0) {
1680 if (!isdigit(s
[11]))
1682 s
+= 11; /* skip "Breakpoint" */
1691 while (isspace(*s
) || *s
== ',')
1693 parseFrameInfo(s
, func
, file
, lineNo
, address
);
1697 void GdbDriver::parseBackTrace(const char* output
, QList
<StackFrame
>& stack
)
1700 int lineNo
, frameNo
;
1703 while (::parseFrame(output
, frameNo
, func
, file
, lineNo
, address
)) {
1704 StackFrame
* frm
= new StackFrame
;
1705 frm
->frameNo
= frameNo
;
1706 frm
->fileName
= file
;
1707 frm
->lineNo
= lineNo
;
1708 frm
->address
= address
;
1709 frm
->var
= new ExprValue(func
, VarTree::NKplain
);
1714 bool GdbDriver::parseFrameChange(const char* output
, int& frameNo
,
1715 QString
& file
, int& lineNo
, DbgAddr
& address
)
1718 return ::parseFrame(output
, frameNo
, func
, file
, lineNo
, address
);
1722 bool GdbDriver::parseBreakList(const char* output
, QList
<Breakpoint
>& brks
)
1724 // skip first line, which is the headline
1725 const char* p
= strchr(output
, '\n');
1736 uint ignoreCount
= 0;
1740 while (*p
!= '\0') {
1742 long bpNum
= strtol(p
, &dummy
, 10); /* don't care about overflows */
1747 Breakpoint::Type bpType
= Breakpoint::breakpoint
;
1748 if (strncmp(p
, "breakpoint", 10) == 0) {
1750 } else if (strncmp(p
, "hw watchpoint", 13) == 0) {
1751 bpType
= Breakpoint::watchpoint
;
1753 } else if (strncmp(p
, "watchpoint", 10) == 0) {
1754 bpType
= Breakpoint::watchpoint
;
1763 while (*p
!= '\0' && !isspace(*p
)) /* "keep" or "del" */
1771 while (*p
!= '\0' && !isspace(*p
)) /* "y" or "n" */
1777 // the address, if present
1778 if (bpType
== Breakpoint::breakpoint
&&
1779 strncmp(p
, "0x", 2) == 0)
1781 const char* start
= p
;
1782 while (*p
!= '\0' && !isspace(*p
))
1784 address
= QString::fromLatin1(start
, p
-start
);
1785 while (isspace(*p
) && *p
!= '\n')
1790 address
= QString();
1792 // remainder is location, hit and ignore count, condition
1795 condition
= QString();
1796 end
= strchr(p
, '\n');
1799 p
+= location
.length();
1801 location
= QString::fromLatin1(p
, end
-p
).stripWhiteSpace();
1802 p
= end
+1; /* skip over \n */
1805 // may be continued in next line
1806 while (isspace(*p
)) { /* p points to beginning of line */
1807 // skip white space at beginning of line
1812 end
= strchr(p
, '\n');
1816 if (strncmp(p
, "breakpoint already hit", 22) == 0) {
1817 // extract the hit count
1819 hits
= strtol(p
, &dummy
, 10);
1820 TRACE(QString().sprintf("hit count %d", hits
));
1821 } else if (strncmp(p
, "stop only if ", 13) == 0) {
1822 // extract condition
1824 condition
= QString::fromLatin1(p
, end
-p
).stripWhiteSpace();
1825 TRACE("condition: "+condition
);
1826 } else if (strncmp(p
, "ignore next ", 12) == 0) {
1827 // extract ignore count
1829 ignoreCount
= strtol(p
, &dummy
, 10);
1830 TRACE(QString().sprintf("ignore count %d", ignoreCount
));
1832 // indeed a continuation
1833 location
+= " " + QString::fromLatin1(p
, end
-p
).stripWhiteSpace();
1837 p
++; /* skip '\n' */
1839 Breakpoint
* bp
= new Breakpoint
;
1842 bp
->temporary
= disp
== 'd';
1843 bp
->enabled
= enable
== 'y';
1844 bp
->location
= location
;
1845 bp
->address
= address
;
1846 bp
->hitCount
= hits
;
1847 bp
->ignoreCount
= ignoreCount
;
1848 bp
->condition
= condition
;
1854 bool GdbDriver::parseThreadList(const char* output
, QList
<ThreadInfo
>& threads
)
1856 if (strcmp(output
, "\n") == 0 || strncmp(output
, "No stack.", 9) == 0) {
1867 const char* p
= output
;
1868 while (*p
!= '\0') {
1869 // seach look for thread id, watching out for the focus indicator
1870 bool hasFocus
= false;
1871 while (isspace(*p
)) /* may be \n from prev line: see "No stack" below */
1876 // there follows only whitespace
1879 id
= strtol(p
, &end
, 10);
1881 // syntax error: no number found; bail out
1891 * Now follows the thread's SYSTAG. It is terminated by two blanks.
1893 end
= strstr(p
, " ");
1895 // syntax error; bail out
1898 systag
= QString::fromLatin1(p
, end
-p
);
1902 * Now follows a standard stack frame. Sometimes, however, gdb
1903 * catches a thread at an instant where it doesn't have a stack.
1905 if (strncmp(p
, "[No stack.]", 11) != 0) {
1906 ::parseFrameInfo(p
, func
, file
, lineNo
, address
);
1908 func
= "[No stack]";
1911 address
= QString();
1912 p
+= 11; /* \n is skipped above */
1915 ThreadInfo
* thr
= new ThreadInfo
;
1917 thr
->threadName
= systag
;
1918 thr
->hasFocus
= hasFocus
;
1919 thr
->function
= func
;
1920 thr
->fileName
= file
;
1921 thr
->lineNo
= lineNo
;
1922 thr
->address
= address
;
1923 threads
.append(thr
);
1928 static bool parseNewBreakpoint(const char* o
, int& id
,
1929 QString
& file
, int& lineNo
, QString
& address
);
1930 static bool parseNewWatchpoint(const char* o
, int& id
,
1933 bool GdbDriver::parseBreakpoint(const char* output
, int& id
,
1934 QString
& file
, int& lineNo
, QString
& address
)
1936 const char* o
= output
;
1937 // skip lines of that begin with "(Cannot find"
1938 while (strncmp(o
, "(Cannot find", 12) == 0) {
1939 o
= strchr(o
, '\n');
1942 o
++; /* skip newline */
1945 if (strncmp(o
, "Breakpoint ", 11) == 0) {
1946 output
+= 11; /* skip "Breakpoint " */
1947 return ::parseNewBreakpoint(output
, id
, file
, lineNo
, address
);
1948 } else if (strncmp(o
, "Hardware watchpoint ", 20) == 0) {
1950 return ::parseNewWatchpoint(output
, id
, address
);
1951 } else if (strncmp(o
, "Watchpoint ", 11) == 0) {
1953 return ::parseNewWatchpoint(output
, id
, address
);
1958 static bool parseNewBreakpoint(const char* o
, int& id
,
1959 QString
& file
, int& lineNo
, QString
& address
)
1963 id
= strtoul(o
, &p
, 10);
1967 // check for the address
1968 if (strncmp(p
, " at 0x", 6) == 0) {
1969 char* start
= p
+4; /* skip " at ", but not 0x */
1971 while (isxdigit(*p
))
1973 address
= QString::fromLatin1(start
, p
-start
);
1977 char* fileStart
= strstr(p
, "file ");
1979 return !address
.isEmpty(); /* parse error only if there's no address */
1983 char* numStart
= strstr(fileStart
, ", line ");
1984 QString fileName
= QString::fromLatin1(fileStart
, numStart
-fileStart
);
1986 int line
= strtoul(numStart
, &p
, 10);
1991 lineNo
= line
-1; /* zero-based! */
1995 static bool parseNewWatchpoint(const char* o
, int& id
,
2000 id
= strtoul(o
, &p
, 10);
2004 if (strncmp(p
, ": ", 2) != 0)
2008 // all the rest on the line is the expression
2009 expr
= QString::fromLatin1(p
, strlen(p
)).stripWhiteSpace();
2013 void GdbDriver::parseLocals(const char* output
, QList
<ExprValue
>& newVars
)
2015 // check for possible error conditions
2016 if (strncmp(output
, "No symbol table", 15) == 0)
2021 while (*output
!= '\0') {
2022 while (isspace(*output
))
2024 if (*output
== '\0')
2026 // skip occurrences of "No locals" and "No args"
2027 if (strncmp(output
, "No locals", 9) == 0 ||
2028 strncmp(output
, "No arguments", 12) == 0)
2030 output
= strchr(output
, '\n');
2037 ExprValue
* variable
= parseVar(output
);
2038 if (variable
== 0) {
2041 // do not add duplicates
2042 for (ExprValue
* o
= newVars
.first(); o
!= 0; o
= newVars
.next()) {
2043 if (o
->m_name
== variable
->m_name
) {
2048 newVars
.append(variable
);
2053 ExprValue
* GdbDriver::parsePrintExpr(const char* output
, bool wantErrorValue
)
2056 // check for error conditions
2057 if (!parseErrorMessage(output
, var
, wantErrorValue
))
2059 // parse the variable
2060 var
= parseVar(output
);
2065 bool GdbDriver::parseChangeWD(const char* output
, QString
& message
)
2067 bool isGood
= false;
2068 message
= QString(output
).simplifyWhiteSpace();
2069 if (message
.isEmpty()) {
2070 message
= i18n("New working directory: ") + m_programWD
;
2076 bool GdbDriver::parseChangeExecutable(const char* output
, QString
& message
)
2080 m_haveCoreFile
= false;
2083 * Lines starting with the following do not indicate errors:
2084 * Using host libthread_db
2085 * (no debugging symbols found)
2087 while (strncmp(output
, "Using host libthread_db", 23) == 0 ||
2088 strncmp(output
, "(no debugging symbols found)", 28) == 0)
2090 // this line is good, go to the next one
2091 const char* end
= strchr(output
, '\n');
2093 output
+= strlen(output
);
2099 * If we've parsed all lines, there was no error.
2101 return output
[0] == '\0';
2104 bool GdbDriver::parseCoreFile(const char* output
)
2106 // if command succeeded, gdb emits a line starting with "#0 "
2107 m_haveCoreFile
= strstr(output
, "\n#0 ") != 0;
2108 return m_haveCoreFile
;
2111 uint
GdbDriver::parseProgramStopped(const char* output
, QString
& message
)
2113 // optionally: "program changed, rereading symbols",
2115 // "Program exited normally"
2116 // "Program terminated with wignal SIGSEGV"
2117 // "Program received signal SIGINT" or other signal
2120 // go through the output, line by line, checking what we have
2121 const char* start
= output
- 1;
2122 uint flags
= SFprogramActive
;
2123 message
= QString();
2125 start
++; /* skip '\n' */
2127 if (strncmp(start
, "Program ", 8) == 0 ||
2128 strncmp(start
, "ptrace: ", 8) == 0) {
2130 * When we receive a signal, the program remains active.
2132 * Special: If we "stopped" in a corefile, the string "Program
2133 * terminated with signal"... is displayed. (Normally, we see
2134 * "Program received signal"... when a signal happens.)
2136 if (strncmp(start
, "Program exited", 14) == 0 ||
2137 (strncmp(start
, "Program terminated", 18) == 0 && !m_haveCoreFile
) ||
2138 strncmp(start
, "ptrace: ", 8) == 0)
2140 flags
&= ~SFprogramActive
;
2144 const char* endOfMessage
= strchr(start
, '\n');
2145 if (endOfMessage
== 0)
2146 endOfMessage
= start
+ strlen(start
);
2147 message
= QString::fromLatin1(start
, endOfMessage
-start
);
2148 } else if (strncmp(start
, "Breakpoint ", 11) == 0) {
2150 * We stopped at a (permanent) breakpoint (gdb doesn't tell us
2151 * that it stopped at a temporary breakpoint).
2153 flags
|= SFrefreshBreak
;
2154 } else if (strstr(start
, "re-reading symbols.") != 0) {
2155 flags
|= SFrefreshSource
;
2158 // next line, please
2159 start
= strchr(start
, '\n');
2160 } while (start
!= 0);
2163 * Gdb only notices when new threads have appeared, but not when a
2164 * thread finishes. So we always have to assume that the list of
2165 * threads has changed.
2167 flags
|= SFrefreshThreads
;
2172 void GdbDriver::parseSharedLibs(const char* output
, QStrList
& shlibs
)
2174 if (strncmp(output
, "No shared libraries loaded", 26) == 0)
2177 // parse the table of shared libraries
2179 // strip off head line
2180 output
= strchr(output
, '\n');
2183 output
++; /* skip '\n' */
2185 while (*output
!= '\0') {
2186 // format of a line is
2187 // 0x404c5000 0x40580d90 Yes /lib/libc.so.5
2188 // 3 blocks of non-space followed by space
2189 for (int i
= 0; *output
!= '\0' && i
< 3; i
++) {
2190 while (*output
!= '\0' && !isspace(*output
)) { /* non-space */
2193 while (isspace(*output
)) { /* space */
2197 if (*output
== '\0')
2199 const char* start
= output
;
2200 output
= strchr(output
, '\n');
2202 output
= start
+ strlen(start
);
2203 shlibName
= QString::fromLatin1(start
, output
-start
);
2204 if (*output
!= '\0')
2206 shlibs
.append(shlibName
);
2207 TRACE("found shared lib " + shlibName
);
2211 bool GdbDriver::parseFindType(const char* output
, QString
& type
)
2213 if (strncmp(output
, "type = ", 7) != 0)
2217 * Everything else is the type. We strip off any leading "const" and any
2218 * trailing "&" on the grounds that neither affects the decoding of the
2219 * object. We also strip off all white-space from the type.
2222 if (strncmp(output
, "const ", 6) == 0)
2225 type
.replace(QRegExp("\\s+"), "");
2226 if (type
.endsWith("&"))
2227 type
.truncate(type
.length() - 1);
2231 void GdbDriver::parseRegisters(const char* output
, QList
<RegisterInfo
>& regs
)
2233 if (strncmp(output
, "The program has no registers now", 32) == 0) {
2240 // parse register values
2241 while (*output
!= '\0')
2243 // skip space at the start of the line
2244 while (isspace(*output
))
2248 const char* start
= output
;
2249 while (*output
!= '\0' && !isspace(*output
))
2251 if (*output
== '\0')
2253 regName
= QString::fromLatin1(start
, output
-start
);
2256 while (isspace(*output
))
2259 RegisterInfo
* reg
= new RegisterInfo
;
2260 reg
->regName
= regName
;
2263 * If we find a brace now, this is a vector register. We look for
2264 * the closing brace and treat the result as cooked value.
2269 skipNested(output
, '{', '}');
2270 value
= QString::fromLatin1(start
, output
-start
).simplifyWhiteSpace();
2271 // skip space, but not the end of line
2272 while (isspace(*output
) && *output
!= '\n')
2274 // get rid of the braces at the begining and the end
2276 if (value
[value
.length()-1] == '}') {
2277 value
= value
.left(value
.length()-1);
2279 // gdb 5.3 doesn't print a separate set of raw values
2280 if (*output
== '{') {
2281 // another set of vector follows
2282 // what we have so far is the raw value
2283 reg
->rawValue
= value
;
2286 skipNested(output
, '{', '}');
2287 value
= QString::fromLatin1(start
, output
-start
).simplifyWhiteSpace();
2290 // find first type that does not have an array, this is the RAW value
2291 const char* end
=start
;
2293 const char* cur
=start
;
2295 while (*cur
!= '=' && cur
<end
)
2298 while (isspace(*cur
) && cur
<end
)
2300 if (isNumberish(*cur
)) {
2302 while (*end
&& (*end
!='}') && (*end
!=',') && (*end
!='\n'))
2304 QString rawValue
= QString::fromLatin1(cur
, end
-cur
).simplifyWhiteSpace();
2305 reg
->rawValue
= rawValue
;
2307 if (rawValue
.left(2)=="0x") {
2308 // ok we have a raw value, now get it's type
2310 while (isspace(*end
) || *end
=='=') end
--;
2313 while (*cur
!='{' && *cur
!=' ')
2316 reg
->type
=QString::fromLatin1(cur
, end
-cur
);
2323 // skip to the end of line
2324 while (*output
!= '\0' && *output
!= '\n')
2326 // get rid of the braces at the begining and the end
2328 if (value
[value
.length()-1] == '}') {
2329 value
= value
.left(value
.length()-1);
2332 reg
->cookedValue
= value
;
2336 // the rest of the line is the register value
2338 output
= strchr(output
,'\n');
2340 output
= start
+ strlen(start
);
2341 value
= QString::fromLatin1(start
, output
-start
).simplifyWhiteSpace();
2344 * We split the raw from the cooked values.
2345 * Some modern gdbs explicitly say: "0.1234 (raw 0x3e4567...)".
2346 * Here, the cooked value comes first, and the raw value is in
2349 int pos
= value
.find(" (raw ");
2352 reg
->cookedValue
= value
.left(pos
);
2353 reg
->rawValue
= value
.mid(pos
+6);
2354 if (reg
->rawValue
.right(1) == ")") // remove closing bracket
2355 reg
->rawValue
.truncate(reg
->rawValue
.length()-1);
2360 * In other cases we split off the first token (separated by
2361 * whitespace). It is the raw value. The remainder of the line
2362 * is the cooked value.
2364 int pos
= value
.find(' ');
2366 reg
->rawValue
= value
;
2367 reg
->cookedValue
= QString();
2369 reg
->rawValue
= value
.left(pos
);
2370 reg
->cookedValue
= value
.mid(pos
+1);
2374 if (*output
!= '\0')
2375 output
++; /* skip '\n' */
2381 bool GdbDriver::parseInfoLine(const char* output
, QString
& addrFrom
, QString
& addrTo
)
2383 // "is at address" or "starts at address"
2384 const char* start
= strstr(output
, "s at address ");
2389 const char* p
= start
;
2390 while (*p
!= '\0' && !isspace(*p
))
2392 addrFrom
= QString::fromLatin1(start
, p
-start
);
2394 start
= strstr(p
, "and ends at ");
2402 while (*p
!= '\0' && !isspace(*p
))
2404 addrTo
= QString::fromLatin1(start
, p
-start
);
2409 void GdbDriver::parseDisassemble(const char* output
, QList
<DisassembledCode
>& code
)
2413 if (strncmp(output
, "Dump of assembler", 17) != 0) {
2417 code
.append(new DisassembledCode(c
));
2421 // remove first line
2422 const char* p
= strchr(output
, '\n');
2424 return; /* not a regular output */
2429 const char* end
= strstr(output
, "End of assembler");
2431 end
= p
+ strlen(p
);
2435 // remove function offsets from the lines
2438 const char* start
= p
;
2440 while (p
!= end
&& !isspace(*p
))
2442 address
= QString::fromLatin1(start
, p
-start
);
2444 // function name (enclosed in '<>', followed by ':')
2445 while (p
!= end
&& *p
!= '<')
2448 skipNestedAngles(p
);
2453 while (p
!= end
&& isspace(*p
))
2456 // code until end of line
2458 while (p
!= end
&& *p
!= '\n')
2460 if (p
!= end
) /* include '\n' */
2463 DisassembledCode
* c
= new DisassembledCode
;
2464 c
->address
= address
;
2465 c
->code
= QString::fromLatin1(start
, p
-start
);
2470 QString
GdbDriver::parseMemoryDump(const char* output
, QList
<MemoryDump
>& memdump
)
2472 if (isErrorExpr(output
)) {
2473 // error; strip space
2474 QString msg
= output
;
2475 return msg
.stripWhiteSpace();
2478 const char* p
= output
; /* save typing */
2484 const char* start
= p
;
2485 while (*p
!= '\0' && *p
!= ':' && !isspace(*p
))
2487 addr
= QString::fromLatin1(start
, p
-start
);
2489 // parse function offset
2493 while (*p
!= '\0' && !(*p
== ':' && isspace(p
[1])))
2495 addr
.fnoffs
= QString::fromLatin1(start
, p
-start
);
2499 // skip space; this may skip a new-line char!
2502 // everything to the end of the line is the memory dump
2503 const char* end
= strchr(p
, '\n');
2505 dump
= QString::fromLatin1(p
, end
-p
);
2508 dump
= QString::fromLatin1(p
, strlen(p
));
2511 MemoryDump
* md
= new MemoryDump
;
2520 QString
GdbDriver::editableValue(VarTree
* value
)
2522 const char* s
= value
->value().latin1();
2524 // if the variable is a pointer value that contains a cast,
2527 skipNested(s
, '(', ')');
2534 const char* start
= s
;
2536 if (strncmp(s
, "0x", 2) == 0)
2539 while (isxdigit(*s
))
2543 * What we saw so far might have been a reference. If so, edit the
2544 * referenced value. Otherwise, edit the pointer.
2552 // if it's a pointer to a string, remove the string
2553 const char* end
= s
;
2558 return QString::fromLatin1(start
, end
-start
);
2561 return QString::fromLatin1(start
, strlen(start
));
2565 // else leave it unchanged (or stripped of the reference preamble)
2569 QString
GdbDriver::parseSetVariable(const char* output
)
2571 // if there is any output, it is an error message
2572 QString msg
= output
;
2573 return msg
.stripWhiteSpace();
2577 #include "gdbdriver.moc"