Skip to content
This repository was archived by the owner on Mar 1, 2022. It is now read-only.

Commit deb4ef3

Browse files
committed
Faster fetchModule & make public as describeModule
1 parent 20c14e3 commit deb4ef3

File tree

1 file changed

+77
-39
lines changed

1 file changed

+77
-39
lines changed

source/workspaced/com/moduleman.d

+77-39
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class ModulemanComponent : ComponentWrapper
8888
modName = modName.stripLeft('/').replace("/", ".");
8989
if (!modName.length)
9090
return [];
91-
auto existing = fetchModule(file, code);
91+
auto existing = describeModule(code);
9292
if (modName == existing.moduleName)
9393
{
9494
return [];
@@ -102,50 +102,84 @@ class ModulemanComponent : ComponentWrapper
102102
}
103103
}
104104

105-
/// Returns the module name of a D code
105+
/// Returns the module name parts of a D code
106106
const(string)[] getModule(string code)
107107
{
108-
return fetchModule("", code).raw;
108+
return describeModule(code).raw;
109109
}
110110

111-
private:
112-
RollbackAllocator rba;
113-
LexerConfig config;
114-
115-
ModuleFetchVisitor fetchModule(string file, string code)
111+
/// Returns the normalized module name as string of a D code
112+
string moduleName(string code)
116113
{
117-
auto tokens = getTokensForParser(cast(ubyte[]) code, config, &workspaced.stringCache);
118-
auto parsed = parseModule(tokens, file, &rba, (&doNothing).toDelegate);
119-
auto reader = new ModuleFetchVisitor();
120-
reader.visit(parsed);
121-
return reader;
114+
return describeModule(code).moduleName;
122115
}
123-
}
124116

125-
private:
117+
///
118+
FileModuleInfo describeModule(string code)
119+
{
120+
auto tokens = getTokensForParser(cast(ubyte[]) code, config, &workspaced.stringCache);
121+
ptrdiff_t start = -1;
122+
size_t from, to;
123+
size_t outerFrom, outerTo;
126124

127-
class ModuleFetchVisitor : ASTVisitor
128-
{
129-
alias visit = ASTVisitor.visit;
125+
foreach (i, Token t; tokens)
126+
{
127+
if (t.type == tok!"module")
128+
{
129+
start = i;
130+
outerFrom = t.index;
131+
break;
132+
}
133+
}
130134

131-
override void visit(const ModuleDeclaration decl)
132-
{
133-
outerFrom = decl.startLocation;
134-
outerTo = decl.endLocation + 1; // + semicolon
135+
if (start == -1)
136+
return FileModuleInfo.init;
135137

136-
raw = decl.moduleName.identifiers.map!(a => a.text).array;
137-
moduleName = raw.join(".");
138-
from = decl.moduleName.identifiers[0].index;
139-
to = decl.moduleName.identifiers[$ - 1].index + decl.moduleName.identifiers[$ - 1].text.length;
138+
const(string)[] raw;
139+
string moduleName;
140+
foreach (t; tokens[start + 1 .. $])
141+
{
142+
if (t.type == tok!";")
143+
{
144+
outerTo = t.index + 1;
145+
break;
146+
}
147+
if (t.type == tok!"identifier")
148+
{
149+
if (from == 0)
150+
from = t.index;
151+
moduleName ~= t.text;
152+
to = t.index + t.text.length;
153+
raw ~= t.text;
154+
}
155+
if (t.type == tok!".")
156+
{
157+
moduleName ~= ".";
158+
}
159+
}
160+
return FileModuleInfo(raw, moduleName, from, to, outerFrom, outerTo);
140161
}
141162

163+
private:
164+
RollbackAllocator rba;
165+
LexerConfig config;
166+
}
167+
168+
/// Represents a module statement in a file.
169+
struct FileModuleInfo
170+
{
171+
/// Parts of the module name as array.
142172
const(string)[] raw;
173+
/// Whole modulename as normalized string in form a.b.c etc.
143174
string moduleName = "";
144-
Token fileName;
175+
/// Code index of the moduleName
145176
size_t from, to;
177+
/// Code index of the whole module statement starting right at module and ending right after the semicolon.
146178
size_t outerFrom, outerTo;
147179
}
148180

181+
private:
182+
149183
class ModuleChangerVisitor : ASTVisitor
150184
{
151185
this(string file, string[] from, string[] to, bool renameSubmodules)
@@ -216,8 +250,9 @@ void doNothing(string, size_t, size_t, string, bool)
216250
{
217251
}
218252

219-
/*unittest
253+
unittest
220254
{
255+
auto backend = new WorkspaceD();
221256
auto workspace = makeTemporaryTestingWorkspace;
222257
workspace.createDir("source/newmod");
223258
workspace.createDir("unregistered/source");
@@ -228,12 +263,13 @@ void doNothing(string, size_t, size_t, string, bool)
228263
workspace.writeFile("source/newmod/package.d", "");
229264
workspace.writeFile("unregistered/source/package.d", "");
230265
workspace.writeFile("unregistered/source/app.d", "");
266+
auto instance = backend.addInstance(workspace.directory);
267+
backend.register!ModulemanComponent;
268+
auto mod = backend.get!ModulemanComponent(workspace.directory);
231269

232-
importPathProvider = () => ["source"];
270+
instance.importPathProvider = () => ["source"];
233271

234-
start(workspace.directory);
235-
236-
FileChanges[] changes = rename("oldmod", "newmod").sort!"a.file < b.file".array;
272+
FileChanges[] changes = mod.rename("oldmod", "newmod").sort!"a.file < b.file".array;
237273

238274
assert(changes.length == 2);
239275
assert(changes[0].file.endsWith("color.d"));
@@ -252,20 +288,22 @@ void doNothing(string, size_t, size_t, string, bool)
252288
std.file.write(change.file, code);
253289
}
254290

255-
auto nrm = normalizeModules(workspace.getPath("source/newmod/input.d"), "");
291+
auto nrm = mod.normalizeModules(workspace.getPath("source/newmod/input.d"), "");
256292
assert(nrm == [CodeReplacement([0, 0], "module newmod.input;")]);
257293

258-
nrm = normalizeModules(workspace.getPath("source/newmod/package.d"), "");
294+
nrm = mod.normalizeModules(workspace.getPath("source/newmod/package.d"), "");
259295
assert(nrm == [CodeReplacement([0, 0], "module newmod;")]);
260296

261-
nrm = normalizeModules(workspace.getPath("source/newmod/display.d"), "module oldmod.displaf;");
297+
nrm = mod.normalizeModules(workspace.getPath("source/newmod/display.d"),
298+
"module oldmod.displaf;");
262299
assert(nrm == [CodeReplacement([0, 22], "module newmod.display;")]);
263300

264-
nrm = normalizeModules(workspace.getPath("unregistered/source/app.d"), "");
301+
nrm = mod.normalizeModules(workspace.getPath("unregistered/source/app.d"), "");
265302
assert(nrm == [CodeReplacement([0, 0], "module app;")]);
266303

267-
nrm = normalizeModules(workspace.getPath("unregistered/source/package.d"), "");
304+
nrm = mod.normalizeModules(workspace.getPath("unregistered/source/package.d"), "");
268305
assert(nrm == []);
269306

270-
stop();
271-
}*/
307+
auto fetched = mod.describeModule("/* hello world */ module\nfoo . \nbar ;\n\nvoid foo() {");
308+
assert(fetched == FileModuleInfo(["foo", "bar"], "foo.bar", 25, 35, 18, 38));
309+
}

0 commit comments

Comments
 (0)