2018-02-05 00:08:20 +01:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
using ChocolArm64.State;
|
|
|
|
using System;
|
|
|
|
using System.Threading;
|
|
|
|
|
|
|
|
namespace ChocolArm64
|
|
|
|
{
|
2018-02-16 01:04:38 +01:00
|
|
|
public class AThread
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-18 20:28:07 +01:00
|
|
|
public AThreadState ThreadState { get; private set; }
|
2018-02-05 00:08:20 +01:00
|
|
|
public AMemory Memory { get; private set; }
|
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
public long EntryPoint { get; private set; }
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
private ATranslator Translator;
|
2018-02-14 03:43:08 +01:00
|
|
|
|
|
|
|
private ThreadPriority Priority;
|
|
|
|
|
|
|
|
private Thread Work;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
public event EventHandler WorkFinished;
|
|
|
|
|
2018-02-18 20:28:07 +01:00
|
|
|
public int ThreadId => ThreadState.ThreadId;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
public bool IsAlive => Work.IsAlive;
|
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
private bool IsExecuting;
|
|
|
|
|
|
|
|
private object ExecuteLock;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
public AThread(AMemory Memory, ThreadPriority Priority, long EntryPoint)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
this.Memory = Memory;
|
|
|
|
this.Priority = Priority;
|
2018-02-14 03:43:08 +01:00
|
|
|
this.EntryPoint = EntryPoint;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-02-18 20:28:07 +01:00
|
|
|
ThreadState = new AThreadState();
|
2018-02-14 03:43:08 +01:00
|
|
|
Translator = new ATranslator(this);
|
|
|
|
ExecuteLock = new object();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void StopExecution() => Translator.StopExecution();
|
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
public bool Execute()
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-14 03:43:08 +01:00
|
|
|
lock (ExecuteLock)
|
|
|
|
{
|
|
|
|
if (IsExecuting)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
IsExecuting = true;
|
|
|
|
}
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
Work = new Thread(delegate()
|
|
|
|
{
|
|
|
|
Translator.ExecuteSubroutine(EntryPoint);
|
|
|
|
|
|
|
|
Memory.RemoveMonitor(ThreadId);
|
|
|
|
|
|
|
|
WorkFinished?.Invoke(this, EventArgs.Empty);
|
|
|
|
});
|
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
Work.Priority = Priority;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
Work.Start();
|
2018-02-14 03:43:08 +01:00
|
|
|
|
|
|
|
return true;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|