Visualization Library 2.0.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
MemoryDirectory.hpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
32 #ifndef MemoryDirectory_INCLUDE_ONCE
33 #define MemoryDirectory_INCLUDE_ONCE
34 
36 #include <vlCore/MemoryFile.hpp>
37 #include <vlCore/String.hpp>
38 #include <map>
39 #include <set>
40 
41 namespace vl
42 {
57  {
59 
60  public:
61  MemoryDirectory(const String& path="."): VirtualDirectory(path) {}
62 
63  virtual bool setPath(const String& name);
64 
66  bool addFile(MemoryFile* file);
67 
69  bool removeFile(MemoryFile* file);
70 
71  bool removeFile(const String& name);
72 
73  void eraseAllFiles() { mFiles.clear(); }
74 
75  virtual ref<VirtualFile> file(const String& name) const { return memoryFile(name); }
76 
77  ref<MemoryFile> memoryFile(const String& name) const;
78 
79  void listFilesRecursive( std::vector<String>& file_list ) const;
80 
81  void listSubDirs(std::vector<String>& dirs, bool append=false) const;
82 
83  ref<MemoryDirectory> memorySubDir(const String& subdir_name) const;
84 
85  ref<VirtualDirectory> subDir(const String& subdir_name) const { return memorySubDir(subdir_name); }
86 
87  void listFiles(std::vector<String>& file_list, bool append=false) const;
88 
90  void clone(VirtualDirectory* directory, const String& match = "*");
91 
92  protected:
93  std::map< String, ref<MemoryFile> > mFiles;
94  };
95 };
96 
97 #endif
The String class implements an advanced UTF16 (Unicode BMP) string manipulation engine.
Definition: String.hpp:62
MemoryDirectory(const String &path=".")
#define VL_INSTRUMENT_CLASS(ClassName, BaseClass)
Definition: TypeInfo.hpp:122
Visualization Library main namespace.
virtual ref< VirtualFile > file(const String &name) const
Returns the VirtualFile with the given name if any, NULL otherwise.
A VirtualFile to manipulate files stored in memory.
Definition: MemoryFile.hpp:56
Abstact class representing a directory of files.
ref< VirtualDirectory > subDir(const String &subdir_name) const
The ref<> class is used to reference-count an Object.
Definition: Object.hpp:55
A VirtualDirectory to manipulate directories stored in memory.
std::map< String, ref< MemoryFile > > mFiles