mirror of https://github.com/buggins/dlangide.git
check if target executable is locked before build - fix #309
This commit is contained in:
parent
0966d27eef
commit
882b1f8254
|
@ -1698,6 +1698,17 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
Platform.instance.showInFileManager(project.items.filename);
|
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) {
|
void buildProject(BuildOperation buildOp, Project project, BuildResultListener listener = null) {
|
||||||
if (!currentWorkspace) {
|
if (!currentWorkspace) {
|
||||||
_logPanel.logLine("No workspace is opened");
|
_logPanel.logLine("No workspace is opened");
|
||||||
|
@ -1730,6 +1741,20 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
string arch = projectSettings.getArch(_settings);
|
string arch = projectSettings.getArch(_settings);
|
||||||
string dubExecutable = _settings.dubExecutable;
|
string dubExecutable = _settings.dubExecutable;
|
||||||
string dubAdditionalParams = projectSettings.getDubAdditionalParams(_settings);
|
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,
|
Builder op = new Builder(this, project, _logPanel, currentWorkspace.projectConfiguration, currentWorkspace.buildConfiguration, buildOp,
|
||||||
dubExecutable, dubAdditionalParams,
|
dubExecutable, dubAdditionalParams,
|
||||||
toolchain,
|
toolchain,
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v0.7.92
|
v0.7.93
|
Loading…
Reference in New Issue