Regrouped image format handlers Updated the rest accordingly Added changes.txt for wxGTK git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2795 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
176 lines
3.6 KiB
C++
176 lines
3.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: fstream.cpp
|
|
// Purpose: "File stream" classes
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 11/07/98
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) Guilhem Lavaux
|
|
// Licence: wxWindows license
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation "wfstream.h"
|
|
#endif
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/defs.h"
|
|
#endif
|
|
|
|
#if wxUSE_STREAMS && wxUSE_FILE
|
|
|
|
#include <stdio.h>
|
|
#include <wx/stream.h>
|
|
#include <wx/wfstream.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxFileInputStream
|
|
// ----------------------------------------------------------------------------
|
|
|
|
wxFileInputStream::wxFileInputStream(const wxString& fileName)
|
|
: wxInputStream()
|
|
{
|
|
m_file = new wxFile(fileName, wxFile::read);
|
|
m_file_destroy = TRUE;
|
|
m_i_streambuf->SetBufferIO(1024);
|
|
}
|
|
|
|
wxFileInputStream::wxFileInputStream()
|
|
: wxInputStream()
|
|
{
|
|
m_file_destroy = FALSE;
|
|
m_file = NULL;
|
|
}
|
|
|
|
wxFileInputStream::wxFileInputStream(wxFile& file)
|
|
{
|
|
m_file = &file;
|
|
m_file_destroy = FALSE;
|
|
m_i_streambuf->SetBufferIO(1024);
|
|
}
|
|
|
|
wxFileInputStream::wxFileInputStream(int fd)
|
|
{
|
|
m_file = new wxFile(fd);
|
|
m_file_destroy = TRUE;
|
|
m_i_streambuf->SetBufferIO(1024);
|
|
}
|
|
|
|
wxFileInputStream::~wxFileInputStream()
|
|
{
|
|
if (m_file_destroy)
|
|
delete m_file;
|
|
}
|
|
|
|
char wxFileInputStream::Peek()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
size_t wxFileInputStream::StreamSize() const
|
|
{
|
|
return m_file->Length();
|
|
}
|
|
|
|
size_t wxFileInputStream::OnSysRead(void *buffer, size_t size)
|
|
{
|
|
return m_file->Read(buffer, size);
|
|
}
|
|
|
|
off_t wxFileInputStream::OnSysSeek(off_t pos, wxSeekMode mode)
|
|
{
|
|
return m_file->Seek(pos, mode);
|
|
}
|
|
|
|
off_t wxFileInputStream::OnSysTell() const
|
|
{
|
|
return m_file->Tell();
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxFileOutputStream
|
|
// ----------------------------------------------------------------------------
|
|
|
|
wxFileOutputStream::wxFileOutputStream(const wxString& fileName)
|
|
{
|
|
m_file = new wxFile(fileName, wxFile::write);
|
|
m_file_destroy = TRUE;
|
|
m_o_streambuf->SetBufferIO(1024);
|
|
}
|
|
|
|
wxFileOutputStream::wxFileOutputStream(wxFile& file)
|
|
{
|
|
m_file = &file;
|
|
m_file_destroy = FALSE;
|
|
m_o_streambuf->SetBufferIO(1024);
|
|
}
|
|
|
|
wxFileOutputStream::wxFileOutputStream()
|
|
: wxOutputStream()
|
|
{
|
|
m_o_streambuf->SetBufferIO(1024);
|
|
m_file_destroy = FALSE;
|
|
m_file = NULL;
|
|
}
|
|
|
|
wxFileOutputStream::wxFileOutputStream(int fd)
|
|
{
|
|
m_file = new wxFile(fd);
|
|
m_file_destroy = TRUE;
|
|
m_o_streambuf->SetBufferIO(1024);
|
|
}
|
|
|
|
wxFileOutputStream::~wxFileOutputStream()
|
|
{
|
|
if (m_file_destroy) {
|
|
Sync();
|
|
delete m_file;
|
|
}
|
|
}
|
|
|
|
size_t wxFileOutputStream::OnSysWrite(const void *buffer, size_t size)
|
|
{
|
|
size_t ret = m_file->Write(buffer, size);
|
|
m_lasterror = wxStream_EOF; // TODO
|
|
return ret;
|
|
}
|
|
|
|
off_t wxFileOutputStream::OnSysTell() const
|
|
{
|
|
return m_file->Tell();
|
|
}
|
|
|
|
off_t wxFileOutputStream::OnSysSeek(off_t pos, wxSeekMode mode)
|
|
{
|
|
return m_file->Seek(pos, mode);
|
|
}
|
|
|
|
void wxFileOutputStream::Sync()
|
|
{
|
|
wxOutputStream::Sync();
|
|
m_file->Flush();
|
|
}
|
|
|
|
size_t wxFileOutputStream::StreamSize() const
|
|
{
|
|
return m_file->Length();
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxFileStream
|
|
// ----------------------------------------------------------------------------
|
|
wxFileStream::wxFileStream(const wxString& fileName)
|
|
: wxFileInputStream(fileName), wxFileOutputStream(*wxFileInputStream::m_file)
|
|
{
|
|
}
|
|
|
|
#endif
|
|
// wxUSE_STREAMS && wxUSE_FILE
|