@@ -88,7 +88,7 @@ class ModulemanComponent : ComponentWrapper
88
88
modName = modName.stripLeft(' /' ).replace(" /" , " ." );
89
89
if (! modName.length)
90
90
return [];
91
- auto existing = fetchModule(file, code);
91
+ auto existing = describeModule( code);
92
92
if (modName == existing.moduleName)
93
93
{
94
94
return [];
@@ -102,50 +102,84 @@ class ModulemanComponent : ComponentWrapper
102
102
}
103
103
}
104
104
105
- // / Returns the module name of a D code
105
+ // / Returns the module name parts of a D code
106
106
const (string )[] getModule (string code)
107
107
{
108
- return fetchModule ( " " , code).raw;
108
+ return describeModule ( code).raw;
109
109
}
110
110
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)
116
113
{
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;
122
115
}
123
- }
124
116
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;
126
124
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
+ }
130
134
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;
135
137
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);
140
161
}
141
162
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.
142
172
const (string )[] raw;
173
+ // / Whole modulename as normalized string in form a.b.c etc.
143
174
string moduleName = " " ;
144
- Token fileName;
175
+ // / Code index of the moduleName
145
176
size_t from, to;
177
+ // / Code index of the whole module statement starting right at module and ending right after the semicolon.
146
178
size_t outerFrom, outerTo;
147
179
}
148
180
181
+ private :
182
+
149
183
class ModuleChangerVisitor : ASTVisitor
150
184
{
151
185
this (string file, string [] from, string [] to, bool renameSubmodules)
@@ -216,8 +250,9 @@ void doNothing(string, size_t, size_t, string, bool)
216
250
{
217
251
}
218
252
219
- /* unittest
253
+ unittest
220
254
{
255
+ auto backend = new WorkspaceD();
221
256
auto workspace = makeTemporaryTestingWorkspace;
222
257
workspace.createDir(" source/newmod" );
223
258
workspace.createDir(" unregistered/source" );
@@ -228,12 +263,13 @@ void doNothing(string, size_t, size_t, string, bool)
228
263
workspace.writeFile(" source/newmod/package.d" , " " );
229
264
workspace.writeFile(" unregistered/source/package.d" , " " );
230
265
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);
231
269
232
- importPathProvider = () => ["source"];
270
+ instance. importPathProvider = () => [" source" ];
233
271
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;
237
273
238
274
assert (changes.length == 2 );
239
275
assert (changes[0 ].file.endsWith(" color.d" ));
@@ -252,20 +288,22 @@ void doNothing(string, size_t, size_t, string, bool)
252
288
std.file.write (change.file, code);
253
289
}
254
290
255
- auto nrm = normalizeModules(workspace.getPath("source/newmod/input.d"), "");
291
+ auto nrm = mod. normalizeModules(workspace.getPath(" source/newmod/input.d" ), " " );
256
292
assert (nrm == [CodeReplacement([0 , 0 ], " module newmod.input;" )]);
257
293
258
- nrm = normalizeModules(workspace.getPath("source/newmod/package.d"), "");
294
+ nrm = mod. normalizeModules(workspace.getPath(" source/newmod/package.d" ), " " );
259
295
assert (nrm == [CodeReplacement([0 , 0 ], " module newmod;" )]);
260
296
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;" );
262
299
assert (nrm == [CodeReplacement([0 , 22 ], " module newmod.display;" )]);
263
300
264
- nrm = normalizeModules(workspace.getPath("unregistered/source/app.d"), "");
301
+ nrm = mod. normalizeModules(workspace.getPath(" unregistered/source/app.d" ), " " );
265
302
assert (nrm == [CodeReplacement([0 , 0 ], " module app;" )]);
266
303
267
- nrm = normalizeModules(workspace.getPath("unregistered/source/package.d"), "");
304
+ nrm = mod. normalizeModules(workspace.getPath(" unregistered/source/package.d" ), " " );
268
305
assert (nrm == []);
269
306
270
- stop();
271
- }*/
307
+ auto fetched = mod.describeModule(" /* hello world */ module\n foo . \n bar ;\n\n void foo() {" );
308
+ assert (fetched == FileModuleInfo([" foo" , " bar" ], " foo.bar" , 25 , 35 , 18 , 38 ));
309
+ }
0 commit comments