aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/OsTypes/OsSystemEvent.cs
blob: 8fac94abe699672a18108afdc09bfc7cf7b5650d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using Ryujinx.Horizon.Common;
using Ryujinx.Horizon.Sdk.OsTypes.Impl;
using System;

namespace Ryujinx.Horizon.Sdk.OsTypes
{
    static partial class Os
    {
        public static Result CreateSystemEvent(out SystemEventType sysEvent, EventClearMode clearMode, bool interProcess)
        {
            sysEvent = new SystemEventType();

            if (interProcess)
            {
                Result result = InterProcessEvent.Create(ref sysEvent.InterProcessEvent, clearMode);

                if (result != Result.Success)
                {
                    return result;
                }

                sysEvent.State = SystemEventType.InitializationState.InitializedAsInterProcess;
            }
            else
            {
                throw new NotImplementedException();
            }

            return Result.Success;
        }

        public static void DestroySystemEvent(ref SystemEventType sysEvent)
        {
            var oldState = sysEvent.State;
            sysEvent.State = SystemEventType.InitializationState.NotInitialized;

            switch (oldState)
            {
                case SystemEventType.InitializationState.InitializedAsInterProcess:
                    InterProcessEvent.Destroy(ref sysEvent.InterProcessEvent);
                    break;
            }
        }

        public static int DetachReadableHandleOfSystemEvent(ref SystemEventType sysEvent)
        {
            return InterProcessEvent.DetachReadableHandle(ref sysEvent.InterProcessEvent);
        }

        public static int DetachWritableHandleOfSystemEvent(ref SystemEventType sysEvent)
        {
            return InterProcessEvent.DetachWritableHandle(ref sysEvent.InterProcessEvent);
        }

        public static int GetReadableHandleOfSystemEvent(ref SystemEventType sysEvent)
        {
            return InterProcessEvent.GetReadableHandle(ref sysEvent.InterProcessEvent);
        }

        public static int GetWritableHandleOfSystemEvent(ref SystemEventType sysEvent)
        {
            return InterProcessEvent.GetWritableHandle(ref sysEvent.InterProcessEvent);
        }

        public static void SignalSystemEvent(ref SystemEventType sysEvent)
        {
            switch (sysEvent.State)
            {
                case SystemEventType.InitializationState.InitializedAsInterProcess:
                    InterProcessEvent.Signal(ref sysEvent.InterProcessEvent);
                    break;
            }
        }

        public static void ClearSystemEvent(ref SystemEventType sysEvent)
        {
            switch (sysEvent.State)
            {
                case SystemEventType.InitializationState.InitializedAsInterProcess:
                    InterProcessEvent.Clear(ref sysEvent.InterProcessEvent);
                    break;
            }
        }
    }
}