You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.7 KiB
89 lines
2.7 KiB
3 years ago
|
using System;
|
||
|
using System.IO;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public static class MessageSerializeHelper
|
||
|
{
|
||
|
public static object DeserializeFrom(ushort opcode, Type type, MemoryStream memoryStream)
|
||
|
{
|
||
|
if (opcode < OpcodeRangeDefine.PbMaxOpcode)
|
||
|
{
|
||
|
return ProtobufHelper.FromStream(type, memoryStream);
|
||
|
}
|
||
|
|
||
|
if (opcode >= OpcodeRangeDefine.JsonMinOpcode)
|
||
|
{
|
||
|
return JsonHelper.FromJson(type, memoryStream.GetBuffer().ToStr((int)memoryStream.Position, (int)(memoryStream.Length - memoryStream.Position)));
|
||
|
}
|
||
|
#if NOT_UNITY
|
||
|
return MongoHelper.FromStream(type, memoryStream);
|
||
|
#else
|
||
|
throw new Exception($"client no message: {opcode}");
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
public static void SerializeTo(ushort opcode, object obj, MemoryStream memoryStream)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
if (opcode < OpcodeRangeDefine.PbMaxOpcode)
|
||
|
{
|
||
|
ProtobufHelper.ToStream(obj, memoryStream);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (opcode >= OpcodeRangeDefine.JsonMinOpcode)
|
||
|
{
|
||
|
string s = JsonHelper.ToJson(obj);
|
||
|
byte[] bytes = s.ToUtf8();
|
||
|
memoryStream.Write(bytes, 0, bytes.Length);
|
||
|
return;
|
||
|
}
|
||
|
#if NOT_UNITY
|
||
|
MongoHelper.ToStream(obj, memoryStream);
|
||
|
#else
|
||
|
throw new Exception($"client no message: {opcode}");
|
||
|
#endif
|
||
|
}
|
||
|
catch (Exception e)
|
||
|
{
|
||
|
throw new Exception($"SerializeTo error: {opcode}", e);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
public static MemoryStream GetStream(int count = 0)
|
||
|
{
|
||
|
MemoryStream stream;
|
||
|
if (count > 0)
|
||
|
{
|
||
|
stream = new MemoryStream(count);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
stream = new MemoryStream();
|
||
|
}
|
||
|
|
||
|
return stream;
|
||
|
}
|
||
|
|
||
|
public static (ushort, MemoryStream) MessageToStream(object message)
|
||
|
{
|
||
|
int headOffset = Packet.ActorIdLength;
|
||
|
MemoryStream stream = GetStream(headOffset + Packet.OpcodeLength);
|
||
|
|
||
|
ushort opcode = OpcodeTypeComponent.Instance.GetOpcode(message.GetType());
|
||
|
|
||
|
stream.Seek(headOffset + Packet.OpcodeLength, SeekOrigin.Begin);
|
||
|
stream.SetLength(headOffset + Packet.OpcodeLength);
|
||
|
|
||
|
stream.GetBuffer().WriteTo(headOffset, opcode);
|
||
|
|
||
|
MessageSerializeHelper.SerializeTo(opcode, message, stream);
|
||
|
|
||
|
stream.Seek(0, SeekOrigin.Begin);
|
||
|
return (opcode, stream);
|
||
|
}
|
||
|
}
|
||
|
}
|