1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-07-14 22:55:57 +00:00
|
|
|
// Name: file.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose: wxFile - encapsulates low-level "file descriptor"
|
|
|
|
// wxTempFile - safely replace the old file
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 29/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-07-14 22:55:57 +00:00
|
|
|
#ifndef _WX_FILEH__
|
|
|
|
#define _WX_FILEH__
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_FILE
|
|
|
|
|
2004-05-30 16:34:49 +00:00
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/filefn.h"
|
|
|
|
#include "wx/strconv.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1998-07-24 17:03:26 +00:00
|
|
|
// we redefine these constants here because S_IREAD &c are _not_ standard
|
|
|
|
// however, we do assume that the values correspond to the Unix umask bits
|
|
|
|
#define wxS_IRUSR 00400
|
|
|
|
#define wxS_IWUSR 00200
|
|
|
|
#define wxS_IXUSR 00100
|
|
|
|
|
|
|
|
#define wxS_IRGRP 00040
|
|
|
|
#define wxS_IWGRP 00020
|
|
|
|
#define wxS_IXGRP 00010
|
|
|
|
|
|
|
|
#define wxS_IROTH 00004
|
|
|
|
#define wxS_IWOTH 00002
|
|
|
|
#define wxS_IXOTH 00001
|
|
|
|
|
|
|
|
// default mode for the new files: corresponds to umask 022
|
1998-07-27 09:52:49 +00:00
|
|
|
#define wxS_DEFAULT (wxS_IRUSR | wxS_IWUSR | wxS_IRGRP | wxS_IWGRP |\
|
|
|
|
wxS_IROTH | wxS_IWOTH)
|
1998-07-24 17:03:26 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// class wxFile: raw file IO
|
|
|
|
//
|
|
|
|
// NB: for space efficiency this class has no virtual functions, including
|
|
|
|
// dtor which is _not_ virtual, so it shouldn't be used as a base class.
|
|
|
|
// ----------------------------------------------------------------------------
|
2003-07-02 01:41:23 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxFile
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// more file constants
|
|
|
|
// -------------------
|
|
|
|
// opening mode
|
2001-12-01 13:51:24 +00:00
|
|
|
enum OpenMode { read, write, read_write, write_append, write_excl };
|
1998-05-20 14:01:55 +00:00
|
|
|
// standard values for file descriptor
|
|
|
|
enum { fd_invalid = -1, fd_stdin, fd_stdout, fd_stderr };
|
|
|
|
|
|
|
|
// static functions
|
|
|
|
// ----------------
|
1998-08-11 21:03:57 +00:00
|
|
|
// check whether a regular file by this name exists
|
1999-04-12 22:20:19 +00:00
|
|
|
static bool Exists(const wxChar *name);
|
2004-07-04 11:19:47 +00:00
|
|
|
// check whether we can access the given file in given mode
|
1998-08-11 21:03:57 +00:00
|
|
|
// (only read and write make sense here)
|
1999-04-12 22:20:19 +00:00
|
|
|
static bool Access(const wxChar *name, OpenMode mode);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// ctors
|
|
|
|
// -----
|
|
|
|
// def ctor
|
2003-12-11 10:59:05 +00:00
|
|
|
wxFile() { m_fd = fd_invalid; m_error = false; }
|
1998-05-20 14:01:55 +00:00
|
|
|
// open specified file (may fail, use IsOpened())
|
1999-04-12 22:20:19 +00:00
|
|
|
wxFile(const wxChar *szFileName, OpenMode mode = read);
|
1998-05-20 14:01:55 +00:00
|
|
|
// attach to (already opened) file
|
2005-06-08 15:17:42 +00:00
|
|
|
wxFile(int lfd) { m_fd = lfd; m_error = false; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// open/close
|
1998-07-24 17:03:26 +00:00
|
|
|
// create a new file (with the default value of bOverwrite, it will fail if
|
|
|
|
// the file already exists, otherwise it will overwrite it and succeed)
|
2004-06-12 23:44:08 +00:00
|
|
|
bool Create(const wxChar *szFileName, bool bOverwrite = false,
|
1998-07-24 17:03:26 +00:00
|
|
|
int access = wxS_DEFAULT);
|
1999-04-12 22:20:19 +00:00
|
|
|
bool Open(const wxChar *szFileName, OpenMode mode = read,
|
1998-07-24 17:03:26 +00:00
|
|
|
int access = wxS_DEFAULT);
|
1998-07-17 20:52:40 +00:00
|
|
|
bool Close(); // Close is a NOP if not opened
|
1998-05-26 15:05:56 +00:00
|
|
|
|
|
|
|
// assign an existing file descriptor and get it back from wxFile object
|
2005-06-08 15:17:42 +00:00
|
|
|
void Attach(int lfd) { Close(); m_fd = lfd; m_error = false; }
|
1998-05-26 15:05:56 +00:00
|
|
|
void Detach() { m_fd = fd_invalid; }
|
|
|
|
int fd() const { return m_fd; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// read/write (unbuffered)
|
2004-11-12 03:30:07 +00:00
|
|
|
// returns number of bytes read or wxInvalidOffset on error
|
|
|
|
ssize_t Read(void *pBuf, size_t nCount);
|
1999-07-14 22:55:57 +00:00
|
|
|
// returns the number of bytes written
|
2004-11-10 21:02:58 +00:00
|
|
|
size_t Write(const void *pBuf, size_t nCount);
|
1998-05-20 14:01:55 +00:00
|
|
|
// returns true on success
|
2003-02-26 19:31:44 +00:00
|
|
|
bool Write(const wxString& s, wxMBConv& conv = wxConvUTF8)
|
1999-07-14 22:55:57 +00:00
|
|
|
{
|
2000-07-15 19:51:35 +00:00
|
|
|
const wxWX2MBbuf buf = s.mb_str(conv);
|
2004-11-10 21:02:58 +00:00
|
|
|
size_t size = strlen(buf);
|
2000-07-15 19:51:35 +00:00
|
|
|
return Write((const char *) buf, size) == size;
|
1999-07-14 22:55:57 +00:00
|
|
|
}
|
1998-05-20 14:01:55 +00:00
|
|
|
// flush data not yet written
|
|
|
|
bool Flush();
|
|
|
|
|
2004-11-10 21:02:58 +00:00
|
|
|
// file pointer operations (return wxInvalidOffset on failure)
|
|
|
|
// move ptr ofs bytes related to start/current offset/end of file
|
|
|
|
wxFileOffset Seek(wxFileOffset ofs, wxSeekMode mode = wxFromStart);
|
1998-05-20 14:01:55 +00:00
|
|
|
// move ptr to ofs bytes before the end
|
2004-11-10 21:02:58 +00:00
|
|
|
wxFileOffset SeekEnd(wxFileOffset ofs = 0) { return Seek(ofs, wxFromEnd); }
|
|
|
|
// get current offset
|
|
|
|
wxFileOffset Tell() const;
|
1998-05-20 14:01:55 +00:00
|
|
|
// get current file length
|
2004-11-10 21:02:58 +00:00
|
|
|
wxFileOffset Length() const;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// simple accessors
|
|
|
|
// is file opened?
|
|
|
|
bool IsOpened() const { return m_fd != fd_invalid; }
|
|
|
|
// is end of file reached?
|
|
|
|
bool Eof() const;
|
2005-05-31 09:20:43 +00:00
|
|
|
// has an error occurred?
|
1998-07-14 12:06:50 +00:00
|
|
|
bool Error() const { return m_error; }
|
2005-02-11 12:39:03 +00:00
|
|
|
// type such as disk or pipe
|
2005-02-12 21:53:51 +00:00
|
|
|
wxFileKind GetKind() const { return wxGetFileKind(m_fd); }
|
1998-07-24 17:03:26 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// dtor closes the file if opened
|
1999-07-14 22:55:57 +00:00
|
|
|
~wxFile() { Close(); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// copy ctor and assignment operator are private because
|
|
|
|
// it doesn't make sense to copy files this way:
|
|
|
|
// attempt to do it will provoke a compile-time error.
|
|
|
|
wxFile(const wxFile&);
|
|
|
|
wxFile& operator=(const wxFile&);
|
|
|
|
|
|
|
|
int m_fd; // file descriptor or INVALID_FD if not opened
|
1998-07-14 12:06:50 +00:00
|
|
|
bool m_error; // error memory
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// class wxTempFile: if you want to replace another file, create an instance
|
|
|
|
// of wxTempFile passing the name of the file to be replaced to the ctor. Then
|
|
|
|
// you can write to wxTempFile and call Commit() function to replace the old
|
|
|
|
// file (and close this one) or call Discard() to cancel the modification. If
|
|
|
|
// you call neither of them, dtor will call Discard().
|
|
|
|
// ----------------------------------------------------------------------------
|
2003-07-02 01:41:23 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxTempFile
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctors
|
|
|
|
// default
|
|
|
|
wxTempFile() { }
|
|
|
|
// associates the temp file with the file to be replaced and opens it
|
|
|
|
wxTempFile(const wxString& strName);
|
|
|
|
|
|
|
|
// open the temp file (strName is the name of file to be replaced)
|
|
|
|
bool Open(const wxString& strName);
|
|
|
|
|
|
|
|
// is the file opened?
|
|
|
|
bool IsOpened() const { return m_file.IsOpened(); }
|
2005-03-13 16:20:51 +00:00
|
|
|
// get current file length
|
|
|
|
wxFileOffset Length() const { return m_file.Length(); }
|
|
|
|
// move ptr ofs bytes related to start/current offset/end of file
|
|
|
|
wxFileOffset Seek(wxFileOffset ofs, wxSeekMode mode = wxFromStart)
|
|
|
|
{ return m_file.Seek(ofs, mode); }
|
|
|
|
// get current offset
|
|
|
|
wxFileOffset Tell() const { return m_file.Tell(); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// I/O (both functions return true on success, false on failure)
|
2004-11-10 21:02:58 +00:00
|
|
|
bool Write(const void *p, size_t n) { return m_file.Write(p, n) == n; }
|
2003-02-26 19:31:44 +00:00
|
|
|
bool Write(const wxString& str, wxMBConv& conv = wxConvUTF8)
|
|
|
|
{ return m_file.Write(str, conv); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// different ways to close the file
|
|
|
|
// validate changes and delete the old file of name m_strName
|
|
|
|
bool Commit();
|
|
|
|
// discard changes
|
|
|
|
void Discard();
|
|
|
|
|
|
|
|
// dtor calls Discard() if file is still opened
|
|
|
|
~wxTempFile();
|
|
|
|
|
|
|
|
private:
|
1998-11-24 23:30:50 +00:00
|
|
|
// no copy ctor/assignment operator
|
|
|
|
wxTempFile(const wxTempFile&);
|
|
|
|
wxTempFile& operator=(const wxTempFile&);
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString m_strName, // name of the file to replace in Commit()
|
|
|
|
m_strTemp; // temporary file name
|
|
|
|
wxFile m_file; // the temporary file
|
|
|
|
};
|
|
|
|
|
1999-07-14 22:55:57 +00:00
|
|
|
#endif // wxUSE_FILE
|
1999-06-15 20:21:59 +00:00
|
|
|
|
1999-07-14 22:55:57 +00:00
|
|
|
#endif // _WX_FILEH__
|