forked from Azure/DotNetty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNumberEncoder.cs
28 lines (25 loc) · 1.05 KB
/
NumberEncoder.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Factorial
{
using System.Collections.Generic;
using System.Numerics;
using DotNetty.Buffers;
using DotNetty.Codecs;
using DotNetty.Transport.Channels;
public class NumberEncoder : MessageToMessageEncoder<System.Numerics.BigInteger>
{
protected override void Encode(IChannelHandlerContext context, System.Numerics.BigInteger message, List<object> output)
{
IByteBuffer buffer = context.Allocator.Buffer();
//https://msdn.microsoft.com/en-us/library/system.numerics.biginteger.tobytearray(v=vs.110).aspx
//BigInteger.ToByteArray() return a Little-Endian bytes
//IByteBuffer is Big-Endian by default
byte[] data = message.ToByteArray();
buffer.WriteByte((byte)'F');
buffer.WriteInt(data.Length);
buffer.WriteBytes(data);
output.Add(buffer);
}
}
}