I would like to trim long sequences of the same value from a binary file in python. A simple way of doing it is simply reading in the file and using re.sub to replace the unwanted sequence. This will of course not work on large binary files. Can it be done in something like numpy?
|
|
If you don't have the memory to do The solution is simple - read the file in chunks.. The problem then is if you miss the pattern you are replacing.. For example:
The obvious solution is to start at the first character in the file, check For example (pseudo code!):
It's not exactly the most efficient way, but it will work, and not require keeping a copy of the file in memory (or two). |
||
|
|
|
If two copies fit in memory, then you can easily make a copy. The second copy is the compressed version. Sure, you can use numpy, but you can also use the array package. Additionally, you can treat your big binary object as a string of bytes and manipulate it directly. It sounds like your file may be REALLY large, and you can't fit two copies into memory. (You didn't provide a lot of details, so this is just a guess.) You'll have to do your compression in chunks. You'll read in a chunk, do some processing on that chunk and write it out. Again, numpy, array or simple string of bytes will work fine. |
||
|
|
|
|
You need to make your question more precise. Do you know the values you want to trim ahead of time? Assuming you do, I would probably search for the matching sections using |
||
|
|
|
|
dbr's solution is a good idea but a bit overly complicated all you really have to do is rewind the file pointer the length of the sequence you are searching for, before you read your next chunk.
|
|||
|
|
|
|
This generator-based version will keep exactly one character of the file content in memory at a time. Note that I am taking your question title quite literally - you want to reduce runs of the same character to a single character. For replacing patterns in general, this does not work:
|
||
|
|
