Ryujinx/Ryujinx.HLE/HOS/Kernel/KTimeManager.cs

143 lines
3.7 KiB
C#
Raw Normal View History

using Ryujinx.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace Ryujinx.HLE.HOS.Kernel
{
class KTimeManager : IDisposable
{
private class WaitingObject
{
public IKFutureSchedulerObject Object { get; private set; }
public long TimePoint { get; private set; }
2018-12-01 21:24:37 +01:00
public WaitingObject(IKFutureSchedulerObject schedulerObj, long timePoint)
{
2018-12-01 21:24:37 +01:00
Object = schedulerObj;
TimePoint = timePoint;
}
}
2018-12-01 21:01:59 +01:00
private List<WaitingObject> _waitingObjects;
2018-12-01 21:01:59 +01:00
private AutoResetEvent _waitEvent;
2018-12-01 21:01:59 +01:00
private bool _keepRunning;
public KTimeManager()
{
2018-12-01 21:01:59 +01:00
_waitingObjects = new List<WaitingObject>();
2018-12-01 21:01:59 +01:00
_keepRunning = true;
2018-12-01 21:01:59 +01:00
Thread work = new Thread(WaitAndCheckScheduledObjects);
2018-12-01 21:01:59 +01:00
work.Start();
}
2018-12-01 21:24:37 +01:00
public void ScheduleFutureInvocation(IKFutureSchedulerObject schedulerObj, long timeout)
{
2018-12-01 21:01:59 +01:00
long timePoint = PerformanceCounter.ElapsedMilliseconds + ConvertNanosecondsToMilliseconds(timeout);
2018-12-01 21:01:59 +01:00
lock (_waitingObjects)
{
2018-12-01 21:24:37 +01:00
_waitingObjects.Add(new WaitingObject(schedulerObj, timePoint));
}
2018-12-01 21:01:59 +01:00
_waitEvent.Set();
}
2018-12-01 21:01:59 +01:00
public static long ConvertNanosecondsToMilliseconds(long time)
{
2018-12-01 21:01:59 +01:00
time /= 1000000;
2018-12-01 21:01:59 +01:00
if ((ulong)time > int.MaxValue)
{
return int.MaxValue;
}
2018-12-01 21:01:59 +01:00
return time;
}
2018-12-01 21:01:59 +01:00
public static long ConvertMillisecondsToNanoseconds(long time)
{
2018-12-01 21:01:59 +01:00
return time * 1000000;
}
2018-12-01 21:01:59 +01:00
public static long ConvertMillisecondsToTicks(long time)
{
2018-12-01 21:01:59 +01:00
return time * 19200;
}
public void UnscheduleFutureInvocation(IKFutureSchedulerObject Object)
{
2018-12-01 21:01:59 +01:00
lock (_waitingObjects)
{
2018-12-01 21:01:59 +01:00
_waitingObjects.RemoveAll(x => x.Object == Object);
}
}
private void WaitAndCheckScheduledObjects()
{
2018-12-01 21:01:59 +01:00
using (_waitEvent = new AutoResetEvent(false))
{
2018-12-01 21:01:59 +01:00
while (_keepRunning)
{
2018-12-01 21:01:59 +01:00
WaitingObject next;
2018-12-01 21:01:59 +01:00
lock (_waitingObjects)
{
2018-12-01 21:01:59 +01:00
next = _waitingObjects.OrderBy(x => x.TimePoint).FirstOrDefault();
}
2018-12-01 21:01:59 +01:00
if (next != null)
{
2018-12-01 21:01:59 +01:00
long timePoint = PerformanceCounter.ElapsedMilliseconds;
2018-12-01 21:01:59 +01:00
if (next.TimePoint > timePoint)
{
2018-12-01 21:01:59 +01:00
_waitEvent.WaitOne((int)(next.TimePoint - timePoint));
}
2018-12-01 21:01:59 +01:00
bool timeUp = PerformanceCounter.ElapsedMilliseconds >= next.TimePoint;
2018-12-01 21:01:59 +01:00
if (timeUp)
{
2018-12-01 21:01:59 +01:00
lock (_waitingObjects)
{
2018-12-01 21:01:59 +01:00
timeUp = _waitingObjects.Remove(next);
}
}
2018-12-01 21:01:59 +01:00
if (timeUp)
{
2018-12-01 21:01:59 +01:00
next.Object.TimeUp();
}
}
else
{
2018-12-01 21:01:59 +01:00
_waitEvent.WaitOne();
}
}
}
}
public void Dispose()
{
Dispose(true);
}
2018-12-01 21:01:59 +01:00
protected virtual void Dispose(bool disposing)
{
2018-12-01 21:01:59 +01:00
if (disposing)
{
2018-12-01 21:01:59 +01:00
_keepRunning = false;
2018-12-01 21:01:59 +01:00
_waitEvent?.Set();
}
}
}
}