-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathParserXDR.vb
95 lines (75 loc) · 2.71 KB
/
ParserXDR.vb
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#Region "Microsoft.VisualBasic::cdad396281c9283c4b0e30ee0374243c, studio\RData\ParserXDR.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:
' Code Statistics:
' Total Lines: 41
' Code Lines: 25 (60.98%)
' Comment Lines: 8 (19.51%)
' - Xml Docs: 100.00%
'
' Blank Lines: 8 (19.51%)
' File Size: 1.20 KB
' Class ParserXDR
'
' Constructor: (+1 Overloads) Sub New
' Function: parse_double, parse_int, parse_string
'
' /********************************************************************************/
#End Region
Imports Microsoft.VisualBasic.Data.IO
Imports Microsoft.VisualBasic.Data.IO.Xdr
''' <summary>
''' Parser used when the integers and doubles are in XDR format.
''' </summary>
Public Class ParserXDR : Inherits Reader
ReadOnly data As BinaryDataReader
ReadOnly XDRParser As Unpacker
<DebuggerStepThrough>
Sub New(data As BinaryDataReader,
Optional position As Integer = 0,
Optional expand_altrep As Boolean = True,
Optional debug As Boolean = False)
Call MyBase.New(expand_altrep, debug)
Me.data = data
Me.data.Position = position
Me.XDRParser = New Unpacker(data)
End Sub
Public Overrides Function parse_int() As Integer
Return XDRParser.UnpackInteger()
End Function
Public Overrides Function parse_double() As Double
Return XDRParser.UnpackDouble()
End Function
''' <summary>
''' Read string raw bytes
''' </summary>
''' <param name="length"></param>
''' <returns></returns>
Public Overrides Function parse_string(length As Integer) As Byte()
Return data.ReadBytes(length)
End Function
End Class