mirror of https://github.com/buggins/dlangide.git
fix duplicate projects in workspace after build - #268
This commit is contained in:
parent
a30379b8fa
commit
b40dc8ba81
|
@ -202,7 +202,24 @@ class Workspace : WorkspaceItem {
|
||||||
return null;
|
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) {
|
void addProject(Project p) {
|
||||||
|
if (findProjectInWorkspace(p))
|
||||||
|
return;
|
||||||
|
Log.d("addProject ", p.filename);
|
||||||
_projects ~= p;
|
_projects ~= p;
|
||||||
p.workspace = this;
|
p.workspace = this;
|
||||||
fillStartupProject();
|
fillStartupProject();
|
||||||
|
@ -214,6 +231,7 @@ class Workspace : WorkspaceItem {
|
||||||
Project res = _projects[index];
|
Project res = _projects[index];
|
||||||
for (int j = index; j + 1 < _projects.length; j++)
|
for (int j = index; j + 1 < _projects.length; j++)
|
||||||
_projects[j] = _projects[j + 1];
|
_projects[j] = _projects[j + 1];
|
||||||
|
_projects.length = _projects.length - 1;
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -234,12 +252,8 @@ class Workspace : WorkspaceItem {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool addDependencyProject(Project p) {
|
bool addDependencyProject(Project p) {
|
||||||
for (int i = 0; i < _projects.length; i++) {
|
if (findProjectInWorkspace(p))
|
||||||
if (_projects[i].filename.equal(p.filename)) {
|
return false;
|
||||||
_projects[i] = p;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
addProject(p);
|
addProject(p);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -322,6 +336,8 @@ class Workspace : WorkspaceItem {
|
||||||
Log.d("project: ", key, " path:", path);
|
Log.d("project: ", key, " path:", path);
|
||||||
if (!isAbsolute(path))
|
if (!isAbsolute(path))
|
||||||
path = buildNormalizedPath(_dir, path); //, "dub.json"
|
path = buildNormalizedPath(_dir, path); //, "dub.json"
|
||||||
|
if (findProjectInWorkspace(path))
|
||||||
|
continue;
|
||||||
Project project = new Project(this, path);
|
Project project = new Project(this, path);
|
||||||
_projects ~= project;
|
_projects ~= project;
|
||||||
project.load();
|
project.load();
|
||||||
|
|
Loading…
Reference in New Issue