restore the stream position in wxImageHandler itself instead of forcing all

derived classes to do it themselves


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15642 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-05-22 23:14:47 +00:00
parent 6307da56b8
commit 39d16996b7
12 changed files with 47 additions and 49 deletions

View File

@@ -1286,12 +1286,32 @@ bool wxImageHandler::CanRead( const wxString& name )
return CanRead(stream);
}
else {
wxLogError( _("Can't check image format of file '%s': file does not exist."), name.c_str() );
wxLogError( _("Can't check image format of file '%s': file does not exist."), name.c_str() );
return FALSE;
}
bool wxImageHandler::CallDoCanRead(wxInputStream& stream)
{
off_t posOld = stream.TellI();
if ( posOld == wxInvalidOffset )
{
// can't test unseekable stream
return FALSE;
}
// return FALSE;
bool ok = DoCanRead(stream);
// restore the old position to be able to test other formats and so on
if ( stream.SeekI(posOld) == wxInvalidOffset )
{
wxLogDebug(_T("Failed to rewind the stream in wxImageHandler!"));
// reading would fail anyhow as we're not at the right position
return FALSE;
}
return ok;
}
#endif // wxUSE_STREAMS