blob: 3fa3b7e1ae20264a603ad62395b57f501b316c1f (
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
|
/*
* Copyright (C) 2007-2012 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
{
public class GatsString : GatsObject
{
public byte[] Value { get; set; }
public GatsString()
{
}
public GatsString( byte[] val )
{
Value = val;
}
public GatsString( string val )
{
Value = System.Text.Encoding.UTF8.GetBytes( val );
}
public override string ToString()
{
return System.Text.Encoding.UTF8.GetString( Value );
}
public override void Read( Stream s, char cType )
{
int Size = (int)GatsInteger.ReadPackedInt( s );
Value = new byte[Size];
int SoFar = 0;
do
{
SoFar += s.Read( Value, SoFar, Size-SoFar );
} while( SoFar < Size );
}
public override void Write( Stream s )
{
s.WriteByte( (byte)'s' );
if( Value == null )
{
GatsInteger.WritePackedInt( s, 0 );
}
else
{
GatsInteger.WritePackedInt( s, Value.Length );
s.Write( Value, 0, Value.Length );
}
}
};
}
|