microsoft-visualbasic-runtime/Net/Protocol/Reflection/Protocol.vb

128 lines
4.9 KiB
VB.net
Raw Normal View History

2019-05-22 19:02:42 +08:00
#Region "Microsoft.VisualBasic::bcfdaad7954d579a41f1d3687a4428d0, Microsoft.VisualBasic.Core\Net\Protocol\Reflection\Protocol.vb"
2018-08-02 20:14:48 +08:00
' 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 Protocol
'
' Properties: DeclaringType, EntryPoint
'
' Constructor: (+2 Overloads) Sub New
' Function: GetEntryPoint, GetProtocolCategory, ToString
'
'
' /********************************************************************************/
#End Region
Namespace Net.Protocols.Reflection
''' <summary>
2018-10-05 03:49:52 +08:00
''' This attribute indicates the entry point of the protocol processor definition location
''' and the details of the protocol processor.
2018-08-02 20:14:48 +08:00
''' </summary>
<AttributeUsage(AttributeTargets.Class Or AttributeTargets.Method, AllowMultiple:=True, Inherited:=True)>
Public Class Protocol : Inherits Attribute
''' <summary>
''' Entry point for the data protocols, this property usually correspondent to the request stream's
''' property: <see cref="RequestStream.Protocol"/> and <see cref="RequestStream.ProtocolCategory"/>
''' </summary>
''' <returns></returns>
Public ReadOnly Property EntryPoint As Long
''' <summary>
''' 这个属性对于方法而言为空,但是对于类型入口点而言则不为空
''' </summary>
''' <returns></returns>
Public ReadOnly Property DeclaringType As Type
''' <summary>
''' Generates the protocol method entrypoint.(应用于服务器上面的协议处理方法)
''' </summary>
2018-10-05 03:49:52 +08:00
''' <param name="entryPoint"></param>
Sub New(entryPoint As Long)
Me.EntryPoint = entryPoint
2018-08-02 20:14:48 +08:00
End Sub
''' <summary>
2018-10-05 03:49:52 +08:00
''' Generates the <see cref="ProtocolHandler"/> on the server side,
''' this is using for initialize a protocol API entry point.
''' (客户端上面的类型)
2018-08-02 20:14:48 +08:00
''' </summary>
2018-10-05 03:49:52 +08:00
''' <param name="type">客户端上面的类型</param>
Sub New(type As Type)
EntryPoint = SecurityString.MD5Hash.ToLong(type.GUID.ToByteArray)
DeclaringType = type
2018-08-02 20:14:48 +08:00
End Sub
Public Overrides Function ToString() As String
If DeclaringType Is Nothing Then
Return EntryPoint
Else
Return $"*{EntryPoint} ==> {DeclaringType.FullName}"
End If
End Function
''' <summary>
''' This method is usually using for generates a <see cref="protocolhandler"/> object.
''' Correspondent to the protocol class property <see cref="RequestStream.ProtocolCategory"/>
''' </summary>
''' <param name="Type"></param>
''' <returns></returns>
Public Shared Function GetProtocolCategory(Type As Type) As Protocol
Dim attrs As Object() = Type.GetCustomAttributes(attributeType:=GetType(Protocol), inherit:=True)
If attrs.IsNullOrEmpty Then
Return Nothing
End If
Dim attr As Protocol = DirectCast(attrs(Scan0), Protocol)
Return attr
End Function
''' <summary>
2018-10-05 03:49:52 +08:00
''' This method is usually using for generates a details protocol processor, example
''' is calling the method interface: <see cref="Net.Abstract.DataRequestHandler"/>
2018-08-02 20:14:48 +08:00
''' Correspondent to the protocol entry property <see cref="RequestStream.Protocol"/>
''' </summary>
''' <param name="Method"></param>
''' <returns></returns>
Public Shared Function GetEntryPoint(Method As System.Reflection.MethodInfo) As Protocol
Dim attrs As Object() = Method.GetCustomAttributes(attributeType:=GetType(Protocol), inherit:=True)
If attrs.IsNullOrEmpty Then
Return Nothing
End If
Dim attr As Protocol = DirectCast(attrs(Scan0), Protocol)
Return attr
End Function
End Class
End Namespace