vote up 1 vote down star

How do I do on-the-fly search & replace in a Java Stream (input or output)?

I don't want to load the stream into memory or to a file.

I just see the bytes passing by and I need to do some replacements. The sequences being replaced are short (up to 20 bytes).

flag

1  
It depends on what kind of "stream" it is. Is it text? Is it some sort of format with known field widths? You'll have to be much more specific in your question. – Jonathan Feinberg Oct 26 at 13:42
it's binary random junk. – flybywire Oct 26 at 13:47
Are the replacements just as long as the original "strings" (byte sequences)? – Lucero Oct 26 at 13:48
@Lucero: no. Both the string and the replacements are much much shorter than the stream. But replacements can be long, equal length, or shorter than the original string. – flybywire Oct 26 at 13:51

3 Answers

vote up 2 vote down check

You can use the class provided here if static replacement rules are enough for you.

link|flag
+1 looks promising – flybywire Oct 26 at 14:08
Just a small "academic" note: I looked over the source, and as far as I can tell the runtime the runtime/CPU usage - especially in the worst case - seems to be pretty bad. Assuming for instance 10 patterns of 101 characters, for each byte read there could be up to 1000 processing steps (comparare operations) performed. The DFA solution would require only one operation (table lookup). With increasing pattern size and number and input stream length this could be a problem. – Lucero Oct 26 at 14:34
(However, the source is well done in terms of structure and documentation and there is good test coverage, so please take my comment as suggestion for a better algorithm, I don't mean to criticize the answer.) – Lucero Oct 26 at 14:37
Thanks, one of the reasons to reference the class here is ability to get a feedback :) Your comment is right, will revise the algorithm. – denis.zhdanov Oct 26 at 15:32
vote up 1 vote down

You could implement a deterministic finite automaton which looks at each byte once only (e.g. no lookbehind is required), so that you would basically stream the input through a buffer holding max as many characters as the length of your pattern, outputting the pattern on a match or overflowing (non-matched) characters when advancing in the pattern. Runtime is linear after preparation of the pattern.

Wikipedia has some information on pattern matching and how that works in theory.

link|flag
Thank you, @Lucero. I was looking for a library solution. – flybywire Oct 26 at 14:06
vote up 1 vote down

This is not really an answer to your question.

You should though, look into the java.nio package.

Take a look at the following examples:

NIO Examples

The first example shows how to do a simple "grep" on a file.

Using the NIO you will not have to worry about a buffer size, just let the regular expression library methods do the heavy lifting.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.