Fixed stack parsing again, this time for functions with templated names.
[kdbg.git] / kdbg / typetable.h
blob7159d9fa0a1a279c8875b9673bd19d3637b697f1
1 // $Id$
3 // Copyright by Johannes Sixt
4 // This file is under GPL, the GNU General Public Licence
6 #include <qdict.h>
7 #include <qstring.h>
8 #include <qregexp.h>
9 #include <qstrlist.h>
11 class KConfigBase;
13 /**
14 * The maximum number of sub-expressions that may appear in a single struct
15 * value.
17 const int typeInfoMaxExpr = 5;
20 struct TypeInfo
22 TypeInfo(const QString& displayString);
23 ~TypeInfo();
25 /**
26 * The number of sub-expressions that need to be evaluated to get the
27 * struct value.
29 int m_numExprs;
30 /**
31 * This array contains the various parts which glue together the
32 * sub-expressions. The entries in this array are the parts that appear
33 * between the percent signs '%' of the display expression; hence,
34 * there is one part more than there are sub-expressions.
36 QString m_displayString[typeInfoMaxExpr+1];
37 /**
38 * This is a list of partial expressions. Each contains exactly one %s,
39 * which will be replaced by the parent expression. The results are
40 * substituted for the percent signs in m_displayString.
42 QString m_exprStrings[typeInfoMaxExpr];
43 /**
44 * This is a list of guard expressions. Each contains exactly one %s,
45 * which will be replaced by the parent expression, or is empty. If the
46 * evaluation of the resulting expression returns an error, the
47 * corresponding expression from m_exprStrings is not evaluated. (This
48 * is used to guard function calls.)
50 QString m_guardStrings[typeInfoMaxExpr];
51 /**
52 * Gets a pointer to a TypeInfo that means: "I don't know the type"
54 static TypeInfo* unknownType() { return &m_unknownType; }
56 protected:
57 static TypeInfo m_unknownType;
60 class TypeTable
62 public:
63 TypeTable();
64 ~TypeTable();
66 /**
67 * Load all known type libraries.
69 static void initTypeLibraries();
71 /**
72 * Copy type infos to the specified dictionary.
74 void copyTypes(QDict<TypeInfo>& dict);
76 /**
77 * Does the file name match this library?
79 bool matchFileName(const char* fileName) {
80 return m_shlibNameRE.match(fileName) >= 0;
83 /**
84 * Is the specified builtin feature enabled in this type library?
86 bool isEnabledBuiltin(const char* feature);
88 /**
89 * Returns the command to print the QString data.
91 const char* printQStringDataCmd() const { return m_printQStringDataCmd; }
93 protected:
94 /**
95 * Loads the structure type information from the configuration files.
97 static void loadTypeTables();
98 void loadFromFile(const QString& fileName);
99 void readType(KConfigBase& cf, const char* type);
100 QDict<TypeInfo> m_typeDict;
101 QDict<TypeInfo> m_aliasDict;
102 QString m_displayName;
103 QRegExp m_shlibNameRE;
104 QStrList m_enabledBuiltins;
105 char* m_printQStringDataCmd;
110 * This table keeps only references to the global type table. It is set up
111 * once per program.
113 class ProgramTypeTable
115 public:
116 ProgramTypeTable();
117 ~ProgramTypeTable();
120 * Load types belonging to the specified libraries.
122 void loadLibTypes(const QStrList& libs);
125 * Load types belonging to the specified type table
127 void loadTypeTable(TypeTable* table);
130 * Clears that types and starts over (e.g. for a new program).
132 void clear();
135 * Lookup a structure type.
137 * A type is looked up in the following manner:
139 * - If the type is unknown, 0 is returned.
141 * - If the type is known and it belongs to a shared library and that
142 * shared library was loaded, the type is returned such that isNew()
143 * returns true.
145 * - Otherwise the type is returned such that isNew() returns true.
147 TypeInfo* lookup(const char* type);
150 * Adds a new alias for a type name.
152 void registerAlias(const QString& name, TypeInfo* type);
155 * Tells whether we use built-in support to understand QStrings.
157 bool parseQt2QStrings() const { return m_parseQt2QStrings; }
160 * Tells whether QChar are defined like in Qt3.
162 bool qCharIsShort() const { return m_QCharIsShort; }
165 * Returns the command to print the QString data.
167 const char* printQStringDataCmd() const { return m_printQStringDataCmd; }
169 protected:
170 QDict<TypeInfo> m_types;
171 QDict<TypeInfo> m_aliasDict;
172 bool m_parseQt2QStrings;
173 bool m_QCharIsShort;
174 const char* m_printQStringDataCmd;