forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentry.h
411 lines (365 loc) · 11.8 KB
/
entry.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : entry.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef CODELITE_ENTRY_H
#define CODELITE_ENTRY_H
#include <wx/treectrl.h>
#include "readtags.h"
#include <wx/string.h>
#include <map>
#include <vector>
#include "smart_ptr.h"
#include "codelite_exports.h"
class TagEntry;
typedef SmartPtr<TagEntry> TagEntryPtr;
typedef std::vector<TagEntryPtr> TagEntryPtrVector_t;
/**
* TagEntry is a persistent object which is capable of storing and loading itself from
* various inputs:
* - tagEntry (ctags structure)
*
* It contains all the knowledge of storing and retrieving itself from the database
*
* \ingroup CodeLite
* \version 1.0
* first version
*
* \date 11-11-2006
* \author Eran
*/
class WXDLLIMPEXP_CL TagEntry
{
wxString m_path; ///< Tag full path
wxString m_file; ///< File this tag is found
int m_lineNumber; ///< Line number
wxString m_pattern; ///< A pattern that can be used to locate the tag in the file
wxString m_kind; ///< Member, function, class, typedef etc.
wxString m_parent; ///< Direct parent
wxTreeItemId m_hti; ///< Handle to tree item, not persistent item
wxString m_name; ///< Tag name (short name, excluding any scope names)
std::map<wxString, wxString> m_extFields; ///< Additional extension fields
long m_id;
wxString m_scope;
bool m_differOnByLineNumber;
bool m_isClangTag;
void* m_userData; // This member is not saved into the database
size_t m_flags; // This member is not saved into the database
wxString m_comment; // This member is not saved into the database
public:
enum {
Tag_No_Signature_Format = 0x00000001, // Do not attempt to format the signature. Use the GetSignature() as is
Tag_No_Return_Value_Eval = 0x00000002 // Do not evaluate the return value. Use GetReturnValue() instead
};
static wxString KIND_CLASS;
static wxString KIND_ENUM;
static wxString KIND_ENUMERATOR;
static wxString KIND_FUNCTION;
static wxString KIND_PROTOTYPE;
static wxString KIND_MEMBER;
static wxString KIND_NAMESPACE;
static wxString KIND_VARIABLE;
static wxString KIND_UNION;
static wxString KIND_TYPEDEF;
static wxString KIND_MACRO;
static wxString KIND_STRUCT;
static wxString KIND_FILE;
// Used by std::for_each to copy elements which are constructors
class ForEachCopyIfCtor {
TagEntryPtrVector_t &m_matches;
public:
ForEachCopyIfCtor(TagEntryPtrVector_t &v) : m_matches(v) {}
void operator()(TagEntryPtr tag) {
if ( tag->IsConstructor() ) {
m_matches.push_back( tag );
}
}
};
public:
/**
* Construct a TagEntry from tagEntry struct
* \param entry Tag entry
*/
TagEntry(const tagEntry& entry);
void SetComment(const wxString& comment) {
this->m_comment = comment;
}
const wxString& GetComment() const {
return m_comment;
}
void SetFlags(size_t flags) {
this->m_flags = flags;
}
size_t GetFlags() const {
return m_flags;
}
/**
* Default constructor.
*/
TagEntry();
void FromLine(const wxString &line);
/**
* Copy constructor.
*/
TagEntry(const TagEntry& rhs);
/**
* \param rhs Source to copy from (right hand side)
* \return this
*/
TagEntry& operator=(const TagEntry& rhs);
/**
* Compare two TagEntry objects.
* \param rhs Right hand side
* \return true if identical, false otherwise
*/
bool operator==(const TagEntry& rhs);
/**
* Destructor
*/
virtual ~TagEntry();
/**
* Construct a TagEntry from tagEntry struct.
* \param entry Tag entry
*/
void Create(const tagEntry& entry);
/**
* Construct a TagEntry from values.
* \param fileName File name
* \param name Tag name
* \param lineNumber Tag line number
* \param pattern Pattern
* \param kind Tag kind (class, struct, etc)
* \param extFields Map of extenstion fields (key:value)
* \param project Project name
*/
void Create(const wxString &fileName,
const wxString &name,
int lineNumber,
const wxString &pattern,
const wxString &kind,
std::map<wxString, wxString>& extFields);
/**
* Test if this entry has been initialised.
* \return true if this tag entry has been initialised
*/
const bool IsOk() const {
return GetKind() != _T("<unknown>");
}
/**
* Test of this tag is a container (class, union, struct or namespace
*/
const bool IsContainer() const;
/**
* @brief return true if this tag represents a constructor
*/
bool IsConstructor() const;
/**
* @brief return true if this tag represents a destructor
*/
bool IsDestructor() const;
/**
* @brief return true of the this tag is a function or prototype
*/
bool IsMethod() const;
bool IsFunction() const;
bool IsPrototype() const;
bool IsMacro() const;
bool IsClass() const;
bool IsStruct() const;
bool IsScopeGlobal() const;
bool IsTypedef() const;
//------------------------------------------
// Operations
//------------------------------------------
bool GetDifferOnByLineNumber() const {
return m_differOnByLineNumber;
}
int GetId() const {
return m_id;
}
void SetId(int id) {
m_id = id;
}
const wxString& GetName() const {
return m_name;
}
void SetName(const wxString& name) {
m_name = name;
}
const wxString& GetPath() const {
return m_path;
}
void SetPath(const wxString& path) {
m_path = path;
}
const wxString& GetFile() const {
return m_file;
}
void SetFile(const wxString& file) {
m_file = file;
}
int GetLine() const {
return m_lineNumber;
}
void SetLine(int line) {
m_lineNumber = line;
}
wxString GetPattern() const;
void SetPattern(const wxString& pattern) {
m_pattern = pattern;
}
wxString GetKind() const;
void SetKind(const wxString& kind) {
m_kind = kind;
}
const wxString& GetParent() const {
return m_parent;
}
void SetParent(const wxString& parent) {
m_parent = parent;
}
wxTreeItemId& GetTreeItemId() {
return m_hti;
}
void SetTreeItemId(wxTreeItemId& hti) {
m_hti = hti;
}
wxString GetAccess() const {
return GetExtField(_T("access"));
}
void SetAccess(const wxString &access) {
m_extFields[wxT("access")] = access;
}
wxString GetSignature() const {
return GetExtField(_T("signature"));
}
void SetSignature(const wxString &sig) {
m_extFields[wxT("signature")] = sig;
}
void SetInherits ( const wxString &inherits ) {
m_extFields[_T("inherits")] = inherits;
}
void SetTyperef ( const wxString &typeref ) {
m_extFields[_T("typeref")] = typeref;
}
wxString GetInheritsAsString () const;
wxArrayString GetInheritsAsArrayNoTemplates () const;
wxArrayString GetInheritsAsArrayWithTemplates () const;
wxString GetTyperef() const {
return GetExtField(_T("typeref"));
}
void SetReturnValue(const wxString &retVal ) {
m_extFields[_T("returns")] = retVal;
}
wxString GetReturnValue() const;
const wxString &GetScope() const {
return m_scope;
}
void SetScope(const wxString &scope) {
m_scope = scope;
}
/**
* \return Scope name of the tag.
* If path is empty in db or contains just the project name, it will return the literal <global>.
* For project tags, an empty string is returned.
*/
wxString GetScopeName() const;
/**
* Generate a Key for this tag based on its attributes
* \return tag key
*/
wxString Key() const;
/**
* Generate a display name for this tag to be used by the symbol tree
* \return tag display name
*/
wxString GetDisplayName() const;
/**
* Generate a full display name for this tag that includes:
* full scope + name + signature
* \return tag full display name
*/
wxString GetFullDisplayName() const;
/**
* Return the actual name as described in the 'typeref' field
* \return real name or wxEmptyString
*/
wxString NameFromTyperef(wxString &templateInitList, bool nameIncludeTemplate = false);
/**
* Return the actual type as described in the 'typeref' field
* \return real name or wxEmptyString
*/
wxString TypeFromTyperef() const;
//------------------------------------------
// Extenstion fields
//------------------------------------------
wxString GetExtField(const wxString& extField) const {
std::map<wxString, wxString>::const_iterator iter = m_extFields.find(extField);
if(iter == m_extFields.end())
return wxEmptyString;
return iter->second;
}
/**
* @brief mark this tag has clang generated tag
*/
void SetIsClangTag(bool isClangTag) {
this->m_isClangTag = isClangTag;
}
/**
* @brief return true if this tag was generated by clang
*/
bool GetIsClangTag() const {
return m_isClangTag;
}
/**
* @brief set the user data. The user data must live as long as this object is in scope
* The tag entry class DOES NOT take ownership over the data. it is up to the user to delete
* it for preventing memory leak.
*/
void SetUserData(void* userData) {
this->m_userData = userData;
}
/**
* @brief return the associated user data for this tag entry
*/
void* GetUserData() {
return m_userData;
}
//------------------------------------------
// Misc
//------------------------------------------
void Print();
TagEntryPtr ReplaceSimpleMacro();
/**
* @brief return 0 if the values are the same. < 0 if a < b and > 0 if a > b
*/
int CompareDisplayString(const TagEntryPtr& rhs) const;
private:
/**
* Update the path with full path (e.g. namespace::class)
* \param path path to add
*/
void UpdatePath (wxString & path);
bool TypedefFromPattern(const wxString &tagPattern, const wxString &typedefName, wxString &name, wxString &templateInit, bool nameIncludeTemplate = false);
};
#endif // CODELITE_ENTRY_H