openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.0.0-beta.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/Utility/ServerSentEventField.cs

55lines · modepreview

using System;

#nullable enable

namespace OpenAI;

/// <summary>
/// Represents a field that can be composed into an SSE event.
/// See SSE specification: https://html.spec.whatwg.org/multipage/server-sent-events.html
/// </summary>
internal readonly struct ServerSentEventField
{
    private static readonly ReadOnlyMemory<char> s_eventFieldName = "event".AsMemory();
    private static readonly ReadOnlyMemory<char> s_dataFieldName = "data".AsMemory();
    private static readonly ReadOnlyMemory<char> s_lastEventIdFieldName = "id".AsMemory();
    private static readonly ReadOnlyMemory<char> s_retryFieldName = "retry".AsMemory();

    public ServerSentEventFieldKind FieldType { get; }

    // Note: we don't plan to expose UTF16 publicly
    public ReadOnlyMemory<char> Value { get; }

    internal ServerSentEventField(string line)
    {
        int colonIndex = line.AsSpan().IndexOf(':');

        ReadOnlyMemory<char> fieldName = colonIndex < 0 ?
            line.AsMemory() :
            line.AsMemory(0, colonIndex);

        FieldType = fieldName.Span switch
        {
            var x when x.SequenceEqual(s_eventFieldName.Span) => ServerSentEventFieldKind.Event,
            var x when x.SequenceEqual(s_dataFieldName.Span) => ServerSentEventFieldKind.Data,
            var x when x.SequenceEqual(s_lastEventIdFieldName.Span) => ServerSentEventFieldKind.Id,
            var x when x.SequenceEqual(s_retryFieldName.Span) => ServerSentEventFieldKind.Retry,
            _ => ServerSentEventFieldKind.Ignore,
        };

        if (colonIndex < 0)
        {
            Value = ReadOnlyMemory<char>.Empty;
        }
        else
        {
            Value = line.AsMemory(colonIndex + 1);

            // Per spec, remove a leading space if present.
            if (Value.Length > 0 && Value.Span[0] == ' ')
            {
                Value = Value.Slice(1);
            }
        }
    }
}