From b40dc8ba8171834c992d7db642d4f32003a2b900 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 12 Sep 2017 15:16:04 +0300 Subject: [PATCH] fix duplicate projects in workspace after build - #268 --- src/dlangide/workspace/workspace.d | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/src/dlangide/workspace/workspace.d b/src/dlangide/workspace/workspace.d index 0654dac..119eb41 100644 --- a/src/dlangide/workspace/workspace.d +++ b/src/dlangide/workspace/workspace.d @@ -202,7 +202,24 @@ class Workspace : WorkspaceItem { return null; } + Project findProjectInWorkspace(Project p) { + foreach(existing; _projects) + if (existing is p || existing.filename == p.filename) + return existing; + return null; + } + + Project findProjectInWorkspace(string projectFilename) { + foreach(existing; _projects) + if (existing.filename == projectFilename) + return existing; + return null; + } + void addProject(Project p) { + if (findProjectInWorkspace(p)) + return; + Log.d("addProject ", p.filename); _projects ~= p; p.workspace = this; fillStartupProject(); @@ -214,6 +231,7 @@ class Workspace : WorkspaceItem { Project res = _projects[index]; for (int j = index; j + 1 < _projects.length; j++) _projects[j] = _projects[j + 1]; + _projects.length = _projects.length - 1; return res; } @@ -234,12 +252,8 @@ class Workspace : WorkspaceItem { } bool addDependencyProject(Project p) { - for (int i = 0; i < _projects.length; i++) { - if (_projects[i].filename.equal(p.filename)) { - _projects[i] = p; - return false; - } - } + if (findProjectInWorkspace(p)) + return false; addProject(p); return true; } @@ -322,6 +336,8 @@ class Workspace : WorkspaceItem { Log.d("project: ", key, " path:", path); if (!isAbsolute(path)) path = buildNormalizedPath(_dir, path); //, "dub.json" + if (findProjectInWorkspace(path)) + continue; Project project = new Project(this, path); _projects ~= project; project.load();