Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields  

streams.FileHandle.h

00001 /*----------------------------------------------------------------------------
00002   SWORD 2000 - Software With Objects for Rapid Development
00003   Copyright (C) 2003 Eric NICOLAS
00004   ----------------------------------------------------------------------------
00005   SWORD is free software; you can redistribute it and/or modify
00006   it under the terms of the GNU Lesser General Public License as published by
00007   the Free Software Foundation; either version 2 of the License, or
00008   (at your option) any later version.
00009 
00010   SWORD is distributed in the hope that it will be useful,
00011   but WITHOUT ANY WARRANTY; without even the implied warranty of
00012   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013   GNU Lesser General Public License for more details.
00014 
00015   You should have received a copy of the GNU Lesser General Public License
00016   along with SWORD; if not, write to the Free Software
00017   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018   --------------------------------------------------------------------------*/
00019 #ifndef _SWORD_STREAMS_FILEHANDLE_
00020 #define _SWORD_STREAMS_FILEHANDLE_
00021 
00022 #include "sword/base.SmartPtr.h"
00023 #include "sword/base.FileSystem.h"
00024 #include "sword/streams.File.h"
00025 
00026 #ifdef WIN32
00027 #  define FILEHANDLE_IMPL_TYPE HANDLE
00028 #else // WIN32
00029 #  define FILEHANDLE_IMPL_TYPE int
00030 #endif // !WIN32
00031 
00032 namespace sword {
00033 
00034         class SWORDDECL FileHandle;
00035         typedef SmartPtr<FileHandle> PFileHandle;
00036 
00037         class SWORDDECL FileHandle {
00038         public:
00039                 FileHandle(const std::string &name, FileSystem::Mode mode);
00040                 FileHandle(FILEHANDLE_IMPL_TYPE handle, const std::string &name);
00041                 ~FileHandle();
00042 
00043                 FILEHANDLE_IMPL_TYPE handle() const;
00044                 std::string          name() const;
00045 
00046     void seek(word position);
00047 
00048                 static PFileHandle cin();
00049                 static PFileHandle cout();
00050                 static PFileHandle cerr();
00051 
00052                 class OpenException : public Exception {};
00053                 class CloseException : public Exception {};
00054 
00055         private:
00056                 FILEHANDLE_IMPL_TYPE handle_;
00057                 bool                 owner_;
00058                 std::string          name_;
00059                 //
00060                 FileHandle(const FileHandle &rhs);
00061                 FileHandle &operator==(const FileHandle &rhs);
00062         };
00063 
00064 } // namespace sword
00065 
00066 #include "sword.private/streams.FileHandle.inl"
00067 
00068 #endif // _SWORD_STREAMS_FILEHANDLE_

Generated on Tue Dec 23 20:08:56 2003 for SWORD by doxygen1.3-rc2