blob: ccc2e286ffb830d2834058c2484bae4e7c87f5b2 (
plain)
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
96
97
98
99
100
101
102
103
104
105
|
/*
* Copyright (C) 2007-2013 Xagasoft, All rights reserved.
*
* This file is part of the libgats library and is released under the
* terms of the license contained in the file LICENSE.
*/
using System.IO;
namespace Com.Xagasoft.Gats
{
/// <summary>
/// Encapsulates a single integer value.
/// </summary>
/// <remarks>
/// The GATS integer encoding is arbitrary precision, and only consumes as
/// many bytes as it needs to represent a given number. There is no such
/// thing as an unsigned GATS integer.
///
/// Internally the GatsInteger stores it's value in a long.
///
/// In encoding, the type specifier for a GATS integer is 'i'.
/// </remarks>
public class GatsInteger : GatsObject
{
public long Value { get; set; }
public GatsInteger( long val=0 )
{
Value = val;
}
public override string ToString()
{
return Value.ToString();
}
public override void Read( Stream s, char cType )
{
Value = ReadPackedInt( s );
}
public override void Write( Stream s )
{
s.WriteByte( (int)'i' );
WritePackedInt( s, Value );
}
public static long ReadPackedInt( Stream s )
{
int b;
long rOut = 0;
bool bNeg;
b = s.ReadByte();
if( b == -1 )
throw new GatsException( GatsException.Type.PrematureEnd );
bNeg = (b&0x40) == 0x40;
rOut |= ((long)b)&0x3F;
int c = 0;
while( (b&0x80) == 0x80 )
{
b = s.ReadByte();
if( b == -1 )
throw new GatsException( GatsException.Type.PrematureEnd );
rOut |= (long)(b&0x7F) << (6+7*(c++));
}
if( bNeg )
return -rOut;
return rOut;
}
public static void WritePackedInt( Stream s, long iIn )
{
byte b;
if( iIn < 0 )
{
iIn = -iIn;
b = (byte)(iIn&0x3F);
if( iIn > b )
b |= 0x80 | 0x40;
else
b |= 0x40;
}
else
{
b = (byte)(iIn&0x3F);
if( iIn > b )
b |= 0x80;
}
s.WriteByte( b );
iIn = iIn >> 6;
while( iIn > 0 )
{
b = (byte)(iIn&0x7F);
if( iIn > b )
b |= 0x80;
s.WriteByte( b );
iIn = iIn >> 7;
}
}
};
}
|