From 882b1f825420a43c5dffb262eb6d42ca22cc38fa Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Mon, 25 Sep 2017 15:37:06 +0300 Subject: [PATCH] check if target executable is locked before build - fix #309 --- src/dlangide/ui/frame.d | 25 +++++++++++++++++++++++++ views/VERSION | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/src/dlangide/ui/frame.d b/src/dlangide/ui/frame.d index bb3c0c8..eb2a7a3 100644 --- a/src/dlangide/ui/frame.d +++ b/src/dlangide/ui/frame.d @@ -1698,6 +1698,17 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL Platform.instance.showInFileManager(project.items.filename); } + static bool canWrite(string filename) { + import std.stdio : File; + try { + File f = File(filename, "a"); + scope(exit) f.close(); + return true; + } catch (Exception e) { + return false; + } + } + void buildProject(BuildOperation buildOp, Project project, BuildResultListener listener = null) { if (!currentWorkspace) { _logPanel.logLine("No workspace is opened"); @@ -1730,6 +1741,20 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL string arch = projectSettings.getArch(_settings); string dubExecutable = _settings.dubExecutable; string dubAdditionalParams = projectSettings.getDubAdditionalParams(_settings); + + string exeFile = project.executableFileName; + if (exeFile && (buildOp == BuildOperation.Build || buildOp == BuildOperation.Rebuild || buildOp == BuildOperation.Clean || buildOp == BuildOperation.Run)) { + import std.file : isFile, exists; + if (exeFile.exists && exeFile.isFile) { + if (!canWrite(exeFile)) { + _logPanel.clear(); + _logPanel.logLine("Executable file is in use. Stop runing application before build."); + handleBuildError(-5, project); + return; + } + } + } + Builder op = new Builder(this, project, _logPanel, currentWorkspace.projectConfiguration, currentWorkspace.buildConfiguration, buildOp, dubExecutable, dubAdditionalParams, toolchain, diff --git a/views/VERSION b/views/VERSION index af24d2d..600d46c 100644 --- a/views/VERSION +++ b/views/VERSION @@ -1 +1 @@ -v0.7.92 \ No newline at end of file +v0.7.93 \ No newline at end of file