I have a stream that contains text, now I want to edit some text (replace some values) in that stream.
What is the most efficient way to do this, so without breaking the stream?
I want to use this in a custom pipeline component for BizTalk
.
public IBaseMessage Execute(IPipelineContext pContext, IBaseMessage pInMsg)
{
string msg = "";
using (VirtualStream virtualStream = new VirtualStream(pInMsg.BodyPart.GetOriginalDataStream()))
{
using(StreamReader sr = new StreamReader(VirtualStream))
{
msg = sr.ReadToEnd();
}
// modify string here
msg = msg.replace("\r\n","");
while (msg.Contains(" <"))
msg = msg.Replace(" <", "<");
VirtualStream outStream = new VirtualStream();
StreamWriter sw = new StreamWriter(outStream, Encoding.Default);
sw.Write(msg);
sw.Flush();
outStream.Seek(0, SeekOrigin.Begin);
pInMsg.BodyPart.Data = outStream;
pContext.ResourceTracker.AddResource(outStream);
}
return pInMsg;
}
This is the code, but as you can see I am breaking the stream when I do sr.ReadToEnd()
.
Is there a beter way to do this?
I think the way would be to keep a done and a processing buffer, then you when you get new content written to your stream you keep it in the pending buffer until you know there is nothing more to replace. After replacing or deciding there's nothing to replace move that data from the pending to the done buffer. The read method should only read from the done buffer, the write should only write to the processing buffer and flush moves all the pending to done.
Not shure about the flushing part, i am thinking myself how to do this in the best way as i need to write a generic string replacer stream.
[edit] sorry, replied a 2 years old post...[/edit]