Is there a method of quickly determining whether a (4KB-16MB) chunk read from a file is all zeros?

You can iterate over the chunk, checking each byte. There are obvious optimisations, but it remains O(N).

My use case is for sparse files. I would be perfectly happy for a partial solution, such that if the chunk I've just read is not backed by any disk storage (i.e. it is a hole) then return true.

Any hints?

link|improve this question

4  
I think this question is closer related to operating system APIs than any particular programming language. – CyberShadow Oct 19 '11 at 8:28
1  
Which system? .. – David Heffernan Oct 19 '11 at 8:31
1  
If there is a a way, it's most likely (V)FS API specific.. so that would depend on OS and FS itself. – Nico Oct 19 '11 at 8:38
@David Linux (EXT3/4) and Windows (NTFS). AFAIK OSX doesn't do sparse files. – chrisdew Oct 24 '11 at 8:47
feedback

2 Answers

up vote 2 down vote accepted

This depends on the operating system and sometimes the filesystem. Linux since 2.6.28 has implemented the FIEMAP ioctl(), and ZFS on Solaris implements SEEK_HOLE and SEEK_DATA in lseek().

link|improve this answer
1  
FWIW, in the soon to be released 3.1 kernel, Linux also implements SEEK_HOLE/SEEK_DATA. – janneb Oct 19 '11 at 9:27
I don't suppose that will work on mmapped files too? It would seem sensible. – chrisdew Oct 25 '11 at 14:33
@chrisdew: FIEMAP will work on the file descriptor if you have kept that open after creating the mmap. – caf Oct 25 '11 at 21:00
feedback

My first thought was, "How does rsync do it?"

It turns out that rsync simply checks the data for blocks of zeroes, and writes them as sparse files. See fileio.c in the rsync source code if you want the gory details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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