debugging support

This commit is contained in:
Vadim Lopatin 2015-11-12 16:54:44 +03:00
parent f1b3e505ca
commit ee64b8c611
3 changed files with 55 additions and 0 deletions

View File

@ -190,5 +190,7 @@
<Compile Include="src\dlangide\ui\wspanel.d" /> <Compile Include="src\dlangide\ui\wspanel.d" />
<Compile Include="src\dlangide\workspace\project.d" /> <Compile Include="src\dlangide\workspace\project.d" />
<Compile Include="src\dlangide\workspace\workspace.d" /> <Compile Include="src\dlangide\workspace\workspace.d" />
<Compile Include="src\ddebug\common\debugger.d" />
<Compile Include="src\ddebug\common\queue.d" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -0,0 +1,27 @@
module ddebug.common.debugger;
import core.thread;
import dlangui.core.logger;
interface Debugger {
/// start debugging
void startDebugging(string executable, string[] args, string workingDir);
}
interface DebuggerCallback {
}
class DebuggerBase : Thread {
private bool _stopRequested;
private bool _finished;
this() {
super(&run);
}
private void run() {
Log.i("Debugger thread started");
Log.i("Debugger thread finished");
_finished = true;
}
}

26
src/ddebug/common/queue.d Normal file
View File

@ -0,0 +1,26 @@
module ddebug.common.queue;
import core.sync.condition;
import core.sync.mutex;
class BlockingQueue(T) {
private Mutex _mutex;
private Condition _condition;
this() {
_mutex = new Mutex();
_condition = new Condition(_mutex);
}
~this() {
// TODO: destroy mutex?
}
void put(T item) {
}
bool get(ref T value, int timeoutMillis) {
return false;
}
}