I'm reading in a file which I can't buffer all at once, as its size ranges from 256MB upto ~2GB in size.
Once the file is opened, I read a chunk of it into a byte array, say 512 bytes, run a regex over it, and if the pattern is detected, my program makes a note of it.
The problem I'm having is that my program is missing a lot of the locations in the file where it should be detecting the pattern.
I'm 90% sure the problem is that whilst the pattern is there, it's not complete, as it's going outside the length of the buffer. The pattern I'm looking for is eight bytes in length, so for example, the first four bytes of the pattern are at the last four positions in the array; so when it is filled again, the first four bytes of the array are the last four of the pattern. As such, my regex always fails.
I'm guessing what I need to do is to fill the buffer, then when it fills it again, retain the last 20 or so bytes in there, so that it will not miss any of the patterns I'm looking for.
Any advice would be greatly appreciated. Thanks in advance.
Tony