]> granicus.if.org Git - python/commit
_portable_fseek():
authorGuido van Rossum <guido@python.org>
Mon, 10 Sep 2001 20:43:35 +0000 (20:43 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 10 Sep 2001 20:43:35 +0000 (20:43 +0000)
commit8b4e43e768f3f49513f6f32f20ecb6478c1ad840
treeb13b0ab05dbf27f47d0e858cfe85b11d411b305d
parentc4c062f5071d1c457074cee8a7b372743a028a1a
_portable_fseek():

Subtlety on Windows: if we change test_largefile.py to use a file
> 4GB, it still fails.  A debug session suggests this is because
fseek(fp, 0, 2) refuses to seek to the end of the file when the file
is > 4GB, because it uses the SetFilePointer() in 32-bit mode.

But it only fails when we seek relative to the end of the file,
because in the other seek modes only calls to fgetpos() and fsetpos()
are made, which use Get/SetFilePointer() in 64-bit mode.  Solution:
#ifdef MS_WInDOWS, replace the call to fseek(fp, ...) with a call to
_lseeki64(fileno(fp), ...).  Make sure to call fflush(fp) first.

(XXX Could also replace the entire branch with a call to _lseeki64().
Would that be more efficient?  Certainly less generated code.)

(XXX This needs more testing.  I can't actually test that it works for
files >4GB on my Win98 machine, because the filesystem here won't let
me create files >=4GB at all.  Tim should test this on his Win2K
machine.)
Objects/fileobject.c