blob: 675f01ee2ecc1beff0c7e4db022b4606a227727e [file]
#region License
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#endregion
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Gremlin.Net.Driver.Messages;
namespace Gremlin.Net.Structure.IO.GraphBinary4
{
/// <summary>
/// Serializes a <see cref="RequestMessage"/> in the GraphBinary 4.0 wire format.
/// </summary>
public class RequestMessageSerializer
{
/// <summary>
/// Writes a request message to a stream in the 4.0 format:
/// version byte (0x84) + fields map value + gremlin string value.
/// </summary>
/// <param name="requestMessage">The message to serialize.</param>
/// <param name="stream">The stream to write to.</param>
/// <param name="writer">A <see cref="GraphBinaryWriter"/> that can be used to write nested values.</param>
/// <param name="cancellationToken">The token to cancel the operation. The default value is None.</param>
/// <returns>A task that represents the asynchronous write operation.</returns>
public async Task WriteValueAsync(RequestMessage requestMessage, MemoryStream stream,
GraphBinaryWriter writer, CancellationToken cancellationToken = default)
{
// 1. Version byte
await stream.WriteByteAsync(GraphBinaryWriter.VersionByte, cancellationToken).ConfigureAwait(false);
// 2. Fields as Map {value} (length + key-value pairs, no type code or value flag)
await writer.WriteNonNullableValueAsync(requestMessage.Fields, stream, cancellationToken)
.ConfigureAwait(false);
// 3. Gremlin as String {value} (length + UTF-8 bytes, no type code or value flag)
await writer.WriteNonNullableValueAsync(requestMessage.Gremlin, stream, cancellationToken)
.ConfigureAwait(false);
}
}
}