fix #245, partial change for #235

This commit is contained in:
Vadim Lopatin 2017-08-29 16:44:57 +03:00
parent cfcf70c1ea
commit 23213147d2
3 changed files with 45 additions and 5 deletions

View File

@ -72,11 +72,14 @@ class DCDTask {
if (_cancelled) if (_cancelled)
return; return;
createRequest(); createRequest();
if (_cancelled)
return;
performRequest(); performRequest();
synchronized(this) { synchronized(this) {
if (_cancelled) if (_cancelled)
return; return;
_guiExecutor.executeInUiThread(&postResults); if (_guiExecutor)
_guiExecutor.executeInUiThread(&postResults);
} }
} }
} }
@ -183,6 +186,29 @@ class DCDInterface : Thread {
return ""; return "";
} }
/// DCD doc comments task
class ModuleCacheWarmupTask : DCDTask {
this(CustomEventTarget guiExecutor, string[] importPaths) {
super(guiExecutor, importPaths, null, null, 0);
}
override void performRequest() {
debug(DCD) Log.d("DCD - warm up module cache with import paths ", _importPaths);
getModuleCache(_importPaths);
debug(DCD) Log.d("DCD - module cache warm up finished");
}
override void postResults() {
}
}
DCDTask warmUp(string[] importPaths) {
debug(DCD) Log.d("DCD warmUp: ", importPaths);
ModuleCacheWarmupTask task = new ModuleCacheWarmupTask(null, importPaths);
_queue.put(task);
return task;
}
/// DCD doc comments task /// DCD doc comments task
class DocCommentsTask : DCDTask { class DocCommentsTask : DCDTask {

View File

@ -63,6 +63,7 @@ class DEditorTool : EditorTool
override void cancelGetDocComments() { override void cancelGetDocComments() {
if (_getDocCommentsTask) { if (_getDocCommentsTask) {
Log.d("Cancelling getDocComments()");
_getDocCommentsTask.cancel(); _getDocCommentsTask.cancel();
_getDocCommentsTask = null; _getDocCommentsTask = null;
} }
@ -70,6 +71,7 @@ class DEditorTool : EditorTool
override void cancelGoToDefinition() { override void cancelGoToDefinition() {
if (_goToDefinitionTask) { if (_goToDefinitionTask) {
Log.d("Cancelling goToDefinition()");
_goToDefinitionTask.cancel(); _goToDefinitionTask.cancel();
_goToDefinitionTask = null; _goToDefinitionTask = null;
} }
@ -77,6 +79,7 @@ class DEditorTool : EditorTool
override void cancelGetCompletions() { override void cancelGetCompletions() {
if (_getCompletionsTask) { if (_getCompletionsTask) {
Log.d("Cancelling getCompletions()");
_getCompletionsTask.cancel(); _getCompletionsTask.cancel();
_getCompletionsTask = null; _getCompletionsTask = null;
} }
@ -125,6 +128,7 @@ class DEditorTool : EditorTool
DCDTask _getCompletionsTask; DCDTask _getCompletionsTask;
override void getCompletions(DSourceEdit editor, TextPosition caretPosition, void delegate(dstring[] completions, string[] icons) callback) { override void getCompletions(DSourceEdit editor, TextPosition caretPosition, void delegate(dstring[] completions, string[] icons) callback) {
cancelGetCompletions();
string[] importPaths = editor.importPaths(); string[] importPaths = editor.importPaths();
string content = toUTF8(editor.text); string content = toUTF8(editor.text);

View File

@ -1325,6 +1325,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
if (!project) if (!project)
return; return;
currentWorkspace.startupProject = project; currentWorkspace.startupProject = project;
warmUpImportPaths(project);
if (_wsPanel) if (_wsPanel)
_wsPanel.updateDefault(); _wsPanel.updateDefault();
} }
@ -1394,15 +1395,21 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
} }
const auto msg = UIString.fromId("MSG_OPENED_PROJECT"c); const auto msg = UIString.fromId("MSG_OPENED_PROJECT"c);
_logPanel.logLine(toUTF32("Project file " ~ project.filename ~ " is opened ok")); _logPanel.logLine(toUTF32("Project file " ~ project.filename ~ " is opened ok"));
warmUpImportPaths(project);
return true; return true;
} }
public void warmUpImportPaths(Project project) {
dcdInterface.warmUp(project.importPaths);
}
void openFileOrWorkspace(string filename) { void openFileOrWorkspace(string filename) {
// Open DlangIDE workspace file // Open DlangIDE workspace file
if (filename.isWorkspaceFile) { if (filename.isWorkspaceFile) {
Workspace ws = new Workspace(this); Workspace ws = new Workspace(this);
if (ws.load(filename)) { if (ws.load(filename)) {
askForUnsavedEdits(delegate() { askForUnsavedEdits(delegate() {
setWorkspace(ws); setWorkspace(ws);
hideHomeScreen(); hideHomeScreen();
// Write workspace to recent workspaces list // Write workspace to recent workspaces list
@ -1421,9 +1428,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
const auto msg = UIString.fromId("MSG_TRY_OPEN_PROJECT"c).value; const auto msg = UIString.fromId("MSG_TRY_OPEN_PROJECT"c).value;
_logPanel.logLine(msg ~ toUTF32(" " ~ filename)); _logPanel.logLine(msg ~ toUTF32(" " ~ filename));
Project project = new Project(currentWorkspace, filename); Project project = new Project(currentWorkspace, filename);
if (!project.load()) { if (!loadProject(project)) {
window.showMessageBox(UIString.fromId("MSG_OPEN_PROJECT"c), UIString.fromId("ERROR_INVALID_WS_OR_PROJECT_FILE"c)); //window.showMessageBox(UIString.fromId("MSG_OPEN_PROJECT"c), UIString.fromId("ERROR_INVALID_WS_OR_PROJECT_FILE"c));
_logPanel.logLine("File is not recognized as DlangIDE project or workspace file"); //_logPanel.logLine("File is not recognized as DlangIDE project or workspace file");
return; return;
} }
string defWsFile = project.defWorkspaceFile; string defWsFile = project.defWorkspaceFile;
@ -1508,6 +1515,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
_wsPanel.visibility = Visibility.Visible; _wsPanel.visibility = Visibility.Visible;
_settings.updateRecentWorkspace(ws.filename); _settings.updateRecentWorkspace(ws.filename);
_settings.setRecentPath(ws.dir, "FILE_OPEN_WORKSPACE_PATH"); _settings.setRecentPath(ws.dir, "FILE_OPEN_WORKSPACE_PATH");
if (ws.startupProject) {
warmUpImportPaths(ws.startupProject);
}
} else { } else {
_wsPanel.visibility = Visibility.Gone; _wsPanel.visibility = Visibility.Gone;
} }