966146562696f002d1831cd9fdfc5a1c0b1dd09f
[mono.git] / mcs / class / RabbitMQ.Client / src / client / impl / SocketFrameHandler_0_9.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.IO;
53 using System.Net.Sockets;
54 using System.Text;
55
56 using RabbitMQ.Util;
57
58 namespace RabbitMQ.Client.Impl
59 {
60     public class SocketFrameHandler_0_9 : IFrameHandler
61     {
62         public const int WSAEWOULDBLOCK = 10035; 
63         // ^^ System.Net.Sockets.SocketError doesn't exist in .NET 1.1
64
65         public AmqpTcpEndpoint m_endpoint;
66         public TcpClient m_socket;
67         public NetworkBinaryReader m_reader;
68         public NetworkBinaryWriter m_writer;
69
70         public SocketFrameHandler_0_9(AmqpTcpEndpoint endpoint)
71         {
72             m_endpoint = endpoint;
73             m_socket = new TcpClient();
74             m_socket.Connect(endpoint.HostName, endpoint.Port);
75
76             Stream netstream = m_socket.GetStream();
77             m_reader = new NetworkBinaryReader(netstream);
78             m_writer = new NetworkBinaryWriter(netstream);
79         }
80
81         public AmqpTcpEndpoint Endpoint
82         {
83             get
84             {
85                 return m_endpoint;
86             }
87         }
88
89         public int Timeout
90         {
91             get
92             {
93                 return m_socket.ReceiveTimeout;
94             }
95             set
96             {
97                 m_socket.ReceiveTimeout = value;
98             }
99         }
100
101         public void SendHeader()
102         {
103             lock (m_writer)
104             {
105                 m_writer.Write(Encoding.ASCII.GetBytes("AMQP"));
106                 m_writer.Write((byte)1);
107                 m_writer.Write((byte)1);
108                 m_writer.Write((byte)m_endpoint.Protocol.MajorVersion);
109                 m_writer.Write((byte)m_endpoint.Protocol.MinorVersion);
110             }
111         }
112
113         public Frame ReadFrame()
114         {
115             lock (m_reader)
116             {
117                     return Frame.ReadFrom(m_reader);
118             }
119         }
120
121         public void WriteFrame(Frame frame)
122         {
123             lock (m_writer)
124             {
125                 frame.WriteTo(m_writer);
126                 //Console.WriteLine("OUTBOUND:");
127                 //DebugUtil.DumpProperties(frame, Console.Out, 2);
128             }
129         }
130
131         public void Close()
132         {
133             m_socket.Close();
134         }
135     }
136 }