check if target executable is locked before build - fix #309

This commit is contained in:
Vadim Lopatin 2017-09-25 15:37:06 +03:00
parent 0966d27eef
commit 882b1f8254
2 changed files with 26 additions and 1 deletions

View File

@ -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,

View File

@ -1 +1 @@
v0.7.92
v0.7.93