forked from bterlson/openai-in-typespec
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
398 changed files
with
1,159 additions
and
1,947 deletions.
There are no files selected for viewing
195 changes: 195 additions & 0 deletions
195
.dotnet/src/Generated/Internal/MultiPartFormDataBinaryContent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
// <auto-generated/> | ||
|
||
#nullable disable | ||
|
||
using System; | ||
using System.ClientModel; | ||
using System.Globalization; | ||
using System.IO; | ||
using System.Net.Http; | ||
using System.Net.Http.Headers; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
||
namespace OpenAI | ||
{ | ||
internal partial class MultiPartFormDataBinaryContent : BinaryContent | ||
{ | ||
private readonly MultipartFormDataContent _multipartContent; | ||
private static readonly Random _random = new Random(); | ||
private static readonly char[] _boundaryValues = "0123456789=ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz".ToCharArray(); | ||
|
||
public MultiPartFormDataBinaryContent() | ||
{ | ||
_multipartContent = new MultipartFormDataContent(CreateBoundary()); | ||
} | ||
|
||
public string ContentType | ||
{ | ||
get | ||
{ | ||
return _multipartContent.Headers.ContentType.ToString(); | ||
} | ||
} | ||
|
||
internal HttpContent HttpContent => _multipartContent; | ||
|
||
private static string CreateBoundary() | ||
{ | ||
Span<char> chars = new char[70]; | ||
byte[] random = new byte[70]; | ||
_random.NextBytes(random); | ||
int mask = 255 >> 2; | ||
int i = 0; | ||
for (; i < 70; i++) | ||
{ | ||
chars[i] = _boundaryValues[random[i] & mask]; | ||
} | ||
return chars.ToString(); | ||
} | ||
|
||
public void Add(string content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
Add(new StringContent(content), name, filename, contentType); | ||
} | ||
|
||
public void Add(int content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
string value = content.ToString("G", CultureInfo.InvariantCulture); | ||
Add(new StringContent(value), name, filename, contentType); | ||
} | ||
|
||
public void Add(long content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
string value = content.ToString("G", CultureInfo.InvariantCulture); | ||
Add(new StringContent(value), name, filename, contentType); | ||
} | ||
|
||
public void Add(float content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
string value = content.ToString("G", CultureInfo.InvariantCulture); | ||
Add(new StringContent(value), name, filename, contentType); | ||
} | ||
|
||
public void Add(double content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
string value = content.ToString("G", CultureInfo.InvariantCulture); | ||
Add(new StringContent(value), name, filename, contentType); | ||
} | ||
|
||
public void Add(decimal content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
string value = content.ToString("G", CultureInfo.InvariantCulture); | ||
Add(new StringContent(value), name, filename, contentType); | ||
} | ||
|
||
public void Add(bool content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
string value = content ? "true" : "false"; | ||
Add(new StringContent(value), name, filename, contentType); | ||
} | ||
|
||
public void Add(Stream content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
Add(new StreamContent(content), name, filename, contentType); | ||
} | ||
|
||
public void Add(byte[] content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
Add(new ByteArrayContent(content), name, filename, contentType); | ||
} | ||
|
||
public void Add(BinaryData content, string name, string filename = default, string contentType = default) | ||
{ | ||
Argument.AssertNotNull(content, nameof(content)); | ||
Argument.AssertNotNullOrEmpty(name, nameof(name)); | ||
|
||
Add(new ByteArrayContent(content.ToArray()), name, filename, contentType); | ||
} | ||
|
||
private void Add(HttpContent content, string name, string filename, string contentType) | ||
{ | ||
if (contentType != null) | ||
{ | ||
Argument.AssertNotNullOrEmpty(contentType, nameof(contentType)); | ||
AddContentTypeHeader(content, contentType); | ||
} | ||
if (filename != null) | ||
{ | ||
Argument.AssertNotNullOrEmpty(filename, nameof(filename)); | ||
_multipartContent.Add(content, name, filename); | ||
} | ||
else | ||
{ | ||
_multipartContent.Add(content, name); | ||
} | ||
} | ||
|
||
public static void AddContentTypeHeader(HttpContent content, string contentType) | ||
{ | ||
MediaTypeHeaderValue header = new MediaTypeHeaderValue(contentType); | ||
content.Headers.ContentType = header; | ||
} | ||
|
||
public override bool TryComputeLength(out long length) | ||
{ | ||
if (_multipartContent.Headers.ContentLength is long contentLength) | ||
{ | ||
length = contentLength; | ||
return true; | ||
} | ||
length = 0; | ||
return false; | ||
} | ||
|
||
public override void WriteTo(Stream stream, CancellationToken cancellationToken = default) | ||
{ | ||
#if NET6_0_OR_GREATER | ||
_multipartContent.CopyTo(stream, default, cancellationToken); | ||
#else | ||
_multipartContent.CopyToAsync(stream).GetAwaiter().GetResult(); | ||
#endif | ||
} | ||
|
||
public override async Task WriteToAsync(Stream stream, CancellationToken cancellationToken = default) | ||
{ | ||
#if NET6_0_OR_GREATER | ||
await _multipartContent.CopyToAsync(stream).ConfigureAwait(false); | ||
#else | ||
await _multipartContent.CopyToAsync(stream).ConfigureAwait(false); | ||
#endif | ||
} | ||
|
||
public override void Dispose() | ||
{ | ||
_multipartContent.Dispose(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.