I want a memory-efficient and time-efficient way of splitting up an incoming stream of data based on a delimeter. The stream is a network-stream and the "messages" coming in are split up by CRLF. Previously I've done this by converting incomming data to a string using UTF8, then check for CRLF, and if it exists I split based on that, however, that is not a very good way to solve the problem as more and more messages are incoming. Also, I might get data-chunks containing 1 message, and I might get datachunks containing 10 messages, and even some that only contains parts of messages.
So this is what I have thought up so far. Use a memorystream for buffer, and when data comes in read the data into the memory-stream. If I find the delimeter (CRLF), I take all the data in the memorystream, and call the messageReceived on that, then I continue. Any thoughts on this?
[Edit]
Ok, I think I need to better explain what I want to do. The protocoll beeing used is the IRC-protocoll, which sends "messages", or "commands" if you want, sepparated by CRLF. I'm using the socket-class in C# with BeginReceive and EndReceive, so everything runs async. The class I'm writing is called a MessageConnection. It receives data from a tcp-socket, and whenever a given delimeter is found (in this case CRLF) I want it to call a function called OnMessage witch takes the received message as a parameter. I've solved the exact same problem before using a StringBuilder as a buffer, and appending the new string to the StringBuilder whenever I received data, then I'd split the string returned by the StringBuilder based on the delimeter, empty the StringBuilder, and insert the last part of the split-operation. After that I loop trough the split-array (without the last element) and call OnMessage. This howerver feels like an inefficient way of solving the problem, cause I do a lot of conversion to and from strings - which is said not to be verry good, so I was thinking, there needs to be a simple way to solve this without having to think in strings, just in byte-arrays, and only convert to a string when I have a byte-array that represents an actuall "message", and this is what I want help with.