vote up 4 vote down star

Ok, I am reading in dat files into a byte array. For some reason, the people who generate these files put about a half meg's worth of useless null bytes at the end of the file. Anybody know a quick way to trim these off the end?

First thought was to start at the end of the array and iterate backwards until I found something other than a null, then copy everything up to that point, but I wonder if there isn't a better way.

To answer some questions: Are you sure the 0 bytes are definitely in the file, rather than there being a bug in the file reading code? Yes, I am certain of that.

Can you definitely trim all trailing 0s? Yes.

Can there be any 0s in the rest of the file? Yes, there can be 0's other places, so, no, I can't start at the beginning and stop at the first 0.

flag

33% accept rate

9 Answers

vote up 0 vote down

Are you sure the 0 bytes (not null - big difference, btw) are definitely in the file, rather than there being a bug in the file reading code?

Can you definitely trim all trailing 0s (i.e. there can't be any valid 0s at the end of the file?)

Can there be any 0s in the rest of the file (i.e. could you perhaps look from the start and truncate when you find the first 0)?

link|flag
This is what popped into my head when I read the question. When calling the read function for a file streem, the number of bytes you read may be less than the maximum (usually the size of your buffer) bytes you instruct it to read. – Kibbee Oct 27 '08 at 17:37
vote up 0 vote down

Assuming 0=null, that is probably your best bet... as a minor tweak, you might want to use Buffer.BlockCopy when you finally copy the useful data..

link|flag
vote up 0 vote down

How about this:

[Test]
public void Test()
{
   var chars = new [] {'a', 'b', '\0', 'c', '\0', '\0'};

   File.WriteAllBytes("test.dat", Encoding.ASCII.GetBytes(chars));

   var content = File.ReadAllText("test.dat");

   Assert.AreEqual(6, content.Length); // includes the null bytes at the end

   content = content.Trim('\0');

   Assert.AreEqual(4, content.Length); // no more null bytes at the end
                                       // but still has the one in the middle
}
link|flag
Treating it as text seems risky - plus you've just trebled the File IO. – Marc Gravell Oct 27 '08 at 15:37
Oh, and increased CPU etc significantly too (it takes time to do encoding/decoding, even for ASCII) – Marc Gravell Oct 27 '08 at 15:43
The encoding was just for the test... to write the sample file. Treating the file as text certainly might be an issue though. – Rob Oct 27 '08 at 15:49
vote up 1 vote down

There is always a LINQ answer

byte[] data = new byte[] { 0x01, 0x02, 0x00, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00 };
bool data_found = false;
byte[] new_data = data.Reverse().SkipWhile(point =>
{
  if (data_found) return false;
  if (point == 0x00) return true; else { data_found = true; return false; }
}).Reverse().ToArray();
link|flag
I've post a shorter LINQ alternative in a separate answer. Hope you all like it. – Brian J Cardiff Oct 27 '08 at 18:20
If this is a big buffer, then it would be far more efficient to simply use the indexer backwards. Reverse() is a buffering operation, and has a performance cost. – Marc Gravell Oct 27 '08 at 22:15
vote up 0 vote down

You could just count the number of zero at the end of the array and use that instead of .Length when iterating the array later on. You could encapsulate this however you like. Main point is you don't really need to copy it into a new structure. If they are big, it may be worth it.

link|flag
vote up 1 vote down

Given the extra questions now answered, it sounds like you're fundamentally doing the right thing. In particular, you have to touch every byte of the file from the last 0 onwards, to check that it only has 0s.

Now, whether you have to copy everything or not depends on what you're then doing with the data.

  • You could perhaps remember the index and keep it with the data or filename.
  • You could copy the data into a new byte array
  • If you want to "fix" the file, you could call FileStream.SetLength to truncate the file

The "you have to read every byte between the truncation point and the end of the file" is the critical part though.

link|flag
vote up 2 vote down

I agree with Jon. The critical bit is that you must "touch" every byte from the last one until the first non-zero byte. Something like this:

byte[] foo;
// populate foo
int i = foo.Length - 1;
while(foo[i] == 0)
    --i;
// now foo[i] is the last non-zero byte
byte[] bar = new byte[i+1];
Array.Copy(foo, bar, i+1);

I'm pretty sure that's about as efficient as you're going to be able to make it.

link|flag
Only if you definitely have to copy the data :) One other option would be to treat it as an array of a wider type, e.g. int or long. That would probably require unsafe code, and you would have to deal with the end of the array separately if it had, say, an odd number of bytes (continued) – Jon Skeet Oct 27 '08 at 17:49
but it would probably be more efficient in the "finding" part. I certainly wouldn't start trying that until I'd proved it's the bottleneck though :) – Jon Skeet Oct 27 '08 at 17:49
vote up 1 vote down

@Factor Mystic,

I think there is a shortest way:

var data = new byte[] { 0x01, 0x02, 0x00, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00 };
var new_data = data.TakeWhile((v, index) => data.Skip(index).Any(w => w != 0x00)).ToArray();
link|flag
vote up 0 vote down

if in the file null bytes can be valid values, do you know that the last byte in the file cannot be null. if so, iterating backwards and looking for the first non-null entry is probably best, if not then there is no way to tell where the actual end of the file is.

If you know more about the data format, such as there can be no sequence of null bytes longer than two bytes (or some similar constraint). Then you may be able to actually do a binary search for the 'transition point'. This should be much faster than the linear search (assuming that you can read in the whole file).

The basic idea (using my earlier assumption about no consecutive null bytes), would be:

var data = (byte array of file data...);
var index = data.length / 2;
var jmpsize = data.length/2;
while(true)
{
    jmpsize /= 2;//integer division
    if( jmpsize == 0) break;
    byte b1 = data[index];
    byte b2 = data[index + 1];
    if(b1 == 0 && b2 == 0) //too close to the end, go left
        index -=jmpsize;
    else
        index += jmpsize;
}

if(index == data.length - 1) return data.length;
byte b1 = data[index];
byte b2 = data[index + 1];
if(b2 == 0)
{
    if(b1 == 0) return index;
    else return index + 1;
}
else return index + 2;
link|flag

Your Answer

Get an OpenID
or

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