]> git.saurik.com Git - wxWidgets.git/commitdiff
return 0 (meaning the file is not seekable, as the docs now explain) instead of 4KB...
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 19 Sep 2008 08:11:44 +0000 (08:11 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 19 Sep 2008 08:11:44 +0000 (08:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55726 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/file.h
src/common/file.cpp

index db7cb2f8f3cf44f2baa89ec0f7817b3a799132c6..6c0ababe845ec7193a26f112bf0f3f1d840364dc 100644 (file)
@@ -82,6 +82,12 @@ public:
 
     /**
         Returns the length of the file.
 
     /**
         Returns the length of the file.
+
+        This method may return wxInvalidOffset if the length couldn't be
+        determined or also 0 even for non-empty files if the file is not
+        seekable. In general, the only way to determine if the file for which
+        this function returns 0 is really empty or not is to try reading from
+        it.
     */
     wxFileOffset Length() const;
 
     */
     wxFileOffset Length() const;
 
index a6d96d6a8ed45e6625c4a0ce17bfd46a3850033b..58e36f221899a1557a96c7015cb2871b53b73092 100644 (file)
@@ -393,6 +393,21 @@ wxFileOffset wxFile::Length() const
 {
     wxASSERT( IsOpened() );
 
 {
     wxASSERT( IsOpened() );
 
+    // we use a special method for Linux systems where files in sysfs (i.e.
+    // those under /sys typically) return length of 4096 bytes even when
+    // they're much smaller -- this is a problem as it results in errors later
+    // when we try reading 4KB from them
+#ifdef __LINUX__
+    struct stat st;
+    if ( fstat(m_fd, &st) == 0 )
+    {
+        // returning 0 for the special files indicates to the caller that they
+        // are not seekable
+        return st.st_blocks ? st.st_size : 0;
+    }
+    //else: failed to stat, try the normal method
+#endif // __LINUX__
+
     wxFileOffset iRc = Tell();
     if ( iRc != wxInvalidOffset ) {
         // have to use const_cast :-(
     wxFileOffset iRc = Tell();
     if ( iRc != wxInvalidOffset ) {
         // have to use const_cast :-(