104 lines
3.8 KiB
VB.net
104 lines
3.8 KiB
VB.net
|
|
#Region "Microsoft.VisualBasic::d86f5adaeb8004cb91dd6d9cf0e18317, Microsoft.VisualBasic.Core\ApplicationServices\Tools\Network\Protocol\Streams\ArrayBase.vb"
|
|||
|
|
|
|||
|
|
' Author:
|
|||
|
|
'
|
|||
|
|
' asuka (amethyst.asuka@gcmodeller.org)
|
|||
|
|
' xie (genetics@smrucc.org)
|
|||
|
|
' xieguigang (xie.guigang@live.com)
|
|||
|
|
'
|
|||
|
|
' Copyright (c) 2018 GPL3 Licensed
|
|||
|
|
'
|
|||
|
|
'
|
|||
|
|
' GNU GENERAL PUBLIC LICENSE (GPL3)
|
|||
|
|
'
|
|||
|
|
'
|
|||
|
|
' This program is free software: you can redistribute it and/or modify
|
|||
|
|
' it under the terms of the GNU General Public License as published by
|
|||
|
|
' the Free Software Foundation, either version 3 of the License, or
|
|||
|
|
' (at your option) any later version.
|
|||
|
|
'
|
|||
|
|
' This program is distributed in the hope that it will be useful,
|
|||
|
|
' but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
|
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
|
|
' GNU General Public License for more details.
|
|||
|
|
'
|
|||
|
|
' You should have received a copy of the GNU General Public License
|
|||
|
|
' along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
' /********************************************************************************/
|
|||
|
|
|
|||
|
|
' Summaries:
|
|||
|
|
|
|||
|
|
' Class ValueArray
|
|||
|
|
'
|
|||
|
|
' Constructor: (+1 Overloads) Sub New
|
|||
|
|
' Function: ToString
|
|||
|
|
'
|
|||
|
|
'
|
|||
|
|
' /********************************************************************************/
|
|||
|
|
|
|||
|
|
#End Region
|
|||
|
|
|
|||
|
|
Imports Microsoft.VisualBasic.Language
|
|||
|
|
Imports Microsoft.VisualBasic.Linq.Extensions
|
|||
|
|
Imports System.Xml.Serialization
|
|||
|
|
|
|||
|
|
Namespace Net.Protocols.Streams.Array
|
|||
|
|
|
|||
|
|
''' <summary>
|
|||
|
|
''' 对于<see cref="System.Int64"/>, <see cref="System.int32"/>, <see cref="System.Double"/>, <see cref="System.DateTime"/>
|
|||
|
|
''' 这些类型的数据来说,进行网络传输的时候使用json会被转换为字符串,数据量比较大,而转换为字节再进行传输,数据流量的消耗会比较小
|
|||
|
|
''' </summary>
|
|||
|
|
''' <typeparam name="T"></typeparam>
|
|||
|
|
''' <remarks>这个是定长的数组序列</remarks>
|
|||
|
|
Public MustInherit Class ValueArray(Of T) : Inherits ArrayAbstract(Of T)
|
|||
|
|
|
|||
|
|
Protected ReadOnly _bufWidth As Integer
|
|||
|
|
|
|||
|
|
Protected Sub New(serialization As Func(Of T, Byte()),
|
|||
|
|
deserialization As Func(Of Byte(), T),
|
|||
|
|
bufWidth As Integer,
|
|||
|
|
rawStream As Byte())
|
|||
|
|
|
|||
|
|
Call MyBase.New(serialization, deserialization)
|
|||
|
|
|
|||
|
|
_bufWidth = bufWidth
|
|||
|
|
|
|||
|
|
If Not rawStream.IsNullOrEmpty Then
|
|||
|
|
Dim valueList As New List(Of T)
|
|||
|
|
Dim p As int = 0
|
|||
|
|
Dim byts As Byte() = New Byte(_bufWidth - 1) {}
|
|||
|
|
|
|||
|
|
Do While p < rawStream.Length - 1
|
|||
|
|
Call System.Array.ConstrainedCopy(rawStream, p + bufWidth, byts, Scan0, bufWidth)
|
|||
|
|
Call valueList.Add(__deserialization(byts))
|
|||
|
|
Loop
|
|||
|
|
|
|||
|
|
Values = valueList.ToArray
|
|||
|
|
End If
|
|||
|
|
End Sub
|
|||
|
|
|
|||
|
|
Public NotOverridable Overrides Function Serialize() As Byte()
|
|||
|
|
Dim buffer As Byte() = New Byte(Values.Length * _bufWidth - 1) {}
|
|||
|
|
Dim p As int = 0
|
|||
|
|
|
|||
|
|
For Each value As T In Values
|
|||
|
|
Dim byts As Byte() = __serialization(value)
|
|||
|
|
Call System.Array.ConstrainedCopy(byts, Scan0, buffer, p + _bufWidth, _bufWidth)
|
|||
|
|
Next
|
|||
|
|
|
|||
|
|
Return buffer
|
|||
|
|
End Function
|
|||
|
|
|
|||
|
|
Public Overrides Function ToString() As String
|
|||
|
|
If Values.IsNullOrEmpty Then
|
|||
|
|
Return GetType(T).FullName
|
|||
|
|
Else
|
|||
|
|
Return $"{GetType(T).FullName} {"{"}{String.Join("," & vbTab, Values.Select(Function(val) Scripting.ToString(val)).ToArray)}{"}"}"
|
|||
|
|
End If
|
|||
|
|
End Function
|
|||
|
|
End Class
|
|||
|
|
End Namespace
|