| 
									
										
										
										
											2010-04-09 10:52:01 +02:00
										 |  |  | from __future__ import with_statement | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import gdb | 
					
						
							| 
									
										
										
										
											2009-12-04 13:22:39 +01:00
										 |  |  | import base64 | 
					
						
							| 
									
										
										
										
											2010-03-05 15:24:39 +01:00
										 |  |  | import __builtin__ | 
					
						
							| 
									
										
										
										
											2010-03-30 16:44:18 +02:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2011-05-31 15:34:50 +02:00
										 |  |  | import tempfile | 
					
						
							| 
									
										
										
										
											2010-06-10 14:28:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-16 15:51:46 +01:00
										 |  |  | # Fails on Windows. | 
					
						
							|  |  |  | try: | 
					
						
							|  |  |  |     import curses.ascii | 
					
						
							|  |  |  |     def printableChar(ucs): | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |         if curses.ascii.isprint(ucs): | 
					
						
							|  |  |  |             return ucs | 
					
						
							|  |  |  |         return '?' | 
					
						
							| 
									
										
										
										
											2010-03-16 15:51:46 +01:00
										 |  |  | except: | 
					
						
							| 
									
										
										
										
											2010-03-08 13:14:23 +01:00
										 |  |  |     def printableChar(ucs): | 
					
						
							|  |  |  |         if ucs >= 32 and ucs <= 126: | 
					
						
							|  |  |  |             return ucs | 
					
						
							|  |  |  |         return '?' | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-16 15:51:46 +01:00
										 |  |  | # Fails on SimulatorQt. | 
					
						
							| 
									
										
										
										
											2010-03-30 16:44:18 +02:00
										 |  |  | tempFileCounter = 0 | 
					
						
							| 
									
										
										
										
											2010-03-16 15:51:46 +01:00
										 |  |  | try: | 
					
						
							| 
									
										
										
										
											2010-03-30 16:44:18 +02:00
										 |  |  | #   Test if 2.6 is used (Windows), trigger exception and default | 
					
						
							|  |  |  | #   to 2nd version. | 
					
						
							|  |  |  |     tempfile.NamedTemporaryFile(prefix="gdbpy_",delete=True) | 
					
						
							| 
									
										
										
										
											2010-03-16 15:51:46 +01:00
										 |  |  |     def createTempFile(): | 
					
						
							| 
									
										
										
										
											2010-03-30 16:44:18 +02:00
										 |  |  |         file = tempfile.NamedTemporaryFile(prefix="gdbpy_",delete=False) | 
					
						
							| 
									
										
										
										
											2010-03-24 14:48:45 +01:00
										 |  |  |         file.close() | 
					
						
							| 
									
										
										
										
											2010-03-30 16:44:18 +02:00
										 |  |  |         return file.name, file | 
					
						
							| 
									
										
										
										
											2010-03-24 14:48:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-16 15:51:46 +01:00
										 |  |  | except: | 
					
						
							|  |  |  |     def createTempFile(): | 
					
						
							| 
									
										
										
										
											2010-03-30 16:44:18 +02:00
										 |  |  |         global tempFileCounter | 
					
						
							|  |  |  |         tempFileCounter += 1 | 
					
						
							| 
									
										
										
										
											2011-05-31 15:34:50 +02:00
										 |  |  |         fileName = "%s/gdbpy_tmp_%d_%d" \ | 
					
						
							|  |  |  |             % (tempfile.gettempdir(), os.getpid(), tempFileCounter) | 
					
						
							| 
									
										
										
										
											2010-03-30 16:44:18 +02:00
										 |  |  |         return fileName, None | 
					
						
							| 
									
										
										
										
											2010-03-16 15:51:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-30 16:44:18 +02:00
										 |  |  | def removeTempFile(name, file): | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         os.remove(name) | 
					
						
							|  |  |  |     except: | 
					
						
							| 
									
										
										
										
											2010-03-24 14:48:45 +01:00
										 |  |  |         pass | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-13 13:51:44 +02:00
										 |  |  | try: | 
					
						
							|  |  |  |     import binascii | 
					
						
							|  |  |  | except: | 
					
						
							|  |  |  |     pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | verbosity = 0 | 
					
						
							|  |  |  | verbosity = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-15 18:15:03 +01:00
										 |  |  | # Some "Enums" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Encodings | 
					
						
							|  |  |  | Unencoded8Bit, \ | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  | Base64Encoded8BitWithQuotes, \ | 
					
						
							|  |  |  | Base64Encoded16BitWithQuotes, \ | 
					
						
							|  |  |  | Base64Encoded32BitWithQuotes, \ | 
					
						
							|  |  |  | Base64Encoded16Bit, \ | 
					
						
							|  |  |  | Base64Encoded8Bit, \ | 
					
						
							|  |  |  | Hex2EncodedLatin1, \ | 
					
						
							|  |  |  | Hex4EncodedLittleEndian, \ | 
					
						
							|  |  |  | Hex8EncodedLittleEndian, \ | 
					
						
							|  |  |  | Hex2EncodedUtf8, \ | 
					
						
							|  |  |  | Hex8EncodedBigEndian, \ | 
					
						
							| 
									
										
										
										
											2010-09-13 12:37:30 +02:00
										 |  |  | Hex4EncodedBigEndian, \ | 
					
						
							|  |  |  | Hex4EncodedLittleEndianWithoutQuotes \ | 
					
						
							|  |  |  |     = range(13) | 
					
						
							| 
									
										
										
										
											2010-03-15 18:15:03 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Display modes | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  | StopDisplay, \ | 
					
						
							|  |  |  | DisplayImage1, \ | 
					
						
							|  |  |  | DisplayString, \ | 
					
						
							|  |  |  | DisplayImage, \ | 
					
						
							|  |  |  | DisplayProcess \ | 
					
						
							|  |  |  |     = range(5) | 
					
						
							| 
									
										
										
										
											2010-03-15 18:15:03 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-18 16:25:59 +01:00
										 |  |  | def isGoodGdb(): | 
					
						
							| 
									
										
										
										
											2010-01-05 17:05:13 +01:00
										 |  |  |     #return gdb.VERSION.startswith("6.8.50.2009") \ | 
					
						
							|  |  |  |     #   and gdb.VERSION != "6.8.50.20090630-cvs" | 
					
						
							| 
									
										
										
										
											2010-03-05 15:24:39 +01:00
										 |  |  |     return 'parse_and_eval' in __builtin__.dir(gdb) | 
					
						
							| 
									
										
										
										
											2009-12-18 16:25:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-14 12:57:24 +02:00
										 |  |  | def hasInferiorThreadList(): | 
					
						
							| 
									
										
										
										
											2011-01-05 18:50:59 +01:00
										 |  |  |     return False | 
					
						
							| 
									
										
										
										
											2010-09-14 12:57:24 +02:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2011-05-16 15:46:35 +02:00
										 |  |  |         a = gdb.inferiors()[0].threads() | 
					
						
							| 
									
										
										
										
											2010-09-14 12:57:24 +02:00
										 |  |  |         return True | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         return False | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-20 15:23:28 +02:00
										 |  |  | def upcast(value): | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         type = value.dynamic_type | 
					
						
							|  |  |  |         return value.cast(type) | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         return value | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  | typeCache = {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-12 15:56:03 +02:00
										 |  |  | class TypeInfo: | 
					
						
							|  |  |  |     def __init__(self, type): | 
					
						
							|  |  |  |         self.size = type.sizeof | 
					
						
							|  |  |  |         self.reported = False | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typeInfoCache = {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  | def lookupType(typestring): | 
					
						
							|  |  |  |     type = typeCache.get(typestring) | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |     #warn("LOOKUP 1: %s -> %s" % (typestring, type)) | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  |     if type is None: | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |         ts = typestring | 
					
						
							|  |  |  |         while True: | 
					
						
							|  |  |  |             #WARN("ts: '%s'" % ts) | 
					
						
							|  |  |  |             if ts.startswith("class "): | 
					
						
							|  |  |  |                 ts = ts[6:] | 
					
						
							|  |  |  |             elif ts.startswith("struct "): | 
					
						
							|  |  |  |                 ts = ts[7:] | 
					
						
							|  |  |  |             elif ts.startswith("const "): | 
					
						
							|  |  |  |                 ts = ts[6:] | 
					
						
							|  |  |  |             elif ts.startswith("volatile "): | 
					
						
							|  |  |  |                 ts = ts[9:] | 
					
						
							| 
									
										
										
										
											2010-07-02 17:03:35 +02:00
										 |  |  |             elif ts.startswith("enum "): | 
					
						
							|  |  |  |                 ts = ts[5:] | 
					
						
							| 
									
										
										
										
											2011-04-19 11:28:02 +02:00
										 |  |  |             elif ts.endswith(" const"): | 
					
						
							|  |  |  |                 ts = ts[:-6] | 
					
						
							|  |  |  |             elif ts.endswith(" volatile"): | 
					
						
							|  |  |  |                 ts = ts[:-9] | 
					
						
							|  |  |  |             elif ts.endswith("*const"): | 
					
						
							|  |  |  |                 ts = ts[:-5] | 
					
						
							|  |  |  |             elif ts.endswith("*volatile"): | 
					
						
							|  |  |  |                 ts = ts[:-8] | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             #warn("LOOKING UP '%s'" % ts) | 
					
						
							|  |  |  |             type = gdb.lookup_type(ts) | 
					
						
							| 
									
										
										
										
											2010-07-21 08:44:54 +02:00
										 |  |  |         except RuntimeError, error: | 
					
						
							| 
									
										
										
										
											2010-08-17 11:59:59 +02:00
										 |  |  |             #warn("LOOKING UP '%s': %s" % (ts, error)) | 
					
						
							| 
									
										
										
										
											2010-08-17 15:32:08 +02:00
										 |  |  |             # See http://sourceware.org/bugzilla/show_bug.cgi?id=11912 | 
					
						
							| 
									
										
										
										
											2010-08-17 11:59:59 +02:00
										 |  |  |             exp = "(class '%s'*)0" % ts | 
					
						
							| 
									
										
										
										
											2010-08-17 15:32:08 +02:00
										 |  |  |             try: | 
					
						
							|  |  |  |                 type = parseAndEvaluate(exp).type.target() | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 # Can throw "RuntimeError: No type named class Foo." | 
					
						
							|  |  |  |                 pass | 
					
						
							| 
									
										
										
										
											2010-07-21 08:44:54 +02:00
										 |  |  |         except: | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |             #warn("LOOKING UP '%s' FAILED" % ts) | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         #warn("  RESULT: '%s'" % type) | 
					
						
							|  |  |  |         #if not type is None: | 
					
						
							|  |  |  |         #    warn("  FIELDS: '%s'" % type.fields()) | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  |         typeCache[typestring] = type | 
					
						
							| 
									
										
										
										
											2010-11-30 16:50:42 +01:00
										 |  |  |     if type is None and typestring.endswith('*'): | 
					
						
							|  |  |  |         type = lookupType(typestring[0:-1]) | 
					
						
							|  |  |  |         if not type is None: | 
					
						
							|  |  |  |             type = type.pointer() | 
					
						
							|  |  |  |             typeCache[typestring] = type | 
					
						
							| 
									
										
										
										
											2010-07-12 17:13:58 +02:00
										 |  |  |     if type is None: | 
					
						
							|  |  |  |         # could be gdb.lookup_type("char[3]") generating | 
					
						
							|  |  |  |         # "RuntimeError: No type named char[3]" | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  |     return type | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-06 17:01:16 +01:00
										 |  |  | def cleanAddress(addr): | 
					
						
							| 
									
										
										
										
											2010-02-16 14:38:58 +01:00
										 |  |  |     if addr is None: | 
					
						
							|  |  |  |         return "<no address>" | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |     # We cannot use str(addr) as it yields rubbish for char pointers | 
					
						
							|  |  |  |     # that might trigger Unicode encoding errors. | 
					
						
							| 
									
										
										
										
											2011-05-09 13:30:00 +02:00
										 |  |  |     #return addr.cast(lookupType("void").pointer()) | 
					
						
							|  |  |  |     return hex(long(addr)) | 
					
						
							| 
									
										
										
										
											2010-01-06 17:01:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-01 10:11:30 +01:00
										 |  |  | def extractTemplateArgument(type, position): | 
					
						
							|  |  |  |     level = 0 | 
					
						
							|  |  |  |     skipSpace = False | 
					
						
							|  |  |  |     inner = "" | 
					
						
							|  |  |  |     type = str(type) | 
					
						
							|  |  |  |     for c in type[type.find('<') + 1 : -1]: | 
					
						
							|  |  |  |         if c == '<': | 
					
						
							|  |  |  |             inner += c | 
					
						
							|  |  |  |             level += 1 | 
					
						
							|  |  |  |         elif c == '>': | 
					
						
							|  |  |  |             level -= 1 | 
					
						
							|  |  |  |             inner += c | 
					
						
							|  |  |  |         elif c == ',': | 
					
						
							|  |  |  |             if level == 0: | 
					
						
							|  |  |  |                 if position == 0: | 
					
						
							|  |  |  |                     return inner | 
					
						
							|  |  |  |                 position -= 1 | 
					
						
							|  |  |  |                 inner = "" | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 inner += c | 
					
						
							|  |  |  |                 skipSpace = True | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             if skipSpace and c == ' ': | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 inner += c | 
					
						
							|  |  |  |                 skipSpace = False | 
					
						
							|  |  |  |     return inner | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def templateArgument(type, position): | 
					
						
							| 
									
										
										
										
											2010-11-30 17:14:44 +01:00
										 |  |  |     try: | 
					
						
							|  |  |  |         # This fails on stock 7.2 with | 
					
						
							|  |  |  |         # "RuntimeError: No type named myns::QObject.\n" | 
					
						
							|  |  |  |         return type.template_argument(position) | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         # That's something like "myns::QList<...>" | 
					
						
							| 
									
										
										
										
											2010-12-01 10:11:30 +01:00
										 |  |  |         return lookupType(extractTemplateArgument(type.strip_typedefs(), position)) | 
					
						
							| 
									
										
										
										
											2010-11-30 17:14:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:46:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-15 13:26:46 +01:00
										 |  |  | # Workaround for gdb < 7.1 | 
					
						
							|  |  |  | def numericTemplateArgument(type, position): | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         return int(type.template_argument(position)) | 
					
						
							| 
									
										
										
										
											2010-02-03 16:50:28 +01:00
										 |  |  |     except RuntimeError, error: | 
					
						
							| 
									
										
										
										
											2010-01-15 13:26:46 +01:00
										 |  |  |         # ": No type named 30." | 
					
						
							|  |  |  |         msg = str(error) | 
					
						
							|  |  |  |         return int(msg[14:-1]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:46:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  | def parseAndEvaluate(exp): | 
					
						
							| 
									
										
										
										
											2009-12-18 16:25:59 +01:00
										 |  |  |     if isGoodGdb(): | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |         return gdb.parse_and_eval(exp) | 
					
						
							|  |  |  |     # Work around non-existing gdb.parse_and_eval as in released 7.0 | 
					
						
							|  |  |  |     gdb.execute("set logging redirect on") | 
					
						
							|  |  |  |     gdb.execute("set logging on") | 
					
						
							| 
									
										
										
										
											2010-01-08 11:03:00 +01:00
										 |  |  |     try: | 
					
						
							|  |  |  |         gdb.execute("print %s" % exp) | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         gdb.execute("set logging off") | 
					
						
							| 
									
										
										
										
											2010-03-05 16:01:56 +01:00
										 |  |  |         gdb.execute("set logging redirect off") | 
					
						
							| 
									
										
										
										
											2010-01-08 11:03:00 +01:00
										 |  |  |         return None | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |     gdb.execute("set logging off") | 
					
						
							| 
									
										
										
										
											2010-03-05 16:01:56 +01:00
										 |  |  |     gdb.execute("set logging redirect off") | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |     return gdb.history(0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  | def catchCliOutput(command): | 
					
						
							| 
									
										
										
										
											2010-12-17 17:41:33 +01:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2010-12-17 18:02:02 +01:00
										 |  |  |         return gdb.execute(command, to_string=True).split("\n") | 
					
						
							| 
									
										
										
										
											2010-12-17 17:41:33 +01:00
										 |  |  |     except: | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2010-04-16 11:47:09 +02:00
										 |  |  |     filename, file = createTempFile() | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  |     gdb.execute("set logging off") | 
					
						
							|  |  |  |     gdb.execute("set logging redirect off") | 
					
						
							|  |  |  |     gdb.execute("set logging file %s" % filename) | 
					
						
							|  |  |  |     gdb.execute("set logging redirect on") | 
					
						
							|  |  |  |     gdb.execute("set logging on") | 
					
						
							| 
									
										
										
										
											2010-07-15 11:37:06 +02:00
										 |  |  |     msg = "" | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         gdb.execute(command) | 
					
						
							|  |  |  |     except RuntimeError, error: | 
					
						
							|  |  |  |         # For the first phase of core file loading this yield | 
					
						
							|  |  |  |         # "No symbol table is loaded.  Use the \"file\" command." | 
					
						
							|  |  |  |         msg = str(error) | 
					
						
							|  |  |  |     except: | 
					
						
							| 
									
										
										
										
											2010-08-18 10:20:12 +02:00
										 |  |  |         msg = "Unknown error" | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  |     gdb.execute("set logging off") | 
					
						
							|  |  |  |     gdb.execute("set logging redirect off") | 
					
						
							| 
									
										
										
										
											2010-07-15 11:37:06 +02:00
										 |  |  |     if len(msg): | 
					
						
							| 
									
										
										
										
											2010-08-26 16:35:39 +02:00
										 |  |  |         # Having that might confuse result handlers in the gdbengine. | 
					
						
							|  |  |  |         #warn("CLI ERROR: %s " % msg) | 
					
						
							|  |  |  |         return "CLI ERROR: %s " % msg | 
					
						
							| 
									
										
										
										
											2010-03-24 14:48:45 +01:00
										 |  |  |     temp = open(filename, "r") | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  |     lines = [] | 
					
						
							| 
									
										
										
										
											2010-03-24 14:48:45 +01:00
										 |  |  |     for line in temp: | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  |         lines.append(line) | 
					
						
							| 
									
										
										
										
											2010-03-24 14:48:45 +01:00
										 |  |  |     temp.close() | 
					
						
							|  |  |  |     removeTempFile(filename, file) | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  |     return lines | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  | def showException(msg, exType, exValue, exTraceback): | 
					
						
							|  |  |  |     warn("**** CAUGHT EXCEPTION: %s ****" % msg) | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         import traceback | 
					
						
							|  |  |  |         for line in traceback.format_exception(exType, exValue, exTraceback): | 
					
						
							|  |  |  |             warn("%s" % line) | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class OutputSafer: | 
					
						
							|  |  |  |     def __init__(self, d, pre = "", post = ""): | 
					
						
							|  |  |  |         self.d = d | 
					
						
							|  |  |  |         self.pre = pre | 
					
						
							|  |  |  |         self.post = post | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __enter__(self): | 
					
						
							|  |  |  |         self.d.put(self.pre) | 
					
						
							|  |  |  |         self.savedOutput = self.d.output | 
					
						
							| 
									
										
										
										
											2011-05-09 13:41:43 +02:00
										 |  |  |         self.d.output = [] | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __exit__(self, exType, exValue, exTraceBack): | 
					
						
							|  |  |  |         self.d.put(self.post) | 
					
						
							|  |  |  |         if self.d.passExceptions and not exType is None: | 
					
						
							|  |  |  |             showException("OUTPUTSAFER", exType, exValue, exTraceBack) | 
					
						
							|  |  |  |             self.d.output = self.savedOutput | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2011-05-09 13:41:43 +02:00
										 |  |  |             self.savedOutput.extend(self.d.output) | 
					
						
							|  |  |  |             self.d.output = self.savedOutput | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         return False | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 15:44:22 +01:00
										 |  |  | class NoAddress: | 
					
						
							|  |  |  |     def __init__(self, d): | 
					
						
							|  |  |  |         self.d = d | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __enter__(self): | 
					
						
							|  |  |  |         self.savedPrintsAddress = self.d.printsAddress | 
					
						
							|  |  |  |         self.d.printsAddress = False | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __exit__(self, exType, exValue, exTraceBack): | 
					
						
							|  |  |  |         self.d.printsAddress = self.savedPrintsAddress | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  | class SubItem: | 
					
						
							|  |  |  |     def __init__(self, d): | 
					
						
							|  |  |  |         self.d = d | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __enter__(self): | 
					
						
							|  |  |  |         self.d.put('{') | 
					
						
							|  |  |  |         self.savedValue = self.d.currentValue | 
					
						
							|  |  |  |         self.savedValuePriority = self.d.currentValuePriority | 
					
						
							|  |  |  |         self.savedValueEncoding = self.d.currentValueEncoding | 
					
						
							|  |  |  |         self.savedType = self.d.currentType | 
					
						
							|  |  |  |         self.savedTypePriority = self.d.currentTypePriority | 
					
						
							| 
									
										
										
										
											2010-04-16 14:08:11 +02:00
										 |  |  |         self.d.currentValue = "<not accessible>" | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  |         self.d.currentValuePriority = -100 | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         self.d.currentValueEncoding = None | 
					
						
							|  |  |  |         self.d.currentType = "" | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  |         self.d.currentTypePriority = -100 | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __exit__(self, exType, exValue, exTraceBack): | 
					
						
							|  |  |  |         #warn(" CURRENT VALUE: %s %s %s" % (self.d.currentValue, | 
					
						
							|  |  |  |         #    self.d.currentValueEncoding, self.d.currentValuePriority)) | 
					
						
							|  |  |  |         if self.d.passExceptions and not exType is None: | 
					
						
							|  |  |  |             showException("SUBITEM", exType, exValue, exTraceBack) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |             #warn("TYPE VALUE: %s" % self.d.currentValue) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  |             type = stripClassTag(str(self.d.currentType)) | 
					
						
							|  |  |  |             #warn("TYPE: '%s'  DEFAULT: '%s'" % (type, self.d.currentChildType)) | 
					
						
							| 
									
										
										
										
											2011-04-12 15:56:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  |             if len(type) > 0 and type != self.d.currentChildType: | 
					
						
							|  |  |  |                 self.d.put('type="%s",' % type) # str(type.unqualified()) ? | 
					
						
							| 
									
										
										
										
											2011-04-12 15:56:03 +02:00
										 |  |  |                 if not type in typeInfoCache: | 
					
						
							|  |  |  |                     typeObj = lookupType(type) | 
					
						
							|  |  |  |                     if not typeObj is None: | 
					
						
							|  |  |  |                         typeInfoCache[type] = TypeInfo(typeObj) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  |             if not self.d.currentValueEncoding is None: | 
					
						
							| 
									
										
										
										
											2010-06-29 11:10:05 +02:00
										 |  |  |                 self.d.put('valueencoded="%d",' % self.d.currentValueEncoding) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  |             if not self.d.currentValue is None: | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                 self.d.put('value="%s",' % self.d.currentValue) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:38:42 +02:00
										 |  |  |         except: | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         self.d.put('},') | 
					
						
							|  |  |  |         self.d.currentValue = self.savedValue | 
					
						
							|  |  |  |         self.d.currentValuePriority = self.savedValuePriority | 
					
						
							|  |  |  |         self.d.currentValueEncoding = self.savedValueEncoding | 
					
						
							|  |  |  |         self.d.currentType = self.savedType | 
					
						
							|  |  |  |         self.d.currentTypePriority = self.savedTypePriority | 
					
						
							|  |  |  |         return True | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Children: | 
					
						
							|  |  |  |     def __init__(self, d, numChild = 1, childType = None, childNumChild = None): | 
					
						
							|  |  |  |         self.d = d | 
					
						
							|  |  |  |         self.numChild = numChild | 
					
						
							|  |  |  |         self.childType = childType | 
					
						
							|  |  |  |         self.childNumChild = childNumChild | 
					
						
							|  |  |  |         #warn("CHILDREN: %s %s %s" % (numChild, childType, childNumChild)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __enter__(self): | 
					
						
							|  |  |  |         childType = "" | 
					
						
							|  |  |  |         childNumChild = -1 | 
					
						
							|  |  |  |         if type(self.numChild) is list: | 
					
						
							|  |  |  |             numChild = self.numChild[0] | 
					
						
							|  |  |  |             maxNumChild = self.numChild[1] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             numChild = self.numChild | 
					
						
							|  |  |  |             maxNumChild = self.numChild | 
					
						
							|  |  |  |         if numChild == 0: | 
					
						
							|  |  |  |             self.childType = None | 
					
						
							|  |  |  |         if not self.childType is None: | 
					
						
							|  |  |  |             childType = stripClassTag(str(self.childType)) | 
					
						
							|  |  |  |             self.d.put('childtype="%s",' % childType) | 
					
						
							| 
									
										
										
										
											2011-05-16 15:46:35 +02:00
										 |  |  |             if isSimpleType(self.childType): | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |                 self.d.put('childnumchild="0",') | 
					
						
							|  |  |  |                 childNumChild = 0 | 
					
						
							|  |  |  |             elif self.childType.code == gdb.TYPE_CODE_PTR: | 
					
						
							|  |  |  |                 self.d.put('childnumchild="1",') | 
					
						
							|  |  |  |                 childNumChild = 1 | 
					
						
							|  |  |  |         if not self.childNumChild is None: | 
					
						
							|  |  |  |             self.d.put('childnumchild="%s",' % self.childNumChild) | 
					
						
							|  |  |  |             childNumChild = self.childNumChild | 
					
						
							|  |  |  |         self.savedChildType = self.d.currentChildType | 
					
						
							|  |  |  |         self.savedChildNumChild = self.d.currentChildNumChild | 
					
						
							|  |  |  |         self.savedNumChilds = self.d.currentNumChilds | 
					
						
							|  |  |  |         self.savedMaxNumChilds = self.d.currentNumChilds | 
					
						
							|  |  |  |         self.d.currentChildType = childType | 
					
						
							|  |  |  |         self.d.currentChildNumChild = childNumChild | 
					
						
							|  |  |  |         self.d.currentNumChilds = numChild | 
					
						
							|  |  |  |         self.d.currentMaxNumChilds = maxNumChild | 
					
						
							|  |  |  |         self.d.put("children=[") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __exit__(self, exType, exValue, exTraceBack): | 
					
						
							|  |  |  |         if self.d.passExceptions and not exType is None: | 
					
						
							|  |  |  |             showException("CHILDREN", exType, exValue, exTraceBack) | 
					
						
							|  |  |  |         if self.d.currentMaxNumChilds < self.d.currentNumChilds: | 
					
						
							| 
									
										
										
										
											2010-08-18 10:20:12 +02:00
										 |  |  |             self.d.putEllipsis() | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         self.d.currentChildType = self.savedChildType | 
					
						
							|  |  |  |         self.d.currentChildNumChild = self.savedChildNumChild | 
					
						
							|  |  |  |         self.d.currentNumChilds = self.savedNumChilds | 
					
						
							|  |  |  |         self.d.currentMaxNumChilds = self.savedMaxNumChilds | 
					
						
							|  |  |  |         self.d.put('],') | 
					
						
							|  |  |  |         return True | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  | class Breakpoint: | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         self.number = None | 
					
						
							|  |  |  |         self.filename = None | 
					
						
							|  |  |  |         self.linenumber = None | 
					
						
							|  |  |  |         self.address = [] | 
					
						
							|  |  |  |         self.function = None | 
					
						
							|  |  |  |         self.fullname = None | 
					
						
							|  |  |  |         self.condition = None | 
					
						
							|  |  |  |         self.times = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def listOfBreakpoints(d): | 
					
						
							|  |  |  |     # [bkpt={number="1",type="breakpoint",disp="keep",enabled="y", | 
					
						
							|  |  |  |     #addr="0x0804da6d",func="testHidden()",file="../app.cpp", | 
					
						
							|  |  |  |     #fullname="...",line="1292",times="1",original-location="\"app.cpp\":1292"}, | 
					
						
							|  |  |  |     # Num     Type           Disp Enb Address    What\n" | 
					
						
							|  |  |  |     #1       breakpoint     keep y   0x0804da6d in testHidden() at app.cpp:1292 | 
					
						
							|  |  |  |     #\tbreakpoint already hit 1 time | 
					
						
							|  |  |  |     #2       breakpoint     keep y   0x080564d3 in espace::..doit(int) at ../app.cpp:1210\n" | 
					
						
							|  |  |  |     #3       breakpoint     keep y   <PENDING>  \"plugin.cpp\":38\n" | 
					
						
							|  |  |  |     #4       breakpoint     keep y   <MULTIPLE> \n" | 
					
						
							|  |  |  |     #4.1                         y     0x08056673 in Foo at ../app.cpp:126\n" | 
					
						
							|  |  |  |     #4.2                         y     0x0805678b in Foo at ../app.cpp:126\n" | 
					
						
							|  |  |  |     #5       hw watchpoint  keep y              &main\n" | 
					
						
							| 
									
										
										
										
											2010-02-11 17:29:10 +01:00
										 |  |  |     #6       breakpoint     keep y   0xb6cf18e5 <__cxa_throw+5>\n" | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  |     lines = catchCliOutput("info break") | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     lines.reverse() | 
					
						
							|  |  |  |     bp = Breakpoint() | 
					
						
							|  |  |  |     for line in lines: | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  |         if len(line) == 0 or line.startswith(" "): | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         if line[0] < '0' or line[0] > '9': | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         if line.startswith("\tstop only if "): | 
					
						
							|  |  |  |             bp.condition = line[14:] | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         if line.startswith("\tbreakpoint already hit "): | 
					
						
							|  |  |  |             bp.times = line[24:] | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         number = line[0:5] | 
					
						
							|  |  |  |         pos0x = line.find(" 0x") | 
					
						
							| 
									
										
										
										
											2010-02-05 15:23:09 +01:00
										 |  |  |         posin = line.find(" in ", pos0x) | 
					
						
							| 
									
										
										
										
											2010-02-11 17:29:10 +01:00
										 |  |  |         poslt = line.find(" <", pos0x) | 
					
						
							| 
									
										
										
										
											2010-02-05 15:23:09 +01:00
										 |  |  |         posat = line.find(" at ", posin) | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         poscol = line.find(":", posat) | 
					
						
							| 
									
										
										
										
											2010-02-11 17:29:10 +01:00
										 |  |  |         if pos0x != -1: | 
					
						
							|  |  |  |             if pos0x < posin: | 
					
						
							|  |  |  |                 bp.address.append(line[pos0x + 1 : posin]) | 
					
						
							|  |  |  |             elif pos0x < poslt: | 
					
						
							|  |  |  |                 bp.address.append(line[pos0x + 1 : poslt]) | 
					
						
							|  |  |  |                 bp.function = line[poslt + 2 : line.find('>', poslt)] | 
					
						
							| 
									
										
										
										
											2010-02-05 15:23:09 +01:00
										 |  |  |         # Take "no address" as indication that the bp is pending. | 
					
						
							|  |  |  |         #if line.find("<PENDING>") >= 0: | 
					
						
							|  |  |  |         #    bp.address.append("<PENDING>") | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         if posin < posat and posin != -1: | 
					
						
							|  |  |  |             bp.function = line[posin + 4 : posat] | 
					
						
							|  |  |  |         if posat < poscol and poscol != -1: | 
					
						
							|  |  |  |             bp.filename = line[posat + 4 : poscol] | 
					
						
							|  |  |  |         if poscol != -1: | 
					
						
							|  |  |  |             bp.linenumber = line[poscol + 1 : -1] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if '.' in number: # Part of multiple breakpoint. | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # A breakpoint of its own | 
					
						
							|  |  |  |         bp.number = int(number) | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |         d.put('bkpt={number="%s",' % bp.number) | 
					
						
							|  |  |  |         d.put('type="breakpoint",') | 
					
						
							|  |  |  |         d.put('disp="keep",') | 
					
						
							|  |  |  |         d.put('enabled="y",') | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         for address in bp.address: | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |             d.put('addr="%s",' % address) | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         if not bp.function is None: | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |             d.put('func="%s",' % bp.function) | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         if not bp.filename is None: | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |             d.put('file="%s",' % bp.filename) | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         if not bp.fullname is None: | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |             d.put('fullname="%s",' % bp.fullname) | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         if not bp.linenumber is None: | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |             d.put('line="%s",' % bp.linenumber) | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         if not bp.condition is None: | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |             d.put('cond="%s",' % bp.condition) | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         if not bp.fullname is None: | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |             d.put('fullname="%s",' % bt.fullname) | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         if not bp.times is None: | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |             d.put('times="1",' % bp.times) | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         #d.put('original-location="-"') | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |         d.put('},') | 
					
						
							| 
									
										
										
										
											2010-01-19 18:15:16 +01:00
										 |  |  |         bp = Breakpoint() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-15 16:59:00 +01:00
										 |  |  | # Creates a list of field names of an anon union or struct | 
					
						
							|  |  |  | def listOfFields(type): | 
					
						
							|  |  |  |     fields = [] | 
					
						
							|  |  |  |     for field in type.fields(): | 
					
						
							|  |  |  |         if len(field.name) > 0: | 
					
						
							|  |  |  |             fields += field.name | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             fields += listOfFields(field.type) | 
					
						
							|  |  |  |     return fields | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  | def listOfLocals(varList): | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |     try: | 
					
						
							|  |  |  |         frame = gdb.selected_frame() | 
					
						
							|  |  |  |         #warn("FRAME %s: " % frame) | 
					
						
							| 
									
										
										
										
											2010-07-21 08:44:54 +02:00
										 |  |  |     except RuntimeError, error: | 
					
						
							|  |  |  |         warn("FRAME NOT ACCESSIBLE: %s" % error) | 
					
						
							|  |  |  |         return [] | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         warn("FRAME NOT ACCESSIBLE FOR UNKNOWN REASONS") | 
					
						
							| 
									
										
										
										
											2009-12-18 16:25:59 +01:00
										 |  |  |         return [] | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |     # gdb-6.8-symbianelf fails here | 
					
						
							| 
									
										
										
										
											2010-03-05 15:24:39 +01:00
										 |  |  |     hasBlock = 'block' in __builtin__.dir(frame) | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |     items = [] | 
					
						
							| 
									
										
										
										
											2010-08-18 10:20:12 +02:00
										 |  |  |     #warn("HAS BLOCK: %s" % hasBlock) | 
					
						
							|  |  |  |     #warn("IS GOOD GDB: %s" % isGoodGdb()) | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |     if hasBlock and isGoodGdb(): | 
					
						
							| 
									
										
										
										
											2010-03-23 11:49:36 +01:00
										 |  |  |         #warn("IS GOOD: %s " % varList) | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |         try: | 
					
						
							|  |  |  |             block = frame.block() | 
					
						
							|  |  |  |             #warn("BLOCK: %s " % block) | 
					
						
							| 
									
										
										
										
											2010-07-21 08:44:54 +02:00
										 |  |  |         except RuntimeError, error: | 
					
						
							| 
									
										
										
										
											2010-12-20 16:55:07 +01:00
										 |  |  |             warn("BLOCK IN FRAME NOT ACCESSIBLE: %s" % error) | 
					
						
							| 
									
										
										
										
											2010-07-21 08:44:54 +02:00
										 |  |  |             return items | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |         except: | 
					
						
							| 
									
										
										
										
											2010-07-21 08:44:54 +02:00
										 |  |  |             warn("BLOCK NOT ACCESSIBLE FOR UNKNOWN REASONS") | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |             return items | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-15 11:37:15 +01:00
										 |  |  |         shadowed = {} | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |         while True: | 
					
						
							|  |  |  |             if block is None: | 
					
						
							|  |  |  |                 warn("UNEXPECTED 'None' BLOCK") | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |             for symbol in block: | 
					
						
							|  |  |  |                 name = symbol.print_name | 
					
						
							| 
									
										
										
										
											2010-01-06 17:01:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |                 if name == "__in_chrg": | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 # "NotImplementedError: Symbol type not yet supported in | 
					
						
							|  |  |  |                 # Python scripts." | 
					
						
							|  |  |  |                 #warn("SYMBOL %s: " % symbol.value) | 
					
						
							|  |  |  |                 #warn("SYMBOL %s  (%s): " % (symbol, name)) | 
					
						
							| 
									
										
										
										
											2010-11-15 11:37:15 +01:00
										 |  |  |                 if name in shadowed: | 
					
						
							|  |  |  |                     level = shadowed[name] | 
					
						
							|  |  |  |                     name1 = "%s <shadowed %s>" % (name, level) | 
					
						
							|  |  |  |                     shadowed[name] = level + 1 | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     name1 = name | 
					
						
							|  |  |  |                     shadowed[name] = 1 | 
					
						
							|  |  |  |                 #warn("SYMBOL %s  (%s, %s)): " % (symbol, name, symbol.name)) | 
					
						
							|  |  |  |                 item = Item(0, "local", name1, name1) | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |                 try: | 
					
						
							| 
									
										
										
										
											2010-11-15 11:37:15 +01:00
										 |  |  |                     item.value = frame.read_var(name, block)  # this is a gdb value | 
					
						
							| 
									
										
										
										
											2010-11-04 10:50:13 +01:00
										 |  |  |                 except: | 
					
						
							| 
									
										
										
										
											2010-11-15 11:37:15 +01:00
										 |  |  |                     try: | 
					
						
							|  |  |  |                         item.value = frame.read_var(name)  # this is a gdb value | 
					
						
							|  |  |  |                     except: | 
					
						
							|  |  |  |                         # RuntimeError: happens for | 
					
						
							|  |  |  |                         #     void foo() { std::string s; std::wstring w; } | 
					
						
							|  |  |  |                         # ValueError: happens for (as of 2010/11/4) | 
					
						
							|  |  |  |                         #     a local struct as found e.g. in | 
					
						
							|  |  |  |                         #     gcc sources in gcc.c, int execute() | 
					
						
							|  |  |  |                         continue | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |                 #warn("ITEM %s: " % item.value) | 
					
						
							|  |  |  |                 items.append(item) | 
					
						
							|  |  |  |             # The outermost block in a function has the function member | 
					
						
							|  |  |  |             # FIXME: check whether this is guaranteed. | 
					
						
							|  |  |  |             if not block.function is None: | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             block = block.superblock | 
					
						
							|  |  |  |     else: | 
					
						
							| 
									
										
										
										
											2009-12-18 16:25:59 +01:00
										 |  |  |         # Assuming gdb 7.0 release or 6.8-symbianelf. | 
					
						
							| 
									
										
										
										
											2010-03-24 14:48:45 +01:00
										 |  |  |         filename, file = createTempFile() | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |         #warn("VARLIST: %s " % varList) | 
					
						
							| 
									
										
										
										
											2010-04-16 12:40:21 +02:00
										 |  |  |         #warn("FILENAME: %s " % filename) | 
					
						
							| 
									
										
										
										
											2009-12-18 16:25:59 +01:00
										 |  |  |         gdb.execute("set logging off") | 
					
						
							|  |  |  |         gdb.execute("set logging redirect off") | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |         gdb.execute("set logging file %s" % filename) | 
					
						
							|  |  |  |         gdb.execute("set logging redirect on") | 
					
						
							|  |  |  |         gdb.execute("set logging on") | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |         try: | 
					
						
							|  |  |  |             gdb.execute("info args") | 
					
						
							|  |  |  |             # We cannot use "info locals" as at least 6.8-symbianelf | 
					
						
							|  |  |  |             # aborts as soon as we hit unreadable memory. | 
					
						
							|  |  |  |             # gdb.execute("interpreter mi '-stack-list-locals 0'") | 
					
						
							|  |  |  |             # results in &"Recursive internal problem.\n", so we have | 
					
						
							|  |  |  |             # the frontend pass us the list of locals. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # There are two cases, either varList is empty, so we have | 
					
						
							|  |  |  |             # to fetch the list here, or it is not empty with the | 
					
						
							|  |  |  |             # first entry being a dummy. | 
					
						
							|  |  |  |             if len(varList) == 0: | 
					
						
							|  |  |  |                 gdb.execute("info locals") | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 varList = varList[1:] | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |         gdb.execute("set logging off") | 
					
						
							|  |  |  |         gdb.execute("set logging redirect off") | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-16 12:40:21 +02:00
										 |  |  |         try: | 
					
						
							|  |  |  |             temp = open(filename, "r") | 
					
						
							|  |  |  |             for line in temp: | 
					
						
							|  |  |  |                 if len(line) == 0 or line.startswith(" "): | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 # The function parameters | 
					
						
							|  |  |  |                 pos = line.find(" = ") | 
					
						
							|  |  |  |                 if pos < 0: | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 varList.append(line[0:pos]) | 
					
						
							|  |  |  |             temp.close() | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2010-03-24 14:48:45 +01:00
										 |  |  |         removeTempFile(filename, file) | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |         #warn("VARLIST: %s " % varList) | 
					
						
							|  |  |  |         for name in varList: | 
					
						
							|  |  |  |             #warn("NAME %s " % name) | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |             item = Item(0, "local", name, name) | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 item.value = frame.read_var(name)  # this is a gdb value | 
					
						
							|  |  |  |             except RuntimeError: | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |                 pass | 
					
						
							|  |  |  |                 #continue | 
					
						
							| 
									
										
										
										
											2010-03-22 12:05:58 +01:00
										 |  |  |             except: | 
					
						
							|  |  |  |                 # Something breaking the list, like intermediate gdb warnings | 
					
						
							|  |  |  |                 # like 'Warning: can't find linker symbol for virtual table for | 
					
						
							|  |  |  |                 # `std::less<char const*>' value\n\nwarning:  found | 
					
						
							|  |  |  |                 # `myns::QHashData::shared_null' instead [...] | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |                 # that break subsequent parsing. Chicken out and take the | 
					
						
							| 
									
										
										
										
											2010-03-22 12:05:58 +01:00
										 |  |  |                 # next "usable" line. | 
					
						
							|  |  |  |                 continue | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |             items.append(item) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return items | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-07 09:14:35 +01:00
										 |  |  | def value(expr): | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |     value = parseAndEvaluate(expr) | 
					
						
							| 
									
										
										
										
											2009-12-07 09:14:35 +01:00
										 |  |  |     try: | 
					
						
							|  |  |  |         return int(value) | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         return str(value) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | def isSimpleType(typeobj): | 
					
						
							| 
									
										
										
										
											2010-08-13 10:51:41 +02:00
										 |  |  |     code = typeobj.code | 
					
						
							|  |  |  |     return code == gdb.TYPE_CODE_BOOL \ | 
					
						
							|  |  |  |         or code == gdb.TYPE_CODE_CHAR \ | 
					
						
							|  |  |  |         or code == gdb.TYPE_CODE_INT \ | 
					
						
							|  |  |  |         or code == gdb.TYPE_CODE_FLT \ | 
					
						
							| 
									
										
										
										
											2010-08-13 10:57:00 +02:00
										 |  |  |         or code == gdb.TYPE_CODE_ENUM | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | def isStringType(d, typeobj): | 
					
						
							|  |  |  |     type = str(typeobj) | 
					
						
							|  |  |  |     return type == d.ns + "QString" \ | 
					
						
							|  |  |  |         or type == d.ns + "QByteArray" \ | 
					
						
							|  |  |  |         or type == "std::string" \ | 
					
						
							|  |  |  |         or type == "std::wstring" \ | 
					
						
							|  |  |  |         or type == "wstring" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def warn(message): | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |     if True or verbosity > 0: | 
					
						
							|  |  |  |         print "XXX: %s\n" % message.encode("latin1") | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |     pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def check(exp): | 
					
						
							|  |  |  |     if not exp: | 
					
						
							|  |  |  |         raise RuntimeError("Check failed") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-04 14:14:14 +01:00
										 |  |  | def checkRef(ref): | 
					
						
							|  |  |  |     count = ref["_q_value"] | 
					
						
							|  |  |  |     check(count > 0) | 
					
						
							|  |  |  |     check(count < 1000000) # assume there aren't a million references to any object | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | #def couldBePointer(p, align): | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  | #    type = lookupType("unsigned int") | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | #    ptr = gdb.Value(p).cast(type) | 
					
						
							|  |  |  | #    d = int(str(ptr)) | 
					
						
							|  |  |  | #    warn("CHECKING : %s %d " % (p, ((d & 3) == 0 and (d > 1000 or d == 0)))) | 
					
						
							|  |  |  | #    return (d & (align - 1)) and (d > 1000 or d == 0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def checkAccess(p, align = 1): | 
					
						
							|  |  |  |     return p.dereference() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def checkContents(p, expected, align = 1): | 
					
						
							|  |  |  |     if int(p.dereference()) != expected: | 
					
						
							|  |  |  |         raise RuntimeError("Contents check failed") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def checkPointer(p, align = 1): | 
					
						
							|  |  |  |     if not isNull(p): | 
					
						
							|  |  |  |         p.dereference() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def isNull(p): | 
					
						
							| 
									
										
										
										
											2010-01-04 16:15:32 +01:00
										 |  |  |     # The following can cause evaluation to abort with "UnicodeEncodeError" | 
					
						
							|  |  |  |     # for invalid char *, as their "contents" is being examined | 
					
						
							|  |  |  |     #s = str(p) | 
					
						
							|  |  |  |     #return s == "0x0" or s.startswith("0x0 ") | 
					
						
							| 
									
										
										
										
											2010-08-12 13:19:25 +02:00
										 |  |  |     #try: | 
					
						
							|  |  |  |     #    # Can fail with: "RuntimeError: Cannot access memory at address 0x5" | 
					
						
							|  |  |  |     #    return p.cast(lookupType("void").pointer()) == 0 | 
					
						
							|  |  |  |     #except: | 
					
						
							|  |  |  |     #    return False | 
					
						
							|  |  |  |     return long(p) == 0 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | movableTypes = set([ | 
					
						
							|  |  |  |     "QBrush", "QBitArray", "QByteArray", | 
					
						
							|  |  |  |     "QCustomTypeInfo", "QChar", | 
					
						
							|  |  |  |     "QDate", "QDateTime", | 
					
						
							|  |  |  |     "QFileInfo", "QFixed", "QFixedPoint", "QFixedSize", | 
					
						
							|  |  |  |     "QHashDummyValue", | 
					
						
							|  |  |  |     "QIcon", "QImage", | 
					
						
							| 
									
										
										
										
											2010-08-18 10:20:12 +02:00
										 |  |  |     "QLine", "QLineF", "QLatin1Char", "QLocale", | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |     "QMatrix", "QModelIndex", | 
					
						
							|  |  |  |     "QPoint", "QPointF", "QPen", "QPersistentModelIndex", | 
					
						
							|  |  |  |     "QResourceRoot", "QRect", "QRectF", "QRegExp", | 
					
						
							|  |  |  |     "QSize", "QSizeF", "QString", | 
					
						
							|  |  |  |     "QTime", "QTextBlock", | 
					
						
							|  |  |  |     "QUrl", | 
					
						
							|  |  |  |     "QVariant", | 
					
						
							|  |  |  |     "QXmlStreamAttribute", "QXmlStreamNamespaceDeclaration", | 
					
						
							|  |  |  |     "QXmlStreamNotationDeclaration", "QXmlStreamEntityDeclaration"]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def stripClassTag(type): | 
					
						
							|  |  |  |     if type.startswith("class "): | 
					
						
							|  |  |  |         return type[6:] | 
					
						
							| 
									
										
										
										
											2010-07-14 08:25:26 +02:00
										 |  |  |     if type.startswith("struct "): | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         return type[7:] | 
					
						
							| 
									
										
										
										
											2010-07-14 08:25:26 +02:00
										 |  |  |     if type.startswith("const "): | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |         return type[6:] | 
					
						
							| 
									
										
										
										
											2010-07-14 08:25:26 +02:00
										 |  |  |     if type.startswith("volatile "): | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |         return type[9:] | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |     return type | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def checkPointerRange(p, n): | 
					
						
							| 
									
										
										
										
											2009-12-10 17:45:13 +01:00
										 |  |  |     for i in xrange(n): | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         checkPointer(p) | 
					
						
							|  |  |  |         ++p | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-19 15:01:03 +01:00
										 |  |  | def call2(value, func, args): | 
					
						
							|  |  |  |     # args is a tuple. | 
					
						
							|  |  |  |     arg = "" | 
					
						
							|  |  |  |     for i in range(len(args)): | 
					
						
							|  |  |  |         if i: | 
					
						
							|  |  |  |             arg += ',' | 
					
						
							|  |  |  |         a = args[i] | 
					
						
							|  |  |  |         if (':' in a) and not ("'" in a): | 
					
						
							|  |  |  |             arg = "'%s'" % a | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             arg += a | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #warn("CALL: %s -> %s(%s)" % (value, func, arg)) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |     type = stripClassTag(str(value.type)) | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  |     if type.find(":") >= 0: | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         type = "'" + type + "'" | 
					
						
							| 
									
										
										
										
											2010-08-17 11:24:09 +02:00
										 |  |  |     # 'class' is needed, see http://sourceware.org/bugzilla/show_bug.cgi?id=11912 | 
					
						
							| 
									
										
										
										
											2010-11-19 15:01:03 +01:00
										 |  |  |     exp = "((class %s*)%s)->%s(%s)" % (type, value.address, func, arg) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |     #warn("CALL: %s" % exp) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |     result = None | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         result = parseAndEvaluate(exp) | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |     #warn("  -> %s" % result) | 
					
						
							|  |  |  |     return result | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-19 15:01:03 +01:00
										 |  |  | def call(value, func, *args): | 
					
						
							|  |  |  |     return call2(value, func, args) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-21 12:21:45 +02:00
										 |  |  | def makeValue(type, init): | 
					
						
							|  |  |  |     type = stripClassTag(type) | 
					
						
							|  |  |  |     if type.find(":") >= 0: | 
					
						
							|  |  |  |         type = "'" + type + "'" | 
					
						
							| 
									
										
										
										
											2010-09-30 12:16:41 +02:00
										 |  |  |     # Avoid malloc symbol clash with QVector | 
					
						
							|  |  |  |     gdb.execute("set $d = (%s*)calloc(sizeof(%s), 1)" % (type, type)) | 
					
						
							| 
									
										
										
										
											2010-04-21 12:21:45 +02:00
										 |  |  |     gdb.execute("set *$d = {%s}" % init) | 
					
						
							|  |  |  |     value = parseAndEvaluate("$d").dereference() | 
					
						
							|  |  |  |     #warn("  TYPE: %s" % value.type) | 
					
						
							|  |  |  |     #warn("  ADDR: %s" % value.address) | 
					
						
							|  |  |  |     #warn("  VALUE: %s" % value) | 
					
						
							|  |  |  |     return value | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def makeExpression(value): | 
					
						
							|  |  |  |     type = stripClassTag(str(value.type)) | 
					
						
							|  |  |  |     if type.find(":") >= 0: | 
					
						
							|  |  |  |         type = "'" + type + "'" | 
					
						
							|  |  |  |     #warn("  TYPE: %s" % type) | 
					
						
							|  |  |  |     #exp = "(*(%s*)(&%s))" % (type, value.address) | 
					
						
							|  |  |  |     exp = "(*(%s*)(%s))" % (type, value.address) | 
					
						
							|  |  |  |     #warn("  EXP: %s" % exp) | 
					
						
							|  |  |  |     return exp | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-20 13:54:57 +01:00
										 |  |  | qqNs = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-02 14:10:14 +01:00
										 |  |  | def qtNamespace(): | 
					
						
							| 
									
										
										
										
											2011-01-17 15:09:23 +01:00
										 |  |  |     # FIXME: This only works when call from inside a Qt function frame. | 
					
						
							| 
									
										
										
										
											2011-01-12 13:39:14 +01:00
										 |  |  |     global qqNs | 
					
						
							| 
									
										
										
										
											2010-12-20 13:54:57 +01:00
										 |  |  |     if not qqNs is None: | 
					
						
							|  |  |  |         return qqNs | 
					
						
							| 
									
										
										
										
											2009-12-02 14:10:14 +01:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2010-07-14 08:21:24 +02:00
										 |  |  |         str = catchCliOutput("ptype QString::Null")[0] | 
					
						
							| 
									
										
										
										
											2010-07-14 08:25:26 +02:00
										 |  |  |         # The result looks like: | 
					
						
							| 
									
										
										
										
											2010-07-14 08:21:24 +02:00
										 |  |  |         # "type = const struct myns::QString::Null {" | 
					
						
							|  |  |  |         # "    <no data fields>" | 
					
						
							|  |  |  |         # "}" | 
					
						
							|  |  |  |         pos1 = str.find("struct") + 7 | 
					
						
							|  |  |  |         pos2 = str.find("QString::Null") | 
					
						
							| 
									
										
										
										
											2011-01-17 15:09:23 +01:00
										 |  |  |         if pos1 > -1 and pos2 > -1: | 
					
						
							|  |  |  |             qqNs = str[pos1:pos2] | 
					
						
							|  |  |  |             return qqNs | 
					
						
							|  |  |  |         return "" | 
					
						
							| 
									
										
										
										
											2010-07-14 08:21:24 +02:00
										 |  |  |     except: | 
					
						
							| 
									
										
										
										
											2010-01-11 13:14:54 +01:00
										 |  |  |         return "" | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  | def findFirstZero(p, maximum): | 
					
						
							|  |  |  |     for i in xrange(maximum): | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |         if p.dereference() == 0: | 
					
						
							|  |  |  |             return i | 
					
						
							|  |  |  |         p = p + 1 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     return maximum + 1 | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-15 17:44:56 +01:00
										 |  |  | def extractCharArray(p, maxsize): | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  |     t = lookupType("unsigned char").pointer() | 
					
						
							| 
									
										
										
										
											2010-03-15 17:44:56 +01:00
										 |  |  |     p = p.cast(t) | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     limit = findFirstZero(p, maxsize) | 
					
						
							| 
									
										
										
										
											2010-03-15 17:44:56 +01:00
										 |  |  |     s = "" | 
					
						
							|  |  |  |     for i in xrange(limit): | 
					
						
							|  |  |  |         s += "%c" % int(p.dereference()) | 
					
						
							|  |  |  |         p += 1 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     if i > maxsize: | 
					
						
							| 
									
										
										
										
											2010-03-15 17:44:56 +01:00
										 |  |  |         s += "..." | 
					
						
							|  |  |  |     return s | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def extractByteArray(value): | 
					
						
							|  |  |  |     d_ptr = value['d'].dereference() | 
					
						
							|  |  |  |     data = d_ptr['data'] | 
					
						
							|  |  |  |     size = d_ptr['size'] | 
					
						
							|  |  |  |     alloc = d_ptr['alloc'] | 
					
						
							|  |  |  |     check(0 <= size and size <= alloc and alloc <= 100*1000*1000) | 
					
						
							|  |  |  |     checkRef(d_ptr["ref"]) | 
					
						
							|  |  |  |     if size > 0: | 
					
						
							|  |  |  |         checkAccess(data, 4) | 
					
						
							|  |  |  |         checkAccess(data + size) == 0 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     return extractCharArray(data, min(100, size)) | 
					
						
							| 
									
										
										
										
											2010-03-15 17:44:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  | def encodeCharArray(p, maxsize, limit = -1): | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  |     t = lookupType("unsigned char").pointer() | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |     p = p.cast(t) | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     if limit == -1: | 
					
						
							|  |  |  |         limit = findFirstZero(p, maxsize) | 
					
						
							| 
									
										
										
										
											2009-12-07 09:14:35 +01:00
										 |  |  |     s = "" | 
					
						
							| 
									
										
										
										
											2010-09-13 13:51:44 +02:00
										 |  |  |     try: | 
					
						
							|  |  |  |         # gdb.Inferior is new in gdb 7.2 | 
					
						
							|  |  |  |         inferior = gdb.inferiors()[0] | 
					
						
							|  |  |  |         s = binascii.hexlify(inferior.read_memory(p, limit)) | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         for i in xrange(limit): | 
					
						
							|  |  |  |             s += "%02x" % int(p.dereference()) | 
					
						
							|  |  |  |             p += 1 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     if limit > maxsize: | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |         s += "2e2e2e" | 
					
						
							|  |  |  |     return s | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def encodeChar2Array(p, maxsize): | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  |     t = lookupType("unsigned short").pointer() | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |     p = p.cast(t) | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     limit = findFirstZero(p, maxsize) | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |     s = "" | 
					
						
							|  |  |  |     for i in xrange(limit): | 
					
						
							|  |  |  |         s += "%04x" % int(p.dereference()) | 
					
						
							|  |  |  |         p += 1 | 
					
						
							|  |  |  |     if i == maxsize: | 
					
						
							|  |  |  |         s += "2e002e002e00" | 
					
						
							|  |  |  |     return s | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def encodeChar4Array(p, maxsize): | 
					
						
							| 
									
										
										
										
											2010-06-10 15:11:12 +02:00
										 |  |  |     t = lookupType("unsigned int").pointer() | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |     p = p.cast(t) | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     limit = findFirstZero(p, maxsize) | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |     s = "" | 
					
						
							|  |  |  |     for i in xrange(limit): | 
					
						
							|  |  |  |         s += "%08x" % int(p.dereference()) | 
					
						
							|  |  |  |         p += 1 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     if i > maxsize: | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |         s += "2e0000002e0000002e000000" | 
					
						
							| 
									
										
										
										
											2009-12-07 09:14:35 +01:00
										 |  |  |     return s | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  | def encodeByteArray(value): | 
					
						
							|  |  |  |     d_ptr = value['d'].dereference() | 
					
						
							|  |  |  |     data = d_ptr['data'] | 
					
						
							|  |  |  |     size = d_ptr['size'] | 
					
						
							|  |  |  |     alloc = d_ptr['alloc'] | 
					
						
							|  |  |  |     check(0 <= size and size <= alloc and alloc <= 100*1000*1000) | 
					
						
							| 
									
										
										
										
											2010-01-04 14:14:14 +01:00
										 |  |  |     checkRef(d_ptr["ref"]) | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  |     if size > 0: | 
					
						
							|  |  |  |         checkAccess(data, 4) | 
					
						
							|  |  |  |         checkAccess(data + size) == 0 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     return encodeCharArray(data, 100, size) | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | def encodeString(value): | 
					
						
							|  |  |  |     d_ptr = value['d'].dereference() | 
					
						
							|  |  |  |     data = d_ptr['data'] | 
					
						
							|  |  |  |     size = d_ptr['size'] | 
					
						
							|  |  |  |     alloc = d_ptr['alloc'] | 
					
						
							|  |  |  |     check(0 <= size and size <= alloc and alloc <= 100*1000*1000) | 
					
						
							|  |  |  |     if size > 0: | 
					
						
							|  |  |  |         checkAccess(data, 4) | 
					
						
							| 
									
										
										
										
											2010-04-12 15:44:43 +02:00
										 |  |  |         checkAccess(data + size) == 0 | 
					
						
							| 
									
										
										
										
											2010-01-04 14:14:14 +01:00
										 |  |  |     checkRef(d_ptr["ref"]) | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  |     p = gdb.Value(d_ptr["data"]) | 
					
						
							|  |  |  |     s = "" | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     limit = min(size, 1000) | 
					
						
							| 
									
										
										
										
											2010-09-13 13:51:44 +02:00
										 |  |  |     try: | 
					
						
							|  |  |  |         # gdb.Inferior is new in gdb 7.2 | 
					
						
							|  |  |  |         inferior = gdb.inferiors()[0] | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |         s = binascii.hexlify(inferior.read_memory(p, 2 * limit)) | 
					
						
							| 
									
										
										
										
											2010-09-13 13:51:44 +02:00
										 |  |  |     except: | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |         for i in xrange(limit): | 
					
						
							| 
									
										
										
										
											2010-09-13 13:51:44 +02:00
										 |  |  |             val = int(p.dereference()) | 
					
						
							|  |  |  |             s += "%02x" % (val % 256) | 
					
						
							|  |  |  |             s += "%02x" % (val / 256) | 
					
						
							|  |  |  |             p += 1 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |     if limit < size: | 
					
						
							|  |  |  |         s += "2e002e002e00" | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  |     return s | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  | def stripTypedefs(type): | 
					
						
							|  |  |  |     type = type.unqualified() | 
					
						
							| 
									
										
										
										
											2010-06-28 09:40:35 +02:00
										 |  |  |     while type.code == gdb.TYPE_CODE_TYPEDEF: | 
					
						
							|  |  |  |         type = type.strip_typedefs().unqualified() | 
					
						
							|  |  |  |     return type | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  | def extractFields(type): | 
					
						
							|  |  |  |     # Insufficient, see http://sourceware.org/bugzilla/show_bug.cgi?id=10953: | 
					
						
							|  |  |  |     #fields = value.type.fields() | 
					
						
							|  |  |  |     # Insufficient, see http://sourceware.org/bugzilla/show_bug.cgi?id=11777: | 
					
						
							|  |  |  |     #fields = stripTypedefs(value.type).fields() | 
					
						
							|  |  |  |     # This seems to work. | 
					
						
							| 
									
										
										
										
											2010-07-13 11:21:28 +02:00
										 |  |  |     #warn("TYPE 0: %s" % type) | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |     type = stripTypedefs(type) | 
					
						
							| 
									
										
										
										
											2010-12-16 13:32:47 +01:00
										 |  |  |     fields = type.fields() | 
					
						
							|  |  |  |     if len(fields): | 
					
						
							|  |  |  |         return fields | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |     #warn("TYPE 1: %s" % type) | 
					
						
							| 
									
										
										
										
											2010-07-12 17:13:58 +02:00
										 |  |  |     # This fails for arrays. See comment in lookupType. | 
					
						
							| 
									
										
										
										
											2010-08-17 15:52:01 +02:00
										 |  |  |     type0 = lookupType(str(type)) | 
					
						
							|  |  |  |     if not type0 is None: | 
					
						
							|  |  |  |         type = type0 | 
					
						
							| 
									
										
										
										
											2010-09-07 16:01:07 +02:00
										 |  |  |     if type.code == gdb.TYPE_CODE_FUNC: | 
					
						
							|  |  |  |         return [] | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |     #warn("TYPE 2: %s" % type) | 
					
						
							|  |  |  |     fields = type.fields() | 
					
						
							| 
									
										
										
										
											2010-07-13 11:21:28 +02:00
										 |  |  |     #warn("FIELDS: %s" % fields) | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |     return fields | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | ####################################################################### | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Item | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ####################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Item: | 
					
						
							| 
									
										
										
										
											2010-04-23 10:25:32 +02:00
										 |  |  |     def __init__(self, value, parentiname, iname = None, name = None): | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         self.value = value | 
					
						
							| 
									
										
										
										
											2009-11-27 13:52:29 +01:00
										 |  |  |         if iname is None: | 
					
						
							|  |  |  |             self.iname = parentiname | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.iname = "%s.%s" % (parentiname, iname) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         self.name = name | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  | ####################################################################### | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # SetupCommand | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ####################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 16:14:41 +02:00
										 |  |  | # This is a cache mapping from 'type name' to 'display alternatives'. | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  | qqFormats = {} | 
					
						
							| 
									
										
										
										
											2010-08-30 16:14:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # This is a cache of all known dumpers. | 
					
						
							| 
									
										
										
										
											2010-08-18 10:07:54 +02:00
										 |  |  | qqDumpers = {} | 
					
						
							| 
									
										
										
										
											2010-08-30 16:14:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 18:58:06 +02:00
										 |  |  | # This is a cache of all dumpers that support writing. | 
					
						
							|  |  |  | qqEditable = {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 16:14:41 +02:00
										 |  |  | # This is a cache of the namespace of the currently used Qt version. | 
					
						
							|  |  |  | # FIXME: This is not available on 'bbsetup' time, only at 'bb' time. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # This is a cache of typenames->bool saying whether we are QObject | 
					
						
							|  |  |  | # derived. | 
					
						
							| 
									
										
										
										
											2010-08-23 17:24:36 +02:00
										 |  |  | qqQObjectCache = {} | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SetupCommand(gdb.Command): | 
					
						
							|  |  |  |     """Setup Creator Pretty Printing""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         super(SetupCommand, self).__init__("bbsetup", gdb.COMMAND_OBSCURE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def invoke(self, args, from_tty): | 
					
						
							| 
									
										
										
										
											2010-07-15 11:37:06 +02:00
										 |  |  |         print bbsetup() | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | SetupCommand() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-15 11:37:06 +02:00
										 |  |  | def bbsetup(): | 
					
						
							|  |  |  |     module = sys.modules[__name__] | 
					
						
							|  |  |  |     for key, value in module.__dict__.items(): | 
					
						
							|  |  |  |         if key.startswith("qdump__"): | 
					
						
							|  |  |  |             name = key[7:] | 
					
						
							|  |  |  |             qqDumpers[name] = value | 
					
						
							| 
									
										
										
										
											2010-08-18 10:20:12 +02:00
										 |  |  |             qqFormats[name] = qqFormats.get(name, "") | 
					
						
							| 
									
										
										
										
											2010-07-15 11:37:06 +02:00
										 |  |  |         elif key.startswith("qform__"): | 
					
						
							|  |  |  |             name = key[7:] | 
					
						
							|  |  |  |             formats = "" | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 formats = value() | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             qqFormats[name] = formats | 
					
						
							| 
									
										
										
										
											2011-05-10 18:58:06 +02:00
										 |  |  |         elif key.startswith("qedit__"): | 
					
						
							|  |  |  |             name = key[7:] | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 qqEditable[name] = value | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 pass | 
					
						
							| 
									
										
										
										
											2010-07-15 11:37:06 +02:00
										 |  |  |     result = "dumpers=[" | 
					
						
							| 
									
										
										
										
											2010-12-20 13:54:57 +01:00
										 |  |  |     #qqNs = qtNamespace() # This is too early | 
					
						
							| 
									
										
										
										
											2010-07-15 11:37:06 +02:00
										 |  |  |     for key, value in qqFormats.items(): | 
					
						
							| 
									
										
										
										
											2011-05-10 18:58:06 +02:00
										 |  |  |         if qqEditable.has_key(key): | 
					
						
							|  |  |  |             result += '{type="%s",formats="%s",editable="true"},' % (key, value) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             result += '{type="%s",formats="%s"},' % (key, value) | 
					
						
							| 
									
										
										
										
											2010-12-20 13:54:57 +01:00
										 |  |  |     result += ']' | 
					
						
							|  |  |  |     #result += ',namespace="%s"' % qqNs | 
					
						
							| 
									
										
										
										
											2010-09-14 12:57:24 +02:00
										 |  |  |     result += ',hasInferiorThreadList="%s"' % int(hasInferiorThreadList()) | 
					
						
							| 
									
										
										
										
											2010-07-15 11:37:06 +02:00
										 |  |  |     return result | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 18:58:06 +02:00
										 |  |  | ####################################################################### | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Edit Command | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ####################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def bbedit(args): | 
					
						
							| 
									
										
										
										
											2011-05-10 20:42:22 +02:00
										 |  |  |     (type, expr, value) = args.split(",") | 
					
						
							|  |  |  |     type = base64.b16decode(type, True) | 
					
						
							| 
									
										
										
										
											2011-05-10 18:58:06 +02:00
										 |  |  |     ns = qtNamespace() | 
					
						
							| 
									
										
										
										
											2011-05-10 20:42:22 +02:00
										 |  |  |     if type.startswith(ns): | 
					
						
							|  |  |  |         type = type[len(ns):] | 
					
						
							| 
									
										
										
										
											2011-05-10 18:58:06 +02:00
										 |  |  |     type = type.replace("::", "__") | 
					
						
							| 
									
										
										
										
											2011-05-10 20:42:22 +02:00
										 |  |  |     pos = type.find('<') | 
					
						
							|  |  |  |     if pos != -1: | 
					
						
							|  |  |  |         type = type[0:pos] | 
					
						
							|  |  |  |     expr = base64.b16decode(expr, True) | 
					
						
							|  |  |  |     value = base64.b16decode(value, True) | 
					
						
							|  |  |  |     #warn("EDIT: %s %s %s %s: " % (pos, type, expr, value)) | 
					
						
							| 
									
										
										
										
											2011-05-10 18:58:06 +02:00
										 |  |  |     if qqEditable.has_key(type): | 
					
						
							|  |  |  |         qqEditable[type](expr, value) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class EditCommand(gdb.Command): | 
					
						
							|  |  |  |     """QtCreator Data Edit Support""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         super(EditCommand, self).__init__("bbedit", gdb.COMMAND_OBSCURE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def invoke(self, args, from_tty): | 
					
						
							|  |  |  |        bbedit(args) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | EditCommand() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | ####################################################################### | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # FrameCommand | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ####################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FrameCommand(gdb.Command): | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  |     """Do fancy stuff.""" | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         super(FrameCommand, self).__init__("bb", gdb.COMMAND_OBSCURE) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |     def invoke(self, args, from_tty): | 
					
						
							| 
									
										
										
										
											2010-11-19 13:02:34 +01:00
										 |  |  |         if args.startswith("options:p1"): | 
					
						
							|  |  |  |             import cProfile | 
					
						
							|  |  |  |             cProfile.run('bb("%s")' % args, "/tmp/bbprof") | 
					
						
							|  |  |  |             import pstats | 
					
						
							|  |  |  |             pstats.Stats('/tmp/bbprof').sort_stats('time').print_stats() | 
					
						
							|  |  |  |         elif args.startswith("options:p2"): | 
					
						
							|  |  |  |             import timeit | 
					
						
							|  |  |  |             print timeit.repeat('bb("%s")' % args, | 
					
						
							|  |  |  |                 'from __main__ import bb', number=10) | 
					
						
							| 
									
										
										
										
											2010-06-10 15:33:10 +02:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2010-11-19 13:02:34 +01:00
										 |  |  |             output = bb(args) | 
					
						
							| 
									
										
										
										
											2010-08-25 18:07:53 +02:00
										 |  |  |             try: | 
					
						
							|  |  |  |                 print(output) | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 out = "" | 
					
						
							|  |  |  |                 for c in output: | 
					
						
							|  |  |  |                     cc = ord(c) | 
					
						
							|  |  |  |                     if cc > 127: | 
					
						
							|  |  |  |                         out += "\\\\%d" % cc | 
					
						
							|  |  |  |                     elif cc < 0: | 
					
						
							|  |  |  |                         out += "\\\\%d" % (cc + 256) | 
					
						
							|  |  |  |                     else: | 
					
						
							|  |  |  |                         out += c | 
					
						
							|  |  |  |                 print(out) | 
					
						
							| 
									
										
										
										
											2010-05-19 12:00:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-10 14:28:25 +02:00
										 |  |  | FrameCommand() | 
					
						
							| 
									
										
										
										
											2009-12-09 09:53:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-10 14:28:25 +02:00
										 |  |  | def bb(args): | 
					
						
							| 
									
										
										
										
											2011-05-09 13:41:43 +02:00
										 |  |  |     output = 'data=[' + "".join(Dumper(args).output) + '],typeinfo=[' | 
					
						
							| 
									
										
										
										
											2011-04-12 15:56:03 +02:00
										 |  |  |     for typeName, typeInfo in typeInfoCache.iteritems(): | 
					
						
							|  |  |  |         if not typeInfo.reported: | 
					
						
							|  |  |  |             output += '{name="' + base64.b64encode(typeName) | 
					
						
							|  |  |  |             output += '",size="' + str(typeInfo.size) + '"},' | 
					
						
							|  |  |  |             typeInfo.reported = True | 
					
						
							|  |  |  |     output += ']'; | 
					
						
							|  |  |  |     return output | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  | ####################################################################### | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Step Command | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ####################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SalCommand(gdb.Command): | 
					
						
							|  |  |  |     """Do fancy stuff.""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         super(SalCommand, self).__init__("sal", gdb.COMMAND_OBSCURE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def invoke(self, arg, from_tty): | 
					
						
							| 
									
										
										
										
											2010-02-05 16:00:54 +01:00
										 |  |  |         (cmd, addr) = arg.split(",") | 
					
						
							|  |  |  |         lines = catchCliOutput("info line *" + addr) | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  |         fromAddr = "0x0" | 
					
						
							|  |  |  |         toAddr = "0x0" | 
					
						
							|  |  |  |         for line in lines: | 
					
						
							|  |  |  |             pos0from = line.find(" starts at address") + 19 | 
					
						
							|  |  |  |             pos1from = line.find(" ", pos0from) | 
					
						
							|  |  |  |             pos0to = line.find(" ends at", pos1from) + 9 | 
					
						
							|  |  |  |             pos1to = line.find(" ", pos0to) | 
					
						
							|  |  |  |             if pos1to > 0: | 
					
						
							|  |  |  |                 fromAddr = line[pos0from : pos1from] | 
					
						
							|  |  |  |                 toAddr = line[pos0to : pos1to] | 
					
						
							| 
									
										
										
										
											2010-02-05 16:00:54 +01:00
										 |  |  |         gdb.execute("maint packet sal%s,%s,%s" % (cmd,fromAddr, toAddr)) | 
					
						
							| 
									
										
										
										
											2010-02-04 09:55:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | SalCommand() | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-05 16:00:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | ####################################################################### | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # The Dumper Class | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ####################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-15 17:44:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | class Dumper: | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |     def __init__(self, args): | 
					
						
							| 
									
										
										
										
											2011-05-09 13:41:43 +02:00
										 |  |  |         self.output = [] | 
					
						
							| 
									
										
										
										
											2011-03-01 15:44:22 +01:00
										 |  |  |         self.printsAddress = True | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         self.currentChildType = "" | 
					
						
							|  |  |  |         self.currentChildNumChild = -1 | 
					
						
							|  |  |  |         self.currentMaxNumChilds = -1 | 
					
						
							|  |  |  |         self.currentNumChilds = -1 | 
					
						
							|  |  |  |         self.currentValue = None | 
					
						
							|  |  |  |         self.currentValuePriority = -100 | 
					
						
							|  |  |  |         self.currentValueEncoding = None | 
					
						
							|  |  |  |         self.currentType = None | 
					
						
							|  |  |  |         self.currentTypePriority = -100 | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |         self.typeformats = {} | 
					
						
							|  |  |  |         self.formats = {} | 
					
						
							|  |  |  |         self.expandedINames = "" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         options = [] | 
					
						
							|  |  |  |         varList = [] | 
					
						
							|  |  |  |         watchers = "" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-20 13:54:57 +01:00
										 |  |  |         resultVarName = "" | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |         for arg in args.split(' '): | 
					
						
							|  |  |  |             pos = arg.find(":") + 1 | 
					
						
							|  |  |  |             if arg.startswith("options:"): | 
					
						
							|  |  |  |                 options = arg[pos:].split(",") | 
					
						
							|  |  |  |             elif arg.startswith("vars:"): | 
					
						
							|  |  |  |                 if len(arg[pos:]) > 0: | 
					
						
							|  |  |  |                     varList = arg[pos:].split(",") | 
					
						
							|  |  |  |             elif arg.startswith("resultvarname:"): | 
					
						
							|  |  |  |                 resultVarName = arg[pos:] | 
					
						
							|  |  |  |             elif arg.startswith("expanded:"): | 
					
						
							|  |  |  |                 self.expandedINames = set(arg[pos:].split(",")) | 
					
						
							|  |  |  |             elif arg.startswith("typeformats:"): | 
					
						
							|  |  |  |                 for f in arg[pos:].split(","): | 
					
						
							|  |  |  |                     pos = f.find("=") | 
					
						
							|  |  |  |                     if pos != -1: | 
					
						
							|  |  |  |                         type = base64.b16decode(f[0:pos], True) | 
					
						
							|  |  |  |                         self.typeformats[type] = int(f[pos+1:]) | 
					
						
							|  |  |  |             elif arg.startswith("formats:"): | 
					
						
							|  |  |  |                 for f in arg[pos:].split(","): | 
					
						
							|  |  |  |                     pos = f.find("=") | 
					
						
							|  |  |  |                     if pos != -1: | 
					
						
							|  |  |  |                         self.formats[f[0:pos]] = int(f[pos+1:]) | 
					
						
							|  |  |  |             elif arg.startswith("watchers:"): | 
					
						
							|  |  |  |                 watchers = base64.b16decode(arg[pos:], True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.useFancy = "fancy" in options | 
					
						
							|  |  |  |         self.passExceptions = "pe" in options | 
					
						
							|  |  |  |         self.autoDerefPointers = "autoderef" in options | 
					
						
							| 
									
										
										
										
											2010-09-13 08:32:12 +02:00
										 |  |  |         self.partialUpdate = "partial" in options | 
					
						
							| 
									
										
										
										
											2011-05-26 16:35:36 +02:00
										 |  |  |         self.tooltipOnly = "tooltiponly" in options | 
					
						
							|  |  |  |         self.noLocals = "nolocals" in options | 
					
						
							| 
									
										
										
										
											2010-07-20 18:59:51 +02:00
										 |  |  |         self.ns = qtNamespace() | 
					
						
							| 
									
										
										
										
											2010-12-20 13:54:57 +01:00
										 |  |  |         self.alienSource = False | 
					
						
							|  |  |  |         #try: | 
					
						
							|  |  |  |         #    self.alienSource = catchCliOutput("info source")[0][-3:-1]==".d" | 
					
						
							|  |  |  |         #except: | 
					
						
							|  |  |  |         #    self.alienSource = False | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         #warn("NAMESPACE: '%s'" % self.ns) | 
					
						
							|  |  |  |         #warn("VARIABLES: %s" % varList) | 
					
						
							|  |  |  |         #warn("EXPANDED INAMES: %s" % self.expandedINames) | 
					
						
							| 
									
										
										
										
											2010-09-07 16:36:12 +02:00
										 |  |  |         #warn("WATCHERS: %s" % watchers) | 
					
						
							| 
									
										
										
										
											2011-05-26 16:35:36 +02:00
										 |  |  |         #warn("PARTIAL: %s" % self.partialUpdate) | 
					
						
							|  |  |  |         #warn("NO LOCALS: %s" % self.noLocals) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |         module = sys.modules[__name__] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # Locals | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2011-05-27 15:02:25 +02:00
										 |  |  |         locals = [] | 
					
						
							| 
									
										
										
										
											2010-09-13 08:32:12 +02:00
										 |  |  |         fullUpdateNeeded = True | 
					
						
							| 
									
										
										
										
											2011-05-27 11:02:57 +02:00
										 |  |  |         if self.partialUpdate and len(varList) == 1 and not self.tooltipOnly: | 
					
						
							| 
									
										
										
										
											2010-09-13 08:32:12 +02:00
										 |  |  |             #warn("PARTIAL: %s" % varList) | 
					
						
							|  |  |  |             parts = varList[0].split('.') | 
					
						
							|  |  |  |             #warn("PARTIAL PARTS: %s" % parts) | 
					
						
							|  |  |  |             name = parts[1] | 
					
						
							|  |  |  |             #warn("PARTIAL VAR: %s" % name) | 
					
						
							|  |  |  |             #fullUpdateNeeded = False | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 frame = gdb.selected_frame() | 
					
						
							|  |  |  |                 item = Item(0, "local", name, name) | 
					
						
							|  |  |  |                 item.value = frame.read_var(name) | 
					
						
							|  |  |  |                 locals = [item] | 
					
						
							|  |  |  |                 #warn("PARTIAL LOCALS: %s" % locals) | 
					
						
							|  |  |  |                 fullUpdateNeeded = False | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             varList = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-26 16:35:36 +02:00
										 |  |  |         if fullUpdateNeeded and not self.tooltipOnly and not self.noLocals: | 
					
						
							| 
									
										
										
										
											2010-09-13 08:32:12 +02:00
										 |  |  |             locals = listOfLocals(varList) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Take care of the return value of the last function call. | 
					
						
							|  |  |  |         if len(resultVarName) > 0: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 value = parseAndEvaluate(resultVarName) | 
					
						
							|  |  |  |                 locals.append(Item(value, "return", resultVarName, "return")) | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 # Don't bother. It's only supplementary information anyway. | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for item in locals: | 
					
						
							| 
									
										
										
										
											2011-06-20 15:23:28 +02:00
										 |  |  |           item.value = upcast(item.value) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |           with OutputSafer(self, "", ""): | 
					
						
							|  |  |  |             self.anonNumber = -1 | 
					
						
							|  |  |  |             #warn("ITEM NAME %s: " % item.name) | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 #warn("ITEM VALUE %s: " % item.value) | 
					
						
							|  |  |  |                 # Throw on funny stuff, catch below. | 
					
						
							|  |  |  |                 # Unfortunately, this fails also with a "Unicode encoding error" | 
					
						
							|  |  |  |                 # in testArray(). | 
					
						
							|  |  |  |                 #dummy = str(item.value) | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 # Locals with failing memory access. | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                 # FIXME: Isn't this taken care off by the SubItem destructor? | 
					
						
							| 
									
										
										
										
											2010-06-16 11:08:54 +02:00
										 |  |  |                 with SubItem(self): | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                     self.put('iname="%s",' % item.iname) | 
					
						
							|  |  |  |                     self.put('name="%s",' % item.name) | 
					
						
							|  |  |  |                     self.put('addr="<not accessible>",') | 
					
						
							| 
									
										
										
										
											2010-08-18 10:20:12 +02:00
										 |  |  |                     self.put('numchild="0"') | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                     self.putValue("<not accessible>") | 
					
						
							|  |  |  |                     self.putType(item.value.type) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                 continue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             type = item.value.type | 
					
						
							|  |  |  |             if type.code == gdb.TYPE_CODE_PTR \ | 
					
						
							|  |  |  |                     and item.name == "argv" and str(type) == "char **": | 
					
						
							|  |  |  |                 # Special handling for char** argv. | 
					
						
							|  |  |  |                 n = 0 | 
					
						
							|  |  |  |                 p = item.value | 
					
						
							| 
									
										
										
										
											2010-07-07 10:55:49 +02:00
										 |  |  |                 # p is 0 for "optimized out" cases. Or contains rubbish. | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     if not isNull(p): | 
					
						
							|  |  |  |                         while not isNull(p.dereference()) and n <= 100: | 
					
						
							|  |  |  |                             p += 1 | 
					
						
							|  |  |  |                             n += 1 | 
					
						
							|  |  |  |                 except: | 
					
						
							|  |  |  |                     pass | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-16 11:08:54 +02:00
										 |  |  |                 with SubItem(self): | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                     self.put('iname="%s",' % item.iname) | 
					
						
							|  |  |  |                     self.putName(item.name) | 
					
						
							| 
									
										
										
										
											2010-11-19 11:48:52 +01:00
										 |  |  |                     self.putItemCount(n, 100) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                     self.putType(type) | 
					
						
							|  |  |  |                     self.putNumChild(n) | 
					
						
							|  |  |  |                     if self.isExpanded(item): | 
					
						
							|  |  |  |                         p = item.value | 
					
						
							|  |  |  |                         with Children(self, n): | 
					
						
							|  |  |  |                             for i in xrange(n): | 
					
						
							|  |  |  |                                 value = p.dereference() | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |                                 self.putSubItem(Item(value, item.iname, i, None)) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                                 p += 1 | 
					
						
							|  |  |  |                             if n > 100: | 
					
						
							|  |  |  |                                 self.putEllipsis() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 # A "normal" local variable or parameter. | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                    addr = cleanAddress(item.value.address) | 
					
						
							|  |  |  |                    with SubItem(self): | 
					
						
							|  |  |  |                        self.put('iname="%s",' % item.iname) | 
					
						
							|  |  |  |                        self.put('addr="%s",' % addr) | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |                        self.putItem(item) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                 except AttributeError: | 
					
						
							|  |  |  |                     # Thrown by cleanAddress with message "'NoneType' object | 
					
						
							|  |  |  |                     # has no attribute 'cast'" for optimized-out values. | 
					
						
							| 
									
										
										
										
											2010-08-17 11:24:09 +02:00
										 |  |  |                     with SubItem(self): | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                         self.put('iname="%s",' % item.iname) | 
					
						
							|  |  |  |                         self.put('name="%s",' % item.name) | 
					
						
							|  |  |  |                         self.put('addr="<optimized out>",') | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                         self.putValue("<optimized out>") | 
					
						
							|  |  |  |                         self.putType(item.value.type) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # Watchers | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         with OutputSafer(self, ",", ""): | 
					
						
							|  |  |  |             if len(watchers) > 0: | 
					
						
							|  |  |  |                 for watcher in watchers.split("##"): | 
					
						
							|  |  |  |                     (exp, iname) = watcher.split("#") | 
					
						
							| 
									
										
										
										
											2010-06-11 12:22:32 +02:00
										 |  |  |                     self.handleWatch(exp, iname) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # Breakpoints | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         #listOfBreakpoints(d) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         #print('data=[' + locals + sep + watchers + '],bkpts=[' + breakpoints + ']\n') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-23 17:24:36 +02:00
										 |  |  |     def checkForQObjectBase(self, type): | 
					
						
							|  |  |  |         if type.code != gdb.TYPE_CODE_STRUCT: | 
					
						
							|  |  |  |             return False | 
					
						
							|  |  |  |         name = str(type) | 
					
						
							|  |  |  |         if name in qqQObjectCache: | 
					
						
							|  |  |  |             return qqQObjectCache[name] | 
					
						
							|  |  |  |         if name == self.ns + "QObject": | 
					
						
							|  |  |  |             qqQObjectCache[name] = True | 
					
						
							|  |  |  |             return True | 
					
						
							|  |  |  |         fields = type.strip_typedefs().fields() | 
					
						
							|  |  |  |         if len(fields) == 0: | 
					
						
							|  |  |  |             qqQObjectCache[name] = False | 
					
						
							|  |  |  |             return False | 
					
						
							|  |  |  |         base = fields[0].type.strip_typedefs() | 
					
						
							| 
									
										
										
										
											2010-09-03 10:58:41 +02:00
										 |  |  |         # Prevent infinite recursion in Qt 3.3.8 | 
					
						
							|  |  |  |         if str(base) == name: | 
					
						
							|  |  |  |             return False | 
					
						
							| 
									
										
										
										
											2010-08-23 17:24:36 +02:00
										 |  |  |         result = self.checkForQObjectBase(base) | 
					
						
							|  |  |  |         qqQObjectCache[name] = result | 
					
						
							|  |  |  |         return result | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def handleWatch(self, exp, iname): | 
					
						
							|  |  |  |         exp = str(exp) | 
					
						
							| 
									
										
										
										
											2011-04-08 13:21:18 +02:00
										 |  |  |         escapedExp = base64.b64encode(exp); | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |         #warn("HANDLING WATCH %s, INAME: '%s'" % (exp, iname)) | 
					
						
							|  |  |  |         if exp.startswith("[") and exp.endswith("]"): | 
					
						
							|  |  |  |             #warn("EVAL: EXP: %s" % exp) | 
					
						
							| 
									
										
										
										
											2010-10-12 10:47:07 +02:00
										 |  |  |             with SubItem(self): | 
					
						
							|  |  |  |                 self.put('iname="%s",' % iname) | 
					
						
							| 
									
										
										
										
											2011-04-08 13:21:18 +02:00
										 |  |  |                 self.put('wname="%s",' % escapedExp) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                 try: | 
					
						
							|  |  |  |                     list = eval(exp) | 
					
						
							|  |  |  |                     self.putValue("") | 
					
						
							|  |  |  |                     self.putType(" ") | 
					
						
							|  |  |  |                     self.putNumChild(len(list)) | 
					
						
							|  |  |  |                     # This is a list of expressions to evaluate | 
					
						
							|  |  |  |                     with Children(self, len(list)): | 
					
						
							|  |  |  |                         itemNumber = 0 | 
					
						
							|  |  |  |                         for item in list: | 
					
						
							| 
									
										
										
										
											2010-06-11 12:22:32 +02:00
										 |  |  |                             self.handleWatch(item, "%s.%d" % (iname, itemNumber)) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                             itemNumber += 1 | 
					
						
							|  |  |  |                 except RuntimeError, error: | 
					
						
							|  |  |  |                     warn("EVAL: ERROR CAUGHT %s" % error) | 
					
						
							|  |  |  |                     self.putValue("<syntax error>") | 
					
						
							|  |  |  |                     self.putType(" ") | 
					
						
							|  |  |  |                     self.putNumChild(0) | 
					
						
							|  |  |  |                     with Children(self, 0): | 
					
						
							|  |  |  |                         pass | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-11 12:22:32 +02:00
										 |  |  |         with SubItem(self): | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |             self.put('iname="%s",' % iname) | 
					
						
							| 
									
										
										
										
											2011-04-08 13:21:18 +02:00
										 |  |  |             self.put('wname="%s",' % escapedExp) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |             handled = False | 
					
						
							| 
									
										
										
										
											2010-07-23 18:20:13 +02:00
										 |  |  |             if len(exp) == 0: # The <Edit> case | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                 self.putValue(" ") | 
					
						
							|  |  |  |                 self.putType(" ") | 
					
						
							|  |  |  |                 self.putNumChild(0) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     value = parseAndEvaluate(exp) | 
					
						
							|  |  |  |                     item = Item(value, iname, None, None) | 
					
						
							| 
									
										
										
										
											2011-02-28 17:35:28 +01:00
										 |  |  |                     #if not value is None: | 
					
						
							|  |  |  |                     #    self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |                     self.putItem(item) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  |                 except RuntimeError: | 
					
						
							| 
									
										
										
										
											2010-09-07 16:36:12 +02:00
										 |  |  |                     self.currentType = " " | 
					
						
							|  |  |  |                     self.currentValue = "<no such value>" | 
					
						
							|  |  |  |                     self.currentChildNumChild = -1 | 
					
						
							|  |  |  |                     self.currentNumChilds = 0 | 
					
						
							|  |  |  |                     self.putNumChild(0) | 
					
						
							| 
									
										
										
										
											2010-06-10 14:52:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def put(self, value): | 
					
						
							| 
									
										
										
										
											2011-05-09 13:41:43 +02:00
										 |  |  |         self.output.append(value) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def putField(self, name, value): | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |         self.put('%s="%s",' % (name, value)) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 10:28:51 +01:00
										 |  |  |     def childRange(self): | 
					
						
							| 
									
										
										
										
											2011-05-16 14:07:10 +02:00
										 |  |  |         return xrange(min(self.currentMaxNumChilds, self.currentNumChilds)) | 
					
						
							| 
									
										
										
										
											2009-12-14 10:28:51 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-29 11:10:05 +02:00
										 |  |  |     # Convenience function. | 
					
						
							| 
									
										
										
										
											2010-11-19 11:48:52 +01:00
										 |  |  |     def putItemCount(self, count, maximum = 1000000000): | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |         # This needs to override the default value, so don't use 'put' directly. | 
					
						
							| 
									
										
										
										
											2010-11-19 11:48:52 +01:00
										 |  |  |         if count > maximum: | 
					
						
							|  |  |  |             self.putValue('<>%s items>' % maximum) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.putValue('<%s items>' % count) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def putEllipsis(self): | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |         self.put('{name="<incomplete>",value="",type="",numchild="0"},') | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |     def putType(self, type, priority = 0): | 
					
						
							| 
									
										
										
										
											2010-07-06 12:43:48 +02:00
										 |  |  |         # Higher priority values override lower ones. | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         if priority >= self.currentTypePriority: | 
					
						
							|  |  |  |             self.currentType = type | 
					
						
							|  |  |  |             self.currentTypePriority = priority | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |     def putAddress(self, addr): | 
					
						
							| 
									
										
										
										
											2011-03-01 15:44:22 +01:00
										 |  |  |         if self.printsAddress: | 
					
						
							| 
									
										
										
										
											2011-05-23 17:40:58 +02:00
										 |  |  |             try: | 
					
						
							|  |  |  |                 # addr can be "None", long(None) fails. | 
					
						
							|  |  |  |                 self.put('addr="0x%x",' % long(addr)) | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 pass | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |     def putNumChild(self, numchild): | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         #warn("NUM CHILD: '%s' '%s'" % (numchild, self.currentChildNumChild)) | 
					
						
							|  |  |  |         if numchild != self.currentChildNumChild: | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |             self.put('numchild="%s",' % numchild) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |     def putValue(self, value, encoding = None, priority = 0): | 
					
						
							| 
									
										
										
										
											2010-06-29 11:10:05 +02:00
										 |  |  |         # Higher priority values override lower ones. | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         if priority >= self.currentValuePriority: | 
					
						
							|  |  |  |             self.currentValue = value | 
					
						
							|  |  |  |             self.currentValuePriority = priority | 
					
						
							|  |  |  |             self.currentValueEncoding = encoding | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-07 16:21:41 +02:00
										 |  |  |     def putPointerValue(self, value): | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         # Use a lower priority | 
					
						
							| 
									
										
										
										
											2011-02-03 18:23:07 +01:00
										 |  |  |         if value is None: | 
					
						
							|  |  |  |             self.putValue(" ", None, -1) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.putValue("0x%x" % value.dereference().cast( | 
					
						
							|  |  |  |                 lookupType("unsigned long")), None, -1) | 
					
						
							| 
									
										
										
										
											2010-04-07 16:21:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  |     def putStringValue(self, value): | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |         if not value is None: | 
					
						
							| 
									
										
										
										
											2010-01-11 17:57:50 +01:00
										 |  |  |             str = encodeString(value) | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |             self.putValue(str, Hex4EncodedLittleEndian) | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-15 17:44:56 +01:00
										 |  |  |     def putDisplay(self, format, value = None, cmd = None): | 
					
						
							|  |  |  |         self.put('editformat="%s",' % format) | 
					
						
							|  |  |  |         if cmd is None: | 
					
						
							|  |  |  |             if not value is None: | 
					
						
							|  |  |  |                 self.put('editvalue="%s",' % value) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.put('editvalue="%s|%s",' % (cmd, value)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  |     def putByteArrayValue(self, value): | 
					
						
							|  |  |  |         str = encodeByteArray(value) | 
					
						
							| 
									
										
										
										
											2010-06-29 11:10:05 +02:00
										 |  |  |         self.putValue(str, Hex2EncodedLatin1) | 
					
						
							| 
									
										
										
										
											2010-01-06 17:01:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  |     def putName(self, name): | 
					
						
							| 
									
										
										
										
											2010-02-10 15:30:50 +01:00
										 |  |  |         self.put('name="%s",' % name) | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |     def isExpanded(self, item): | 
					
						
							|  |  |  |         #warn("IS EXPANDED: %s in %s" % (item.iname, self.expandedINames)) | 
					
						
							|  |  |  |         if item.iname is None: | 
					
						
							|  |  |  |             raise "Illegal iname 'None'" | 
					
						
							|  |  |  |         if item.iname.startswith("None"): | 
					
						
							|  |  |  |             raise "Illegal iname '%s'" % item.iname | 
					
						
							|  |  |  |         #warn("   --> %s" % (item.iname in self.expandedINames)) | 
					
						
							|  |  |  |         return item.iname in self.expandedINames | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def isExpandedIName(self, iname): | 
					
						
							|  |  |  |         return iname in self.expandedINames | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def stripNamespaceFromType(self, typeobj): | 
					
						
							| 
									
										
										
										
											2009-12-07 11:35:43 +01:00
										 |  |  |         # This breaks for dumpers type names containing '__star'. | 
					
						
							|  |  |  |         # But this should not happen as identifiers containing two | 
					
						
							|  |  |  |         # subsequent underscores are reserved for the implemention. | 
					
						
							|  |  |  |         if typeobj.code == gdb.TYPE_CODE_PTR: | 
					
						
							|  |  |  |             return self.stripNamespaceFromType(typeobj.target()) + "__star" | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         type = stripClassTag(str(typeobj)) | 
					
						
							|  |  |  |         if len(self.ns) > 0 and type.startswith(self.ns): | 
					
						
							|  |  |  |             type = type[len(self.ns):] | 
					
						
							|  |  |  |         pos = type.find("<") | 
					
						
							| 
									
										
										
										
											2010-03-08 13:33:07 +01:00
										 |  |  |         # FIXME: make it recognize  foo<A>::bar<B>::iterator? | 
					
						
							|  |  |  |         while pos != -1: | 
					
						
							|  |  |  |             pos1 = type.rfind(">", pos) | 
					
						
							|  |  |  |             type = type[0:pos] + type[pos1+1:] | 
					
						
							|  |  |  |             pos = type.find("<") | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         return type | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def isMovableType(self, type): | 
					
						
							|  |  |  |         if type.code == gdb.TYPE_CODE_PTR: | 
					
						
							|  |  |  |             return True | 
					
						
							|  |  |  |         if isSimpleType(type): | 
					
						
							|  |  |  |             return True | 
					
						
							|  |  |  |         return self.stripNamespaceFromType(type) in movableTypes | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def putIntItem(self, name, value): | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         with SubItem(self): | 
					
						
							|  |  |  |             self.putName(name) | 
					
						
							|  |  |  |             self.putValue(value) | 
					
						
							| 
									
										
										
										
											2011-03-01 16:49:41 +01:00
										 |  |  |             self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |             self.putType("int") | 
					
						
							|  |  |  |             self.putNumChild(0) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def putBoolItem(self, name, value): | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         with SubItem(self): | 
					
						
							|  |  |  |             self.putName(name) | 
					
						
							|  |  |  |             self.putValue(value) | 
					
						
							|  |  |  |             self.putType("bool") | 
					
						
							|  |  |  |             self.putNumChild(0) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-12 11:14:50 +01:00
										 |  |  |     def itemFormat(self, item): | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  |         format = self.formats.get(item.iname) | 
					
						
							| 
									
										
										
										
											2010-03-12 11:14:50 +01:00
										 |  |  |         if format is None: | 
					
						
							|  |  |  |             format = self.typeformats.get(stripClassTag(str(item.value.type))) | 
					
						
							|  |  |  |         return format | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |     def putSubItem(self, item): | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |         with SubItem(self): | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |             self.putItem(item) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-19 15:01:03 +01:00
										 |  |  |     def putCallItem(self, name, item, func, *args): | 
					
						
							|  |  |  |         result = call2(item.value, func, args) | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |         self.putSubItem(Item(result, item.iname, name, name)) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |     def putItem(self, item): | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         name = getattr(item, "name", None) | 
					
						
							|  |  |  |         if not name is None: | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  |             self.putName(name) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 11:03:00 +01:00
										 |  |  |         if item.value is None: | 
					
						
							|  |  |  |             # Happens for non-available watchers in gdb versions that | 
					
						
							|  |  |  |             # need to use gdb.execute instead of gdb.parse_and_eval | 
					
						
							|  |  |  |             self.putValue("<not available>") | 
					
						
							|  |  |  |             self.putType("<unknown>") | 
					
						
							|  |  |  |             self.putNumChild(0) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         # FIXME: Gui shows references stripped? | 
					
						
							| 
									
										
										
										
											2010-08-18 10:20:12 +02:00
										 |  |  |         #warn(" ") | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         #warn("REAL INAME: %s " % item.iname) | 
					
						
							| 
									
										
										
										
											2010-01-06 17:01:16 +01:00
										 |  |  |         #warn("REAL NAME: %s " % name) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  |         #warn("REAL TYPE: %s " % item.value.type) | 
					
						
							| 
									
										
										
										
											2010-06-28 09:40:35 +02:00
										 |  |  |         #warn("REAL CODE: %s " % item.value.type.code) | 
					
						
							| 
									
										
										
										
											2010-01-06 16:17:05 +01:00
										 |  |  |         #warn("REAL VALUE: %s " % item.value) | 
					
						
							| 
									
										
										
										
											2010-01-05 10:48:14 +01:00
										 |  |  |         #try: | 
					
						
							|  |  |  |         #    warn("REAL VALUE: %s " % item.value) | 
					
						
							| 
									
										
										
										
											2010-01-14 15:25:53 +01:00
										 |  |  |         #except: | 
					
						
							|  |  |  |         #    #UnicodeEncodeError: | 
					
						
							| 
									
										
										
										
											2010-01-05 10:48:14 +01:00
										 |  |  |         #    warn("REAL VALUE: <unprintable>") | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         value = item.value | 
					
						
							| 
									
										
										
										
											2011-06-20 15:23:28 +02:00
										 |  |  |         realtype = value.type | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |         type = realtype; | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  |         format = self.itemFormat(item) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if type.code == gdb.TYPE_CODE_REF: | 
					
						
							| 
									
										
										
										
											2010-06-01 13:13:27 +02:00
										 |  |  |             try: | 
					
						
							|  |  |  |                 # This throws "RuntimeError: Attempt to dereference a | 
					
						
							|  |  |  |                 # generic pointer." with MinGW's gcc 4.5 when it "identifies" | 
					
						
							|  |  |  |                 # a "QWidget &" as "void &". | 
					
						
							|  |  |  |                 type = type.target() | 
					
						
							|  |  |  |                 value = value.cast(type) | 
					
						
							| 
									
										
										
										
											2010-11-01 18:39:35 +01:00
										 |  |  |                 item.value = value | 
					
						
							| 
									
										
										
										
											2010-06-01 13:13:27 +02:00
										 |  |  |             except RuntimeError: | 
					
						
							|  |  |  |                 value = item.value | 
					
						
							|  |  |  |                 type = value.type | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-18 20:44:36 +01:00
										 |  |  |         if type.code == gdb.TYPE_CODE_STRUCT and self.alienSource: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 # Check whether it's an array. | 
					
						
							|  |  |  |                 arraylen = value["length"] | 
					
						
							|  |  |  |                 arrayptr = value["ptr"] | 
					
						
							|  |  |  |                 self.putType(type) | 
					
						
							|  |  |  |                 self.putAddress(value.address) | 
					
						
							|  |  |  |                 if str(type) == "struct char[]": | 
					
						
							|  |  |  |                     self.putValue(encodeCharArray(arrayptr, 100, arraylen), | 
					
						
							|  |  |  |                         Hex2EncodedLatin1) | 
					
						
							|  |  |  |                     self.putNumChild(0) | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     self.putNumChild(arraylen) | 
					
						
							|  |  |  |                     self.putItemCount(arraylen) | 
					
						
							|  |  |  |                     if self.isExpanded(item): | 
					
						
							|  |  |  |                         with Children(self): | 
					
						
							|  |  |  |                             for i in range(arraylen): | 
					
						
							|  |  |  |                                 v = arrayptr.dereference() | 
					
						
							|  |  |  |                                 self.putSubItem(Item(v, item.iname)) | 
					
						
							|  |  |  |                                 arrayptr += 1 | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 18:38:30 +01:00
										 |  |  |         typedefStrippedType = stripTypedefs(type) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if typedefStrippedType.code == gdb.TYPE_CODE_INT: | 
					
						
							| 
									
										
										
										
											2010-11-18 19:15:39 +01:00
										 |  |  |             if self.alienSource and str(type) == "unsigned long long": | 
					
						
							|  |  |  |                 strlen = value % (1L<<32) | 
					
						
							|  |  |  |                 strptr = value / (1L<<32) | 
					
						
							|  |  |  |                 self.putType("string") | 
					
						
							|  |  |  |                 self.putAddress(value.address) | 
					
						
							|  |  |  |                 self.putValue(encodeCharArray(strptr, 100, strlen), Hex2EncodedLatin1) | 
					
						
							|  |  |  |                 self.putNumChild(0) | 
					
						
							|  |  |  |                 return | 
					
						
							| 
									
										
										
										
											2011-02-28 17:35:28 +01:00
										 |  |  |             self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-11-18 19:15:39 +01:00
										 |  |  |             self.putType(realtype) | 
					
						
							|  |  |  |             self.putValue(int(value)) | 
					
						
							|  |  |  |             self.putNumChild(0) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 18:38:30 +01:00
										 |  |  |         if typedefStrippedType.code == gdb.TYPE_CODE_CHAR: | 
					
						
							| 
									
										
										
										
											2010-11-16 17:09:25 +01:00
										 |  |  |             self.putType(realtype) | 
					
						
							|  |  |  |             self.putValue(int(value)) | 
					
						
							| 
									
										
										
										
											2011-02-28 17:35:28 +01:00
										 |  |  |             self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-11-16 17:09:25 +01:00
										 |  |  |             self.putNumChild(0) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 18:38:30 +01:00
										 |  |  |         if typedefStrippedType.code == gdb.TYPE_CODE_FLT \ | 
					
						
							|  |  |  |                 or typedefStrippedType.code == gdb.TYPE_CODE_BOOL: | 
					
						
							| 
									
										
										
										
											2011-03-01 16:49:41 +01:00
										 |  |  |             self.putType(realtype) | 
					
						
							|  |  |  |             self.putValue(value) | 
					
						
							|  |  |  |             self.putAddress(value.address) | 
					
						
							|  |  |  |             self.putNumChild(0) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 15:00:31 +01:00
										 |  |  |         if value.type.code == gdb.TYPE_CODE_ARRAY: | 
					
						
							|  |  |  |             baseptr = value.cast(realtype.pointer()) | 
					
						
							| 
									
										
										
										
											2011-04-18 16:15:39 +02:00
										 |  |  |             if format == 0 or format == 1: | 
					
						
							|  |  |  |                 # Explicityly requested Latin1 or UTF-8 formatting. | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |                 if  format == 0: | 
					
						
							|  |  |  |                     f = Hex2EncodedLatin1 | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     f = Hex2EncodedUtf8 | 
					
						
							| 
									
										
										
										
											2011-04-18 16:15:39 +02:00
										 |  |  |                 self.putAddress(value.address) | 
					
						
							|  |  |  |                 self.putType(realtype) | 
					
						
							|  |  |  |                 self.putValue(encodeCharArray(value, 100), f) | 
					
						
							|  |  |  |                 self.putNumChild(1) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self.putType(realtype) | 
					
						
							|  |  |  |                 self.putAddress(value.address) | 
					
						
							|  |  |  |                 self.putValue("%s" % baseptr) | 
					
						
							|  |  |  |                 self.putNumChild(1) | 
					
						
							| 
									
										
										
										
											2010-12-14 15:00:31 +01:00
										 |  |  |             if self.isExpanded(item): | 
					
						
							|  |  |  |                 charptr = lookupType("unsigned char").pointer() | 
					
						
							|  |  |  |                 addr1 = (baseptr+1).cast(charptr) | 
					
						
							|  |  |  |                 addr0 = baseptr.cast(charptr) | 
					
						
							|  |  |  |                 self.put('addrbase="%s",' % cleanAddress(addr0)) | 
					
						
							|  |  |  |                 self.put('addrstep="%s",' % (addr1 - addr0)) | 
					
						
							|  |  |  |                 with Children(self, 1, realtype.target()): | 
					
						
							|  |  |  |                     child = Item(value, item.iname, None, item.name) | 
					
						
							|  |  |  |                     self.putFields(child) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 14:29:40 +02:00
										 |  |  |         if typedefStrippedType.code == gdb.TYPE_CODE_ENUM: | 
					
						
							|  |  |  |             self.putType(realtype) | 
					
						
							|  |  |  |             self.putValue("%s (%d)" % (value, value)) | 
					
						
							|  |  |  |             self.putNumChild(0) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-28 09:40:35 +02:00
										 |  |  |         if isSimpleType(typedefStrippedType): | 
					
						
							| 
									
										
										
										
											2009-12-07 11:35:43 +01:00
										 |  |  |             #warn("IS SIMPLE: %s " % type) | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  |             #self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |             self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2009-12-03 13:58:14 +01:00
										 |  |  |             self.putValue(value) | 
					
						
							|  |  |  |             self.putNumChild(0) | 
					
						
							| 
									
										
										
										
											2010-08-17 14:14:22 +02:00
										 |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Is this derived from QObject? | 
					
						
							| 
									
										
										
										
											2010-08-19 14:05:50 +02:00
										 |  |  |         isQObjectDerived = self.checkForQObjectBase(typedefStrippedType) | 
					
						
							| 
									
										
										
										
											2010-08-17 14:14:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         nsStrippedType = self.stripNamespaceFromType(typedefStrippedType)\ | 
					
						
							|  |  |  |             .replace("::", "__") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         #warn(" STRIPPED: %s" % nsStrippedType) | 
					
						
							|  |  |  |         #warn(" DUMPERS: %s" % (nsStrippedType in qqDumpers)) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 14:14:22 +02:00
										 |  |  |         if self.useFancy \ | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                 and ((format is None) or (format >= 1)) \ | 
					
						
							| 
									
										
										
										
											2010-10-26 10:40:31 +02:00
										 |  |  |                 and ((nsStrippedType in qqDumpers) \ | 
					
						
							|  |  |  |                     or (str(type) in qqDumpers) \ | 
					
						
							|  |  |  |                     or isQObjectDerived): | 
					
						
							| 
									
										
										
										
											2009-12-07 11:35:43 +01:00
										 |  |  |             #warn("IS DUMPABLE: %s " % type) | 
					
						
							| 
									
										
										
										
											2010-06-25 09:07:14 +02:00
										 |  |  |             #self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |             self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2011-02-28 17:35:28 +01:00
										 |  |  |             self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-09-28 09:10:33 +02:00
										 |  |  |             if nsStrippedType in qqDumpers: | 
					
						
							|  |  |  |                 qqDumpers[nsStrippedType](self, item) | 
					
						
							| 
									
										
										
										
											2010-10-26 10:40:31 +02:00
										 |  |  |             if str(type) in qqDumpers: | 
					
						
							|  |  |  |                 qqDumpers[str(type)](self, item) | 
					
						
							| 
									
										
										
										
											2010-09-28 09:10:33 +02:00
										 |  |  |             elif isQObjectDerived: | 
					
						
							| 
									
										
										
										
											2010-08-13 13:46:10 +02:00
										 |  |  |                 # value has references stripped off item.value. | 
					
						
							|  |  |  |                 item1 = Item(value, item.iname) | 
					
						
							|  |  |  |                 qdump__QObject(self, item1) | 
					
						
							| 
									
										
										
										
											2010-01-05 17:05:13 +01:00
										 |  |  |             #warn(" RESULT: %s " % self.output) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             return | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |         if typedefStrippedType.code == gdb.TYPE_CODE_PTR: | 
					
						
							| 
									
										
										
										
											2010-07-06 10:57:59 +02:00
										 |  |  |             #warn("POINTER: %s" % format) | 
					
						
							| 
									
										
										
										
											2010-07-01 08:56:06 +02:00
										 |  |  |             target = stripTypedefs(type.target()) | 
					
						
							| 
									
										
										
										
											2010-02-26 14:25:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             if isNull(value): | 
					
						
							| 
									
										
										
										
											2010-07-06 10:57:59 +02:00
										 |  |  |                 #warn("NULL POINTER") | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |                 self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |                 self.putValue("0x0") | 
					
						
							|  |  |  |                 self.putNumChild(0) | 
					
						
							| 
									
										
										
										
											2011-02-28 17:35:28 +01:00
										 |  |  |                 self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 return | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             if target.code == gdb.TYPE_CODE_VOID: | 
					
						
							| 
									
										
										
										
											2010-07-06 10:57:59 +02:00
										 |  |  |                 #warn("VOID POINTER: %s" % format) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |                 self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2010-07-01 08:56:06 +02:00
										 |  |  |                 self.putValue(str(value)) | 
					
						
							|  |  |  |                 self.putNumChild(0) | 
					
						
							| 
									
										
										
										
											2011-02-28 17:35:28 +01:00
										 |  |  |                 self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 return | 
					
						
							| 
									
										
										
										
											2010-07-01 08:56:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             if format == 0: | 
					
						
							|  |  |  |                 # Explicitly requested bald pointer. | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  |                 self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |                 self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 self.putPointerValue(value.address) | 
					
						
							|  |  |  |                 self.putNumChild(1) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:59:09 +02:00
										 |  |  |                 if self.isExpanded(item): | 
					
						
							|  |  |  |                     with Children(self): | 
					
						
							|  |  |  |                         with SubItem(self): | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |                             self.putItem(Item(item.value.dereference(), | 
					
						
							| 
									
										
										
										
											2010-08-30 11:59:09 +02:00
										 |  |  |                                 item.iname, "*", "*")) | 
					
						
							| 
									
										
										
										
											2011-02-28 17:35:28 +01:00
										 |  |  |                             #self.putAddress(item.value) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 return | 
					
						
							| 
									
										
										
										
											2010-03-11 18:55:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |             if format == 1: | 
					
						
							|  |  |  |                 # Explicityly requested Latin1 formatting. | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |                 self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2011-05-16 15:14:30 +02:00
										 |  |  |                 self.putValue(encodeCharArray(value, 100), Hex2EncodedLatin1) | 
					
						
							|  |  |  |                 self.putNumChild(0) | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if format == 2: | 
					
						
							|  |  |  |                 # Explicityly requested UTF-8 formatting. | 
					
						
							|  |  |  |                 self.putAddress(value.address) | 
					
						
							|  |  |  |                 self.putType(realtype) | 
					
						
							|  |  |  |                 self.putValue(encodeCharArray(value, 100), Hex2EncodedUtf8) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 self.putNumChild(0) | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if format == 3: | 
					
						
							|  |  |  |                 # Explitly requested UTF-16 formatting. | 
					
						
							|  |  |  |                 self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |                 self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 self.putValue(encodeChar2Array(value, 100), Hex4EncodedBigEndian) | 
					
						
							|  |  |  |                 self.putNumChild(0) | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if format == 4: | 
					
						
							|  |  |  |                 # Explitly requested UCS-4 formatting. | 
					
						
							|  |  |  |                 self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |                 self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 self.putValue(encodeChar4Array(value, 100), Hex8EncodedBigEndian) | 
					
						
							|  |  |  |                 self.putNumChild(0) | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (str(typedefStrippedType) | 
					
						
							| 
									
										
										
										
											2010-07-02 09:57:22 +02:00
										 |  |  |                     .replace("(anonymous namespace)", "").find("(") != -1): | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 # A function pointer with format None. | 
					
						
							|  |  |  |                 self.putValue(str(item.value)) | 
					
						
							|  |  |  |                 self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |                 self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                 self.putNumChild(0) | 
					
						
							|  |  |  |                 return | 
					
						
							| 
									
										
										
										
											2010-02-26 14:25:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-05 10:48:14 +01:00
										 |  |  |             #warn("AUTODEREF: %s" % self.autoDerefPointers) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             if self.autoDerefPointers or name == "this": | 
					
						
							|  |  |  |                 ## Generic pointer type with format None | 
					
						
							| 
									
										
										
										
											2010-07-06 10:57:59 +02:00
										 |  |  |                 #warn("GENERIC AUTODEREF POINTER: %s" % value.address) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |                 innerType = realtype.target() | 
					
						
							| 
									
										
										
										
											2010-10-22 12:06:30 +02:00
										 |  |  |                 innerTypeName = str(innerType.unqualified()) | 
					
						
							|  |  |  |                 # Never dereference char types. | 
					
						
							| 
									
										
										
										
											2011-03-01 15:44:22 +01:00
										 |  |  |                 if innerTypeName != "char" \ | 
					
						
							|  |  |  |                         and innerTypeName != "signed char" \ | 
					
						
							|  |  |  |                         and innerTypeName != "unsigned char"  \ | 
					
						
							|  |  |  |                         and innerTypeName != "wchar_t": | 
					
						
							| 
									
										
										
										
											2010-10-22 12:06:30 +02:00
										 |  |  |                     self.putType(innerType) | 
					
						
							|  |  |  |                     savedCurrentChildType = self.currentChildType | 
					
						
							|  |  |  |                     self.currentChildType = stripClassTag(str(innerType)) | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |                     self.putItem( | 
					
						
							| 
									
										
										
										
											2010-10-22 12:06:30 +02:00
										 |  |  |                         Item(item.value.dereference(), item.iname, None, None)) | 
					
						
							|  |  |  |                     self.currentChildType = savedCurrentChildType | 
					
						
							|  |  |  |                     self.putPointerValue(value.address) | 
					
						
							| 
									
										
										
										
											2011-04-06 18:39:56 +02:00
										 |  |  |                     self.put('origaddr="%s",' % value) | 
					
						
							| 
									
										
										
										
											2010-10-22 12:06:30 +02:00
										 |  |  |                     return | 
					
						
							| 
									
										
										
										
											2010-01-05 10:48:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-11 14:36:01 +01:00
										 |  |  |             # Fall back to plain pointer printing. | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             #warn("GENERIC PLAIN POINTER: %s" % value.type) | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |             self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             self.putAddress(value.address) | 
					
						
							|  |  |  |             self.putNumChild(1) | 
					
						
							|  |  |  |             if self.isExpanded(item): | 
					
						
							|  |  |  |                 with Children(self): | 
					
						
							|  |  |  |                     with SubItem(self): | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |                         self.putItem(Item(item.value.dereference(), | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |                             item.iname, "*", "*")) | 
					
						
							|  |  |  |                         self.putAddress(item.value) | 
					
						
							|  |  |  |             self.putPointerValue(value.address) | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |         if str(typedefStrippedType).startswith("<anon"): | 
					
						
							| 
									
										
										
										
											2010-03-16 18:35:26 +01:00
										 |  |  |             # Anonymous union. We need a dummy name to distinguish | 
					
						
							|  |  |  |             # multiple anonymous unions in the struct. | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |             self.putType(realtype) | 
					
						
							| 
									
										
										
										
											2010-03-16 18:35:26 +01:00
										 |  |  |             self.putValue("{...}") | 
					
						
							|  |  |  |             self.anonNumber += 1 | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |             with Children(self, 1): | 
					
						
							|  |  |  |                 self.listAnonymous(item, "#%d" % self.anonNumber, type) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             return | 
					
						
							| 
									
										
										
										
											2010-03-16 18:35:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-01 14:33:52 +02:00
										 |  |  |         #warn("GENERIC STRUCT: %s" % realtype) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |         #warn("INAME: %s " % item.iname) | 
					
						
							|  |  |  |         #warn("INAMES: %s " % self.expandedINames) | 
					
						
							|  |  |  |         #warn("EXPANDED: %s " % (item.iname in self.expandedINames)) | 
					
						
							|  |  |  |         fields = extractFields(type) | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-20 15:23:28 +02:00
										 |  |  |         self.putType(type) | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |         try: | 
					
						
							|  |  |  |             self.putAddress(item.value.address) | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         self.putValue("{...}") | 
					
						
							| 
									
										
										
										
											2009-11-26 15:11:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |         if False: | 
					
						
							|  |  |  |             numfields = 0 | 
					
						
							|  |  |  |             for field in fields: | 
					
						
							|  |  |  |                 bitpos = getattr(field, "bitpos", None) | 
					
						
							|  |  |  |                 if not bitpos is None: | 
					
						
							|  |  |  |                     ++numfields | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             numfields = len(fields) | 
					
						
							|  |  |  |         self.putNumChild(numfields) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 15:00:31 +01:00
										 |  |  |         if self.isExpanded(item): | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             innerType = None | 
					
						
							|  |  |  |             if len(fields) == 1 and fields[0].name is None: | 
					
						
							| 
									
										
										
										
											2011-06-20 15:23:28 +02:00
										 |  |  |                 innerType = type.target() | 
					
						
							| 
									
										
										
										
											2010-08-30 11:43:50 +02:00
										 |  |  |             with Children(self, 1, innerType): | 
					
						
							|  |  |  |                 child = Item(value, item.iname, None, item.name) | 
					
						
							|  |  |  |                 self.putFields(child) | 
					
						
							| 
									
										
										
										
											2010-04-23 10:25:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-19 11:04:36 +01:00
										 |  |  |     def putPlainChildren(self, item): | 
					
						
							|  |  |  |         self.putValue(" ", None, -99) | 
					
						
							|  |  |  |         self.putNumChild(1) | 
					
						
							|  |  |  |         self.putAddress(item.value.address) | 
					
						
							|  |  |  |         if self.isExpanded(item): | 
					
						
							|  |  |  |             with Children(self): | 
					
						
							|  |  |  |                self.putFields(item) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-01 15:44:22 +01:00
										 |  |  |     def putFields(self, item, dumpBase = True): | 
					
						
							| 
									
										
										
										
											2010-04-23 10:25:32 +02:00
										 |  |  |             value = item.value | 
					
						
							| 
									
										
										
										
											2010-07-01 09:37:28 +02:00
										 |  |  |             type = stripTypedefs(value.type) | 
					
						
							| 
									
										
										
										
											2011-06-20 15:23:28 +02:00
										 |  |  |             fields = extractFields(value.type) | 
					
						
							| 
									
										
										
										
											2010-04-23 10:25:32 +02:00
										 |  |  |             baseNumber = 0 | 
					
						
							|  |  |  |             for field in fields: | 
					
						
							|  |  |  |                 #warn("FIELD: %s" % field) | 
					
						
							|  |  |  |                 #warn("  BITSIZE: %s" % field.bitsize) | 
					
						
							|  |  |  |                 #warn("  ARTIFICIAL: %s" % field.artificial) | 
					
						
							|  |  |  |                 bitpos = getattr(field, "bitpos", None) | 
					
						
							|  |  |  |                 if bitpos is None: # FIXME: Is check correct? | 
					
						
							|  |  |  |                     continue  # A static class member(?). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if field.name is None: | 
					
						
							| 
									
										
										
										
											2010-07-01 09:37:28 +02:00
										 |  |  |                     innerType = type.target() | 
					
						
							| 
									
										
										
										
											2010-04-23 10:25:32 +02:00
										 |  |  |                     p = value.cast(innerType.pointer()) | 
					
						
							| 
									
										
										
										
											2010-07-01 09:37:28 +02:00
										 |  |  |                     for i in xrange(type.sizeof / innerType.sizeof): | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |                         self.putSubItem(Item(p.dereference(), item.iname, i, None)) | 
					
						
							| 
									
										
										
										
											2010-04-23 10:25:32 +02:00
										 |  |  |                         p = p + 1 | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 # Ignore vtable pointers for virtual inheritance. | 
					
						
							|  |  |  |                 if field.name.startswith("_vptr."): | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 #warn("FIELD NAME: %s" % field.name) | 
					
						
							|  |  |  |                 #warn("FIELD TYPE: %s" % field.type) | 
					
						
							| 
									
										
										
										
											2011-03-01 14:23:35 +01:00
										 |  |  |                 # The 'field.is_base_class' attribute exists in gdb 7.0.X | 
					
						
							|  |  |  |                 # and later only. Symbian gdb is 6.8 as of 20.10.2010. | 
					
						
							|  |  |  |                 # TODO: Remove once Symbian gdb is up to date. | 
					
						
							| 
									
										
										
										
											2010-10-20 11:01:48 +02:00
										 |  |  |                 if hasattr(field, 'is_base_class'): | 
					
						
							|  |  |  |                     isBaseClass = field.is_base_class | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     isBaseClass = field.name == stripClassTag(str(field.type)) | 
					
						
							|  |  |  |                 if isBaseClass: | 
					
						
							| 
									
										
										
										
											2010-04-23 10:25:32 +02:00
										 |  |  |                     # Field is base type. We cannot use field.name as part | 
					
						
							|  |  |  |                     # of the iname as it might contain spaces and other | 
					
						
							|  |  |  |                     # strange characters. | 
					
						
							| 
									
										
										
										
											2011-03-01 15:44:22 +01:00
										 |  |  |                     if dumpBase: | 
					
						
							|  |  |  |                         child = Item(value.cast(field.type), | 
					
						
							|  |  |  |                             item.iname, "@%d" % baseNumber, field.name) | 
					
						
							|  |  |  |                         baseNumber += 1 | 
					
						
							|  |  |  |                         with SubItem(self): | 
					
						
							|  |  |  |                             self.put('iname="%s",' % child.iname) | 
					
						
							|  |  |  |                             self.putItem(child) | 
					
						
							| 
									
										
										
										
											2010-04-23 10:25:32 +02:00
										 |  |  |                 elif len(field.name) == 0: | 
					
						
							|  |  |  |                     # Anonymous union. We need a dummy name to distinguish | 
					
						
							|  |  |  |                     # multiple anonymous unions in the struct. | 
					
						
							|  |  |  |                     self.anonNumber += 1 | 
					
						
							|  |  |  |                     self.listAnonymous(item, "#%d" % self.anonNumber, | 
					
						
							|  |  |  |                         field.type) | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     # Named field. | 
					
						
							|  |  |  |                     with SubItem(self): | 
					
						
							| 
									
										
										
										
											2011-06-20 15:23:28 +02:00
										 |  |  |                         child = Item(upcast(value[field.name]), | 
					
						
							| 
									
										
										
										
											2010-04-23 10:25:32 +02:00
										 |  |  |                             item.iname, field.name, field.name) | 
					
						
							| 
									
										
										
										
											2011-03-01 16:30:51 +01:00
										 |  |  |                         bitsize = getattr(field, "bitsize", None) | 
					
						
							|  |  |  |                         if not bitsize is None: | 
					
						
							|  |  |  |                             self.put("bitsize=\"%s\",bitpos=\"%s\"," | 
					
						
							|  |  |  |                                     % (bitsize, bitpos)) | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |                         self.putItem(child) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-25 14:30:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def listAnonymous(self, item, name, type): | 
					
						
							|  |  |  |         for field in type.fields(): | 
					
						
							| 
									
										
										
										
											2010-03-17 11:44:04 +01:00
										 |  |  |             #warn("FIELD NAME: %s" % field.name) | 
					
						
							| 
									
										
										
										
											2010-02-25 14:30:43 +01:00
										 |  |  |             if len(field.name) > 0: | 
					
						
							|  |  |  |                 value = item.value[field.name] | 
					
						
							|  |  |  |                 child = Item(value, item.iname, field.name, field.name) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |                 with SubItem(self): | 
					
						
							| 
									
										
										
										
											2011-02-28 17:35:28 +01:00
										 |  |  |                     #self.putAddress(value.address) | 
					
						
							| 
									
										
										
										
											2010-10-26 15:11:34 +02:00
										 |  |  |                     self.putItem(child) | 
					
						
							| 
									
										
										
										
											2010-02-25 14:30:43 +01:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 # Further nested. | 
					
						
							| 
									
										
										
										
											2010-03-16 18:35:26 +01:00
										 |  |  |                 self.anonNumber += 1 | 
					
						
							|  |  |  |                 name = "#%d" % self.anonNumber | 
					
						
							| 
									
										
										
										
											2010-02-25 14:30:43 +01:00
										 |  |  |                 iname = "%s.%s" % (item.iname, name) | 
					
						
							|  |  |  |                 child = Item(item.value, iname, None, name) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |                 with SubItem(self): | 
					
						
							| 
									
										
										
										
											2010-10-08 14:54:01 +02:00
										 |  |  |                     self.put('name="%s",' % name) | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                     self.putValue(" ") | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |                     if str(field.type).endswith("<anonymous union>"): | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                         self.putType("<anonymous union>") | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |                     elif str(field.type).endswith("<anonymous struct>"): | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                         self.putType("<anonymous struct>") | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |                     else: | 
					
						
							| 
									
										
										
										
											2010-06-28 14:06:17 +02:00
										 |  |  |                         self.putType(field.type) | 
					
						
							| 
									
										
										
										
											2010-04-08 14:08:19 +02:00
										 |  |  |                     with Children(self, 1): | 
					
						
							|  |  |  |                         self.listAnonymous(child, name, field.type) | 
					
						
							| 
									
										
										
										
											2010-02-25 14:30:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-13 12:37:30 +02:00
										 |  |  | ####################################################################### | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # ThreadNames Command | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ####################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ThreadNamesCommand(gdb.Command): | 
					
						
							|  |  |  |     """Guess Thread names""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         super(ThreadNamesCommand, self).__init__("threadnames", gdb.COMMAND_OBSCURE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def invoke(self, arg, from_tty): | 
					
						
							| 
									
										
										
										
											2010-09-14 18:43:32 +02:00
										 |  |  |         ns = qtNamespace() | 
					
						
							| 
									
										
										
										
											2010-09-13 12:37:30 +02:00
										 |  |  |         out = '[' | 
					
						
							| 
									
										
										
										
											2010-12-20 16:55:07 +01:00
										 |  |  |         oldthread = gdb.selected_thread() | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             for thread in gdb.inferiors()[0].threads(): | 
					
						
							|  |  |  |                 maximalStackDepth = int(arg) | 
					
						
							|  |  |  |                 thread.switch() | 
					
						
							|  |  |  |                 e = gdb.selected_frame () | 
					
						
							|  |  |  |                 while True: | 
					
						
							|  |  |  |                     maximalStackDepth -= 1 | 
					
						
							|  |  |  |                     if maximalStackDepth < 0: | 
					
						
							|  |  |  |                         break | 
					
						
							|  |  |  |                     e = e.older() | 
					
						
							|  |  |  |                     if e == None or e.name() == None: | 
					
						
							|  |  |  |                         break | 
					
						
							|  |  |  |                     if e.name() == ns + "QThreadPrivate::start": | 
					
						
							|  |  |  |                         try: | 
					
						
							|  |  |  |                             thrptr = e.read_var("thr").dereference() | 
					
						
							|  |  |  |                             obtype = lookupType(ns + "QObjectPrivate").pointer() | 
					
						
							|  |  |  |                             d_ptr = thrptr["d_ptr"]["d"].cast(obtype).dereference() | 
					
						
							|  |  |  |                             objectName = d_ptr["objectName"] | 
					
						
							|  |  |  |                             out += '{valueencoded="'; | 
					
						
							|  |  |  |                             out += str(Hex4EncodedLittleEndianWithoutQuotes)+'",id="' | 
					
						
							|  |  |  |                             out += str(thread.num) + '",value="' | 
					
						
							|  |  |  |                             out += encodeString(objectName) | 
					
						
							|  |  |  |                             out += '"},' | 
					
						
							|  |  |  |                         except: | 
					
						
							|  |  |  |                             pass | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         oldthread.switch() | 
					
						
							| 
									
										
										
										
											2010-09-13 12:37:30 +02:00
										 |  |  |         print out[:-1] + ']' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ThreadNamesCommand() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-25 14:30:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-12 10:39:33 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | ####################################################################### | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Mixed C++/Qml debugging | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ####################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def qmlb(): | 
					
						
							|  |  |  |     # gdb.execute(command, to_string=True).split("\n") | 
					
						
							|  |  |  |     warm("RUNNING: break -f QScript::FunctionWrapper::proxyCall") | 
					
						
							|  |  |  |     output = catchCliOutput("rbreak -f QScript::FunctionWrapper::proxyCall") | 
					
						
							|  |  |  |     warn("OUTPUT: %s " % output) | 
					
						
							|  |  |  |     bp = output[0] | 
					
						
							|  |  |  |     warn("BP: %s " % bp) | 
					
						
							|  |  |  |     # BP: ['Breakpoint 3 at 0xf166e7: file .../qscriptfunction.cpp, line 75.\\n'] \n" | 
					
						
							|  |  |  |     pos = bp.find(' ') + 1 | 
					
						
							|  |  |  |     warn("POS: %s " % pos) | 
					
						
							|  |  |  |     nr = bp[bp.find(' ') + 1 : bp.find(' at ')] | 
					
						
							|  |  |  |     warn("NR: %s " % nr) | 
					
						
							|  |  |  |     return bp | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SetQmlBreakpoint(gdb.Command): | 
					
						
							|  |  |  |     """Set helper breakpoint Script::FunctionWrapper::proxyCall""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         super(SetQmlBreakpoint, self).__init__("qmlb", gdb.COMMAND_OBSCURE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def invoke(self, arg, from_tty): | 
					
						
							|  |  |  |         qmlb() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SetQmlBreakpoint() |