Is there a Windows equivalent to Linux's readahead syscall?

EDIT:

I would like a full function signature if possible, showing the equivalent offset/count parameters (or lower/upper).

Eg: The Linux function signature is:

ssize_t readahead(int fd, off64_t *offset, size_t count);

and an example of it's use is

readahead(file, 100, 500);

Where "file" is a file descriptor previously set by a function like mmap. This call is reading 500 bytes at index 100.

EDIT 2: Please read this if you are unsure what readahead does: http://linux.die.net/man/2/readahead

link|improve this question

feedback

2 Answers

Yes. It is FileSystemControl FSCTL_FILE_PREFETCH.

It is used in Windows Vista and above for prefetching both when an application starts and at boot time.

It is also used by the SuperFetch technology that uses heuristics to load applications at approximately the times of day you generally use them.

FSCTL_FILE_PREFETCH itself is not documented on MSDN, but it is easy to figure out the parameter format by examining the DeviceIoControl calls made on app startup: Just start an application in the debugger that already has a .pf file in the c:\Windows\Prefetch directory and break on DeviceIoControl (or if you're using a kernel debugger, break when the NTFS driver receives its first FSCTL_FILE_PREFETCH). Examine the buffer passed in and compare it with the .pf file and the range actually used later. I did this once out of curiosity but didn't record the details.

In case you are unfamiliar with DeviceIoControl and IRP_MJ_FILESYSTEM_CONTROL, here are some links to look at:

link|improve this answer
It's a good answer, but I am a little confused. The Linux syscall has the signature: readahead(int fd, off64_t *offset, size_t count); eg: readahead(file, 100, 500); Which I assume will read 500 bytes at offset 100 of the file with the file descriptor "file". What would be something equivalent in Windows? – joemoe Jan 25 '10 at 21:26
7  
Got a link for where those are documented, or a demonstration of how they're used? Right now I have no idea how to interpret this answer. – Rob Kennedy Jan 25 '10 at 21:31
1  
Still not sure I understand. What I am looking for is a function signature and an example demonstrating it's use. See my edited question for an example. – joemoe Jan 25 '10 at 22:22
feedback

I am not sure if I understand correctly, in what you said 'Where "file" is a file descriptor previously set by a function like mmap. This call is reading 500 bytes at index 100.' That sounds suspiciously like seeking to the offset and read 500 bytes... but you want it to be pre-fetched ahead...

In C Code, it would look something like this:

fseek(fp, 100, SEEK_CUR);
fread(&data, 500, 1, fp);

But prefetching it, I guess, you would want to hook up some kind of events using waithandles, and when the event gets raised, the data gets stored somewhere in a buffer...

To be honest, I have not come across a such thing that does pre-fetching data...but Ray's answer surprised me, but then again it is only for Vista upwards, if you want to maintain compatibility...that's something to keep in mind... but the links below may be of help...

Ok, there was a blog discussing this, a library written in Delphi, the source code is here, browsing the code here, ok, it may not be what you want but it may help you point in the direction... Sorry if its not what you are looking for...

Hope this helps, Best regards, Tom.

link|improve this answer
No this is not what I am looking for. I'm looking for a function that is functionally equivalent to "readahead" in Linux. – joemoe Jan 26 '10 at 6:08
feedback

Your Answer

 
or
required, but never shown

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