using System;
using System.ClientModel;
using System.ClientModel.Primitives;
using System.Collections;
using System.Collections.Generic;
using System.Net.ServerSentEvents;
using System.Threading;
#nullable enable
namespace OpenAI.Assistants;
/// <summary>
/// Implementation of collection abstraction over streaming assistant updates.
/// </summary>
internal class StreamingUpdateCollection : CollectionResult<StreamingUpdate>
{
private readonly Func<ClientResult> _sendRequest;
private readonly CancellationToken _cancellationToken;
public StreamingUpdateCollection(
Func<ClientResult> sendRequest,
CancellationToken cancellationToken)
{
Argument.AssertNotNull(sendRequest, nameof(sendRequest));
_sendRequest = sendRequest;
_cancellationToken = cancellationToken;
}
public override ContinuationToken? GetContinuationToken(ClientResult page)
// Continuation is not supported for SSE streams.
=> null;
public override IEnumerable<ClientResult> GetRawPages()
{
// We don't currently support resuming a dropped connection from the
// last received event, so the response collection has a single element.
yield return _sendRequest();
}
protected override IEnumerable<StreamingUpdate> GetValuesFromPage(ClientResult page)
{
using IEnumerator<StreamingUpdate> enumerator = new StreamingUpdateEnumerator(page, _cancellationToken);
while (enumerator.MoveNext())
{
yield return enumerator.Current;
}
}
private sealed class StreamingUpdateEnumerator : IEnumerator<StreamingUpdate>
{
private static ReadOnlySpan<byte> TerminalData => "[DONE]"u8;
private readonly CancellationToken _cancellationToken;
private readonly PipelineResponse _response;
// These enumerators represent what is effectively a doubly-nested
// loop over the outer event collection and the inner update collection,
// i.e.:
// foreach (var sse in _events) {
// // get _updates from sse event
// foreach (var update in _updates) { ... }
// }
private IEnumerator<SseItem<byte[]>>? _events;
private IEnumerator<StreamingUpdate>? _updates;
private StreamingUpdate? _current;
private bool _started;
public StreamingUpdateEnumerator(ClientResult page, CancellationToken cancellationToken)
{
Argument.AssertNotNull(page, nameof(page));
_response = page.GetRawResponse();
_cancellationToken = cancellationToken;
}
StreamingUpdate IEnumerator<StreamingUpdate>.Current
=> _current!;
object IEnumerator.Current => _current!;
public bool MoveNext()
{
if (_events is null && _started)
{
throw new ObjectDisposedException(nameof(StreamingUpdateEnumerator));
}
_cancellationToken.ThrowIfCancellationRequested();
_events ??= CreateEventEnumerator();
_started = true;
if (_updates is not null && _updates.MoveNext())
{
_current = _updates.Current;
return true;
}
if (_events.MoveNext())
{
if (_events.Current.Data.AsSpan().SequenceEqual(TerminalData))
{
_current = default;
return false;
}
var updates = StreamingUpdate.FromEvent(_events.Current);
_updates = updates.GetEnumerator();
if (_updates.MoveNext())
{
_current = _updates.Current;
return true;
}
}
_current = default;
return false;
}
private IEnumerator<SseItem<byte[]>> CreateEventEnumerator()
{
if (_response.ContentStream is null)
{
throw new InvalidOperationException("Unable to create result from response with null ContentStream");
}
IEnumerable<SseItem<byte[]>> enumerable = SseParser.Create(_response.ContentStream, (_, bytes) => bytes.ToArray()).Enumerate();
return enumerable.GetEnumerator();
}
public void Reset()
{
throw new NotSupportedException("Cannot seek back in an SSE stream.");
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
private void Dispose(bool disposing)
{
if (disposing && _events is not null)
{
_events.Dispose();
_events = null;
// Dispose the response so we don't leave the network connection open.
_response?.Dispose();
}
}
}
}openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Assistants/Streaming/StreamingUpdateCollection.cs
157lines · modepreview