750d73980da3d045b28310954ce7dfc504916617
[mono.git] / mcs / class / RabbitMQ.Client / src / client / content / BytesWireFormatting.cs
1 // This source code is dual-licensed under the Apache License, version
2 // 2.0, and the Mozilla Public License, version 1.1.
3 //
4 // The APL v2.0:
5 //
6 //---------------------------------------------------------------------------
7 //   Copyright (C) 2007, 2008 LShift Ltd., Cohesive Financial
8 //   Technologies LLC., and Rabbit Technologies Ltd.
9 //
10 //   Licensed under the Apache License, Version 2.0 (the "License");
11 //   you may not use this file except in compliance with the License.
12 //   You may obtain a copy of the License at
13 //
14 //       http://www.apache.org/licenses/LICENSE-2.0
15 //
16 //   Unless required by applicable law or agreed to in writing, software
17 //   distributed under the License is distributed on an "AS IS" BASIS,
18 //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 //   See the License for the specific language governing permissions and
20 //   limitations under the License.
21 //---------------------------------------------------------------------------
22 //
23 // The MPL v1.1:
24 //
25 //---------------------------------------------------------------------------
26 //   The contents of this file are subject to the Mozilla Public License
27 //   Version 1.1 (the "License"); you may not use this file except in
28 //   compliance with the License. You may obtain a copy of the License at
29 //   http://www.rabbitmq.com/mpl.html
30 //
31 //   Software distributed under the License is distributed on an "AS IS"
32 //   basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
33 //   License for the specific language governing rights and limitations
34 //   under the License.
35 //
36 //   The Original Code is The RabbitMQ .NET Client.
37 //
38 //   The Initial Developers of the Original Code are LShift Ltd.,
39 //   Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd.
40 //
41 //   Portions created by LShift Ltd., Cohesive Financial Technologies
42 //   LLC., and Rabbit Technologies Ltd. are Copyright (C) 2007, 2008
43 //   LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit
44 //   Technologies Ltd.;
45 //
46 //   All Rights Reserved.
47 //
48 //   Contributor(s): ______________________________________.
49 //
50 //---------------------------------------------------------------------------
51 using System;
52 using System.Text;
53 using System.IO;
54
55 using RabbitMQ.Client;
56 using RabbitMQ.Util;
57
58 namespace RabbitMQ.Client.Content {
59     ///<summary>Internal support class for use in reading and writing
60     ///information binary-compatible with QPid's "BytesMessage" wire
61     ///encoding.</summary>
62     public class BytesWireFormatting {
63         public static int ReadInt32(NetworkBinaryReader reader) {
64             return reader.ReadInt32();
65         }
66
67         public static short ReadInt16(NetworkBinaryReader reader) {
68             return reader.ReadInt16();
69         }
70
71         public static byte ReadByte(NetworkBinaryReader reader) {
72             return reader.ReadByte();
73         }
74
75         public static char ReadChar(NetworkBinaryReader reader) {
76             return (char) reader.ReadUInt16();
77         }
78
79         public static long ReadInt64(NetworkBinaryReader reader) {
80             return reader.ReadInt64();
81         }
82
83         public static float ReadSingle(NetworkBinaryReader reader) {
84             return reader.ReadSingle();
85         }
86
87         public static double ReadDouble(NetworkBinaryReader reader) {
88             return reader.ReadDouble();
89         }
90
91         public static int Read(NetworkBinaryReader reader, byte[] target, int offset, int count) {
92             return reader.Read(target, offset, count);
93         }
94
95         public static byte[] ReadBytes(NetworkBinaryReader reader, int count) {
96             return reader.ReadBytes(count);
97         }
98
99         public static string ReadString(NetworkBinaryReader reader) {
100             ushort length = reader.ReadUInt16();
101             byte[] bytes = reader.ReadBytes(length);
102             return Encoding.UTF8.GetString(bytes);
103         }
104
105
106         public static void WriteInt32(NetworkBinaryWriter writer, int value) {
107             writer.Write(value);
108         }
109
110         public static void WriteInt16(NetworkBinaryWriter writer, short value) {
111             writer.Write(value);
112         }
113
114         public static void WriteByte(NetworkBinaryWriter writer, byte value) {
115             writer.Write(value);
116         }
117
118         public static void WriteChar(NetworkBinaryWriter writer, char value) {
119             writer.Write((ushort) value);
120         }
121
122         public static void WriteInt64(NetworkBinaryWriter writer, long value) {
123             writer.Write(value);
124         }
125
126         public static void WriteSingle(NetworkBinaryWriter writer, float value) {
127             writer.Write(value);
128         }
129
130         public static void WriteDouble(NetworkBinaryWriter writer, double value) {
131             writer.Write(value);
132         }
133
134         public static void Write(NetworkBinaryWriter writer, byte[] source, int offset, int count)
135         {
136             writer.Write(source, offset, count);
137         }
138
139         public static void WriteBytes(NetworkBinaryWriter writer, byte[] source) {
140             Write(writer, source, 0, source.Length);
141         }
142
143         public static void WriteString(NetworkBinaryWriter writer, string value) {
144             byte[] bytes = Encoding.UTF8.GetBytes(value);
145             writer.Write((ushort) bytes.Length);
146             writer.Write(bytes);
147         }
148     }
149 }