-
Notifications
You must be signed in to change notification settings - Fork 624
/
itcl.c
337 lines (286 loc) · 7.49 KB
/
itcl.c
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
/*
* Copyright (c) 2017, Masatake YAMATO
*
* This source code is released for free distribution under the terms of the
* GNU General Public License version 2 or (at your option) any later version.
*
*/
#include "general.h" /* must always come first */
#include "tcl.h"
#include "entry.h"
#include "parse.h"
#include "read.h"
#include "keyword.h"
#include <string.h>
struct itclSubparser {
tclSubparser tcl;
bool foundITclPackageRequired;
bool foundITclNamespaceImported;
};
static scopeSeparator ITclGenericSeparators [] = {
{ KIND_WILDCARD_INDEX, "::" },
};
enum ITclKind {
K_CLASS,
K_METHOD,
K_VARIABLE,
K_COMMON,
K_PROC,
};
static kindDefinition ITclKinds[] = {
{ true, 'c', "class", "classes" },
{ true, 'm', "method", "methods",
ATTACH_SEPARATORS(ITclGenericSeparators)},
{ true, 'v', "variable", "object-specific variables",
ATTACH_SEPARATORS(ITclGenericSeparators)},
{ true, 'C', "common", "common variables",
ATTACH_SEPARATORS(ITclGenericSeparators)},
{ true, 'p', "procedure", "procedures within the class namespace",
ATTACH_SEPARATORS(ITclGenericSeparators)},
};
enum {
KEYWORD_INHERIT,
KEYWORD_METHOD,
KEYWORD_PRIVATE,
KEYWORD_PROTECTED,
KEYWORD_PUBLIC,
KEYWORD_VARIABLE,
KEYWORD_COMMON,
KEYWORD_PROC,
};
typedef int keywordId; /* to allow KEYWORD_NONE */
static const keywordTable ITclKeywordTable[] = {
/* keyword keyword ID */
{ "inherit", KEYWORD_INHERIT },
{ "method", KEYWORD_METHOD },
{ "private", KEYWORD_PRIVATE },
{ "protected", KEYWORD_PROTECTED },
{ "public", KEYWORD_PUBLIC },
{ "variable", KEYWORD_VARIABLE },
{ "common", KEYWORD_COMMON },
{ "proc", KEYWORD_PROC },
};
static keywordId resolveKeyword (vString *string)
{
char *s = vStringValue (string);
static langType lang = LANG_AUTO;
if (lang == LANG_AUTO)
lang = getInputLanguage ();
return lookupKeyword (s, lang);
}
static void parseInherit (tokenInfo *token, int r)
{
vString *inherits = vStringNew ();
do {
tokenRead (token);
if (tokenIsType (token, TCL_IDENTIFIER))
{
if (vStringLength(inherits) != 0)
vStringPut (inherits, ',');
vStringCat(inherits, token->string);
}
else if (tokenIsType(token, TCL_EOL))
break;
else
{
skipToEndOfTclCmdline (token);
break;
}
} while (1);
if (vStringLength(inherits) > 0)
{
tagEntryInfo *e = getEntryInCorkQueue (r);
if (e)
{
e->extensionFields.inheritance = vStringDeleteUnwrap (inherits);
return;
}
}
vStringDelete (inherits);
}
static void attachProtectionMaybe(tagEntryInfo *e, keywordId protection)
{
switch (protection)
{
case KEYWORD_PROTECTED:
e->extensionFields.access = "protected";
break;
case KEYWORD_PRIVATE:
e->extensionFields.access = "private";
break;
case KEYWORD_PUBLIC:
e->extensionFields.access = "public";
break;
}
}
static void parseSubobject (tokenInfo *token, int parent, enum ITclKind kind, keywordId protection)
{
int r = CORK_NIL;
tokenRead (token);
if (tokenIsType (token, TCL_IDENTIFIER))
{
tagEntryInfo e;
initTagEntry(&e, vStringValue (token->string), kind);
e.extensionFields.scopeIndex = parent;
attachProtectionMaybe (&e, protection);
r = makeTagEntry (&e);
}
skipToEndOfTclCmdline (token);
tagEntryInfo *e = getEntryInCorkQueue (r);
if (e)
e->extensionFields.endLine = token->lineNumber;
}
static void parseVariable (tokenInfo *token, int r, keywordId protection)
{
parseSubobject(token, r, K_VARIABLE, protection);
}
static void parseMethod (tokenInfo *token, int r, keywordId protection)
{
parseSubobject(token, r, K_METHOD, protection);
}
static void parseProc (tokenInfo *token, int r, keywordId protection)
{
parseSubobject(token, r, K_PROC, protection);
}
static void parseCommon (tokenInfo *token, int r, keywordId protection)
{
parseSubobject(token, r, K_COMMON, protection);
}
static int parseClass (tclSubparser *s CTAGS_ATTR_UNUSED, int parentIndex,
void *pstate)
{
tokenInfo *token = newTclToken (pstate);
int r = CORK_NIL;
tokenRead (token);
if (tokenIsType (token, TCL_IDENTIFIER))
{
tagEntryInfo e;
initTagEntry(&e, vStringValue (token->string), K_CLASS);
e.extensionFields.scopeIndex = parentIndex;
r = makeTagEntry (&e);
}
if (tokenSkipToType (token, '{'))
{
keywordId protection = KEYWORD_NONE;
do {
tokenRead (token);
if (tokenIsType (token, TCL_IDENTIFIER)
|| tokenIsType (token, TCL_KEYWORD))
{
keywordId k = resolveKeyword (token->string);
switch (k)
{
case KEYWORD_INHERIT:
parseInherit(token, r);
protection = KEYWORD_NONE;
break;
case KEYWORD_VARIABLE:
parseVariable(token, r, protection);
protection = KEYWORD_NONE;
break;
case KEYWORD_METHOD:
parseMethod(token, r, protection);
protection = KEYWORD_NONE;
break;
case KEYWORD_COMMON:
parseCommon(token, r, protection);
protection = KEYWORD_NONE;
break;
case KEYWORD_PUBLIC:
case KEYWORD_PROTECTED:
case KEYWORD_PRIVATE:
protection = k;
continue;
case KEYWORD_PROC:
parseProc(token, r, protection);
protection = KEYWORD_NONE;
break;
default:
protection = KEYWORD_NONE;
skipToEndOfTclCmdline (token);
break;
}
}
else if (token->type == '}')
{
protection = KEYWORD_NONE;
break;
}
else
{
protection = KEYWORD_NONE;
skipToEndOfTclCmdline (token);
}
} while (!tokenIsEOF(token));
}
tokenDelete(token);
return r;
}
static int commandNotify (tclSubparser *s, char *command,
int parentIndex, void *pstate)
{
struct itclSubparser *itcl = (struct itclSubparser *)s;
int r = CORK_NIL;
if (!itcl->foundITclPackageRequired)
return r;
if ((itcl->foundITclNamespaceImported
&& (strcmp (command, "class") == 0))
|| (strcmp (command, "itcl::class") == 0))
r = parseClass (s, parentIndex, pstate);
return r;
}
static void packageRequirementNotify (tclSubparser *s, char *package,
void *pstate CTAGS_ATTR_UNUSED)
{
struct itclSubparser *itcl = (struct itclSubparser *)s;
if (strcmp (package, "Itcl") == 0)
itcl->foundITclPackageRequired = true;
}
static void namespaceImportNotify (tclSubparser *s, char *namespace,
void *pstate CTAGS_ATTR_UNUSED)
{
struct itclSubparser *itcl = (struct itclSubparser *)s;
if (strcmp(namespace, "itcl::*") == 0
|| strcmp(namespace, "itcl::class") == 0)
itcl->foundITclNamespaceImported = true;
}
static void inputStart (subparser *s)
{
struct itclSubparser *itcl = (struct itclSubparser *)s;
itcl->foundITclPackageRequired = false;
itcl->foundITclNamespaceImported = false;
}
struct itclSubparser itclSubparser = {
.tcl = {
.subparser = {
.direction = SUBPARSER_BI_DIRECTION,
.inputStart = inputStart,
},
.commandNotify = commandNotify,
.packageRequirementNotify = packageRequirementNotify,
.namespaceImportNotify = namespaceImportNotify,
},
};
static void findITclTags(void)
{
scheduleRunningBaseparser (RUN_DEFAULT_SUBPARSERS);
}
extern parserDefinition* ITclParser (void)
{
static const char *const extensions [] = { "itcl", NULL };
parserDefinition* const def = parserNew("ITcl");
static parserDependency dependencies [] = {
[0] = { DEPTYPE_SUBPARSER, "Tcl", &itclSubparser },
};
def->dependencies = dependencies;
def->dependencyCount = ARRAY_SIZE (dependencies);
def->kindTable = ITclKinds;
def->kindCount = ARRAY_SIZE(ITclKinds);
def->extensions = extensions;
def->parser = findITclTags;
def->useCork = CORK_QUEUE;
def->requestAutomaticFQTag = true;
def->keywordTable = ITclKeywordTable;
def->keywordCount = ARRAY_SIZE (ITclKeywordTable);
return def;
}