using System.IO.MemoryMappedFiles; using VoiceCat.Core; using Voicecat.V1; namespace VoiceCat.iOS; internal sealed class BroadcastAudioPump : IAsyncDisposable { private const uint Magic = 0x56434252, Version = 1; private const int Header = 64, Capacity = 96_000, Frame = 960; private readonly CancellationTokenSource stop = new(); private Thread? worker; private VoiceCatClient? client; private uint streamId; private bool active; private int generation; private readonly short[] scratch = new short[Frame * 2]; internal event Action? Changed; internal bool IsActive => active; internal void Start(VoiceCatClient owner) { client = owner; worker = new Thread(Run) { IsBackground = true, Name = "VoiceCat iOS screen audio", Priority = ThreadPriority.AboveNormal }; worker.Start(); } private void Run() { CancellationToken token = stop.Token; while (!token.IsCancellationRequested) { try { DrainAsync(token).GetAwaiter().GetResult(); } catch (Exception exception) when (exception is IOException or UnauthorizedAccessException or InvalidDataException or OperationCanceledException) { } if (!token.IsCancellationRequested) Thread.Sleep(5); } } private async Task DrainAsync(CancellationToken token) { NSUrl? root = NSFileManager.DefaultManager.GetContainerUrl(IosConstants.AppGroup); if (root?.Path is null) return; string path = Path.Combine(root.Path, "voicecat", "broadcast_audio.ring"); if (!File.Exists(path)) return; using MemoryMappedFile map = MemoryMappedFile.CreateFromFile(path, FileMode.Open, null, Header + Capacity * sizeof(short), MemoryMappedFileAccess.ReadWrite); using MemoryMappedViewAccessor view = map.CreateViewAccessor(0, Header + Capacity * sizeof(short), MemoryMappedFileAccess.ReadWrite); if (view.ReadUInt32(0) != Magic || view.ReadUInt32(4) != Version) throw new InvalidDataException("Unsupported broadcast ring."); bool active = view.ReadUInt32(16) != 0; if (!active) { StopStream(); SetActive(false); return; } VoiceCatClient owner = client ?? throw new IOException("Client disconnected."); if (streamId == 0) { int startGeneration = Volatile.Read(ref generation); StreamInfo stream = await owner.StartStreamAsync(StreamKind.StreamScreenAudio, "Screen audio", 2, token).ConfigureAwait(false); if (startGeneration != Volatile.Read(ref generation) || view.ReadUInt32(16) == 0 || !ReferenceEquals(client, owner)) { try { owner.StopStream(stream.StreamId); } catch (Exception exception) when (exception is IOException or InvalidOperationException) { } return; } streamId = stream.StreamId; view.Write(32, view.ReadUInt64(24)); SetActive(true); } ulong write = view.ReadUInt64(24), read = view.ReadUInt64(32); if (write - read > Capacity) read = write - Capacity; while (write - read >= Frame * 2) { for (int sample = 0; sample < scratch.Length; sample++) { ulong index = (read + (ulong)sample) % Capacity; scratch[sample] = view.ReadInt16(Header + checked((long)index * sizeof(short))); } if (!owner.Audio.FeedPcm(streamId, scratch, 2)) break; read += (ulong)scratch.Length; view.Write(32, read); } } private void StopStream() { uint id = streamId; streamId = 0; if (id == 0 || client?.State != ClientConnectionState.Connected) return; try { client.StopStream(id); } catch (Exception exception) when (exception is IOException or InvalidOperationException) { } } internal void RequestStop() { Interlocked.Increment(ref generation); SetActive(false); } private void SetActive(bool value) { if (active == value) return; active = value; Changed?.Invoke(); } public ValueTask DisposeAsync() { stop.Cancel(); Interlocked.Increment(ref generation); worker?.Join(); worker = null; StopStream(); SetActive(false); stop.Dispose(); return ValueTask.CompletedTask; } }