-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathExtensions.cs
More file actions
234 lines (212 loc) · 8.28 KB
/
Extensions.cs
File metadata and controls
234 lines (212 loc) · 8.28 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using AudioSwitcher.AudioApi.Session;
namespace AudioSwitcher.AudioApi.CoreAudio
{
internal static class Extensions
{
private const string GuidRegex =
@"([a-fA-F0-9]{8}[-][a-fA-F0-9]{4}[-][a-fA-F0-9]{4}[-][a-fA-F0-9]{4}[-][a-fA-F0-9]{12})";
internal static EDataFlow AsEDataFlow(this DeviceType type)
{
switch (type)
{
case DeviceType.Playback:
return EDataFlow.Render;
case DeviceType.Capture:
return EDataFlow.Capture;
case DeviceType.All:
return EDataFlow.All;
default:
throw new ArgumentOutOfRangeException(nameof(type));
}
}
internal static DeviceType AsDeviceType(this EDataFlow dataFlow)
{
switch (dataFlow)
{
case EDataFlow.Render:
return DeviceType.Playback;
case EDataFlow.Capture:
return DeviceType.Capture;
case EDataFlow.All:
return DeviceType.All;
default:
throw new ArgumentOutOfRangeException(nameof(dataFlow));
}
}
internal static DeviceState AsDeviceState(this EDeviceState deviceState)
{
switch (deviceState)
{
case EDeviceState.Active:
return DeviceState.Active;
case EDeviceState.Disabled:
return DeviceState.Disabled;
case EDeviceState.NotPresent:
return DeviceState.NotPresent;
case EDeviceState.Unplugged:
return DeviceState.Unplugged;
case EDeviceState.All:
return DeviceState.All;
default:
throw new ArgumentOutOfRangeException(nameof(deviceState));
}
}
internal static EDeviceState AsEDeviceState(this DeviceState deviceState)
{
switch (deviceState)
{
case DeviceState.Active:
return EDeviceState.Active;
case DeviceState.Disabled:
return EDeviceState.Disabled;
case DeviceState.NotPresent:
return EDeviceState.NotPresent;
case DeviceState.Unplugged:
return EDeviceState.Unplugged;
case DeviceState.All:
return EDeviceState.All;
default:
throw new ArgumentOutOfRangeException(nameof(deviceState));
}
}
internal static ERole AsERole(this Role role)
{
switch (role)
{
case Role.Console:
return ERole.Console;
case Role.Multimedia:
return ERole.Multimedia;
case Role.Communications:
return ERole.Communications;
default:
throw new ArgumentOutOfRangeException(nameof(role));
}
}
internal static Role AsRole(this ERole role)
{
switch (role)
{
case ERole.Console:
return Role.Console;
case ERole.Multimedia:
return Role.Multimedia;
case ERole.Communications:
return Role.Communications;
default:
throw new ArgumentOutOfRangeException(nameof(role));
}
}
internal static IEnumerable<Guid> ExtractGuids(this string str)
{
var r = new Regex(GuidRegex);
var matches = r.Matches(str);
if (matches.Count == 0)
throw new FormatException("String does not contain a valid Guid");
foreach (var match in matches)
{
yield return new Guid(match.ToString());
}
}
internal static EAudioSessionState AsEAudioSessionState(this AudioSessionState state)
{
switch (state)
{
case AudioSessionState.Inactive:
return EAudioSessionState.AudioSessionStateInactive;
case AudioSessionState.Active:
return EAudioSessionState.AudioSessionStateActive;
case AudioSessionState.Expired:
return EAudioSessionState.AudioSessionStateExpired;
default:
throw new ArgumentOutOfRangeException(nameof(state), state, null);
}
}
internal static AudioSessionState AsAudioSessionState(this EAudioSessionState state)
{
switch (state)
{
case EAudioSessionState.AudioSessionStateInactive:
return AudioSessionState.Inactive;
case EAudioSessionState.AudioSessionStateActive:
return AudioSessionState.Active;
case EAudioSessionState.AudioSessionStateExpired:
return AudioSessionState.Expired;
default:
throw new ArgumentOutOfRangeException(nameof(state), state, null);
}
}
internal static float NormalizeVolume(this double volume)
{
if (volume <= 0)
return 0;
if (volume >= 100)
return 1;
return (float)((volume + 0.0001F) / 100);
}
internal static double DeNormalizeVolume(this float volume)
{
return volume * 100;
}
public static async Task<bool> WaitOneAsync(this WaitHandle handle, int millisecondsTimeout, CancellationToken cancellationToken)
{
RegisteredWaitHandle registeredHandle = null;
CancellationTokenRegistration tokenRegistration = default(CancellationTokenRegistration);
try
{
var tcs = new TaskCompletionSource<bool>();
registeredHandle = ThreadPool.RegisterWaitForSingleObject(
handle,
(state, timedOut) => ((TaskCompletionSource<bool>)state).TrySetResult(!timedOut),
tcs,
millisecondsTimeout,
true);
tokenRegistration = cancellationToken.Register(
state => ((TaskCompletionSource<bool>)state).TrySetCanceled(),
tcs);
return await tcs.Task;
}
finally
{
if (registeredHandle != null)
registeredHandle.Unregister(null);
tokenRegistration.Dispose();
}
}
public static Task<bool> WaitOneAsync(this WaitHandle handle, TimeSpan timeout, CancellationToken cancellationToken)
{
return handle.WaitOneAsync((int)timeout.TotalMilliseconds, cancellationToken);
}
public static Task<bool> WaitOneAsync(this WaitHandle handle, CancellationToken cancellationToken)
{
return handle.WaitOneAsync(Timeout.Infinite, cancellationToken);
}
public static bool WaitOne(this WaitHandle handle, int millisecondsTimeout, CancellationToken cancellationToken)
{
int n = WaitHandle.WaitAny(new[] { handle, cancellationToken.WaitHandle }, millisecondsTimeout);
switch (n)
{
case WaitHandle.WaitTimeout:
return false;
case 0:
return true;
default:
cancellationToken.ThrowIfCancellationRequested();
return false; // never reached
}
}
public static bool WaitOne(this WaitHandle handle, TimeSpan timeout, CancellationToken cancellationToken)
{
return handle.WaitOne((int)timeout.TotalMilliseconds, cancellationToken);
}
public static bool WaitOne(this WaitHandle handle, CancellationToken cancellationToken)
{
return handle.WaitOne(Timeout.Infinite, cancellationToken);
}
}
}