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
|
/*
* Copyright (c) 2000-2002, Darren Hiebert
*
* 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 LISP files.
*/
/*
* INCLUDE FILES
*/
#include "general.h" /* must always come first */
#include "parse.h"
#include "read.h"
#include "routines.h"
#include "selectors.h"
#include "vstring.h"
#include <string.h>
/*
* DATA DEFINITIONS
*/
typedef enum {
K_UNKNOWN,
K_FUNCTION,
K_VARIABLE,
K_MACRO,
K_CONST,
} lispKind;
static kindDefinition LispKinds [] = {
{ true, 'Y', "unknown", "unknown type of definitions" },
{ true, 'f', "function", "functions" },
{ true, 'v', "variable", "variables" },
{ true, 'm', "macro", "macros" },
{ true, 'c', "const", "constants" },
};
typedef enum {
eK_UNKNOWN,
eK_FUNCTION,
eK_VARIABLE,
eK_CONST,
eK_MACRO,
eK_ALIAS,
eK_VARALIAS,
eK_SUBST,
eK_INLINE,
eK_ERROR,
eK_MINOR_MODE,
eK_DERIVED_MODE,
/* custom.el */
eK_CUSTOM,
eK_GROUP,
eK_FACE,
eK_THEME,
} emacsLispKind;
/* Following macro/builtin doesn't define a name appeared
* at car. So this parser doesn't handle it well.
* -----------------------------------------------------
* defadvice (=> cadadr)
* defconst-mode-local (=> cadr)
* defvar-mode-local (=> cadr)
*/
static kindDefinition EmacsLispKinds [] = {
{ true, 'Y', "unknown", "unknown type of definitions" },
{ true, 'f', "function", "functions" },
{ true, 'v', "variable", "variables" },
{ true, 'c', "const", "constants" },
{ true, 'm', "macro", "macros" },
{ true, 'a', "alias", "aliases for functions" },
{ true, 'V', "varalias", "aliases for variables" },
{ true, 's', "subst", "inline function" },
{ true, 'i', "inline", "inline function" },
{ true, 'e', "error", "errors" },
{ true, 'M', "minorMode", "minor modes" },
{ true, 'D', "derivedMode", "derived major mode" },
/* custom.el */
{ true, 'C', "custom", "customizable variables" },
{ true, 'G', "group", "customization groups" },
{ true, 'H', "face", "customizable faces" }, /* 'F' is reserved by ctags */
{ true, 'T', "theme", "custom themes" },
};
/*
* FUNCTION DEFINITIONS
*/
/*
* lisp tag functions
* look for (def or (DEF, quote or QUOTE
*/
static int L_isdef (const unsigned char *strp, bool case_insensitive)
{
bool cis = case_insensitive; /* Renaming for making code short */
return ( (strp [1] == 'd' || (cis && strp [1] == 'D'))
&& (strp [2] == 'e' || (cis && strp [2] == 'E'))
&& (strp [3] == 'f' || (cis && strp [3] == 'F')));
}
static int L_isquote (const unsigned char *strp, bool case_insensitive)
{
bool cis = case_insensitive; /* Renaming for making code short */
return ( (*(++strp) == 'q' || (cis && *strp == 'Q'))
&& (*(++strp) == 'u' || (cis && *strp == 'U'))
&& (*(++strp) == 'o' || (cis && *strp == 'O'))
&& (*(++strp) == 't' || (cis && *strp == 'T'))
&& (*(++strp) == 'e' || (cis && *strp == 'E'))
&& isspace (*(++strp)));
}
static int lisp_hint2kind (const vString *const hint)
{
int k = K_UNKNOWN;
int n;
/* 4 means strlen("(def"). */
#define EQN(X) strncmp(vStringValue (hint) + 4, &X[3], n) == 0
switch (vStringLength (hint) - 4)
{
case 2:
n = 2;
if (EQN("DEFUN"))
k = K_FUNCTION;
break;
case 3:
n = 3;
if (EQN("DEFVAR"))
k = K_VARIABLE;
break;
case 5:
n = 5;
if (EQN("DEFMACRO"))
k = K_MACRO;
break;
case 8:
n = 8;
if (EQN("DEFCONSTANT"))
k = K_CONST;
break;
}
#undef EQN
return k;
}
/* TODO: implement this in hashtable. */
static int elisp_hint2kind (const vString *const hint)
{
int k = eK_UNKNOWN;
int n;
/* 4 means strlen("(def"). */
#define EQN(X) strncmp(vStringValue (hint) + 4, &X[3], n) == 0
switch (vStringLength (hint) - 4)
{
case 2:
n = 2;
if (EQN("defun"))
k = eK_FUNCTION;
break;
case 3:
n = 3;
if (EQN("defvar"))
k = eK_VARIABLE;
else if (EQN("defun*"))
k = eK_FUNCTION;
break;
case 4:
n = 4;
if (EQN("defface"))
k = eK_FACE;
case 5:
n = 5;
if (EQN("defconst"))
k = eK_CONST;
else if (EQN("defmacro"))
k = eK_MACRO;
else if (EQN("defalias"))
k = eK_ALIAS;
else if (EQN("defsubst"))
k = eK_SUBST;
else if (EQN("defgroup"))
k = eK_GROUP;
else if (EQN("deftheme"))
k = eK_THEME;
break;
case 6:
n = 6;
if (EQN("defcustom"))
k = eK_CUSTOM;
else if (EQN("defsubst*"))
k = eK_SUBST;
else if (EQN("defmacro*"))
k = eK_MACRO;
break;
case 7:
n = 7;
if (EQN("define-key"))
k = KIND_GHOST_INDEX;
break;
case 9:
n = 9;
if (EQN("defvar-local"))
k = eK_VARIABLE;
else if (EQN("define-error"))
k = eK_ERROR;
break;
case 8:
n = 8;
if (EQN("defvaralias"))
k = eK_VARALIAS;
break;
case 10:
n = 10;
if (EQN("define-inline"))
k = eK_INLINE;
break;
case 14:
n = 14;
if (EQN("define-minor-mode"))
k = eK_MINOR_MODE;
break;
case 16:
n = 16;
if (EQN("define-derived-mode"))
k = eK_DERIVED_MODE;
break;
case 21:
n = 21;
if (EQN("define-global-minor-mode"))
k = eK_MINOR_MODE;
break;
case 25:
n = 25;
if (EQN("define-globalized-minor-mode"))
k = eK_MINOR_MODE;
break;
case 27:
n = 27;
if (EQN("define-obsolete-function-alias"))
k = eK_ALIAS;
break;
}
#undef EQN
return k;
}
static void L_getit (vString *const name, const unsigned char *dbp,
bool case_insensitive,
int (*hint2kind) (const vString *),
const vString *const kind_hint)
{
const unsigned char *p;
if (*dbp == '\'') /* Skip prefix quote */
dbp++;
else if (*dbp == '(' && L_isquote (dbp, case_insensitive)) /* Skip "(quote " */
{
dbp += 7;
while (isspace (*dbp))
dbp++;
}
for (p=dbp ; *p!='\0' && *p!='(' && !isspace ((int) *p) && *p!=')' ; p++)
vStringPut (name, *p);
if (vStringLength (name) > 0)
{
int kind = hint2kind (kind_hint);
if (kind != KIND_GHOST_INDEX)
makeSimpleTag (name, kind);
}
vStringClear (name);
}
/* Algorithm adapted from from GNU etags.
*/
static void findLispTagsCommon (bool case_insensitive,
bool has_namespace,
int (*hint2kind) (const vString *))
{
vString *name = vStringNew ();
vString *kind_hint = vStringNew ();
const unsigned char* p;
while ((p = readLineFromInputFile ()) != NULL)
{
if (*p == '(')
{
if (L_isdef (p, case_insensitive))
{
vStringClear (kind_hint);
while (*p != '\0' && !isspace ((int) *p))
{
vStringPut (kind_hint,
case_insensitive? toupper((int)*p): *p);
p++;
}
while (isspace ((int) *p))
p++;
L_getit (name, p, case_insensitive, hint2kind, kind_hint);
}
else if (has_namespace)
{
do
p++;
while (*p != '\0' && !isspace ((int) *p)
&& *p != ':' && *p != '(' && *p != ')');
if (*p == ':')
{
do
p++;
while (*p == ':');
if (L_isdef (p - 1, case_insensitive))
{
vStringClear (kind_hint);
while (*p != '\0' && !isspace ((int) *p))
{
vStringPut (kind_hint,
case_insensitive? toupper((int)*p): *p);
p++;
}
while (isspace (*p))
p++;
L_getit (name, p, case_insensitive, hint2kind, kind_hint);
}
}
}
}
}
vStringDelete (name);
vStringDelete (kind_hint);
}
static void findLispTags (void)
{
findLispTagsCommon (true, true, lisp_hint2kind);
}
static void findEmacsLispTags (void)
{
findLispTagsCommon (false, false, elisp_hint2kind);
}
extern parserDefinition* LispParser (void)
{
static const char *const extensions [] = {
"cl", "clisp", "l", "lisp", "lsp", NULL
};
static const char *const aliases [] = {
"clisp", NULL
};
static selectLanguage selectors[] = { selectLispOrLEXByLEXMarker, NULL };
parserDefinition* def = parserNew ("Lisp");
def->kindTable = LispKinds;
def->kindCount = ARRAY_SIZE (LispKinds);
def->extensions = extensions;
def->aliases = aliases;
def->parser = findLispTags;
def->selectLanguage = selectors;
return def;
}
extern parserDefinition* EmacsLispParser (void)
{
static const char *const extensions [] = {
"el", NULL
};
static const char *const aliases [] = {
"emacs-lisp", NULL
};
parserDefinition* def = parserNew ("EmacsLisp");
def->kindTable = EmacsLispKinds;
def->kindCount = ARRAY_SIZE (EmacsLispKinds);
def->extensions = extensions;
def->aliases = aliases;
def->parser = findEmacsLispTags;
return def;
}
|