コード例 #1
0
        public void WorkerLoopWhenSingleMessage()
        {
            // arrange
            var     message           = new Message("IncomingRoute", "test");
            var     serializedMessage = new SerializedMessage("OutcomingRoute", new byte[4]);
            Message messageFromEvent  = null;

            var dataContract = new Mock <IDataContractOperations>();

            dataContract.Setup(x => x.Deserialize(serializedMessage)).Returns(message);

            var worker = new MessageDeserializer(dataContract.Object);

            worker.OnNewMessage += m => messageFromEvent = m;

            // act
            worker.DeserializeMessage(serializedMessage);
            var messageProcessed = worker.DoWork();

            // assert
            Assert.IsTrue(messageProcessed);
            Assert.AreEqual(message, messageFromEvent);

            dataContract.Verify(x => x.Deserialize(serializedMessage), Times.Once);
        }
コード例 #2
0
        public void OnException()
        {
            // arrange
            var serializedMessage = new SerializedMessage("OutcomingRoute", new byte[4]);

            var dataContract = new Mock <IDataContractOperations>();

            dataContract.Setup(x => x.Deserialize(serializedMessage)).Throws <Exception>();

            var worker = new MessageDeserializer(dataContract.Object);

            // act
            worker.DeserializeMessage(serializedMessage);

            // assert
            Assert.Throws <SerializationException>(() =>
            {
                worker.DoWork();
            });
        }
    void Listen()
    {
        IPAddress  ip            = IPAddress.Parse(host);
        IPEndPoint localEndPoint = new IPEndPoint(ip, Convert.ToInt32(port));

        listener = new Socket(ip.AddressFamily,
                              SocketType.Stream, ProtocolType.Tcp);
        listener.LingerState = new LingerOption(true, 0);

        try {// Bind the socket to the local endpoint and listen for incoming connections.
            Debug.Log("Binding socket to: " + localEndPoint);
            listener.Bind(localEndPoint);
            listener.Listen(10);

            while (!requestDisconnect)       //Start listening for connections.
            {
                handler = listener.Accept(); // Program suspended while waiting for an incoming connection.

                if (requestDisconnect)
                {
                    return;
                }

                //read header
                byte[]        headerBytes   = new byte[MessageHeader.HEADER_SIZE];
                int           bytesReceived = handler.Receive(headerBytes);
                MessageHeader header        = MessageHeader.ParseFromBytes(headerBytes);

                //if 0 bytes received, return. No valid message.
                if (bytesReceived == 0)
                {
                    if (requestDisconnect)
                    {
                        return;
                    }
                    continue;
                }

                Debug.Log("Got message type <" + header.MessageType + ">, Parsing: " + header.BodySize + "bytes");

                System.Diagnostics.Stopwatch stopWatch = new System.Diagnostics.Stopwatch();
                stopWatch.Start();

                //read body
                int    bodySize  = header.BodySize;
                byte[] bodyBytes = new byte[bodySize];

                int messageChunkSize = 100 * 1024;
                int messageBytesRead = 0;

                while (messageBytesRead < bodySize)
                {
                    if (requestDisconnect)
                    {
                        return;
                    }

                    byte [] bytes = new byte[messageChunkSize];

                    int bytesRec = handler.Receive(bytes);
                    if (bytesRec <= 0)
                    {
                        handler.Disconnect(true);
                        break;
                    }
                    Array.Copy(bytes, 0, bodyBytes, messageBytesRead, bytesRec);

                    messageBytesRead += bytesRec;

                    System.Threading.Thread.Sleep(1);
                }
                handler.Close();

                stopWatch.Stop();
                Debug.Log("Received " + messageBytesRead + " bytes in " + stopWatch.Elapsed.Milliseconds + " ms");
                stopWatch.Reset();

                //create message
                Message message = Message.ParseFromBytes(headerBytes, bodyBytes);

                ProtobufMessage protobufMessage = MessageDeserializer.DeserializeMessage(message);
                messageQueue.Enqueue(protobufMessage);

                System.Threading.Thread.Sleep(1);
            }
        } catch (Exception e) {
            Debug.Log("ERROR: " + localEndPoint + ": Exeception caught: " + e.ToString());
        }
    }