123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- /*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSim Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- using System;
- using System.IO;
- using System.Net;
- using System.Net.Sockets;
- using System.Threading;
- namespace OpenSim.ApplicationPlugins.LoadBalancer
- {
- public class StateObject
- {
- public const int BufferSize = 2048;
- public byte[] buffer = new byte[BufferSize];
- public InternalPacketHeader header = null;
- public MemoryStream ms_ptr = new MemoryStream();
- public Socket workSocket = null;
- }
- public class AsynchronousSocketListener
- {
- public static ManualResetEvent allDone = new ManualResetEvent(false);
- public static string data = null;
- #region KIRYU
- #region Delegates
- public delegate void PacketRecieveHandler(InternalPacketHeader header, byte[] buff);
- #endregion
- public static PacketRecieveHandler PacketHandler = null;
- #endregion
- public AsynchronousSocketListener()
- {
- }
- public static void StartListening(int port)
- {
- IPHostEntry ipHostInfo = Dns.GetHostEntry(Dns.GetHostName());
- IPAddress ipAddress = ipHostInfo.AddressList[0];
- IPEndPoint localEndPoint = new IPEndPoint(ipAddress, port);
- Socket listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
- try
- {
- listener.Bind(localEndPoint);
- listener.Listen(100);
- while (true)
- {
- allDone.Reset();
- listener.BeginAccept(new AsyncCallback(AcceptCallback), listener);
- allDone.WaitOne();
- }
- }
- catch (Exception e)
- {
- Console.WriteLine(e.ToString());
- }
- /*
- Console.WriteLine("\nPress ENTER to continue...");
- Console.Read();
- */
- }
- public static void AcceptCallback(IAsyncResult ar)
- {
- allDone.Set();
- Socket listener = (Socket) ar.AsyncState;
- Socket handler = listener.EndAccept(ar);
- StateObject state = new StateObject();
- state.workSocket = handler;
- handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, new AsyncCallback(ReadCallback), state);
- }
- public static void ReadCallback(IAsyncResult ar)
- {
- StateObject state = (StateObject) ar.AsyncState;
- Socket handler = state.workSocket;
- try
- {
- int bytesRead = handler.EndReceive(ar);
- //MainLog.Instance.Verbose("TCPSERVER", "Received packet [{0}]", bytesRead);
- if (bytesRead > 0)
- {
- state.ms_ptr.Write(state.buffer, 0, bytesRead);
- }
- else
- {
- //MainLog.Instance.Verbose("TCPSERVER", "Connection terminated");
- return;
- }
- long rest_size = state.ms_ptr.Length;
- long current_pos = 0;
- while (rest_size > TcpClient.internalPacketHeaderSize)
- {
- if ((state.header == null) && (rest_size >= TcpClient.internalPacketHeaderSize))
- {
- //MainLog.Instance.Verbose("TCPSERVER", "Processing header");
- // reading header
- state.header = new InternalPacketHeader();
- byte[] headerbytes = new byte[TcpClient.internalPacketHeaderSize];
- state.ms_ptr.Position = current_pos;
- state.ms_ptr.Read(headerbytes, 0, TcpClient.internalPacketHeaderSize);
- state.ms_ptr.Seek(0, SeekOrigin.End);
- state.header.FromBytes(headerbytes);
- }
- if ((state.header != null) && (rest_size >= state.header.numbytes + TcpClient.internalPacketHeaderSize))
- {
- //MainLog.Instance.Verbose("TCPSERVER", "Processing body");
- // reading body
- byte[] packet = new byte[state.header.numbytes];
- state.ms_ptr.Position = current_pos + TcpClient.internalPacketHeaderSize;
- state.ms_ptr.Read(packet, 0, state.header.numbytes);
- /*
- for (int i=0; i<state.header.numbytes; i++)
- {
- System.Console.Write(packet[i] + " ");
- }
- System.Console.WriteLine();
- */
- state.ms_ptr.Seek(0, SeekOrigin.End);
- // call loadbarancer function
- if (PacketHandler != null)
- {
- //MainLog.Instance.Verbose("TCPSERVER", "calling PacketHandler");
- PacketHandler(state.header, packet);
- }
- else
- {
- //MainLog.Instance.Verbose("TCPSERVER", "PacketHandler not found");
- }
- int read_size = state.header.numbytes + TcpClient.internalPacketHeaderSize;
- state.header = null;
- rest_size -= read_size;
- current_pos += read_size;
- if (rest_size < TcpClient.internalPacketHeaderSize)
- {
- byte[] rest_bytes = new byte[rest_size];
- state.ms_ptr.Position = read_size;
- state.ms_ptr.Read(rest_bytes, 0, (int) rest_size);
- state.ms_ptr.Close();
- state.ms_ptr = new MemoryStream();
- state.ms_ptr.Write(rest_bytes, 0, (int) rest_size);
- break;
- }
- }
- } // while (true)
- }
- catch (Exception)
- {
- //MainLog.Instance.Verbose("TCPSERVER", e.ToString());
- //MainLog.Instance.Verbose("TCPSERVER", e.StackTrace);
- }
- handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, new AsyncCallback(ReadCallback), state);
- }
- }
- public class TcpServer
- {
- private int mPort = 11000;
- public TcpServer()
- {
- }
- public TcpServer(int port)
- {
- mPort = port;
- }
- public void start()
- {
- AsynchronousSocketListener.StartListening(mPort);
- }
- }
- }
|