代码拉取完成,页面将自动刷新
同步操作将从 ewin66/QueueSystem 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
using System;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
namespace QueueMessage
{
public class Process
{
public Process()
{
}
public event Action<IntPtr, Message> ReceiveMessage;
void OnReceiveMessage(IntPtr connId, Message msg)
{
if (this.ReceiveMessage != null)
this.ReceiveMessage(connId, msg);
}
int ArrayCopy(Array sourceArray, int sourceIndex, Array destinationArray, int destinationIndex)
{
int rLength = destinationArray.Length - destinationIndex, aLength = sourceArray.Length - sourceIndex;
int length = rLength < aLength ? rLength : aLength;
Array.Copy(sourceArray, sourceIndex, destinationArray, destinationIndex, length);
return length;
}
public void RecvData(IntPtr connId, ExtraData msg, byte[] bytes)
{
int position = 0, length = 0;
while (position < bytes.Length)
{
if (msg.Data == null)
{
length = ArrayCopy(bytes, position, msg.Head, msg.Position);
msg.Position += length;
if (msg.Position == msg.Head.Length)
{
msg.Data = new byte[GetHead(msg.Head)];
msg.Position = 0;
}
}
else
{
length = ArrayCopy(bytes, position, msg.Data, msg.Position);
msg.Position += length;
if (msg.Position == msg.Data.Length)
{
this.OnReceiveMessage(connId, FormatterByteObject(msg.Data) as Message);
msg.Data = null;
msg.Position = 0;
}
}
position += length;
}
}
int GetHead(byte[] bytes)
{
return BitConverter.ToInt32(bytes, 0);
}
byte[] SetHead(byte[] bytes)
{
byte[] bHead = BitConverter.GetBytes(bytes.Length);
byte[] bRst = new byte[bytes.Length + 4];
Array.Copy(bHead, 0, bRst, 0, bHead.Length);
Array.Copy(bytes, 0, bRst, bHead.Length, bytes.Length);
return bRst;
}
public byte[] FormatterMessageBytes(Message message)
{
return SetHead(FormatterObjectBytes(message));
}
byte[] FormatterObjectBytes(object obj)
{
if (obj == null)
throw new ArgumentNullException("obj is null");
byte[] buff;
using (var ms = new MemoryStream())
{
IFormatter iFormatter = new BinaryFormatter();
iFormatter.Serialize(ms, obj);
buff = ms.GetBuffer();
}
return buff;
}
object FormatterByteObject(byte[] buff)
{
if (buff == null)
throw new ArgumentNullException("buff is null");
object obj;
using (var ms = new MemoryStream(buff))
{
IFormatter iFormatter = new BinaryFormatter();
obj = iFormatter.Deserialize(ms);
}
return obj;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。