mirror of https://github.com/buggins/dlangide.git
debugging support
This commit is contained in:
parent
f1b3e505ca
commit
ee64b8c611
|
@ -190,5 +190,7 @@
|
|||
<Compile Include="src\dlangide\ui\wspanel.d" />
|
||||
<Compile Include="src\dlangide\workspace\project.d" />
|
||||
<Compile Include="src\dlangide\workspace\workspace.d" />
|
||||
<Compile Include="src\ddebug\common\debugger.d" />
|
||||
<Compile Include="src\ddebug\common\queue.d" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue