1357 lines
76 KiB
C#
1357 lines
76 KiB
C#
#region License
|
|
// Copyright (c) 2007 James Newton-King
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person
|
|
// obtaining a copy of this software and associated documentation
|
|
// files (the "Software"), to deal in the Software without
|
|
// restriction, including without limitation the rights to use,
|
|
// copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the
|
|
// Software is furnished to do so, subject to the following
|
|
// conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
// OTHER DEALINGS IN THE SOFTWARE.
|
|
#endregion
|
|
|
|
#if HAVE_ASYNC
|
|
|
|
using System;
|
|
using System.Globalization;
|
|
using System.Threading;
|
|
#if HAVE_BIG_INTEGER
|
|
using System.Numerics;
|
|
#endif
|
|
using System.Threading.Tasks;
|
|
using LC.Newtonsoft.Json.Utilities;
|
|
|
|
namespace LC.Newtonsoft.Json
|
|
{
|
|
public partial class JsonTextWriter
|
|
{
|
|
// It's not safe to perform the async methods here in a derived class as if the synchronous equivalent
|
|
// has been overriden then the asychronous method will no longer be doing the same operation.
|
|
#if HAVE_ASYNC // Double-check this isn't included inappropriately.
|
|
private readonly bool _safeAsync;
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task FlushAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoFlushAsync(cancellationToken) : base.FlushAsync(cancellationToken);
|
|
}
|
|
|
|
internal Task DoFlushAsync(CancellationToken cancellationToken)
|
|
{
|
|
return cancellationToken.CancelIfRequestedAsync() ?? _writer.FlushAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the JSON value delimiter.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
protected override Task WriteValueDelimiterAsync(CancellationToken cancellationToken)
|
|
{
|
|
return _safeAsync ? DoWriteValueDelimiterAsync(cancellationToken) : base.WriteValueDelimiterAsync(cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueDelimiterAsync(CancellationToken cancellationToken)
|
|
{
|
|
return _writer.WriteAsync(',', cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the specified end token.
|
|
/// </summary>
|
|
/// <param name="token">The end token to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
protected override Task WriteEndAsync(JsonToken token, CancellationToken cancellationToken)
|
|
{
|
|
return _safeAsync ? DoWriteEndAsync(token, cancellationToken) : base.WriteEndAsync(token, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteEndAsync(JsonToken token, CancellationToken cancellationToken)
|
|
{
|
|
switch (token)
|
|
{
|
|
case JsonToken.EndObject:
|
|
return _writer.WriteAsync('}', cancellationToken);
|
|
case JsonToken.EndArray:
|
|
return _writer.WriteAsync(']', cancellationToken);
|
|
case JsonToken.EndConstructor:
|
|
return _writer.WriteAsync(')', cancellationToken);
|
|
default:
|
|
throw JsonWriterException.Create(this, "Invalid JsonToken: " + token, null);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously closes this writer.
|
|
/// If <see cref="JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task CloseAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoCloseAsync(cancellationToken) : base.CloseAsync(cancellationToken);
|
|
}
|
|
|
|
internal async Task DoCloseAsync(CancellationToken cancellationToken)
|
|
{
|
|
if (Top == 0) // otherwise will happen in calls to WriteEndAsync
|
|
{
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
}
|
|
|
|
while (Top > 0)
|
|
{
|
|
await WriteEndAsync(cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
CloseBufferAndWriter();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the end of the current JSON object or array.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteEndAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteEndInternalAsync(cancellationToken) : base.WriteEndAsync(cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes indent characters.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
protected override Task WriteIndentAsync(CancellationToken cancellationToken)
|
|
{
|
|
return _safeAsync ? DoWriteIndentAsync(cancellationToken) : base.WriteIndentAsync(cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteIndentAsync(CancellationToken cancellationToken)
|
|
{
|
|
// levels of indentation multiplied by the indent count
|
|
int currentIndentCount = Top * _indentation;
|
|
|
|
int newLineLen = SetIndentChars();
|
|
|
|
if (currentIndentCount <= IndentCharBufferSize)
|
|
{
|
|
return _writer.WriteAsync(_indentChars, 0, newLineLen + currentIndentCount, cancellationToken);
|
|
}
|
|
|
|
return WriteIndentAsync(currentIndentCount, newLineLen, cancellationToken);
|
|
}
|
|
|
|
private async Task WriteIndentAsync(int currentIndentCount, int newLineLen, CancellationToken cancellationToken)
|
|
{
|
|
await _writer.WriteAsync(_indentChars, 0, newLineLen + Math.Min(currentIndentCount, IndentCharBufferSize), cancellationToken).ConfigureAwait(false);
|
|
|
|
while ((currentIndentCount -= IndentCharBufferSize) > 0)
|
|
{
|
|
await _writer.WriteAsync(_indentChars, newLineLen, Math.Min(currentIndentCount, IndentCharBufferSize), cancellationToken).ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
private Task WriteValueInternalAsync(JsonToken token, string value, CancellationToken cancellationToken)
|
|
{
|
|
Task task = InternalWriteValueAsync(token, cancellationToken);
|
|
if (task.IsCompletedSucessfully())
|
|
{
|
|
return _writer.WriteAsync(value, cancellationToken);
|
|
}
|
|
|
|
return WriteValueInternalAsync(task, value, cancellationToken);
|
|
}
|
|
|
|
private async Task WriteValueInternalAsync(Task task, string value, CancellationToken cancellationToken)
|
|
{
|
|
await task.ConfigureAwait(false);
|
|
await _writer.WriteAsync(value, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes an indent space.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
protected override Task WriteIndentSpaceAsync(CancellationToken cancellationToken)
|
|
{
|
|
return _safeAsync ? DoWriteIndentSpaceAsync(cancellationToken) : base.WriteIndentSpaceAsync(cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteIndentSpaceAsync(CancellationToken cancellationToken)
|
|
{
|
|
return _writer.WriteAsync(' ', cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes raw JSON without changing the writer's state.
|
|
/// </summary>
|
|
/// <param name="json">The raw JSON to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteRawAsync(string json, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteRawAsync(json, cancellationToken) : base.WriteRawAsync(json, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteRawAsync(string json, CancellationToken cancellationToken)
|
|
{
|
|
return _writer.WriteAsync(json, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a null value.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteNullAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteNullAsync(cancellationToken) : base.WriteNullAsync(cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteNullAsync(CancellationToken cancellationToken)
|
|
{
|
|
return WriteValueInternalAsync(JsonToken.Null, JsonConvert.Null, cancellationToken);
|
|
}
|
|
|
|
private Task WriteDigitsAsync(ulong uvalue, bool negative, CancellationToken cancellationToken)
|
|
{
|
|
if (uvalue <= 9 & !negative)
|
|
{
|
|
return _writer.WriteAsync((char)('0' + uvalue), cancellationToken);
|
|
}
|
|
|
|
int length = WriteNumberToBuffer(uvalue, negative);
|
|
return _writer.WriteAsync(_writeBuffer, 0, length, cancellationToken);
|
|
}
|
|
|
|
private Task WriteIntegerValueAsync(ulong uvalue, bool negative, CancellationToken cancellationToken)
|
|
{
|
|
Task task = InternalWriteValueAsync(JsonToken.Integer, cancellationToken);
|
|
if (task.IsCompletedSucessfully())
|
|
{
|
|
return WriteDigitsAsync(uvalue, negative, cancellationToken);
|
|
}
|
|
|
|
return WriteIntegerValueAsync(task, uvalue, negative, cancellationToken);
|
|
}
|
|
|
|
private async Task WriteIntegerValueAsync(Task task, ulong uvalue, bool negative, CancellationToken cancellationToken)
|
|
{
|
|
await task.ConfigureAwait(false);
|
|
await WriteDigitsAsync(uvalue, negative, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
internal Task WriteIntegerValueAsync(long value, CancellationToken cancellationToken)
|
|
{
|
|
bool negative = value < 0;
|
|
if (negative)
|
|
{
|
|
value = -value;
|
|
}
|
|
|
|
return WriteIntegerValueAsync((ulong)value, negative, cancellationToken);
|
|
}
|
|
|
|
internal Task WriteIntegerValueAsync(ulong uvalue, CancellationToken cancellationToken)
|
|
{
|
|
return WriteIntegerValueAsync(uvalue, false, cancellationToken);
|
|
}
|
|
|
|
private Task WriteEscapedStringAsync(string value, bool quote, CancellationToken cancellationToken)
|
|
{
|
|
return JavaScriptUtils.WriteEscapedJavaScriptStringAsync(_writer, value, _quoteChar, quote, _charEscapeFlags, StringEscapeHandling, this, _writeBuffer, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the property name of a name/value pair of a JSON object.
|
|
/// </summary>
|
|
/// <param name="name">The name of the property.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WritePropertyNameAsync(string name, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWritePropertyNameAsync(name, cancellationToken) : base.WritePropertyNameAsync(name, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWritePropertyNameAsync(string name, CancellationToken cancellationToken)
|
|
{
|
|
Task task = InternalWritePropertyNameAsync(name, cancellationToken);
|
|
if (!task.IsCompletedSucessfully())
|
|
{
|
|
return DoWritePropertyNameAsync(task, name, cancellationToken);
|
|
}
|
|
|
|
task = WriteEscapedStringAsync(name, _quoteName, cancellationToken);
|
|
if (task.IsCompletedSucessfully())
|
|
{
|
|
return _writer.WriteAsync(':', cancellationToken);
|
|
}
|
|
|
|
return JavaScriptUtils.WriteCharAsync(task, _writer, ':', cancellationToken);
|
|
}
|
|
|
|
private async Task DoWritePropertyNameAsync(Task task, string name, CancellationToken cancellationToken)
|
|
{
|
|
await task.ConfigureAwait(false);
|
|
|
|
await WriteEscapedStringAsync(name, _quoteName, cancellationToken).ConfigureAwait(false);
|
|
|
|
await _writer.WriteAsync(':').ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the property name of a name/value pair of a JSON object.
|
|
/// </summary>
|
|
/// <param name="name">The name of the property.</param>
|
|
/// <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WritePropertyNameAsync(string name, bool escape, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWritePropertyNameAsync(name, escape, cancellationToken) : base.WritePropertyNameAsync(name, escape, cancellationToken);
|
|
}
|
|
|
|
internal async Task DoWritePropertyNameAsync(string name, bool escape, CancellationToken cancellationToken)
|
|
{
|
|
await InternalWritePropertyNameAsync(name, cancellationToken).ConfigureAwait(false);
|
|
|
|
if (escape)
|
|
{
|
|
await WriteEscapedStringAsync(name, _quoteName, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
else
|
|
{
|
|
if (_quoteName)
|
|
{
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
}
|
|
|
|
await _writer.WriteAsync(name, cancellationToken).ConfigureAwait(false);
|
|
|
|
if (_quoteName)
|
|
{
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
await _writer.WriteAsync(':').ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the beginning of a JSON array.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteStartArrayAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteStartArrayAsync(cancellationToken) : base.WriteStartArrayAsync(cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteStartArrayAsync(CancellationToken cancellationToken)
|
|
{
|
|
Task task = InternalWriteStartAsync(JsonToken.StartArray, JsonContainerType.Array, cancellationToken);
|
|
if (task.IsCompletedSucessfully())
|
|
{
|
|
return _writer.WriteAsync('[', cancellationToken);
|
|
}
|
|
|
|
return DoWriteStartArrayAsync(task, cancellationToken);
|
|
}
|
|
|
|
internal async Task DoWriteStartArrayAsync(Task task, CancellationToken cancellationToken)
|
|
{
|
|
await task.ConfigureAwait(false);
|
|
|
|
await _writer.WriteAsync('[', cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the beginning of a JSON object.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteStartObjectAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteStartObjectAsync(cancellationToken) : base.WriteStartObjectAsync(cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteStartObjectAsync(CancellationToken cancellationToken)
|
|
{
|
|
Task task = InternalWriteStartAsync(JsonToken.StartObject, JsonContainerType.Object, cancellationToken);
|
|
if (task.IsCompletedSucessfully())
|
|
{
|
|
return _writer.WriteAsync('{', cancellationToken);
|
|
}
|
|
|
|
return DoWriteStartObjectAsync(task, cancellationToken);
|
|
}
|
|
|
|
internal async Task DoWriteStartObjectAsync(Task task, CancellationToken cancellationToken)
|
|
{
|
|
await task.ConfigureAwait(false);
|
|
|
|
await _writer.WriteAsync('{', cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the start of a constructor with the given name.
|
|
/// </summary>
|
|
/// <param name="name">The name of the constructor.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteStartConstructorAsync(string name, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteStartConstructorAsync(name, cancellationToken) : base.WriteStartConstructorAsync(name, cancellationToken);
|
|
}
|
|
|
|
internal async Task DoWriteStartConstructorAsync(string name, CancellationToken cancellationToken)
|
|
{
|
|
await InternalWriteStartAsync(JsonToken.StartConstructor, JsonContainerType.Constructor, cancellationToken).ConfigureAwait(false);
|
|
|
|
await _writer.WriteAsync("new ", cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync(name, cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync('(').ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes an undefined value.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteUndefinedAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteUndefinedAsync(cancellationToken) : base.WriteUndefinedAsync(cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteUndefinedAsync(CancellationToken cancellationToken)
|
|
{
|
|
Task task = InternalWriteValueAsync(JsonToken.Undefined, cancellationToken);
|
|
if (task.IsCompletedSucessfully())
|
|
{
|
|
return _writer.WriteAsync(JsonConvert.Undefined, cancellationToken);
|
|
}
|
|
|
|
return DoWriteUndefinedAsync(task, cancellationToken);
|
|
}
|
|
|
|
private async Task DoWriteUndefinedAsync(Task task, CancellationToken cancellationToken)
|
|
{
|
|
await task.ConfigureAwait(false);
|
|
await _writer.WriteAsync(JsonConvert.Undefined, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the given white space.
|
|
/// </summary>
|
|
/// <param name="ws">The string of white space characters.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteWhitespaceAsync(string ws, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteWhitespaceAsync(ws, cancellationToken) : base.WriteWhitespaceAsync(ws, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteWhitespaceAsync(string ws, CancellationToken cancellationToken)
|
|
{
|
|
InternalWriteWhitespace(ws);
|
|
return _writer.WriteAsync(ws, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="bool"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="bool"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(bool value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(bool value, CancellationToken cancellationToken)
|
|
{
|
|
return WriteValueInternalAsync(JsonToken.Boolean, JsonConvert.ToString(value), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="bool"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="bool"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(bool? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(bool? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : DoWriteValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="byte"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="byte"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(byte value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteIntegerValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="byte"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="byte"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(byte? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(byte? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : WriteIntegerValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="byte"/>[] value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="byte"/>[] value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(byte[] value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? (value == null ? WriteNullAsync(cancellationToken) : WriteValueNonNullAsync(value, cancellationToken)) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal async Task WriteValueNonNullAsync(byte[] value, CancellationToken cancellationToken)
|
|
{
|
|
await InternalWriteValueAsync(JsonToken.Bytes, cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
await Base64Encoder.EncodeAsync(value, 0, value.Length, cancellationToken).ConfigureAwait(false);
|
|
await Base64Encoder.FlushAsync(cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="char"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="char"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(char value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(char value, CancellationToken cancellationToken)
|
|
{
|
|
return WriteValueInternalAsync(JsonToken.String, JsonConvert.ToString(value), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="char"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="char"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(char? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(char? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : DoWriteValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="DateTime"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="DateTime"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(DateTime value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal async Task DoWriteValueAsync(DateTime value, CancellationToken cancellationToken)
|
|
{
|
|
await InternalWriteValueAsync(JsonToken.Date, cancellationToken).ConfigureAwait(false);
|
|
value = DateTimeUtils.EnsureDateTime(value, DateTimeZoneHandling);
|
|
|
|
if (string.IsNullOrEmpty(DateFormatString))
|
|
{
|
|
int length = WriteValueToBuffer(value);
|
|
|
|
await _writer.WriteAsync(_writeBuffer, 0, length, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
else
|
|
{
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
await _writer.WriteAsync(value.ToString(DateFormatString, Culture), cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="DateTime"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="DateTime"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(DateTime? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(DateTime? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : DoWriteValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="DateTimeOffset"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="DateTimeOffset"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(DateTimeOffset value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal async Task DoWriteValueAsync(DateTimeOffset value, CancellationToken cancellationToken)
|
|
{
|
|
await InternalWriteValueAsync(JsonToken.Date, cancellationToken).ConfigureAwait(false);
|
|
|
|
if (string.IsNullOrEmpty(DateFormatString))
|
|
{
|
|
int length = WriteValueToBuffer(value);
|
|
|
|
await _writer.WriteAsync(_writeBuffer, 0, length, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
else
|
|
{
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
await _writer.WriteAsync(value.ToString(DateFormatString, Culture), cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="DateTimeOffset"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="DateTimeOffset"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(DateTimeOffset? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(DateTimeOffset? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : DoWriteValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="decimal"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="decimal"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(decimal value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(decimal value, CancellationToken cancellationToken)
|
|
{
|
|
return WriteValueInternalAsync(JsonToken.Float, JsonConvert.ToString(value), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="decimal"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="decimal"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(decimal? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(decimal? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : DoWriteValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="double"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="double"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(double value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteValueAsync(value, false, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task WriteValueAsync(double value, bool nullable, CancellationToken cancellationToken)
|
|
{
|
|
return WriteValueInternalAsync(JsonToken.Float, JsonConvert.ToString(value, FloatFormatHandling, QuoteChar, nullable), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="double"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="double"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(double? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? (value.HasValue ? WriteValueAsync(value.GetValueOrDefault(), true, cancellationToken) : WriteNullAsync(cancellationToken)) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="float"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="float"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(float value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteValueAsync(value, false, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task WriteValueAsync(float value, bool nullable, CancellationToken cancellationToken)
|
|
{
|
|
return WriteValueInternalAsync(JsonToken.Float, JsonConvert.ToString(value, FloatFormatHandling, QuoteChar, nullable), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="float"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="float"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(float? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? (value.HasValue ? WriteValueAsync(value.GetValueOrDefault(), true, cancellationToken) : WriteNullAsync(cancellationToken)) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Guid"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Guid"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(Guid value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal async Task DoWriteValueAsync(Guid value, CancellationToken cancellationToken)
|
|
{
|
|
await InternalWriteValueAsync(JsonToken.String, cancellationToken).ConfigureAwait(false);
|
|
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
#if HAVE_CHAR_TO_STRING_WITH_CULTURE
|
|
await _writer.WriteAsync(value.ToString("D", CultureInfo.InvariantCulture), cancellationToken).ConfigureAwait(false);
|
|
#else
|
|
await _writer.WriteAsync(value.ToString("D"), cancellationToken).ConfigureAwait(false);
|
|
#endif
|
|
await _writer.WriteAsync(_quoteChar).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="Guid"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="Guid"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(Guid? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(Guid? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : DoWriteValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="int"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="int"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(int value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteIntegerValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="int"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="int"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(int? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(int? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : WriteIntegerValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="long"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="long"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(long value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteIntegerValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="long"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="long"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(long? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(long? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : WriteIntegerValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
#if HAVE_BIG_INTEGER
|
|
internal Task WriteValueAsync(BigInteger value, CancellationToken cancellationToken)
|
|
{
|
|
return WriteValueInternalAsync(JsonToken.Integer, value.ToString(CultureInfo.InvariantCulture), cancellationToken);
|
|
}
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="object"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="object"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(object value, CancellationToken cancellationToken = default)
|
|
{
|
|
if (_safeAsync)
|
|
{
|
|
if (value == null)
|
|
{
|
|
return WriteNullAsync(cancellationToken);
|
|
}
|
|
#if HAVE_BIG_INTEGER
|
|
if (value is BigInteger i)
|
|
{
|
|
return WriteValueAsync(i, cancellationToken);
|
|
}
|
|
#endif
|
|
|
|
return WriteValueAsync(this, ConvertUtils.GetTypeCode(value.GetType()), value, cancellationToken);
|
|
}
|
|
|
|
return base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="sbyte"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="sbyte"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
[CLSCompliant(false)]
|
|
public override Task WriteValueAsync(sbyte value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteIntegerValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="sbyte"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="sbyte"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
[CLSCompliant(false)]
|
|
public override Task WriteValueAsync(sbyte? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(sbyte? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : WriteIntegerValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="short"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="short"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(short value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteIntegerValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="short"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="short"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(short? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(short? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : WriteIntegerValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="string"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="string"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(string value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(string value, CancellationToken cancellationToken)
|
|
{
|
|
Task task = InternalWriteValueAsync(JsonToken.String, cancellationToken);
|
|
if (task.IsCompletedSucessfully())
|
|
{
|
|
return value == null ? _writer.WriteAsync(JsonConvert.Null, cancellationToken) : WriteEscapedStringAsync(value, true, cancellationToken);
|
|
}
|
|
|
|
return DoWriteValueAsync(task, value, cancellationToken);
|
|
}
|
|
|
|
private async Task DoWriteValueAsync(Task task, string value, CancellationToken cancellationToken)
|
|
{
|
|
await task.ConfigureAwait(false);
|
|
await (value == null ? _writer.WriteAsync(JsonConvert.Null, cancellationToken) : WriteEscapedStringAsync(value, true, cancellationToken)).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="TimeSpan"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="TimeSpan"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(TimeSpan value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal async Task DoWriteValueAsync(TimeSpan value, CancellationToken cancellationToken)
|
|
{
|
|
await InternalWriteValueAsync(JsonToken.String, cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync(_quoteChar, cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync(value.ToString(null, CultureInfo.InvariantCulture), cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync(_quoteChar, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="TimeSpan"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="TimeSpan"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(TimeSpan? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(TimeSpan? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : DoWriteValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="uint"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="uint"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
[CLSCompliant(false)]
|
|
public override Task WriteValueAsync(uint value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteIntegerValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="uint"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="uint"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
[CLSCompliant(false)]
|
|
public override Task WriteValueAsync(uint? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(uint? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : WriteIntegerValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="ulong"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="ulong"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
[CLSCompliant(false)]
|
|
public override Task WriteValueAsync(ulong value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteIntegerValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="ulong"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="ulong"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
[CLSCompliant(false)]
|
|
public override Task WriteValueAsync(ulong? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(ulong? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : WriteIntegerValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Uri"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Uri"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteValueAsync(Uri value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? (value == null ? WriteNullAsync(cancellationToken) : WriteValueNotNullAsync(value, cancellationToken)) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task WriteValueNotNullAsync(Uri value, CancellationToken cancellationToken)
|
|
{
|
|
Task task = InternalWriteValueAsync(JsonToken.String, cancellationToken);
|
|
if (task.IsCompletedSucessfully())
|
|
{
|
|
return WriteEscapedStringAsync(value.OriginalString, true, cancellationToken);
|
|
}
|
|
|
|
return WriteValueNotNullAsync(task, value, cancellationToken);
|
|
}
|
|
|
|
internal async Task WriteValueNotNullAsync(Task task, Uri value, CancellationToken cancellationToken)
|
|
{
|
|
await task.ConfigureAwait(false);
|
|
await WriteEscapedStringAsync(value.OriginalString, true, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="ushort"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="ushort"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
[CLSCompliant(false)]
|
|
public override Task WriteValueAsync(ushort value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? WriteIntegerValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a <see cref="Nullable{T}"/> of <see cref="ushort"/> value.
|
|
/// </summary>
|
|
/// <param name="value">The <see cref="Nullable{T}"/> of <see cref="ushort"/> value to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
[CLSCompliant(false)]
|
|
public override Task WriteValueAsync(ushort? value, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteValueAsync(value, cancellationToken) : base.WriteValueAsync(value, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteValueAsync(ushort? value, CancellationToken cancellationToken)
|
|
{
|
|
return value == null ? DoWriteNullAsync(cancellationToken) : WriteIntegerValueAsync(value.GetValueOrDefault(), cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes a comment <c>/*...*/</c> containing the specified text.
|
|
/// </summary>
|
|
/// <param name="text">Text to place inside the comment.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteCommentAsync(string text, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteCommentAsync(text, cancellationToken) : base.WriteCommentAsync(text, cancellationToken);
|
|
}
|
|
|
|
internal async Task DoWriteCommentAsync(string text, CancellationToken cancellationToken)
|
|
{
|
|
await InternalWriteCommentAsync(cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync("/*", cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync(text, cancellationToken).ConfigureAwait(false);
|
|
await _writer.WriteAsync("*/", cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the end of an array.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteEndArrayAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? InternalWriteEndAsync(JsonContainerType.Array, cancellationToken) : base.WriteEndArrayAsync(cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the end of a constructor.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteEndConstructorAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? InternalWriteEndAsync(JsonContainerType.Constructor, cancellationToken) : base.WriteEndConstructorAsync(cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes the end of a JSON object.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteEndObjectAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? InternalWriteEndAsync(JsonContainerType.Object, cancellationToken) : base.WriteEndObjectAsync(cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously writes raw JSON where a value is expected and updates the writer's state.
|
|
/// </summary>
|
|
/// <param name="json">The raw JSON to write.</param>
|
|
/// <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="CancellationToken.None"/>.</param>
|
|
/// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
|
|
/// <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
|
/// execute synchronously, returning an already-completed task.</remarks>
|
|
public override Task WriteRawValueAsync(string json, CancellationToken cancellationToken = default)
|
|
{
|
|
return _safeAsync ? DoWriteRawValueAsync(json, cancellationToken) : base.WriteRawValueAsync(json, cancellationToken);
|
|
}
|
|
|
|
internal Task DoWriteRawValueAsync(string json, CancellationToken cancellationToken)
|
|
{
|
|
UpdateScopeWithFinishedValue();
|
|
Task task = AutoCompleteAsync(JsonToken.Undefined, cancellationToken);
|
|
if (task.IsCompletedSucessfully())
|
|
{
|
|
return WriteRawAsync(json, cancellationToken);
|
|
}
|
|
|
|
return DoWriteRawValueAsync(task, json, cancellationToken);
|
|
}
|
|
|
|
private async Task DoWriteRawValueAsync(Task task, string json, CancellationToken cancellationToken)
|
|
{
|
|
await task.ConfigureAwait(false);
|
|
await WriteRawAsync(json, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
internal char[] EnsureWriteBuffer(int length, int copyTo)
|
|
{
|
|
if (length < 35)
|
|
{
|
|
length = 35;
|
|
}
|
|
|
|
char[] buffer = _writeBuffer;
|
|
if (buffer == null)
|
|
{
|
|
return _writeBuffer = BufferUtils.RentBuffer(_arrayPool, length);
|
|
}
|
|
|
|
if (buffer.Length >= length)
|
|
{
|
|
return buffer;
|
|
}
|
|
|
|
char[] newBuffer = BufferUtils.RentBuffer(_arrayPool, length);
|
|
if (copyTo != 0)
|
|
{
|
|
Array.Copy(buffer, newBuffer, copyTo);
|
|
}
|
|
|
|
BufferUtils.ReturnBuffer(_arrayPool, buffer);
|
|
_writeBuffer = newBuffer;
|
|
return newBuffer;
|
|
}
|
|
}
|
|
}
|
|
#endif |