Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

base/VDirectory

Go to the documentation of this file.
00001 /****************************************************************************
00002   Copyright (C)1996 David Jung <opensim@pobox.com>
00003 
00004   This program/file is free software; you can redistribute it and/or modify
00005   it under the terms of the GNU General Public License as published by
00006   the Free Software Foundation; either version 2 of the License, or
00007   (at your option) any later version.
00008   
00009   This program is distributed in the hope that it will be useful,
00010   but WITHOUT ANY WARRANTY; without even the implied warranty of
00011   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012   GNU General Public License for more details. (http://www.gnu.org)
00013   
00014   You should have received a copy of the GNU General Public License
00015   along with this program; if not, write to the Free Software
00016   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00017   
00018   $Id: VDirectory 1029 2004-02-11 20:45:54Z jungd $
00019   $Revision: 1.4 $
00020   $Date: 2004-02-11 15:45:54 -0500 (Wed, 11 Feb 2004) $
00021   $Author: jungd $
00022  
00023 ****************************************************************************/
00024 
00025 #ifndef _BASE_VDIRECTORY_
00026 #define _BASE_VDIRECTORY_
00027 
00028 #include <base/base>
00029 #include <base/reflist>
00030 #include <base/VEntry>
00031 #include <base/PathName>
00032 #include <base/path_not_found>
00033 #include <base/io_error>
00034 
00035 
00036 namespace base {
00037 
00038 
00039 class VDirectory : public VEntry
00040 {
00041 public:
00042   virtual ~VDirectory() {}
00043 
00044   virtual String className() const { return String("VDirectory"); }
00045 
00046   virtual bool isDirectory() const { return true; }
00047 
00048   virtual bool contains(ref<const VEntry> entry) const = 0;
00049   virtual bool contains(const PathName& name) const = 0;
00050   virtual bool empty() const { return size()==0; }
00051 
00052   virtual ref<VFile>      file(const PathName& name) const throw(path_not_found) = 0; ///< construct a new VFile object 
00053   virtual ref<VDirectory> directory(const PathName& name) const throw(path_not_found) = 0; ///< construct a new VDirectory object
00054 
00055   virtual ref<VFile>      createFile(const PathName& name) const throw(io_error) = 0; ///< create a new file in this directory
00056   virtual void            deleteFile(const PathName& name) const throw(path_not_found, io_error) = 0; ///< delete a file in this directory
00057   virtual ref<VDirectory> createDirectory(const PathName& name) const throw(io_error) = 0; ///< create a new directory in this directory
00058   virtual void            deleteDirectory(const PathName& name) const throw(path_not_found, io_error) = 0; ///< delete a directory in this directory
00059   
00060 
00061   class VEntryIterator : public std::iterator<std::input_iterator_tag, ref<VEntry>, Int, ref<VEntry>*, const ref<VEntry>&>
00062   {
00063   public:
00064     VEntryIterator(const VEntryIterator& iter) : dir(iter.dir), index(iter.index) {}
00065     ~VEntryIterator() {}
00066     VEntryIterator& operator=(const VEntryIterator& i) { dir=i.dir; index=i.index; return *this; }
00067 
00068     value_type operator*() const { return dir->entry(index); }
00069     
00070     VEntryIterator& operator++() { if (index != dir->size()) ++index; return *this; }
00071     bool operator==(const VEntryIterator& i) const { return (dir==i.dir) && (index==i.index); }
00072     bool operator!=(const VEntryIterator& i) const { return !(*this==i); }
00073 
00074   protected:
00075     VEntryIterator(ref<const VDirectory> dir, Int i) : dir(dir), index(i) {}
00076     ref<const VDirectory> dir;
00077     Int index;
00078 
00079     friend class VDirectory;
00080   };
00081 
00082   
00083   typedef VEntryIterator       iterator;
00084   typedef VEntryIterator const_iterator;
00085 
00086   iterator begin()             { return VEntryIterator(ref<VDirectory>(this),0); }
00087   const_iterator begin() const { return VEntryIterator(ref<const VDirectory>(this),0); }
00088 
00089   iterator end()               { return VEntryIterator(ref<VDirectory>(this),size()); }
00090   const_iterator end() const   { return VEntryIterator(ref<const VDirectory>(this),size()); }
00091 
00092 
00093 protected:
00094   virtual ref<VEntry> entry(Int i) const = 0;
00095   virtual Int size() const = 0;
00096 
00097   VDirectory() {}
00098   VDirectory(const PathName& pathname) throw(std::invalid_argument) : VEntry(pathname) {}
00099   VDirectory(const VDirectory& d) : VEntry(d) {}
00100   VDirectory& operator=(const VDirectory& d) { VEntry::operator=(d); return *this; }
00101 
00102   friend class VFileSystem;
00103 };
00104 
00105 } // base
00106 
00107 #endif

Generated on Thu Jul 29 15:56:16 2004 for OpenSim by doxygen 1.3.6