Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a application which listens for connections and connects asynchronously to clients. In my AsyncCallback delegate method i need to start a timer until i receive a valid message starting with a STX and ending with a ETX. The timer should reset only during the period after receiving a STX until receiving the ETX.

public static void AcceptCallback(IAsyncResult ar)
    {
        try
        {
            // Signal the main thread to continue. [Comment by Kanishka = Releses all therads on WaitOne()]
            allDone.Set();

            // Get the socket that handles the client request.
            Socket listener = (Socket)ar.AsyncState;
            Socket handler = listener.EndAccept(ar);

            // Create the state object.
            StateObject state = new StateObject();
            state.workSocket = handler;

            IAsyncResult result = handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, new AsyncCallback(ReadCallback), state);

        }
        catch (Exception e)
        {
            Console.WriteLine("sck exp : " + e.Message);
        }
    }

The AsyncCallback Method

public static void ReadCallback(IAsyncResult ar)
    {
        try
        {
            // Retrieve the state object and the handler socket
            // from the asynchronous state object.
            StateObject state = (StateObject)ar.AsyncState;
            Socket handler = state.workSocket;

            // Read data from the client socket. 
            int bytesRead = handler.EndReceive(ar);

            if (bytesRead > 0)
            {
                state.sb.Append(Encoding.ASCII.GetString(state.buffer, 0, bytesRead));
                // Get the rest of the data.
                IAsyncResult resultb = handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, new AsyncCallback(ReadCallback), state);

                int posOfSTX = state.sb.ToString().IndexOf((char)2);//Check for first STX
                if (posOfSTX > -1)//if STX is received
                {
                    state.sb.Remove(0, posOfSTX);  //Removes from 0 to first STX including STX.
                }
                int posOfETX = state.sb.ToString().IndexOf((char)3); //Check for first ETX
                if (posOfETX > -1 && state.sb.ToString().IndexOf((char)2) > -1) //if msg has ETX (end of text) ascii \u0003 and already has a STX.
                {
                    state.sb.Remove(posOfETX + 1, state.sb.Length - posOfETX - 1);//Remove all after first ETX tail
                    int posOfLastSTX = state.sb.ToString().LastIndexOf((char)2);//Check for last STX
                    state.sb.Remove(0, posOfLastSTX); //Remove upto last STX including STX

                    string content = state.sb.ToString(); //Collect msg to string
                    state.sb.Remove(0, state.sb.Length);  //Clear StringBuilder
                    state.buffer.Initialize();
                }
                else
                {
                }
            }
            else
            {
                if (state.sb.Length > 1)
                {
                    // All the data has been read from the client;
                    // display it on the console.
                    // string content = state.sb.ToString();
                    // Console.WriteLine("Read {0} bytes from socket.\n Data : {1}",
                    // content.Length, content);
                }
                handler.Close();
            }
        }
        catch (Exception e)
        {
            Console.WriteLine("Error - "+e.Message);
        }
    }

Am i using the correct method and how do i implement the timeout. pls advice me.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.