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
|
/*
* Copyright (c) 2017, Alexey Olenich
* Copyright (c) 2018, Colomban Wendling <colomban@geany.org>
*
* 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.
*
* This module contains functions for generating tags for AutoIt functions.
* Homepage https://www.autoitscript.com/site/autoit/
* Online Documentation https://www.autoitscript.com/autoit3/docs/
*/
/*
* INCLUDE FILES
*/
#include "general.h" /* must always come first */
#include <string.h>
#include "parse.h"
#include "entry.h"
#include "nestlevel.h"
#include "read.h"
#include "routines.h"
#include "vstring.h"
/*
* DATA DEFINITIONS
*/
typedef enum {
K_FUNCTION,
K_REGION,
K_GLOBALVAR,
K_LOCALVAR,
K_SCRIPT,
} AutoItKind;
typedef enum {
R_INCLUDE_SYSTEM,
R_INCLUDE_LOCAL,
} AutoItIncludeRole;
typedef enum {
F_PROPERTIES,
} AutoItField;
static roleDefinition AutoItIncludeRoles [] = {
{ true, "system", "system include" },
{ true, "local", "local include" },
};
static kindDefinition AutoItKinds [] = {
{ true, 'f', "func", "functions" },
{ true, 'r', "region", "regions" },
{ true, 'g', "global", "global variables" },
{ true, 'l', "local", "local variables" },
{ true, 'S', "script", "included scripts",
.referenceOnly = true, ATTACH_ROLES (AutoItIncludeRoles) },
};
static fieldDefinition AutoItFields [] = {
{
.name = "properties",
.description = "properties (static, volatile, ...)",
.enabled = false,
},
};
/*
* FUNCTION DEFINITIONS
*/
/* it's unclear what *is* an identifier character, so maybe we're too strict */
static bool isIdentChar (int c)
{
return isalnum (c) || c == '_';
}
static bool match (const unsigned char *line, const char *word,
const unsigned char **positionAfter)
{
size_t len = strlen (word);
bool matched = (strncasecmp ((const char*) line, word, len) == 0 &&
! isIdentChar (line[len]));
if (matched && positionAfter)
*positionAfter = line + len;
return matched;
}
static int makeAutoItTag (const NestingLevels *const nls,
const vString* const name,
const int kindIndex,
const vString *const signature)
{
int r = CORK_NIL;
if (isInputLanguageKindEnabled(kindIndex) && name != NULL && vStringLength (name) > 0)
{
NestingLevel *nl = nestingLevelsGetCurrent (nls);
tagEntryInfo e;
initTagEntry (&e, vStringValue (name), kindIndex);
if (nl)
e.extensionFields.scopeIndex = nl->corkIndex;
if (signature)
e.extensionFields.signature = vStringValue (signature);
r = makeTagEntry (&e);
}
return r;
}
static int makeSimpleAutoItTag (const NestingLevels *const nls,
const vString* const name,
const int kindIndex)
{
return makeAutoItTag (nls, name, kindIndex, NULL);
}
static void setEndLine (const NestingLevels *const nls)
{
NestingLevel *nl = nestingLevelsGetCurrent (nls);
tagEntryInfo *entry;
if (nl && (entry = getEntryInCorkQueue (nl->corkIndex)) != NULL)
entry->extensionFields.endLine = getInputLineNumber ();
}
static void skipSpaces (const unsigned char **p)
{
while (isspace ((int) **p))
++(*p);
}
/* parses after a "func" keyword */
static int parseFunc (const unsigned char *p, NestingLevels *nls)
{
int k = CORK_NIL;
vString *name = vStringNew ();
skipSpaces (&p);
while (isIdentChar ((int) *p))
{
vStringPut (name, (int) *p);
++p;
}
skipSpaces (&p);
if (*p == '(' && (vStringLength (name) > 0))
{
vString *signature = vStringNew ();
do
vStringPut (signature, (int) *p);
while (*p != ')' && *p++);
k = makeAutoItTag (nls, name, K_FUNCTION, signature);
nestingLevelsPush (nls, k);
vStringDelete (signature);
}
vStringDelete (name);
return k;
}
static void findAutoItTags (void)
{
vString *name = vStringNew ();
const unsigned char *line;
NestingLevels *nls = nestingLevelsNew (0);
unsigned int commentDepth = 0;
while ((line = readLineFromInputFile ()) != NULL)
{
const unsigned char* p = line;
if (p [0] == '#')
{
p++;
if (match (p, "cs", NULL) || match (p, "comments-start", NULL))
commentDepth++;
else if (commentDepth > 0)
{
if (match (p, "ce", NULL) || match (p, "comments-end", NULL))
commentDepth--;
}
else if (match (p, "region", &p))
{
skipSpaces (&p);
while (*p != '\0')
{
vStringPut (name, (int) *p);
++p;
}
if (vStringLength(name) > 0)
{
int k = makeSimpleAutoItTag (nls, name, K_REGION);
nestingLevelsPush (nls, k);
vStringClear (name);
}
}
else if (nls->n > 0 && match (p, "endregion", NULL))
{
setEndLine (nls);
nestingLevelsPop (nls);
}
else if (match (p, "include", &p))
{
skipSpaces (&p);
if (*p == '<' || *p == '"')
{
const AutoItIncludeRole role = (*p == '<')
? R_INCLUDE_SYSTEM
: R_INCLUDE_LOCAL;
++p;
while (*p != '\0' && *p != '>' && *p != '"')
{
vStringPut (name, (int) *p);
++p;
}
if (vStringLength(name) > 0)
{
makeSimpleRefTag (name, K_SCRIPT, role);
vStringClear (name);
}
}
}
}
else if (commentDepth == 0)
{
bool isGlobal = false;
bool isStatic = false;
/* skip white space */
skipSpaces (&p);
if (*p == ';')
/* ignore single-line comments */;
else if (match (p, "volatile", &p))
{
skipSpaces (&p);
if (match (p, "func", &p))
{
int k = parseFunc (p, nls);
if (k != CORK_NIL)
attachParserFieldToCorkEntry (k, AutoItFields[F_PROPERTIES].ftype, "volatile");
}
}
else if (match (p, "func", &p))
parseFunc (p, nls);
else if (nls->n > 0 && match (p, "endfunc", NULL))
{
setEndLine (nls);
nestingLevelsPop (nls);
}
else if ((isStatic = match (p, "static", &p)) ||
(isGlobal = match (p, "global", &p)) ||
match (p, "local", &p))
{
/*
* variable-identifier ::= "$[a-zA-Z_0-9]+"
* scope-modifier ::= "Local" | "Global"
* variable-declaration ::= "Static" [scope-modifier] variable-identifier
* scope-modifier ["Static" | "Const"] variable-identifier
*/
skipSpaces (&p);
if (isStatic)
{
/* skip optional modifiers */
if ((isGlobal = match (p, "global", &p)) ||
match (p, "local", &p))
{
skipSpaces (&p);
}
}
else if ((isStatic = match (p, "static", &p)))
skipSpaces (&p);
else if (match (p, "const", &p))
skipSpaces (&p);
if (*p == '$')
{
vStringPut (name, (int) *p++);
while (isIdentChar ((int) *p))
{
vStringPut (name, (int) *p);
++p;
}
if (vStringLength(name) > 0)
{
int k = makeSimpleAutoItTag (nls, name, isGlobal ? K_GLOBALVAR : K_LOCALVAR);
if (k != CORK_NIL && isStatic)
attachParserFieldToCorkEntry (k, AutoItFields[F_PROPERTIES].ftype, "static");
}
vStringClear (name);
}
}
}
}
vStringDelete (name);
nestingLevelsFree (nls);
}
parserDefinition *AutoItParser (void)
{
static char const *extensions[] = { "au3", "AU3", "aU3", "Au3", NULL };
parserDefinition* def = parserNew ("AutoIt");
def->kindTable = AutoItKinds;
def->kindCount = ARRAY_SIZE (AutoItKinds);
def->fieldTable = AutoItFields;
def->fieldCount = ARRAY_SIZE (AutoItFields);
def->extensions = extensions;
def->parser = findAutoItTags;
def->useCork = CORK_QUEUE;
return def;
}
|