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
|
/*
* Copyright (c) 2022 Masatake YAMATO <yamato@redhat.com>
*
* 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 Rakefile.
*
* Reference:
* - https://ruby.github.io/rake/doc/rakefile_rdoc.html
*/
/*
* INCLUDE FILES
*/
#include "general.h" /* must always come first */
#include "entry.h"
#include "kind.h"
#include "numarray.h"
#include "parse.h"
#include "subparser.h"
#include "ruby.h"
#include <string.h>
/*
* DATA STRUCTURES
*/
struct sRakeSubparser {
rubySubparser ruby;
intArray *namespaces;
};
typedef enum {
K_TASK,
K_NAMESPACE,
K_FILE,
K_DIRECTORY,
K_MULTITASK,
K_XTASK,
} rakeKind;
/*
* DATA DEFINITIONS
*/
static scopeSeparator RakeGenericSeparators [] = {
{ KIND_WILDCARD_INDEX, ":" },
};
static kindDefinition RakeKinds [] = {
{ true, 't', "task", "tasks",
ATTACH_SEPARATORS(RakeGenericSeparators)},
{ true, 'n', "namespace", "namespaces",
ATTACH_SEPARATORS(RakeGenericSeparators)},
/* F/file is reserved in the main part. */
{ true, 'f', "File", "file tasks",
ATTACH_SEPARATORS(RakeGenericSeparators)},
{ true, 'd', "directory", "directory tasks",
ATTACH_SEPARATORS(RakeGenericSeparators)},
{ true, 'm', "multitask", "multi tasks",
ATTACH_SEPARATORS(RakeGenericSeparators)},
{ true, 'x', "xtask", "tasks defined with special constructor",
ATTACH_SEPARATORS(RakeGenericSeparators)},
};
/*
* FUNCTIONS
*/
static void findRakeTags (void)
{
scheduleRunningBaseparser (0);
}
static vString *readTask (const unsigned char **cp, bool *variable)
{
vString *vstr = NULL;
unsigned char b;
const unsigned char *start;
switch (**cp)
{
case '\'':
case '"':
b = **cp;
++*cp;
vstr = vStringNew ();
if (!rubyParseString (cp, b, vstr))
{
vStringDelete (vstr);
vstr = NULL;
}
break;
case ':':
vstr = vStringNew ();
if (!rubyParseMethodName (cp, vstr))
{
vStringDelete (vstr);
vstr = NULL;
}
break;
default:
vstr = vStringNew ();
start = *cp;
if (!rubyParseMethodName (cp, vstr))
{
vStringDelete (vstr);
vstr = NULL;
}
else
{
const char *end = strstr((const char *)start, vStringValue (vstr));
if (end)
{
end += vStringLength (vstr);
if (*end != ':')
*variable = true;
}
}
break;
}
return vstr;
}
static int makeSimpleRakeTag (vString *vstr, int kindIndex, rubySubparser *subparser,
bool anonymous)
{
if (anonymous)
{
vStringPut (vstr, '_');
anonConcat (vstr, kindIndex);
}
int r = makeSimpleTag (vstr, kindIndex);
tagEntryInfo *e = getEntryInCorkQueue (r);
if (e)
{
struct sRakeSubparser *rake = (struct sRakeSubparser *)subparser;
if (!intArrayIsEmpty (rake->namespaces))
e->extensionFields.scopeIndex = intArrayLast(rake->namespaces);
if (anonymous)
markTagExtraBit (e, XTAG_ANONYMOUS);
}
return r;
}
struct taskType {
const char *keyword;
rakeKind kind;
};
static int parseTask (rubySubparser *s, int kind, const unsigned char **cp)
{
vString *vstr = NULL;
bool variable = false;
rubySkipWhitespace (cp);
vstr = readTask (cp, &variable);
if (vstr)
{
int r = makeSimpleRakeTag (vstr, kind, s, variable);
vStringDelete (vstr);
return r;
}
return CORK_NIL;
}
static int parseXTask (rubySubparser *s, struct taskType *xtask, const unsigned char **cp)
{
rubySkipWhitespace (cp);
if (**cp == '(' || **cp == '"' || **cp == '\'')
{
vString *vstr = NULL;
bool variable = false;
if (**cp == '(')
{
++*cp;
rubySkipWhitespace (cp);
}
vstr = readTask (cp, &variable);
if (vstr)
{
int r = makeSimpleRakeTag (vstr, xtask->kind, s, variable);
vStringDelete (vstr);
tagEntryInfo *e = getEntryInCorkQueue (r);
if (e)
{
e->extensionFields.typeRef [0] = eStrdup ("typename");
e->extensionFields.typeRef [1] = eStrdup (xtask->keyword);
}
return r;
}
}
return CORK_NIL;
}
static int lineNotify (rubySubparser *s, const unsigned char **cp)
{
struct taskType taskTypes [] = {
{ "task", K_TASK },
{ "namespace", K_NAMESPACE },
{ "file", K_FILE },
{ "directory", K_DIRECTORY },
{ "multitask", K_MULTITASK },
};
for (int i = 0; i < ARRAY_SIZE(taskTypes); i++)
{
if (rubyCanMatchKeywordWithAssign (cp, taskTypes[i].keyword))
return parseTask (s, taskTypes[i].kind, cp);
}
struct taskType xtaskTypes [] = {
{ "RSpec::Core::RakeTask.new", K_XTASK },
{ "Cucumber::Rake::Task.new", K_XTASK },
{ "Rake::TestTask.new", K_XTASK },
{ "Rake::PackageTask.new", K_XTASK },
/* ... */
};
for (int i = 0; i < ARRAY_SIZE(xtaskTypes); i++)
{
if (rubyCanMatchKeywordWithAssign (cp, xtaskTypes[i].keyword))
return parseXTask (s, xtaskTypes + i, cp);
}
return CORK_NIL;
}
static void inputStart (subparser *s)
{
struct sRakeSubparser *rake = (struct sRakeSubparser *)s;
intArrayClear (rake->namespaces);
}
static void enterBlockNotify (rubySubparser *s, int corkIndex)
{
tagEntryInfo *e = getEntryInCorkQueue (corkIndex);
if (e && e->kindIndex == K_NAMESPACE)
{
struct sRakeSubparser *rake = (struct sRakeSubparser *)s;
intArrayAdd (rake->namespaces, corkIndex);
}
}
static void leaveBlockNotify (rubySubparser *s, int corkIndex)
{
tagEntryInfo *e = getEntryInCorkQueue (corkIndex);
if (e && e->kindIndex == K_NAMESPACE)
{
struct sRakeSubparser *rake = (struct sRakeSubparser *)s;
intArrayRemoveLast (rake->namespaces);
}
}
static struct sRakeSubparser rakeSubparser = {
.ruby = {
.subparser = {
.direction = SUBPARSER_SUB_RUNS_BASE,
.inputStart = inputStart,
},
.lineNotify = lineNotify,
.enterBlockNotify = enterBlockNotify,
.leaveBlockNotify = leaveBlockNotify,
},
.namespaces = NULL,
};
static void initialize (const langType language CTAGS_ATTR_UNUSED)
{
rakeSubparser.namespaces = intArrayNew ();
}
static void finalize (langType language CTAGS_ATTR_UNUSED, bool initialized)
{
if (rakeSubparser.namespaces)
intArrayDelete (rakeSubparser.namespaces);
}
extern parserDefinition* RakeParser (void)
{
static const char *const extensions [] = { "rake", NULL };
static const char *const patterns [] = { "Rakefile", NULL };
static parserDependency dependencies [] = {
[0] = { DEPTYPE_SUBPARSER, "Ruby", &rakeSubparser },
};
parserDefinition* const def = parserNew ("Rake");
def->dependencies = dependencies;
def->dependencyCount = ARRAY_SIZE(dependencies);
def->kindTable = RakeKinds;
def->kindCount = ARRAY_SIZE (RakeKinds);
def->extensions = extensions;
def->patterns = patterns;
def->parser = findRakeTags;
def->initialize = initialize;
def->finalize = finalize;
def->useCork = CORK_QUEUE;
def->requestAutomaticFQTag = true;
return def;
}
|